/* ===== MLSC PCCOE — Event Journey ===== */

:root {
  --radius: 1rem;
  --background: #000000;
  --foreground: #f3f4f6;
  --card: rgba(20, 20, 20, 0.7);
  --muted-foreground: #9ca3af;
  --border: rgba(255, 255, 255, 0.1);

  --ms-red: #f25022;
  --ms-green: #7fba00;
  --ms-blue: #00a4ef;
  --ms-yellow: #ffb900;

  --glass-bg: rgba(18, 18, 18, 0.75);
  --glass-border: rgba(255, 255, 255, 0.12);

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: auto;
  background-color: #000000 !important;
}

/* Global Lenis Smooth Scroll Integration */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  background: #000000 !important;
  background-color: #000000 !important;
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(56, 189, 248, 0.35);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Reusable utilities ===== */

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Disable all background grid textures / lines */
.grain {
  display: none !important;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.55em;
  color: var(--muted-foreground);
}

.caret {
  animation: caret 1s step-end infinite;
  margin-left: 2px;
  display: inline-block;
  height: 0.95em;
  width: 2px;
  transform: translateY(0.12em);
  background: currentColor;
  vertical-align: baseline;
}

/* ===== Animations ===== */

@keyframes drop-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -110vh, 0) rotate(-14deg) scale(0.7);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, 4%, 0) rotate(4deg) scale(1.04);
  }

  80% {
    transform: translate3d(0, -3%, 0) rotate(-2deg) scale(0.99);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes float-soft {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

@keyframes sparkle-burst {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(0deg);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(2.4) rotate(140deg);
  }
}

@keyframes halo-pulse {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }

  50% {
    opacity: 0.75;
    transform: scale(1.12);
  }
}

@keyframes belt {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes belt-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes caret {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes node-bounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  30% {
    transform: translateY(-16px) scale(1.12);
  }

  60% {
    transform: translateY(-4px) scale(1.04);
  }
}

.animate-drop-in {
  animation: drop-in 1.5s cubic-bezier(0.22, 1.2, 0.36, 1) both;
}

.animate-float-soft {
  animation: float-soft 6s ease-in-out infinite;
}

.animate-halo {
  animation: halo-pulse 4.5s ease-in-out infinite;
}

.animate-rise {
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Layout shells ===== */

main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000000 !important;
  background-color: #000000 !important;
  box-shadow: none;
}

.wrap {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 64rem;
  padding: 0 1.25rem;
}

/* ===== Landing page ===== */

.landing {
  display: flex;
  min-height: 100vh;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  position: relative;
}

.landing-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 0.3s;
}

.landing-hero {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  max-width: 42rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mascot-frame {
  position: relative;
}

.halo {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 9999px;
  filter: blur(64px);
  background: rgba(217, 184, 97, 0.35);
}

.mascot-glass {
  position: relative;
  border-radius: 9999px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.mascot-img {
  height: 12rem;
  width: 12rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkles svg {
  position: absolute;
  filter: drop-shadow(0 0 8px rgba(255, 200, 80, 0.85));
}

.landing-kicker {
  margin-top: 2.5rem;
}

.landing-title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 800;
}

.landing-copy {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.cta-pill {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  transition: all 0.3s;
  opacity: 0;
}

.cta-pill.ready {
  opacity: 1;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cta-pill:hover {
  transform: translateY(-4px);
  border-color: var(--ms-yellow);
}

/* ===== Belt (marquee) ===== */

.belt {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0;
}

.belt-track,
.belt-track-reverse {
  display: inline-flex;
  white-space: nowrap;
}

.belt-track {
  animation: belt 28s linear infinite;
}

.belt-track-reverse {
  animation: belt-reverse 34s linear infinite;
}

.belt-item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--muted-foreground);
}

.belt-dot {
  height: 4px;
  width: 4px;
  border-radius: 9999px;
  background: var(--ms-yellow);
}

/* ===== Roadmap Viewport Sections ===== */

.events-hero-section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: clamp(75px, 11vh, 95px) 24px 0;
  border-bottom: none;
  background: #000000 !important;
  box-sizing: border-box;
  overflow: hidden;
}

.roadmap-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: auto 0;
  padding: 1rem;
}

.roadmap-title {
  margin: 0 auto;
  max-width: 860px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
  color: #ffffff;
}

