/* =========================================================
   Milecrest — marketing site
   Design tokens from the Milecrest design system
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #0A0B0F;
  --surface: #14161D;
  --elevated: #1C1F29;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Brand */
  --blue: #3B82F6;
  --violet: #8B5CF6;
  --cyan: #22D3EE;
  --orange: #F08A3C;
  --grad: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --grad-cyan: linear-gradient(135deg, #22D3EE 0%, #3B82F6 100%);

  /* Status */
  --success: #34D399;
  --warning: #FBBF24;
  --danger: #F43F5E;

  /* Text */
  --text: #F5F7FA;
  --text-2: #9AA3B2;
  --text-3: #5B6473;

  /* Shape */
  --r-card: 16px;
  --r-hero: 24px;
  --r-pill: 999px;

  --container: 1180px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 16px; top: -52px; z-index: 100;
  background: var(--grad); color: #fff; padding: 10px 16px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 16px; }
.section { padding: 110px 0; position: relative; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Aurora background ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora__blob { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .35; }
.aurora__blob--1 { width: 620px; height: 620px; background: #3B82F6; top: -180px; left: -120px; }
.aurora__blob--2 { width: 560px; height: 560px; background: #8B5CF6; top: 240px; right: -160px; opacity: .3; }
.aurora__blob--3 { width: 480px; height: 480px; background: #22D3EE; bottom: -160px; left: 30%; opacity: .18; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 11, 15, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; }
.brand__logo { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(139,92,246,.5)); }
.brand__name { font-size: 19px; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--text-2); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; }

.nav__burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 8px 24px 20px;
  background: rgba(10,11,15,.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 12px 8px; color: var(--text-2); border-radius: 10px; font-weight: 500; }
.nav__mobile a:hover { background: var(--surface); color: var(--text); }
.nav__mobile .btn { margin-top: 8px; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 11px 22px; border-radius: var(--r-pill); cursor: pointer; border: 0;
  transition: transform .18s ease, box-shadow .25s ease, background .25s;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(99, 102, 241, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(99,102,241,.5); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--text); border: 1px solid var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ---------- Store badges ---------- */
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #000; padding: 10px 18px; border-radius: 14px;
  transition: transform .2s ease, box-shadow .25s;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.5); }
.store-badge--play { background: #111319; color: #fff; border: 1px solid var(--line-strong); }
.store-badge svg { flex: none; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge__text small { font-size: 10px; font-weight: 500; opacity: .7; }
.store-badge__text strong { font-family: var(--font-display); font-size: 17px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: 70px; position: relative; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding-bottom: 60px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.3);
  color: #c4b5fd; padding: 7px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title { font-size: clamp(40px, 6vw, 66px); font-weight: 800; letter-spacing: -0.03em; }
.hero__sub { color: var(--text-2); font-size: 18px; margin-top: 22px; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__cta--center { justify-content: center; }

.hero__stats { display: flex; gap: 38px; margin-top: 44px; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num { font-family: var(--font-display); font-size: 34px; font-weight: 800; background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stat-label { font-size: 13px; color: var(--text-3); }

/* Hero art */
.hero__art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }
.hero__glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.45), transparent 65%); filter: blur(30px); }
.hero__mascot { position: relative; width: min(380px, 80%); filter: drop-shadow(0 30px 50px rgba(0,0,0,.6)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(28,31,41,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4); animation: floatChip 5s ease-in-out infinite;
}
.float-chip strong { display: block; font-family: var(--font-display); font-size: 15px; }
.float-chip small { display: block; color: var(--text-3); font-size: 11px; }
.float-chip__icon { font-size: 20px; }
.float-chip__badge { width: 22px; height: 22px; border-radius: 6px; transform: rotate(45deg); }
.float-chip--xp { top: 12%; left: -4%; }
.float-chip--rank { top: 46%; right: -6%; animation-delay: .8s; }
.float-chip--streak { bottom: 10%; left: 4%; animation-delay: 1.6s; }
@keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Marquee */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 16px 0; background: rgba(255,255,255,.015); }
.marquee__track { display: flex; gap: 28px; white-space: nowrap; animation: scroll 26s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .12em; color: var(--text-3); }
.marquee__track span:nth-child(even) { color: var(--violet); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section__head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.kicker { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.section__title { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; letter-spacing: -0.02em; }
.section__lead { color: var(--text-2); font-size: 18px; margin-top: 18px; }

/* =========================================================
   FEATURE SHOWCASE GRID
   ========================================================= */
.showcase__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 24px;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 18px; color: #fff;
}
.icon-rank { background: linear-gradient(135deg, #FFD700, #F08A3C); }
.icon-compete { background: linear-gradient(135deg, #3B82F6, #8B5CF6); }
.icon-track { background: linear-gradient(135deg, #22D3EE, #3B82F6); }
.icon-xp { background: linear-gradient(135deg, #8B5CF6, #F43F5E); }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--text-2); font-size: 15px; }

/* =========================================================
   ALTERNATING FEATURE ROWS
   ========================================================= */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 120px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__copy .kicker { color: var(--violet); }
.feature-row__copy h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
.feature-row__copy p { color: var(--text-2); font-size: 17px; margin-bottom: 22px; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--text); font-size: 15px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%; background: rgba(52,211,153,.15);
  color: var(--success); font-size: 12px; font-weight: 700; display: grid; place-items: center;
}

/* =========================================================
   PHONE MOCKUPS
   ========================================================= */
.feature-row__media { display: flex; justify-content: center; }
.phone {
  position: relative; width: 290px; height: 600px;
  background: #0c0d12; border: 10px solid #1b1d26; border-radius: 44px;
  box-shadow: 0 40px 80px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.04);
  padding: 14px; overflow: hidden;
}
.phone__notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #000; border-radius: 14px; z-index: 3; }
.phone__screen { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: radial-gradient(120% 80% at 50% 0%, #181a24, #0a0b0f); position: relative; }
.mock { padding: 44px 18px 18px; height: 100%; display: flex; flex-direction: column; }

/* rank mock */
.mock__top { display: flex; justify-content: space-between; }
.lvl-pill, .streak-pill { font-size: 11px; font-family: var(--font-display); font-weight: 700; padding: 4px 9px; border-radius: var(--r-pill); }
.lvl-pill { background: var(--grad); color: #fff; }
.streak-pill { background: rgba(244,63,94,.18); color: #fb7185; }
.rank-emblem {
  width: 110px; height: 110px; margin: 22px auto 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.5), transparent 55%),
    var(--em, linear-gradient(135deg, #8B5CF6, #3B82F6));
  clip-path: polygon(50% 0, 100% 30%, 82% 100%, 18% 100%, 0 30%);
  box-shadow: 0 0 36px var(--emglow, rgba(139,92,246,.6));
  filter: saturate(1.2);
}
.tier-diamond { --em: linear-gradient(135deg, #B9F2FF, #5BC0EB); --emglow: rgba(91,192,235,.6); }
.tier-gold { --em: linear-gradient(135deg, #FFD700, #F08A3C); --emglow: rgba(255,215,0,.55); }
.mock__rank-name { text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .04em; background: linear-gradient(135deg,#B9F2FF,#5BC0EB); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock__rrr { text-align: center; color: var(--text-3); font-size: 12px; margin-bottom: 16px; }
.xp-bar { height: 10px; background: rgba(255,255,255,.08); border-radius: var(--r-pill); overflow: hidden; }
.xp-bar span { display: block; height: 100%; background: var(--grad); border-radius: var(--r-pill); }
.mock__xp-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-3); margin-top: 6px; }
.mock__standings { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.mock__standings div { background: var(--elevated); border-radius: 12px; padding: 12px; }
.mock__standings small { display: block; color: var(--text-3); font-size: 11px; }
.mock__standings strong { font-family: var(--font-display); font-size: 16px; }

/* board mock */
.board-tabs { display: flex; gap: 6px; background: var(--elevated); border-radius: var(--r-pill); padding: 4px; }
.board-tabs span { flex: 1; text-align: center; font-size: 11px; font-weight: 600; padding: 7px 0; border-radius: var(--r-pill); color: var(--text-3); }
.board-tabs .active { background: var(--blue); color: #fff; }
.board-title { text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 14px 0; }
.podium { display: flex; align-items: flex-end; justify-content: center; gap: 12px; margin-bottom: 16px; }
.podium__item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.podium__ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,#3B82F6,#8B5CF6); border: 2px solid var(--line-strong); }
.podium__item--first .podium__ava { width: 56px; height: 56px; border-color: #FFD700; box-shadow: 0 0 18px rgba(255,215,0,.5); }
.podium__item small { font-size: 11px; color: var(--text-2); }
.podium__item b { font-family: var(--font-display); font-size: 12px; }
.board-list li { display: flex; align-items: center; gap: 10px; padding: 9px 6px; border-bottom: 1px solid var(--line); font-size: 12px; }
.board-list li > span:first-child { width: 18px; color: var(--text-3); font-weight: 700; }
.board-ava { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,#22D3EE,#3B82F6); }
.board-name { flex: 1; }
.board-list b { font-family: var(--font-display); color: var(--text-2); }
.board-list__you { background: rgba(59,130,246,.16); border-radius: 10px; border-bottom: 0; }
.board-list__you b { color: var(--cyan); }

/* run mock */
.mock--run { padding-top: 36px; }
.mock--run__map {
  height: 200px; border-radius: 16px; margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(34,211,238,.1), rgba(139,92,246,.1)),
    repeating-linear-gradient(0deg, #16181f 0 24px, #121319 24px 25px),
    repeating-linear-gradient(90deg, #16181f 0 24px, #121319 24px 25px);
  position: relative; overflow: hidden;
}
.mock--run__map::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, var(--cyan) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 25%, var(--blue) 0 5px, transparent 6px);
}
.mock--run__map::before {
  content: ""; position: absolute; left: 30%; top: 70%; width: 45%; height: 48%;
  border: 3px solid var(--cyan); border-radius: 40% 60% 50% 50%; transform: rotate(-25deg);
  box-shadow: 0 0 14px rgba(34,211,238,.6);
}
.run-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.run-stat { background: var(--elevated); border-radius: 12px; padding: 12px; }
.run-stat small { display: block; color: var(--text-3); font-size: 10px; letter-spacing: .08em; }
.run-stat b { font-family: var(--font-display); font-size: 20px; }
.run-stat b i { font-size: 12px; font-style: normal; color: var(--text-3); }
.run-stat--xp { background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(59,130,246,.2)); }
.run-stat--xp b { color: var(--cyan); }
.run-pause { margin: 16px auto 0; width: 54px; height: 54px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 18px; box-shadow: 0 8px 20px rgba(99,102,241,.5); }

/* =========================================================
   RANK TIERS
   ========================================================= */
.ranks__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.tier-card {
  text-align: center; padding: 26px 14px; border-radius: var(--r-card);
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--line); transition: transform .25s, border-color .25s;
}
.tier-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--tier) 45%, transparent); }
.tier-card__emblem {
  width: 58px; height: 58px; margin: 0 auto 16px;
  background: radial-gradient(circle at 50% 35%, color-mix(in srgb, #fff 60%, var(--tier)), var(--tier));
  clip-path: polygon(50% 0, 100% 30%, 82% 100%, 18% 100%, 0 30%);
  box-shadow: 0 0 24px color-mix(in srgb, var(--tier) 55%, transparent);
}
.tier-card h3 { font-size: 16px; margin-bottom: 6px; color: var(--tier); }
.tier-card p { font-size: 12px; color: var(--text-3); line-height: 1.4; }
.tier-card--animated .tier-card__emblem { animation: tierGlow 2.4s ease-in-out infinite; }
@keyframes tierGlow { 0%,100% { box-shadow: 0 0 18px color-mix(in srgb, var(--tier) 50%, transparent); } 50% { box-shadow: 0 0 40px color-mix(in srgb, var(--tier) 80%, transparent); } }

/* =========================================================
   MASCOT BAND
   ========================================================= */
.mascot-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mascot-band__art { position: relative; min-height: 420px; display: flex; justify-content: center; align-items: center; }
.mascot-band__art::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(34,211,238,.3), transparent 65%); filter: blur(30px); }
.mascot-band__video { position: relative; width: min(360px, 90%); border-radius: var(--r-hero); filter: drop-shadow(0 24px 50px rgba(0,0,0,.6)); }
.mascot-band__still { position: absolute; width: 120px; filter: drop-shadow(0 16px 30px rgba(0,0,0,.5)); animation: floatChip 6s ease-in-out infinite; }
.mascot-band__still--1 { top: 0; right: 4%; }
.mascot-band__still--2 { bottom: 4%; left: 0; width: 110px; animation-delay: 1.2s; }

/* =========================================================
   SHARE CARDS
   ========================================================= */
.share-cards { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.share-card {
  width: 300px; padding: 28px 24px; border-radius: 20px; text-align: center;
  background: linear-gradient(160deg, #1a1430, #0d0e15);
  border: 1px solid rgba(139,92,246,.3);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  transition: transform .3s;
}
.share-card:hover { transform: translateY(-8px) rotate(-1deg); }
.share-card--alt { background: linear-gradient(160deg, #0e2230, #0d0e15); border-color: rgba(34,211,238,.3); }
.share-card--alt:hover { transform: translateY(-8px) rotate(1deg); }
.share-card__head { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 4px; }
.share-card__head img { width: 24px; height: 24px; }
.share-card__head span { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.share-card__emblem { margin: 10px auto; }
.share-card__tier { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .05em; }
.share-card__row { display: flex; justify-content: space-around; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--font-display); font-size: 13px; color: var(--text-2); }

/* =========================================================
   CTA
   ========================================================= */
.cta { text-align: center; }
.cta__inner {
  position: relative; max-width: 820px; margin: 0 auto; padding: 70px 40px;
  border-radius: var(--r-hero);
  background: linear-gradient(160deg, rgba(59,130,246,.14), rgba(139,92,246,.14));
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.cta__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% -20%, rgba(139,92,246,.4), transparent 60%); pointer-events: none; }
.cta__mascot { width: 150px; margin: 0 auto 4px; filter: drop-shadow(0 16px 30px rgba(0,0,0,.5)); animation: float 5s ease-in-out infinite; }
.cta__title { font-size: clamp(30px, 5vw, 48px); font-weight: 800; letter-spacing: -0.02em; }
.cta__sub { color: var(--text-2); font-size: 18px; margin-top: 14px; }
.cta__note { color: var(--text-3); font-size: 13px; margin-top: 18px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-card); padding: 4px 22px; margin-bottom: 14px; background: var(--surface); transition: border-color .2s; }
.faq__item[open] { border-color: var(--line-strong); }
.faq__item summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-display); font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 24px; color: var(--cyan); transition: transform .25s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--text-2); padding-bottom: 20px; }
.faq__item a { color: var(--cyan); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding: 60px 0 32px; background: rgba(255,255,255,.01); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; }
.footer__brand p { color: var(--text-3); margin-top: 14px; font-size: 14px; }
.footer__col h4 { font-size: 14px; margin-bottom: 16px; color: var(--text); }
.footer__col a { display: block; color: var(--text-2); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__muted { color: var(--text-3); font-size: 14px; }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-3); font-size: 13px; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__mascot, .float-chip, .cta__mascot, .mascot-band__still, .marquee__track, .tier-card--animated .tier-card__emblem { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__art { order: -1; min-height: 360px; }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .check-list { display: inline-block; text-align: left; }
  .ranks__grid { grid-template-columns: repeat(3, 1fr); }
  .mascot-band__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .mascot-band__copy { display: flex; flex-direction: column; align-items: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .showcase__grid { grid-template-columns: 1fr; }
  .ranks__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta__inner { padding: 50px 22px; }
}
