/* ============================================================
   SquadStats — brand system
   Dark only · flat · hairlines · gold reserved for CTA/nav/logo
   ============================================================ */
:root {
  --bg: #0B0B0F;
  --surface: #16161C;
  --surface-high: #1E1E26;
  --border: #26262F;
  --text: #FFFFFF;
  --secondary: #9A9AA8;
  --muted: #848494;
  --gold: #F3B229;
  --gold-tint: rgba(243, 178, 41, 0.1);
  /* severity — ONLY inside product mockups / data-viz vignettes */
  --sev-green: #33C27D;
  --sev-amber: #EE9A3A;
  --sev-red: #EE4D55;
  --sev-blue: #4B8FE8;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, sans-serif;
  --mono: 'JetBrains Mono', Menlo, monospace;
  --radius: 10px;
}

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

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

::selection { background: rgba(243, 178, 41, 0.25); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.num, .mono { font-family: var(--mono); font-weight: 400; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.logo-tile {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 900;
  font-size: 16px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 13.5px;
  color: var(--secondary);
  padding: 7px 12px;
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-high); }
.nav-links a.active { color: var(--gold); background: var(--gold-tint); }
.nav-cta { display: flex; align-items: center; gap: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.btn-gold { background: var(--gold); color: var(--bg); font-weight: 700; }
.btn-gold:hover { background: #E5A722; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface-high); }
.btn-sm { height: 36px; padding: 0 16px; font-size: 13.5px; }

/* ---------- Scrub sections (cinematic) ---------- */
.scrub { position: relative; }
.scrub-tall { height: 640vh; }
.scrub-mid { height: 380vh; }
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
}
.sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* subtle film grain — hero only */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* legibility scrim over the hero footage — keeps white copy readable on bright clips */
#hero .sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(8, 8, 12, 0.34) 0%, rgba(8, 8, 12, 0.30) 45%, rgba(8, 8, 12, 0.5) 100%),
    linear-gradient(to bottom, rgba(8, 8, 12, 0.55) 0%, rgba(8, 8, 12, 0.12) 26%, rgba(8, 8, 12, 0.12) 72%, rgba(8, 8, 12, 0.5) 100%);
}
.overlay { position: relative; z-index: 10; text-align: center; padding: 0 24px; width: 100%; }
/* the engine drives opacity + translateY; centering via inset grid */
.reveal-line {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  opacity: 0;
  will-change: opacity, transform;
}

.hero-copy { padding: 0 24px; }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.04;
  max-width: 820px;
  margin: 18px auto 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.hero-copy .sub {
  margin: 22px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}
.hero-ctas { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.scrub-line {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65);
}
.scrub-line small {
  display: block;
  margin-top: 14px;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.overlay .eyebrow { color: var(--gold); opacity: 0.9; }

.scroll-hint {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: opacity 0.3s;
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; border-top: 1px solid var(--border); background: var(--bg); position: relative; z-index: 5; }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 14px; line-height: 1.15; }
.section-head p { margin-top: 16px; color: #B8B8CA; font-size: 1.05rem; line-height: 1.65; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* reveals */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Module grid ---------- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.module {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: background-color 0.25s, border-color 0.2s;
}
.module:hover { background: var(--surface-high); border-color: #35353F; }
.module svg { width: 16px; height: 16px; stroke: var(--secondary); }
.module h3 { font-size: 15px; font-weight: 600; margin-top: 14px; }
.module p { font-size: 13.5px; color: #A0A0B2; line-height: 1.55; margin-top: 7px; }

/* Featured modules — Dashboard y Ask AI */
.module--featured {
  border-top: 2px solid rgba(243, 178, 41, 0.5);
  background: linear-gradient(155deg, rgba(243, 178, 41, 0.05) 0%, var(--surface) 55%);
}
.module--featured:hover {
  background: linear-gradient(155deg, rgba(243, 178, 41, 0.09) 0%, var(--surface-high) 55%);
  border-color: rgba(243, 178, 41, 0.35);
  border-top-color: rgba(243, 178, 41, 0.6);
}
.module--featured > svg { stroke: var(--gold); width: 20px; height: 20px; }

/* Plan badges — esquina superior derecha */
.module-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  pointer-events: none;
}
.module-badge--pro {
  background: rgba(243, 178, 41, 0.1);
  color: var(--gold);
  border: 1px solid rgba(243, 178, 41, 0.22);
}
.module-badge--elite {
  background: rgba(243, 178, 41, 0.16);
  color: var(--gold);
  border: 1px solid rgba(243, 178, 41, 0.42);
}

/* ---------- Mockup shell (product screenshots) ---------- */
.mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.mockup-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-high); border: 1px solid var(--border); }
.mockup-bar span { margin-left: 8px; font-size: 11.5px; color: var(--muted); font-family: var(--mono); }
.mockup-body { display: grid; grid-template-columns: 188px 1fr; min-height: 480px; }

