/* ============================================================
   JudgeRules — Landing Page (v4)
   Design system: light paper canvas, accent #FF5A1E, Poppins —
   with a handful of "flagship" sections (nav, hero video card,
   During-phase, Live Scoring, Team, final CTA, footer) kept
   near-black. Mirrors app.judgerules.it's own pattern of a light
   grey canvas with solid black chrome/cards, so the landing page
   and the product no longer read as two different brands.
   ============================================================ */

:root {
  --ink: #171310;
  --bg-0: #F2F0EA;
  --bg-1: #EAE6DC;
  --bg-2: #141210;
  --card: #FFFFFF;
  --card-2: #FBFAF6;
  --line: rgba(23, 19, 13, 0.10);
  --line-strong: rgba(23, 19, 13, 0.18);

  --paper: #17140F;
  --paper-85: rgba(23, 20, 15, 0.85);
  --paper-65: rgba(23, 20, 15, 0.65);
  --paper-45: rgba(23, 20, 15, 0.45);
  --paper-25: rgba(23, 20, 15, 0.25);

  --accent: #FF5A1E;
  --accent-2: #E8490F;
  --accent-dim: rgba(255, 90, 30, 0.10);
  --accent-line: rgba(255, 90, 30, 0.4);

  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- flagship dark sections: black canvas, echoing the webapp's
   own nav/card chrome. `color` is reasserted (not just the custom
   properties) because heading elements etc. have no color rule of
   their own — they inherit the computed value from body, which
   would otherwise stay dark even inside these sections. ---- */
.nav,
.hero,
.phase--dark,
.live,
.team,
.final-cta,
.footer {
  --paper: #FFFFFF;
  --paper-85: rgba(255, 255, 255, 0.85);
  --paper-65: rgba(255, 255, 255, 0.65);
  --paper-45: rgba(255, 255, 255, 0.45);
  --paper-25: rgba(255, 255, 255, 0.25);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --card: #1c1a17;
  --card-2: #201d19;
  color: var(--paper);
}
/* final-cta is the one flagship section built on --bg-0 (which must
   stay light — the hero needs it), so it needs its own dark fill
   rather than inheriting one via the token. */

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--bg-0);
  color: var(--paper);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }

::selection { background: var(--accent); color: var(--ink); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--ink); padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

.text-accent { color: var(--accent); }

/* ---------- Layout helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--paper-45); flex-shrink: 0; }
.dot--live { background: var(--accent); box-shadow: 0 0 0 0 rgba(255,90,30,0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,30,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255,90,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,30,0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 15px 26px; border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--ink); }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn--ghost { color: var(--paper); border: 1px solid var(--line-strong); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--outline { color: var(--paper); border: 1px solid var(--line-strong); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 17px 30px; font-size: 15px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s var(--ease);
}
.nav.is-scrolled {
  box-shadow: 0 8px 24px -12px rgba(23, 19, 13, 0.35);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo img { height: 20px; width: auto; }
.nav__links { display: flex; gap: 32px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--paper-65); transition: color 0.2s; }
.nav__links a:hover { color: var(--paper); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__langswitch { position: relative; }
.nav__lang-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: transparent; color: var(--paper-65);
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.nav__lang-toggle:hover { color: var(--accent); border-color: var(--accent); }
.nav__lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 140px;
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 6px; display: none; flex-direction: column; gap: 2px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6); z-index: 20;
}
.nav__lang-menu.is-open { display: flex; }
.nav__lang-item { padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--paper-65); transition: background .15s, color .15s; }
.nav__lang-item:hover { background: rgba(255,255,255,0.04); color: var(--paper); }
.nav__lang-item.is-active { color: var(--accent); font-weight: 700; }

.nav__mobile-langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.nav__mobile .nav__mobile-lang-item {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong);
  font-size: 13px; font-weight: 600;
}
.nav__mobile-lang-item.is-active { border-color: var(--accent); color: var(--accent); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 22px; padding: 4px;
}
.nav__toggle span { display: block; width: 100%; height: 2px; background: var(--paper); transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px var(--pad) 24px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a { padding: 14px 4px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile .btn { margin-top: 14px; width: 100%; }
.nav.is-open .nav__mobile { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
/* Full-bleed video hero again, like v3 — the contained side-card
   version tested flatter and lost the impact. The hero goes back to
   being one of the "flagship dark" sections (see the .hero entry in
   the token block near the top), so it now reads as a bold dark
   opening beat on an otherwise light page, the same role the black
   nav/footer play — rather than the whole page being uniformly dark. */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
  background: var(--bg-2);
}

