/* ============================================================
   WeBall Club — landing page
   Brand tokens mirror @weball-club/ui-tokens (dark scheme).
   The page reads as a match: 00' kickoff → 90'+ full time.
   ============================================================ */

:root {
  /* surfaces */
  --night: #0a0a0a;
  --pitch: #0d0b06;
  --surface: #1e1910;
  --surface-hi: #241d0f;
  --surface-2: #2d2516;
  /* brand gold */
  --gold: #d4af37;
  --gold-bright: #f4d770;
  --gold-deep: #a9842b;
  --grad-gold: linear-gradient(135deg, #f6dc86 0%, #d9b441 55%, #b8902c 100%);
  /* chalk (text) */
  --chalk: #f6f1e3;
  --chalk-dim: rgba(246, 241, 227, 0.6);
  --chalk-mute: rgba(246, 241, 227, 0.34);
  --chalk-ghost: rgba(246, 241, 227, 0.14);
  /* second team */
  --slate: #9aa3b2;
  --slate-bright: #c2c8d2;
  /* status */
  --green: #3fc873;
  /* lines */
  --line: rgba(212, 175, 55, 0.16);
  --line-strong: rgba(212, 175, 55, 0.34);
  --line-soft: rgba(255, 255, 255, 0.07);
  /* type */
  --font-display: "Saira Condensed", "Saira", sans-serif;
  --font-head: "Saira", sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "Chivo Mono", ui-monospace, monospace;
  /* layout */
  --wrap: 1180px;
  --pad: clamp(20px, 4.5vw, 48px);
  --section: clamp(96px, 14vh, 170px);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--night);
  color: var(--chalk);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: #1a1306; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(var(--wrap), 100% - var(--pad) * 2);
  margin-inline: auto;
}

/* ---------- shared type roles ---------- */

.clock {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.clock::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--line-strong);
}
.clock .clock-note { color: var(--chalk-mute); letter-spacing: 0.18em; }

h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
}

.gold-ink {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  color: var(--chalk-dim);
  font-size: clamp(16px, 1.7vw, 18px);
  max-width: 54ch;
}

/* reveal-on-scroll seed state (JS animates; no-JS stays visible) */
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 18px;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.is-scrolled {
  padding-block: 12px;
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand .shield { height: 34px; width: auto; }
.brand .word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.24em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}
.nav-links > a:not(.btn) {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-dim);
  transition: color 0.25s ease;
}
.nav-links > a:not(.btn):hover { color: var(--gold-bright); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn-gold {
  background: var(--grad-gold);
  color: #1a1306;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.22);
}
.btn-gold:hover { box-shadow: 0 10px 34px rgba(212, 175, 55, 0.36); }

/* ============================================================
   HERO — 00' kickoff
   ============================================================ */

.hero {
  position: relative;
  /* vh first as the fallback: in-app browsers (WhatsApp, Instagram, older
     WebViews) that don't support svh get a full-height hero instead of
     collapsing to auto — which is what left the canvas mis-sized when the
     page was opened from a shared link. */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  /* floodlight wash behind the canvas */
  background:
    radial-gradient(120% 90% at 50% 108%, rgba(212, 175, 55, 0.14) 0%, transparent 58%),
    radial-gradient(90% 60% at 50% -10%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
    var(--night);
}

#pitch-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* legibility scrim over the canvas */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(75% 55% at 50% 46%, rgba(10, 10, 10, 0.55) 0%, transparent 72%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, transparent 22%, transparent 72%, var(--night) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-block: 140px 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero .clock { justify-content: center; }
.hero .clock::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--line-strong);
}

.hero h1 {
  font-size: clamp(54px, 10.2vw, 148px);
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding-block: 0.03em; /* keep descenders inside the clip */
}
.hero h1 .char {
  display: inline-block;
  will-change: transform;
}
/* split words must never break mid-word */
.hero h1 .word,
.statement-line .word {
  display: inline-block;
  white-space: nowrap;
}
/* transformed child chars break background-clip on the parent,
   so the gold line carries its gradient per character */
.hero h1 .gold-ink .char {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede { margin-inline: auto; }

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* store badges — placeholders, swap href when live */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(30, 25, 16, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.store-badge:hover {
  border-color: var(--gold);
  background: rgba(45, 37, 22, 0.85);
}
.store-badge svg { width: 26px; height: 26px; fill: var(--chalk); flex: none; }
.store-badge .sb-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}
.store-badge .sb-text small {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chalk-dim);
}
.store-badge .sb-text strong {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--chalk);
}