.mock-side { border-right: 1px solid var(--border); padding: 14px 10px; display: flex; flex-direction: column; gap: 2px; }
.mock-side .brand { padding: 6px 10px 14px; font-size: 13px; }
.mock-side .logo-tile { width: 20px; height: 20px; font-size: 12px; border-radius: 6px; }
.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--secondary);
  padding: 7px 10px;
  border-radius: 8px;
}
.mock-nav-item svg { width: 14px; height: 14px; stroke: currentColor; }
.mock-nav-item.active { color: var(--gold); background: var(--gold-tint); }

.mock-main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

/* KPI strip */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.kpi { padding: 14px 18px; }
.kpi + .kpi { border-left: 1px solid var(--border); }
.kpi label {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.kpi b { font-family: var(--mono); font-weight: 400; font-size: 22px; margin-top: 6px; display: block; }
.kpi-strip.cols2 { grid-template-columns: repeat(2, 1fr); }
.kpi-strip.cols2 .kpi:nth-child(odd) { border-left: none; }
.kpi-strip.cols2 .kpi:nth-child(n+3) { border-top: 1px solid var(--border); }

.mock-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.mock-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.mock-card h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ScorePill — dot + label + value (never color alone) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  color: var(--secondary);
  background: var(--surface);
}
.pill i { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.pill b { font-family: var(--mono); font-weight: 400; color: var(--text); }
.dot-g { background: var(--sev-green); }
.dot-a { background: var(--sev-amber); }
.dot-r { background: var(--sev-red); }
.dot-b { background: var(--sev-blue); }

/* ACWR bars with thresholds */
.acwr-chart { position: relative; padding: 4px 0 2px; }
.acwr-row { display: grid; grid-template-columns: 34px 1fr minmax(118px, auto); align-items: center; gap: 10px; margin: 9px 0; }
.acwr-row .who {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-high);
  border: 1px solid var(--border);
  font-size: 9px;
  font-weight: 600;
  color: var(--secondary);
  display: grid;
  place-items: center;
}
.acwr-track { position: relative; height: 8px; background: var(--surface-high); border-radius: 4px; }
.acwr-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 4px; }
.acwr-fill.g { background: var(--sev-green); }
.acwr-fill.a { background: var(--sev-amber); }
.acwr-fill.r { background: var(--sev-red); }
.acwr-fill.b { background: var(--sev-blue); }
.acwr-val { display: flex; align-items: center; justify-content: flex-end; gap: 7px; font-size: 10.5px; color: var(--secondary); }
.acwr-track .tick { position: absolute; top: -3px; bottom: -3px; width: 1px; background: var(--border); z-index: 2; }
.acwr-scale { position: relative; height: 16px; margin-left: 44px; margin-right: 128px; }
.acwr-scale span {
  position: absolute;
  top: 4px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
}

/* Zone donut */
.donut-wrap { display: flex; align-items: center; gap: 18px; }
.donut {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--sev-green) 0 210deg, var(--sev-amber) 210deg 285deg, var(--sev-red) 285deg 315deg, var(--sev-blue) 315deg 360deg);
  display: grid;
  place-items: center;
  flex: none;
}
.donut i {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-style: normal;
  font-size: 18px;
}
.donut-legend { display: flex; flex-direction: column; gap: 7px; }

/* Wellness heatmap 14 días */
.heatmap { display: grid; grid-template-columns: 34px 1fr; gap: 6px 10px; align-items: center; }
.heatmap .who {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-high);
  border: 1px solid var(--border);
  font-size: 9px;
  font-weight: 600;
  color: var(--secondary);
  display: grid;
  place-items: center;
}
.hm-row { display: grid; grid-template-columns: repeat(14, 1fr); gap: 4px; }
.hm-row i {
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--surface-high);
  font-family: var(--mono);
  font-style: normal;
  font-size: 8px;
  color: var(--bg);
  display: grid;
  place-items: center;
}
.hm-row i.g { background: var(--sev-green); }
.hm-row i.a { background: var(--sev-amber); }
.hm-row i.r { background: var(--sev-red); }
.hm-days { display: grid; grid-template-columns: repeat(14, 1fr); gap: 4px; grid-column: 2; }
.hm-days span { font-family: var(--mono); font-size: 8px; color: var(--muted); text-align: center; }

/* Player rows + recovery rings */
.player-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.player-row + .player-row { border-top: 1px solid var(--border); }
.player-row .who {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface-high);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  color: var(--secondary);
  display: grid;
  place-items: center;
  flex: none;
}
.player-row .meta { flex: 1; min-width: 0; }
.player-row .meta b { display: block; font-size: 12.5px; font-weight: 600; }
.player-row .meta span { font-size: 10.5px; color: var(--muted); }
.ring { width: 34px; height: 34px; flex: none; position: relative; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring .track { stroke: var(--surface-high); }
.ring b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9px;
}

