/* ============================================================
   Head Up FC — shared site styles
   Palette: Floodlit Night Match
   ============================================================ */

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0A0F1C;
  --surface: #13203A;
  --surface-2: #1A2B4D;
  --gold: #FFC83D;
  --gold-soft: rgba(255, 200, 61, 0.14);
  --ink: #0A0F1C;
  --text: #F4F7FE;
  --muted: #A3B2D0;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.06);
  --glass-bg: rgba(19, 32, 58, 0.46);
  --glass-bg-strong: rgba(19, 32, 58, 0.62);
  --shadow: 0 24px 60px rgba(2, 6, 16, 0.45);
  --radius: 20px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* ---- background system: aurora wash + pitch line art ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 620px at 78% -12%, rgba(255, 200, 61, 0.085), transparent 62%),
    radial-gradient(950px 700px at 8% 4%, rgba(64, 110, 255, 0.10), transparent 64%),
    radial-gradient(1300px 900px at 88% 86%, rgba(28, 150, 160, 0.07), transparent 66%),
    radial-gradient(800px 600px at 18% 92%, rgba(110, 70, 255, 0.05), transparent 62%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900' fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='2'%3E%3Cline x1='700' y1='-40' x2='700' y2='940'/%3E%3Ccircle cx='700' cy='450' r='190'/%3E%3Ccircle cx='700' cy='450' r='4' fill='%23ffffff' fill-opacity='0.045' stroke='none'/%3E%3Crect x='-120' y='195' width='330' height='510'/%3E%3Crect x='-120' y='305' width='130' height='290'/%3E%3Crect x='1190' y='195' width='330' height='510'/%3E%3Crect x='1390' y='305' width='130' height='290'/%3E%3Cpath d='M210 355 A155 155 0 0 1 210 545'/%3E%3Cpath d='M1190 355 A155 155 0 0 0 1190 545'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 18vh;
  background-size: max(1400px, 110vw) auto;
  pointer-events: none;
}

img { max-width: 100%; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

::selection { background: rgba(255, 200, 61, 0.28); color: #fff; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ---- typography helpers ---- */
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
h1, h2, h3 { font-weight: 800; letter-spacing: -0.022em; line-height: 1.12; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 28, 0.66);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 16.5px;
  color: var(--text);
  white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo svg { display: block; filter: drop-shadow(0 0 10px rgba(255, 200, 61, 0.35)); }
.logo .fc { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a { color: var(--muted); transition: color 0.18s ease; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #FFD668, var(--gold));
  color: var(--ink);
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 200, 61, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 200, 61, 0.32);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 15px 26px;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.25;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { text-decoration: none; }
.btn-gold {
  background: linear-gradient(180deg, #FFD668, var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(255, 200, 61, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 200, 61, 0.35); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.28); transform: translateY(-2px); }
.btn-store {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: default;
  text-align: left;
  gap: 12px;
}
.btn-store .store-lines { display: flex; flex-direction: column; line-height: 1.25; }
.btn-store .store-top {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.btn-store .store-main { font-size: 15.5px; font-weight: 600; }
.btn-store .store-main em { font-style: normal; color: var(--gold); }

/* ============================================================
   Glass card recipe
   ============================================================ */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: visible;
}
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -340px;
  transform: translateX(-50%);
  width: min(1100px, 100vw);
  height: 660px;
  background: radial-gradient(closest-side, rgba(255, 200, 61, 0.13), rgba(255, 200, 61, 0.04) 55%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.55rem, 5.4vw, 4.05rem);
  letter-spacing: -0.032em;
  line-height: 1.05;
  margin: 18px 0 20px;
}
.hero h1 .gold { color: var(--gold); }
.hero .sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  max-width: 34em;
  margin-bottom: 32px;
}
.hero .sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 200, 61, 0.32);
  background: rgba(255, 200, 61, 0.07);
  border-radius: 999px;
  padding: 7px 16px;
}
.hero-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 200, 61, 0.8);
}