.web-link {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--chalk-dim);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.web-link svg { width: 15px; height: 15px; stroke: currentColor; }
.web-link:hover { color: var(--gold-bright); border-color: var(--gold); gap: 13px; }

/* social rail — pinned left on desktop */
.social-rail {
  position: absolute;
  left: clamp(14px, 2.6vw, 34px);
  bottom: 42px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.social-rail::after {
  content: "";
  width: 1px;
  height: 74px;
  background: linear-gradient(180deg, var(--line-strong), transparent);
}
.social-rail a,
.social-links a {
  color: var(--chalk-mute);
  transition: color 0.25s ease, transform 0.25s ease;
}
.social-rail a:hover,
.social-links a:hover { color: var(--gold-bright); transform: translateY(-2px); }
.social-rail svg,
.social-links svg { width: 19px; height: 19px; fill: currentColor; }

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chalk-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: var(--line-strong);
  animation: cue-drop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue-drop {
  0%, 100% { transform: scaleY(0.35); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue::after { animation: none; }
}

/* ============================================================
   TICKER — matchday feed
   ============================================================ */

.ticker {
  border-block: 1px solid var(--line);
  background: rgba(30, 25, 16, 0.35);
  overflow: hidden;
  padding-block: 15px;
  position: relative;
  z-index: 3;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker-roll 34s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
@keyframes ticker-roll {
  to { transform: translateX(-50%); }
}
.ticker-set {
  display: flex;
  align-items: center;
  flex: none;
}
.ticker-set span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-dim);
  white-space: nowrap;
  padding-inline: 30px;
  position: relative;
}
.ticker-set span::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
  transform: translateY(-50%);
  opacity: 0.7;
}
.ticker-set b { color: var(--gold-bright); font-weight: 500; }
.ticker-set i { color: var(--slate-bright); font-style: normal; }

/* ============================================================
   FEATURES — first half
   ============================================================ */

.features { padding-block: var(--section) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.section-head h2 { font-size: clamp(40px, 6vw, 74px); }

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(44px, 6vw, 80px);
}
.feature + .feature { border-top: 1px solid var(--line-soft); }
.feature:nth-child(even) .feature-visual { order: -1; }

.feature-copy { display: flex; flex-direction: column; gap: 18px; }
.feature-copy h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1;
}
.feature-copy p { color: var(--chalk-dim); max-width: 46ch; }
.feature-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.feature-copy li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--chalk-dim);
  font-size: 15px;
}
.feature-copy li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-1px);
}

/* ---------- app vignettes (hand-built mini UI) ---------- */

.feature-visual { display: flex; justify-content: center; }

.vignette {
  width: min(390px, 100%);
  background: linear-gradient(180deg, var(--surface-hi), #161209);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px 24px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 0 90px rgba(212, 175, 55, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}
.vg-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.vg-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.vg-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-mute);
}
.vg-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(63, 200, 115, 0.4);
  color: var(--green);
  white-space: nowrap;
}
.vg-pill.gold {
  border-color: var(--line-strong);
  color: var(--gold-bright);
}

.vg-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-soft);
  border-radius: 13px;
}
.vg-row .who { flex: 1; min-width: 0; }
.vg-row .who b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vg-row .who small {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--chalk-mute);
  text-transform: uppercase;
}
.vg-row .tick { color: var(--green); font-weight: 700; font-size: 13px; flex: none; }
.vg-row .tick.wait { color: var(--gold); }

.avatar {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12.5px;
  color: #1a1306;
  background: var(--grad-gold);
}
.avatar.slate { background: linear-gradient(135deg, #c2c8d2, #9aa3b2); color: #10131a; }
.avatar.dim { background: var(--surface-2); color: var(--chalk-dim); border: 1px solid var(--line-soft); }

/* team-picker vignette */
.vg-teams { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vg-team {
  border-radius: 13px;
  border: 1px solid var(--line);
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vg-team.slate { border-color: rgba(154, 163, 178, 0.28); }
.vg-team-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vg-team.slate .vg-team-name { color: var(--slate-bright); }
.vg-team-name em {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
}
.vg-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--chalk-dim);
}
.vg-player i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--chalk-mute);
}

.vg-balance { display: flex; flex-direction: column; gap: 8px; }
.vg-balance-bar {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0 51%, var(--slate) 51% 100%);
  position: relative;
}
.vg-balance-bar::after {
  content: "";
  position: absolute;
  left: 51%;
  top: -3.5px;
  width: 2px;
  height: 14px;
  background: var(--chalk);
  border-radius: 2px;
}
.vg-balance-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vg-balance-label .verdict { color: var(--green); }
.vg-balance-label .avg { color: var(--chalk-mute); }