.events-gradient-text {
  color: var(--ms-green, #7fba00);
  display: inline-block;
  text-shadow: 0 0 28px rgba(127, 186, 0, 0.35);
}

.hero-br {
  display: block;
}

.roadmap-copy {
  margin: 1.25rem auto 0;
  max-width: 660px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.65;
  opacity: 0.92;
}

.events-hero-section .belt {
  width: 100%;
  position: relative;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  background: #000000;
  padding: 0.85rem 0;
  flex-shrink: 0;
}

/* ========================================================= */
/* SECTION 2: INTERACTIVE ROADMAP VIEWPORT                   */
/* ========================================================= */

.events-roadmap-section {
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 80px 20px 120px;
  border-bottom: none;
  background: #000000 !important;
  box-sizing: border-box;
  overflow: hidden;
}

.roadmap-track-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  height: 1600px;
  margin: 0 auto;
}

/* Vector Road SVG */
.roadmap-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.road-bed {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 28;
  stroke-linecap: round;
}

.road-rails {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 14;
  stroke-linecap: round;
}

.road-core {
  stroke: #000000;
  stroke-width: 8;
  stroke-linecap: round;
}

.road-energy {
  stroke-width: 3;
  stroke-dasharray: 8 12;
  stroke-linecap: round;
  animation: dash-flow 18s linear infinite;
}

/* Flying Mascot (The Dragon / Guide) */
.guide-mascot {
  position: absolute;
  top: 8.75%;
  left: 25%;
  width: 104px;
  height: 104px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 25;
  will-change: left, top, transform;
}

.mascot-flight-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 18px rgba(0, 164, 239, 0.5));
  animation: float-soft 3.6s ease-in-out infinite;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mascot-flight-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Milestone Stations */