/* ---- iPhone mockup (landscape) ---- */
.phone-stage { position: relative; perspective: 1500px; }
.phone-stage::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background:
    radial-gradient(60% 55% at 55% 45%, rgba(255, 200, 61, 0.13), transparent 70%),
    radial-gradient(55% 50% at 35% 65%, rgba(64, 110, 255, 0.16), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.phone {
  position: relative;
  z-index: 1;
  transform: rotateY(-9deg) rotateX(3.5deg) rotateZ(0.6deg);
  transform-style: preserve-3d;
  background: linear-gradient(150deg, #3a4254, #11141d 55%, #1c2230);
  border-radius: 38px;
  padding: 11px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.10),
    0 40px 90px rgba(2, 6, 16, 0.62),
    0 12px 30px rgba(2, 6, 16, 0.45);
  transition: transform 0.5s ease;
}
.phone:hover { transform: rotateY(-5deg) rotateX(2deg) rotateZ(0.3deg); }
.phone .screen {
  position: relative;
  border-radius: 27px;
  overflow: hidden;
  background: #060912;
}
.phone .screen img { display: block; width: 100%; height: auto; }
/* dynamic-island pill — landscape, so it sits on the left edge */
.phone .screen::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 56px;
  background: #04060c;
  border-radius: 8px;
}
.phone-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- trust strip ---- */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  background: rgba(10, 15, 28, 0.3);
}
.trust ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust li { display: inline-flex; align-items: center; gap: 9px; }
.trust li svg { flex: 0 0 auto; }

/* ============================================================
   Sections
   ============================================================ */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.section-head .lead { color: var(--muted); font-size: 1.06rem; }
.section-head .lead strong { color: var(--text); font-weight: 600; }

/* ---- stats band ---- */
.stats { padding: 64px 0 0; }
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 38px 12px;
}
.stat {
  text-align: center;
  padding: 6px 18px;
  border-left: 1px solid var(--line-soft);
}
.stat:first-child { border-left: none; }
.stat .num {
  display: block;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.stat .num .gold { color: var(--gold); }
.stat .label {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- features grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  padding: 30px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 61, 0.28);
  box-shadow: 0 28px 64px rgba(2, 6, 16, 0.55);
}
.feature .icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(160deg, rgba(255, 200, 61, 0.14), rgba(255, 200, 61, 0.04));
  border: 1px solid rgba(255, 200, 61, 0.22);
}
.feature h3 { font-size: 1.06rem; margin-bottom: 8px; letter-spacing: -0.012em; }
.feature p { color: var(--muted); font-size: 0.94rem; }
.feature p strong { color: var(--text); font-weight: 600; }

/* ---- science ---- */
.science-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.science-copy h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.science-copy .big-claim {
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 18px;
}
.science-copy .big-claim .gold { color: var(--gold); }
.science-copy p { color: var(--muted); margin-bottom: 16px; }
.science-copy .cite {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.85;
  border-left: 2px solid rgba(255, 200, 61, 0.5);
  padding-left: 12px;
}
.science-shot { padding: 14px; }
.science-shot img { display: block; width: 100%; height: auto; border-radius: 12px; }
.science-shot figcaption {
  padding: 14px 8px 4px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.six-x {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.six-x .figure {
  font-size: clamp(3.4rem, 7vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 36px rgba(255, 200, 61, 0.3);
}
.six-x .caption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 24em;
  line-height: 1.6;
}

/* ---- screenshots gallery ---- */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.shot {
  padding: 12px;
  transition: transform 0.3s ease;
}
.shot:nth-child(odd) { transform: rotate(-1.1deg); }
.shot:nth-child(even) { transform: rotate(1.1deg) translateY(14px); }
.shot:hover { transform: rotate(0deg) translateY(-4px); }
.shot img { display: block; width: 100%; height: auto; border-radius: 11px; }
.shot figcaption { padding: 13px 6px 4px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.shot figcaption strong { color: var(--text); font-weight: 600; }

/* ---- how it works ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step { padding: 30px 28px; position: relative; }
.step .step-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.step .step-num::after {
  content: "";
  height: 1px;
  width: 44px;
  background: linear-gradient(90deg, rgba(255, 200, 61, 0.6), transparent);
}
.step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }
.step p strong { color: var(--text); font-weight: 600; }

/* ---- download / final CTA ---- */
.download-panel {
  position: relative;
  text-align: center;
  padding: 72px 32px;
  overflow: hidden;
  background: var(--glass-bg-strong);
}
.download-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -240px;
  transform: translateX(-50%);
  width: min(760px, 100%);
  height: 460px;
  background: radial-gradient(closest-side, rgba(255, 200, 61, 0.17), transparent 72%);
  pointer-events: none;
}
.download-panel h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; position: relative; }
.download-panel p { color: var(--muted); max-width: 36em; margin: 0 auto 30px; position: relative; }
.download-panel .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  position: relative;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0 52px;
  font-size: 14px;
  color: var(--muted);
  background: rgba(8, 12, 22, 0.5);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.08em; font-size: 14.5px; color: var(--text); }