/* league table vignette */
.vg-table { display: flex; flex-direction: column; gap: 7px; }
.vg-trow {
  display: grid;
  grid-template-columns: 26px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13.5px;
  font-weight: 600;
}
.vg-trow.lead {
  border-color: var(--line-strong);
  background: rgba(212, 175, 55, 0.07);
}
.vg-trow .pos {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chalk-mute);
}
.vg-trow.lead .pos { color: var(--gold-bright); }
.vg-trow .pts {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--chalk-dim);
}
.form { display: inline-flex; gap: 4px; }
.form s {
  text-decoration: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.form .w { background: var(--green); }
.form .d { background: var(--slate); }
.form .l { background: #e5484d; }

/* ============================================================
   STATEMENT — 60', split-char scroll
   ============================================================ */

.statement {
  padding-block: var(--section);
  text-align: center;
}
.statement .clock { justify-content: center; margin-bottom: 40px; }
.statement .clock::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--line-strong);
}
.statement-line {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 7.2vw, 96px);
  line-height: 1.02;
  max-width: 16ch;
  margin-inline: auto;
  color: var(--chalk-ghost);
}
.statement-line .char { display: inline-block; }
.statement-line .word { display: inline-block; white-space: nowrap; }
/* chars lit by JS; without JS show full color */
html:not(.js) .statement-line { color: var(--chalk); }
html:not(.js) .statement-line .gold-word { color: var(--gold); }

/* ---------- stat band — 75' ---------- */

.stats {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(212, 175, 55, 0.06), transparent 70%),
    rgba(30, 25, 16, 0.3);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(34px, 4.5vw, 56px) 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat + .stat { border-left: 1px solid var(--line-soft); }
.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk-mute);
}

/* ============================================================
   FAQ — 80'
   ============================================================ */

.faq { padding-block: var(--section) 0; }
.faq .section-head { margin-bottom: clamp(36px, 5vw, 64px); }

.faq-list {
  max-width: 780px;
  border-top: 1px solid var(--line-soft);
}
.faq-list details {
  border-bottom: 1px solid var(--line-soft);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(16px, 1.9vw, 19px);
  transition: color 0.25s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--gold-bright); }
.faq-x {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}
.faq-x::before,
.faq-x::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-x::after { transform: translateY(-50%) rotate(90deg); }
details[open] .faq-x::after { transform: translateY(-50%) rotate(0deg); }
details[open] summary { color: var(--gold-bright); }
.faq-list details > p {
  padding: 0 4px 24px;
  color: var(--chalk-dim);
  max-width: 62ch;
}
.faq-list details > p a {
  color: var(--gold-bright);
  border-bottom: 1px solid var(--line-strong);
}

/* ============================================================
   FULL TIME — 90'+, conversion
   ============================================================ */

.fulltime {
  position: relative;
  padding-block: var(--section);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(90% 80% at 50% 115%, rgba(212, 175, 55, 0.16), transparent 62%),
    var(--night);
}
/* center-circle chalk mark rising from the bottom edge */
.fulltime::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32vw;
  width: 64vw;
  height: 64vw;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}
.fulltime .wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.fulltime .clock { justify-content: center; }
.fulltime .clock::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--line-strong);
}
.fulltime h2 { font-size: clamp(48px, 8vw, 108px); max-width: 12ch; }
.fulltime .lede { margin-inline: auto; }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  border-top: 1px solid var(--line);
  padding-block: 54px 40px;
}
.foot-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
}
.foot-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-dim);
  transition: color 0.25s ease;
}
.foot-links a:hover { color: var(--gold-bright); }
.social-links { display: flex; gap: 18px; }

.foot-base {
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.foot-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
}
.foot-fine {
  font-size: 12px;
  color: var(--chalk-mute);
  max-width: 62ch;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature:nth-child(even) .feature-visual { order: 0; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line-soft); }
}

@media (max-width: 720px) {
  .nav-links > a:not(.btn) { display: none; }
  .brand .word { font-size: 13px; letter-spacing: 0.18em; }
  .social-rail { display: none; }
  .scroll-cue { display: none; }
  .hero-inner { padding-block: 120px 90px; }
  .hero h1 { font-size: clamp(42px, 13vw, 88px); }
  .store-row { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
  .foot-grid { flex-direction: column; align-items: flex-start; }
  .foot-base { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .btn { padding: 12px 20px; }
  .vignette { padding: 20px 16px; }
}