.roadmap-station {
  position: absolute;
  z-index: 15;
  width: 106px;
  height: 106px;
  transform: translate(-50%, -50%);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.station-hub {
  position: relative;
  width: 106px;
  height: 106px;
  border-radius: 1.5rem;
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 transparent, 0 12px 28px rgba(0, 0, 0, 0.7);
  transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.station-hub img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.station-num {
  position: absolute;
  top: -8px;
  right: -8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: #000000;
  border: 1.5px solid var(--station-accent, #00a4ef);
  border-radius: 9999px;
  padding: 2px 7px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  transition: border-color 0.45s ease, background-color 0.45s ease, color 0.45s ease;
}

.station-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 236px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Odd stations (Left side): Card on outer LEFT */
.roadmap-station:nth-of-type(odd) .station-card {
  right: calc(100% + 20px);
  left: auto;
  text-align: left;
}

.roadmap-station:nth-of-type(odd) .station-card-cta {
  justify-content: flex-start;
}

/* Even stations (Right side): Card on outer RIGHT */
.roadmap-station:nth-of-type(even) .station-card {
  left: calc(100% + 20px);
  right: auto;
  text-align: left;
}

.roadmap-station:nth-of-type(even) .station-card-cta {
  justify-content: flex-start;
}

.station-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.station-card-tag {
  margin-top: 5px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: #a1a1aa;
  text-transform: none;
  letter-spacing: 0;
}

.station-card-cta {
  margin-top: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--station-accent, #00a4ef);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

/* Hover Micro-Interactions */
.roadmap-station:hover {
  transform: translate(-50%, -54%);
}

.roadmap-station:hover .station-hub {
  border-color: var(--station-accent, #00a4ef);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--station-accent, #00a4ef);
  transform: translateY(-8px);
}

.roadmap-station:hover .station-hub img {
  transform: scale(1.12);
}

.roadmap-station:hover .station-card {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 28px -4px rgba(0, 0, 0, 0.8);
}

.roadmap-station:hover .station-card-cta {
  gap: 7px;
}

/* Active / Passed State (illuminated and slightly lifted when dragon arrives) */
.roadmap-station.is-active .station-hub {
  border-color: var(--station-accent, #00a4ef);
  box-shadow: 0 0 0 2px var(--station-accent, #00a4ef), 0 16px 34px rgba(0, 0, 0, 0.8);
  transform: translateY(-6px);
}

.roadmap-station.is-active .station-num {
  background: var(--station-accent, #00a4ef);
  color: #000000;
}

/* Responsive adjustments for mobile */
@media (max-width: 680px) {
  .hero-br {
    display: none;
  }
  
  .roadmap-station {
    width: 76px;
    height: 76px;
  }

  .station-hub {
    width: 76px;
    height: 76px;
    border-radius: 1.25rem;
  }

  .station-hub img {
    width: 58px;
    height: 58px;
  }

  .station-card {
    width: 150px;
    padding: 10px 12px;
    border-radius: 12px;
    text-align: left;
  }

  .station-card-title {
    font-size: 12px;
    line-height: 1.25;
  }

  .station-card-tag {
    font-size: 9.5px;
    line-height: 1.35;
    margin-top: 3px;
  }

  .station-card-cta {
    font-size: 8.5px;
    margin-top: 6px;
    gap: 3px;
  }

  .roadmap-station:nth-of-type(odd) .station-card {
    right: calc(100% + 10px);
    text-align: left;
  }

  .roadmap-station:nth-of-type(even) .station-card {
    left: calc(100% + 10px);
    text-align: left;
  }

  .guide-mascot {
    width: 78px;
    height: 78px;
  }
}

/* ===== Footer space ===== */

.footer-space {
  padding: 5rem 1.25rem 2.5rem;
}

.footer-space-inner {
  margin: 0 auto;
  display: flex;
  min-height: 180px;
  max-width: 72rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

/* ===== Event page ===== */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 6.5rem;
}

.back-link:hover {
  color: #ffffff;
  transform: translateX(-3px);
}

.event-header {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.event-glow {
  position: absolute;
  top: -10rem;
  left: 50%;
  height: clamp(24rem, 36vw, 32rem);
  width: clamp(24rem, 36vw, 32rem);
  transform: translateX(-50%);
  border-radius: 9999px;
  filter: blur(72px);
  -webkit-filter: blur(72px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.event-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--event-accent, var(--ms-yellow));
}

.event-title {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.event-intro {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.event-mascot {
  margin: 0 auto;
  height: 9rem;
  width: 9rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}

.event-quote {
  margin-top: 3rem;
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.event-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 600;
}

.section {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  padding: 60px 1.25rem;
  max-width: 64rem;
  border-bottom: none;
  box-sizing: border-box;
}

.section-label {
  font-family: 'Plus Jakarta Sans', var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.25;
  text-transform: none;
  margin: 0;
}

.section-body {
  margin-top: 1rem;
  max-width: 48rem;
  font-family: 'Plus Jakarta Sans', var(--font-sans);
  font-size: 0.975rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.highlights {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.highlight-card {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}

.highlight-bar {
  display: block;
  height: 4px;
  width: 2rem;
  border-radius: 9999px;
  background: var(--event-accent, var(--ms-yellow));
}

.highlight-title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
}

.highlight-line {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.gallery {
  margin-top: 1.5rem;
  column-gap: 4px;
  column-count: 1;
}

.gallery figure {
  margin: 0 0 4px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.gallery img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.next-card {
  --next-accent: var(--ms-green, #7fba00);
  --next-accent-glow: rgba(127, 186, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  background: rgba(18, 18, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  gap: 1.5rem;
}

.next-card:hover {
  transform: translateY(-4px);
  border-color: var(--next-accent);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.7), 0 0 25px var(--next-accent-glow);
}

.next-card-content {
  display: flex;
  flex-direction: column;
}

.next-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--next-accent);
}

.next-name {
  margin-top: 0;
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.next-desc {
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.next-arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.next-arrow {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.next-card:hover .next-arrow-wrapper {
  background: var(--next-accent);
  color: #000000;
  border-color: var(--next-accent);
  box-shadow: 0 0 16px var(--next-accent-glow);
}

.next-card:hover .next-arrow {
  transform: translateX(3px);
}

/* ===== Responsive ===== */

@media (min-width: 640px) {
  .landing-title {
    font-size: 3rem;
  }

  .landing-copy {
    font-size: 1rem;
  }

  .mascot-glass {
    padding: 2rem;
  }

  .mascot-img {
    height: 16rem;
    width: 16rem;
  }

  .roadmap-hero {
    padding-top: 0;
  }

  .track-wrap {
    padding: 0 2rem;
  }

  .track {
    height: 1500px;
  }

  .guide-mascot img {
    height: 6rem;
    width: 6rem;
  }

  .node-icon {
    height: 5rem;
    width: 5rem;
  }

  .node-icon img {
    height: 3.5rem;
    width: 3.5rem;
  }

  .node-card {
    width: 11rem;
  }

  .node-name {
    font-size: 0.875rem;
  }

  .event-header {
    grid-template-columns: 1fr auto;
  }

  .event-title {
    font-size: 3.75rem;
  }

  .event-intro {
    font-size: 1rem;
  }

  .event-mascot {
    height: 13rem;
    width: 13rem;
  }

  .event-quote {
    padding: 2.5rem;
  }

  .event-quote blockquote {
    font-size: 1.5rem;
  }

  .section-body {
    font-size: 1rem;
  }

  .highlights {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .gallery {
    column-count: 2;
  }

  .next-card {
    padding: 1.5rem 2.5rem;
  }

  .next-name {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery {
    column-count: 3;
  }
}

.site-footer {
  background: #000000 !important;
  background-color: #000000 !important;
}