.hero__field { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg-2); }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero__video.is-ready { opacity: 0.55; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,17,12,0.94) 0%, rgba(20,17,12,0.75) 38%, rgba(20,17,12,0.35) 68%, rgba(20,17,12,0.55) 100%),
    linear-gradient(0deg, rgba(20,17,12,1) 0%, rgba(20,17,12,0.2) 24%, rgba(20,17,12,0.2) 76%, rgba(20,17,12,1) 100%);
}
.hero__lines {
  position: absolute; inset: -10%;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 96px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 96px);
  mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, black 0%, transparent 75%);
}
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(255,90,30,0.22) 0%, rgba(255,90,30,0) 65%);
}
.hero__field--cta .hero__glow { top: 10%; left: 50%; right: auto; transform: translateX(-50%); width: 70%; }

.hero__grid {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; width: 100%;
}
.hero__copy { max-width: 640px; }

.hero__title {
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 800;
  text-transform: uppercase;
}
.hero__sub {
  margin-top: 26px; max-width: 480px;
  font-size: clamp(16px, 1.6vw, 18px); color: var(--paper-65); font-weight: 400;
}
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__cta .btn--ghost svg { color: var(--accent); }

.hero__stores { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__stores-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--paper-45); margin-right: 2px; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 26px; height: 42px; border: 1.5px solid var(--line-strong); border-radius: 20px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--accent); animation: scrollcue 1.8s infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ============================================================
   CREDIBILITY
   ============================================================ */
.credibility { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px var(--pad) 56px; }
.credibility__head { max-width: var(--container); margin: 0 auto 40px; }
.credibility__head h2 { font-size: clamp(24px, 3.4vw, 38px); text-transform: uppercase; max-width: 720px; }
.br-desktop { display: none; }
@media (min-width: 640px) { .br-desktop { display: inline; } }
.credibility__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: clamp(28px, 5vw, 56px); flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: clamp(38px, 5vw, 56px); font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 13px; color: var(--paper-45); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.stat__divider { width: 1px; height: 44px; background: var(--line-strong); }
.credibility__line { max-width: 380px; color: var(--paper-65); font-size: 15px; line-height: 1.6; }

/* ============================================================
   PHASES (before / during / after)
   ============================================================ */
.phase { background: var(--bg-1); padding: 120px var(--pad); }
.phase--dark { background: var(--bg-2); }
.phase__head { max-width: 640px; margin: 0 auto 64px; text-align: left; }
.phase__head h2 { font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; }
.phase__sub { margin-top: 18px; color: var(--paper-65); font-size: 16px; max-width: 520px; }

.timeline {
  position: relative;
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: flex-start; gap: 0;
}
.timeline::before {
  content: ""; position: absolute; top: 15px; left: 0; right: 0; height: 1px;
  background: var(--line-strong);
}
.timeline__step {
  position: relative; flex: 1; min-width: 0;
  padding: 0 22px; display: flex; flex-direction: column;
}
.timeline__step:first-child { padding-left: 0; }
.timeline__step:last-child { padding-right: 0; }
.timeline__num {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-1); border: 2px solid var(--accent-line); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; margin-bottom: 22px;
}
.phase--dark .timeline__num { background: var(--bg-2); }
.timeline__body h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.timeline__body p { font-size: 14px; color: var(--paper-65); line-height: 1.6; }
.timeline__body .chip-ui { margin-top: 16px; }

.chip-ui {
  display: inline-flex; flex-direction: column; gap: 6px;
  padding: 12px 14px; border-radius: 10px; background: rgba(23,19,13,0.035); border: 1px solid var(--line);
  width: 100%;
}
.chip-ui__label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--paper-45); }
.chip-ui__value { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; font-variant-numeric: tabular-nums; }
.chip-ui__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--paper-25); }
.chip-ui__dot--ok { background: var(--accent); }
.chip-ui__dot--pending { background: var(--paper-45); animation: pulse 1.6s infinite; }

/* ============================================================
   LIVE SCORING FLAGSHIP
   ============================================================ */
.live { background: var(--bg-2); padding: 140px var(--pad); position: relative; }
.live__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.live__title { font-size: clamp(34px, 5vw, 58px); text-transform: uppercase; }
.live__sub { margin-top: 22px; color: var(--paper-65); font-size: 16px; max-width: 460px; line-height: 1.7; }

.live__demo { display: flex; flex-direction: column; gap: 18px; }
.live__demo-row { display: flex; gap: 24px; align-items: flex-start; }
.live__demo-stack { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 18px; }

.phone-proof {
  flex-shrink: 0; width: 168px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.phone-proof__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--paper-65); text-align: center; line-height: 1.3;
}
.phone-proof__video {
  width: 100%; aspect-ratio: 9 / 16.4; object-fit: cover;
  border-radius: 22px; border: 3px solid var(--line-strong);
  background: var(--card); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}