.footer-brand .fc { color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-legal {
  width: 100%;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  opacity: 0.8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

/* ============================================================
   Sub-pages (privacy / support)
   ============================================================ */
.page-main { padding: 72px 0 96px; }
.page-col { max-width: 720px; margin: 0 auto; }
.page-col h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 10px; }
.page-meta { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.page-card { padding: 34px 36px; margin-bottom: 22px; }
.page-card h2 { font-size: 1.15rem; margin-bottom: 10px; }
.page-card h2:not(:first-child) { margin-top: 30px; }
.page-card h2 .q { color: var(--gold); margin-right: 10px; }
.page-card p { color: var(--muted); margin-bottom: 14px; }
.page-card p:last-child { margin-bottom: 0; }
.page-card strong { color: var(--text); font-weight: 600; }
.page-card ul, .page-card ol { color: var(--muted); margin: 0 0 14px 22px; }
.page-card li { margin-bottom: 8px; }
.page-card li:last-child { margin-bottom: 0; }
.summary-card {
  border-color: rgba(255, 200, 61, 0.3);
  font-size: 1.05rem;
  padding: 28px 32px;
  margin-bottom: 28px;
}
.summary-card strong, .summary-card .gold { color: var(--gold); }
.contact-card { text-align: center; border-color: rgba(255, 200, 61, 0.3); margin-top: 34px; }

/* ============================================================
   Motion
   ============================================================ */
html.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s cubic-bezier(0.22, 0.6, 0.25, 1), transform 0.35s cubic-bezier(0.22, 0.6, 0.25, 1);
}
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .phone, .feature, .shot, .btn, .nav-cta { transition: none; }
  .shot:nth-child(odd), .shot:nth-child(even) { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .hero-grid { gap: 44px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .shots-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 880px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { text-align: center; }
  .hero .sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .phone-stage { max-width: 560px; margin: 0 auto; }
  .phone { transform: none; }
  .phone:hover { transform: none; }
  .science-grid { grid-template-columns: 1fr; gap: 40px; }
  .shots-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .shot:nth-child(even) { transform: rotate(1.1deg); }
  .steps { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .stat:nth-child(3) { border-left: none; }
  section { padding: 64px 0; }
}

@media (max-width: 700px) {
  /* Compact nav: drop the anchor links but keep Privacy + Support reachable */
  .nav { gap: 14px; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-links a:nth-child(-n+2) { display: none; } /* Features, Science */
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .nav { gap: 10px; }
  .logo { font-size: 13.5px; gap: 7px; letter-spacing: 0.05em; }
  .logo svg { width: 22px; height: 22px; }
  .nav-links { gap: 9px; font-size: 12.5px; }
  .nav-cta { padding: 7px 11px; font-size: 12.5px; }
}

@media (max-width: 374px) {
  .nav { gap: 8px; }
  .logo { font-size: 13px; letter-spacing: 0.02em; }
  .nav-links { gap: 8px; font-size: 12px; }
  .nav-cta { padding: 7px 10px; font-size: 12px; }
}

@media (max-width: 332px) {
  .nav-links { display: none; } /* legacy ultra-narrow: footer links remain */
}

@media (max-width: 480px) {
  .hero-pill {
    font-size: 9.5px;
    letter-spacing: 0.13em;
    padding: 6px 13px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .wrap { padding: 0 20px; }
  .btn { width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 30px 4px; }
  .stat { padding: 6px 10px; }
  .page-card { padding: 26px 22px; }
}

.footer-legal a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(255, 200, 61, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   Consent banner (GA4 Consent Mode v2)
   Fixed to the bottom of the viewport; shown only until the
   visitor chooses, then never again ('hufc-consent' in localStorage).
   Reuses the .glass recipe + .btn-gold / .btn-ghost button styles.
   ============================================================ */
.consent-banner {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 60; /* above the sticky header (50) */
  width: min(720px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  background: var(--glass-bg-strong);
}
.consent-banner[hidden] { display: none; } /* display:flex would defeat [hidden] otherwise */
.consent-banner h2 {
  font-size: 1rem;
  letter-spacing: -0.012em;
  margin-bottom: 4px;
}
.consent-banner p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.consent-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.consent-actions .btn {
  padding: 11px 18px;
  font-size: 14px;
  border-radius: 12px;
  font-family: var(--font);
  cursor: pointer;
}
.consent-actions .btn-gold { border: 0; }

@media (max-width: 700px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px;
  }
  .consent-actions .btn { flex: 1; width: auto; }
}