/* Live feed (match tagging) */
.feed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 12.5px;
  color: var(--secondary);
}
.feed-row + .feed-row { border-top: 1px solid var(--border); }
.feed-row .min { font-family: var(--mono); font-size: 11px; color: var(--muted); width: 32px; flex: none; }
.feed-row svg { width: 13px; height: 13px; stroke: var(--secondary); flex: none; }
.feed-row b { color: var(--text); font-weight: 600; }

/* ---------- App móvil ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.phone {
  width: min(320px, 88vw);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 16px;
}
.phone-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 14px; }
.phone-head b { font-size: 14px; }
.phone-head span { font-size: 11px; color: var(--muted); display: block; }
.streak {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--secondary);
  background: var(--bg);
}
.streak b { font-family: var(--mono); font-weight: 400; color: var(--text); }
.q-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 8px;
}
.q-card label { font-size: 12px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.q-card label b { font-family: var(--mono); font-weight: 400; font-size: 12px; color: var(--secondary); }
.q-dots { display: flex; gap: 6px; margin-top: 9px; }
.q-dots i {
  flex: 1;
  height: 7px;
  border-radius: 4px;
  background: var(--surface-high);
}
.q-dots i.on { background: var(--text); }
.rpe-line { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; font-weight: 600; }
.rpe-line b { font-family: var(--mono); font-weight: 400; color: var(--secondary); font-size: 12px; }
.phone .btn { width: 100%; margin-top: 10px; }
.phone-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 12px;
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.5;
  padding: 0 4px;
}
.phone-note svg { width: 12px; height: 12px; stroke: var(--muted); flex: none; margin-top: 1px; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: #B8B8CA; font-size: 15px; line-height: 1.6; }
.checklist svg { width: 15px; height: 15px; stroke: var(--text); flex: none; margin-top: 4px; }
.checklist b { color: var(--text); font-weight: 600; }

/* stats strip (facts from product spec) */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-top: 36px;
}
.stat { padding: 20px 24px; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat b { font-family: var(--mono); font-weight: 400; font-size: 28px; display: block; }
.stat span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Multideporte ---------- */
.sport-cats { display: flex; flex-direction: column; gap: 22px; }
.sport-cat-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 11px;
}
.sport-chips { display: flex; flex-wrap: wrap; gap: 8px; max-width: 860px; }
.chip {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--secondary);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.chip:hover {
  background: var(--surface-high);
  color: var(--text);
  border-color: rgba(243, 178, 41, 0.45);
  transform: translateY(-1px);
}
.chip.first { color: var(--text); background: var(--surface-high); font-weight: 600; }
.sport-more { margin-top: 26px; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.sport-more b { color: var(--secondary); font-weight: 600; }

/* ---------- Precios ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-size: 17px; }
.price-card .tag { font-size: 13px; color: var(--muted); margin-top: 4px; }
.price { margin: 22px 0 6px; display: flex; align-items: baseline; gap: 8px; }
.price b { font-family: var(--mono); font-weight: 400; font-size: 42px; line-height: 1; }
.price span { font-size: 13px; color: var(--muted); }
.price-card ul { list-style: none; margin: 18px 0 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card li { display: flex; gap: 10px; font-size: 13.5px; color: #B8B8CA; line-height: 1.5; }
.price-card li svg { width: 14px; height: 14px; stroke: var(--text); flex: none; margin-top: 3px; }
.price-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 28px; }
.price-sublabel { font-size: 12px; color: var(--muted); font-style: italic; line-height: 1.5; margin-bottom: 18px; }

/* ---------- Privacidad ---------- */
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.privacy-card svg { width: 16px; height: 16px; stroke: var(--secondary); }
.privacy-card h3 { font-size: 15px; font-weight: 600; margin-top: 14px; }
.privacy-card p { font-size: 13.5px; color: #A0A0B2; line-height: 1.6; margin-top: 8px; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; padding: 130px 0; border-top: 1px solid var(--border); }
.final-cta h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 700px; margin: 18px auto 0; line-height: 1.1; }
.final-cta p { color: #B8B8CA; margin: 20px auto 0; max-width: 520px; font-size: 1.05rem; line-height: 1.65; }
.final-cta .hero-ctas { margin-top: 36px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 56px 0 40px; background: var(--surface); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px 48px;
}
.foot-brand p {
  font-size: 13.5px;
  color: var(--secondary);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 260px;
}
.foot-domain {
  display: inline-block;
  margin-top: 16px;
  font-size: 11.5px;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.04em;
}
.foot-col { display: flex; flex-direction: column; gap: 11px; }
.foot-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.foot-col a { font-size: 13.5px; color: var(--secondary); transition: color 0.2s; }
.foot-col a:hover { color: var(--text); }
.disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.disclaimer span { max-width: 680px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .nav-links { display: none; }
  .mockup-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-cols { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .price-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .kpi:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
  .kpi:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-strip { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--border); }
  .scrub-tall { height: 560vh; }
  .scrub-mid { height: 330vh; }
  .section { padding: 80px 0; }
}