.judge-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  transition: border-color .4s, box-shadow .4s;
}
.judge-card.is-validated { border-color: var(--accent-line); box-shadow: 0 0 0 1px var(--accent-line), 0 20px 50px -20px rgba(255,90,30,0.35); }
.judge-card__label { font-size: 12px; font-weight: 600; color: var(--paper-45); text-transform: uppercase; letter-spacing: 0.06em; }
.judge-card__score { font-size: 22px; font-weight: 800; font-variant-numeric: tabular-nums; margin-right: auto; }
.judge-card__status { font-size: 13px; font-weight: 600; color: var(--paper-45); padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-strong); transition: all .3s; }
.judge-card.is-validated .judge-card__status { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.live-board { display: flex; flex-direction: column; gap: 8px; }
.live-board__row {
  display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px;
  transition: transform .6s var(--ease), border-color .4s, background .4s;
}
.live-board__row.is-top { border-color: var(--accent-line); background: var(--accent-dim); }
.live-board__row.is-flash { border-color: var(--accent); }
.lb-rank { font-weight: 800; font-size: 15px; color: var(--paper-45); }
.live-board__row.is-top .lb-rank { color: var(--accent); }
.lb-who { display: flex; flex-direction: column; }
.lb-who strong { font-size: 14.5px; font-weight: 600; }
.lb-who em { font-style: normal; font-size: 12px; color: var(--paper-45); }
.lb-score { font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums; }

/* ============================================================
   BUZZ FLAGSHIP
   ============================================================ */
.buzz { background: var(--bg-1); padding: 140px var(--pad); border-top: 1px solid var(--line); }
.buzz__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.buzz__facts { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.buzz__facts li {
  position: relative; padding-left: 22px; font-size: 14.5px; color: var(--paper-85); font-weight: 500;
}
.buzz__facts li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent); transform: rotate(45deg);
}

.buzz-frame { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 300px; margin: 0 auto; }
.buzz-frame__video {
  width: 100%; aspect-ratio: 9 / 15; object-fit: cover;
  border-radius: 22px; border: 3px solid var(--line-strong);
  background: var(--card); box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7);
}

/* ============================================================
   GET THE APP
   ============================================================ */
.get-app { background: var(--bg-1); padding: 100px var(--pad); border-top: 1px solid var(--line); }
.get-app__inner {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px;
}
.get-app__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.get-app__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px;
  border-radius: 999px; border: 1px solid var(--line-strong); color: var(--paper);
  font-weight: 600; font-size: 14px;
  background: rgba(23,19,13,0.03); transition: border-color .2s, transform .2s, color .2s;
}
.get-app__badge:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   PROOF / EVENTS MARQUEE
   ============================================================ */
.proof { background: var(--bg-1); padding: 120px 0; border-top: 1px solid var(--line); }
.proof__grid {
  max-width: var(--container); margin: 0 auto 56px; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.proof__head { max-width: 560px; }
.proof__head h2 { font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; margin-top: 2px; }

.proof-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card); box-shadow: 0 20px 50px -24px rgba(23,19,13,0.3); }
.proof-photo img { width: 100%; height: 320px; object-fit: cover; display: block; }
.proof-photo figcaption {
  padding: 14px 18px; font-size: 12.5px; color: var(--paper-45); font-weight: 500;
  border-top: 1px solid var(--line);
}

.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee__track { display: flex; width: max-content; gap: 44px; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-size: clamp(22px, 3.2vw, 34px); font-weight: 800; text-transform: uppercase; color: transparent;
  -webkit-text-stroke: 1px var(--paper-25); white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   TEAM / SUPPORT
   ============================================================ */
.team { background: var(--bg-2); padding: 120px var(--pad); }
.team__grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.team__copy h2 { font-size: clamp(28px, 3.6vw, 42px); text-transform: none; }
.team__copy .phase__sub { margin-top: 20px; margin-bottom: 32px; }

.support-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; max-width: 400px; margin-left: auto; }
.support-card__head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--paper-65); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.support-card__msg { font-size: 13.5px; line-height: 1.5; padding: 12px 15px; border-radius: 14px; margin-bottom: 10px; max-width: 88%; }
.support-card__msg--in { background: var(--card-2); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.support-card__msg--out { background: var(--accent-dim); border: 1px solid var(--accent-line); color: var(--paper); margin-left: auto; border-bottom-right-radius: 4px; opacity: 0; }
.support-card__typing { display: flex; gap: 4px; padding: 6px 4px 0; opacity: 0; }
.support-card__typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--paper-25); animation: typing 1.2s infinite; }
.support-card__typing span:nth-child(2) { animation-delay: .15s; }
.support-card__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* ============================================================
   BOOST / REACH
   ============================================================ */
.boost { background: var(--bg-1); padding: 120px var(--pad); border-top: 1px solid var(--line); }
.boost__grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.boost-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.boost-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.boost-card p { font-size: 14px; color: var(--paper-65); line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-1); padding: 120px var(--pad); border-top: 1px solid var(--line); }
.pricing__head { max-width: 640px; margin: 0 auto 40px; }
.pricing__head h2 { font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; margin-top: 2px; }

.pricing__banner {
  max-width: var(--container); margin: 0 auto 56px;
  background: var(--accent-dim); border: 1px solid var(--accent-line); border-radius: var(--radius);
  padding: 22px 26px;
}
.pricing__banner-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.pricing__banner p { font-size: 15px; color: var(--paper-85); max-width: 720px; line-height: 1.6; }

.pricing__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start;
}
.price-card {
  position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(23,19,13,0.04);
}
.price-card--best {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, var(--accent-dim), var(--card) 60%);
  box-shadow: 0 24px 48px -24px rgba(255, 90, 30, 0.35);
}
.price-card__badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.price-card__price { font-size: 22px; font-weight: 800; }
.price-card__price span { font-variant-numeric: tabular-nums; }
.price-card__price:not(.price-card__price--sub) { color: var(--paper); }
.price-card__price--sub { font-size: 13px; font-weight: 600; color: var(--paper-45); margin-top: 4px; margin-bottom: 18px; }
.price-card__price--sub span { font-weight: 700; color: var(--paper-65); }
.price-card__list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.price-card__list li { font-size: 13.5px; color: var(--paper-65); padding-left: 16px; position: relative; }
.price-card__list li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; background: var(--bg-2); padding: 160px var(--pad); overflow: hidden; text-align: center; }
.final-cta .hero__field { background: transparent; }
.final-cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(36px, 6vw, 64px); text-transform: uppercase; }
.final-cta p { margin: 22px auto 0; max-width: 480px; color: var(--paper-65); font-size: 16px; }
.final-cta .hero__cta { justify-content: center; margin-top: 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 64px var(--pad) 28px; }
.footer__inner { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer__logo { height: 18px; margin-bottom: 14px; }
.footer__brand p { color: var(--paper-45); font-size: 14px; max-width: 220px; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col span { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-45); margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: var(--paper-65); transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  max-width: var(--container); margin: 56px auto 0; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--paper-25);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.timeline .reveal:nth-child(2) { transition-delay: 0.08s; }
.timeline .reveal:nth-child(3) { transition-delay: 0.16s; }
.timeline .reveal:nth-child(4) { transition-delay: 0.24s; }
.timeline .reveal:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .timeline, .timeline--5, .timeline--3 { flex-direction: column; }
  .timeline::before { top: 0; bottom: 0; left: 15px; right: auto; width: 1px; height: auto; }
  .timeline__step { padding: 0 0 34px 0 !important; flex-direction: row; gap: 20px; align-items: flex-start; }
  .timeline__step:last-child { padding-bottom: 0 !important; }
  .timeline__num { margin-bottom: 0; }
  .live__inner, .team__grid { grid-template-columns: 1fr; }
  .live__demo { max-width: 560px; }
  .support-card { margin: 0; max-width: 100%; }
  .proof__grid { grid-template-columns: 1fr; }
  .buzz__inner { grid-template-columns: 1fr; }
  .buzz-frame { max-width: 340px; margin: 0 auto; }
  .pricing__grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 16px; margin: 0 calc(var(--pad) * -1); padding: 4px var(--pad) 12px;
    -webkit-overflow-scrolling: touch;
  }
  .price-card { flex: 0 0 280px; scroll-snap-align: start; }
  .boost__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero__sub { max-width: 100%; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions .btn--sm { display: none; }
  .nav__actions .nav__langswitch { display: none; }

  .hero { padding: 120px 20px 64px; min-height: auto; }
  .hero__title { font-size: clamp(34px, 11vw, 48px); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }

  .credibility__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat__divider { display: none; }

  .phase { padding: 80px 20px; }

  .live { padding: 90px 20px; }
  .buzz { padding: 90px 20px; }
  .get-app { padding: 56px 20px; }
  .live__demo-row { flex-direction: column; align-items: center; }
  .phone-proof { width: 150px; }
  .get-app__badges { flex-direction: column; align-items: stretch; }
  .final-cta { padding: 110px 20px; }
  .final-cta .hero__cta { flex-direction: column; }
  .final-cta .btn { width: 100%; }

  .team { padding: 90px 20px; }

  .boost { padding: 80px 20px; }
  .pricing { padding: 80px 20px; }
  .pricing__grid { margin: 0 -20px; padding: 4px 20px 12px; }

  .footer { padding: 56px 20px 24px; }
  .footer__inner { flex-direction: column; gap: 36px; }
  .footer__cols { gap: 36px; }
}
