/* DiveVerse marketing site.
   Brand tokens (--accent, radius scale, light/dark surfaces) mirror the
   Flutter app's theme.dart and the admin console's style.css, so this site
   reads as the same product. The ocean-gradient/glass/wave treatment below
   is unique to this site - it's the "front door", not a utility console. */

:root {
  color-scheme: light dark;

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;

  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-xl: 24px; --radius-pill: 20px; --radius-full: 999px;

  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-alt: #F5F5F5;
  --border: #EEEEEE;
  --text: rgba(0, 0, 0, 0.87);
  --text-secondary: #757575;
  --text-tertiary: #9E9E9E;

  /* Brand accent - fixed across light/dark, identical to the app + admin. */
  --accent: #2196F3;
  --accent-light: #4FC3F7;
  --accent-cyan: #26C6DA;
  --accent-deep: #0D47A1;
  --accent-bg: rgba(33, 150, 243, 0.1);

  /* Ocean gradient stops, used for the hero/quote/download/footer bands. */
  --ocean-950: #030B14;
  --ocean-900: #05192E;
  --ocean-800: #0A2A47;
  --ocean-700: #0E3D63;
  --ocean-600: #135180;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(5, 25, 46, 0.16);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 64px rgba(3, 11, 20, 0.55);

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121212;
    --surface: #1E1E1E;
    --surface-alt: #262626;
    --border: #333333;
    --text: #F5F5F5;
    --text-secondary: #B0B0B0;
    --text-tertiary: #8A8A8A;
    --accent-bg: rgba(33, 150, 243, 0.16);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav-toggle-label:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}

p { margin: 0 0 var(--space-4); color: var(--text-secondary); }

.gradient-text {
  background: linear-gradient(100deg, var(--accent-light), var(--accent) 55%, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent));
}
.eyebrow.on-dark { color: var(--accent-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(120deg, var(--accent-light), var(--accent));
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(33, 150, 243, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 36px -8px rgba(33, 150, 243, 0.65); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

.btn-light {
  background: #fff;
  color: var(--ocean-900);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  font-size: 14px;
  box-shadow: 0 8px 20px -8px rgba(33, 150, 243, 0.6);
}
.btn-nav:hover { transform: none; opacity: 0.92; }

.btn-block { width: 100%; }

/* Nav */
.nav-toggle-checkbox { display: none; }

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.site-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.site-nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3) 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-right: auto;
  transition: color 0.25s ease;
}
.site-nav.scrolled .brand { color: var(--text); }
.brand-icon { width: 30px; height: 30px; border-radius: var(--radius-sm); }

.site-nav-links { display: flex; align-items: center; gap: var(--space-6); }
.site-nav-links a:not(.btn) {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14.5px;
  transition: color 0.25s ease;
}
.site-nav.scrolled .site-nav-links a:not(.btn) { color: var(--text-secondary); }
.site-nav-links a:not(.btn):hover { color: var(--accent-light); }
.site-nav.scrolled .site-nav-links a:not(.btn):hover { color: var(--accent); }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  color: #fff;
  padding: var(--space-1);
  margin-left: auto;
}
.site-nav.scrolled .nav-toggle-label { color: var(--text); }

/* Hero */
.hero {
  position: relative;
  padding: 148px 0 var(--space-24);
  background: radial-gradient(120% 90% at 15% -10%, var(--ocean-700) 0%, var(--ocean-900) 45%, var(--ocean-950) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-10);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #fff;
  max-width: 16ch;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.hero-note { margin-top: var(--space-5); font-size: 13px; color: rgba(255, 255, 255, 0.55); }

.hero-visual { position: relative; display: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--accent-light), transparent 70%);
  filter: blur(2px);
  opacity: 0.9;
}

/* Decorative rising bubbles - purely ornamental, aria-hidden. */
.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bubble {
  position: absolute;
  bottom: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05) 70%);
  animation: rise linear infinite;
}
@keyframes rise {
  from { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  to { transform: translateY(-115vh) translateX(var(--drift, 20px)); opacity: 0; }
}

/* Pinned to the hero's own bottom edge (not pulled up with a negative
   margin) and given a fixed height rather than the SVG's auto/intrinsic
   one - height:auto scales with full viewport width (this element isn't
   constrained by --container), which on a wide screen made the wave
   taller than the hero's bottom padding and let it paint over the hero
   copy above it (e.g. hiding the "Free plan available" note). A fixed
   height that's comfortably under the smallest breakpoint's bottom
   padding (64px on mobile) can never do that. */
.wave-divider {
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}
.wave-divider svg { width: 100%; height: 56px; display: block; }

/* Sections */
section { padding: var(--space-20) 0; }
.section-head { max-width: 640px; margin: 0 auto var(--space-12); text-align: center; }
.section-head p { font-size: 1.05rem; }
.section-head.left { margin-left: 0; text-align: left; }

/* Mission pillars */
.pillars { display: grid; gap: var(--space-6); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg);
  color: var(--accent);
  margin-bottom: var(--space-5);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card h3 { font-size: 1.2rem; margin-bottom: var(--space-2); }
.pillar-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: var(--space-2); display: block; }

/* Conservation quote banner */
.quote-band {
  background: linear-gradient(115deg, var(--ocean-950), var(--ocean-800) 55%, var(--ocean-700));
  color: #fff;
  text-align: center;
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 20%, rgba(38, 198, 218, 0.22), transparent 70%);
}
.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.quote-band cite { display: block; margin-top: var(--space-6); font-size: 14px; font-style: normal; color: rgba(255, 255, 255, 0.6); font-family: var(--font-body); }

/* Platform stats proof strip - real totals fetched from the backend (see
   platform_stats.py); the section is omitted server-side whenever that
   fetch has no data, so there's no empty/loading state to style here. */
.stats-band { padding: var(--space-16) 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; gap: var(--space-8); grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-tile { display: flex; flex-direction: column; align-items: center; }
.stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg);
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}
.stat-label { margin-top: var(--space-2); font-size: 13.5px; color: var(--text-secondary); font-weight: 500; }

/* Feature spotlights (alternating rows) */
.spotlight { display: grid; gap: var(--space-10); align-items: center; margin-bottom: var(--space-20); }
.spotlight:last-child { margin-bottom: 0; }
.spotlight-text ul { list-style: none; margin: var(--space-6) 0 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.spotlight-text li { display: flex; align-items: flex-start; gap: var(--space-3); color: var(--text); font-weight: 500; font-size: 14.5px; }
.spotlight-text li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* Phone-frame mockup, wraps a real app screenshot. */
.device-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9 / 18.5;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(155deg, #1b2733, #0a121a);
  box-shadow: var(--shadow-glow);
}
.device-frame::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 40%; height: 22px;
  background: #0a121a;
  border-radius: var(--radius-full);
  z-index: 2;
}
.device-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--ocean-950);
}
.device-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Smaller frame used in the screenshot gallery grid (extra specificity
   so it stays smaller than the mobile .device-frame override below). */
.device-frame.device-frame-sm { max-width: 220px; }

/* Compact feature grid */
.feature-grid { display: grid; gap: var(--space-6); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-7, var(--space-6));
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .pillar-icon { margin-bottom: var(--space-4); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

/* Screenshot gallery */
.gallery-grid { display: grid; gap: var(--space-8); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.gallery-item { text-align: center; }
.gallery-caption { margin: var(--space-4) 0 0; font-weight: 600; font-size: 14px; color: var(--text); }

/* Pricing */
.pricing-card { text-align: center; }
.pricing-card .plan-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin: var(--space-2) 0; color: var(--text); }
.pricing-card .plan-price .interval { font-size: 0.55em; font-weight: 400; color: var(--text-secondary); }
/* Appended client-side when the localized price includes tax. */
.pricing-card .plan-price .tax-note { display: block; font-size: 0.5em; font-weight: 400; color: var(--text-secondary); }
.pricing-card .btn { margin-top: var(--space-4); }

/* Club-owner CTA banner */
.cta-band {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent) 60%, var(--accent-cyan));
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-10);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 90% at 90% 0%, rgba(255, 255, 255, 0.22), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .eyebrow { color: rgba(255, 255, 255, 0.85); }
.cta-band .eyebrow::before { background: rgba(255, 255, 255, 0.7); }
.cta-band-actions { display: flex; justify-content: center; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-8); }

/* Download section */
.download-section {
  background: radial-gradient(120% 100% at 85% 10%, var(--ocean-700), var(--ocean-950) 65%);
  color: #fff;
  text-align: center;
}
.download-section h2 { color: #fff; }
.download-section > .wrap > p { color: rgba(255, 255, 255, 0.75); max-width: 46ch; margin-left: auto; margin-right: auto; }
.store-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4); margin-top: var(--space-8); }

.store-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  color: #fff;
  min-width: 210px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.store-badge:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .label-lines { text-align: left; }
.store-badge .label-small { display: block; font-size: 10.5px; color: rgba(255, 255, 255, 0.65); text-transform: uppercase; letter-spacing: 0.05em; }
.store-badge .label-big { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-top: 1px; }
.store-badge.disabled { opacity: 0.55; pointer-events: none; }

.download-note { margin-top: var(--space-8); font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.download-note a { color: var(--accent-light); font-weight: 600; text-decoration: none; }
.download-note a:hover { text-decoration: underline; }

/* Footer */
.site-footer { background: var(--ocean-950); color: rgba(255, 255, 255, 0.7); padding: var(--space-16) 0 0; }
.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: grid;
  gap: var(--space-12);
  grid-template-columns: 1.2fr 2fr;
}
.footer-logo { width: 96px; }
.footer-tagline { color: rgba(255, 255, 255, 0.5); font-size: 13px; margin-top: var(--space-3); letter-spacing: 0.03em; text-transform: uppercase; }
.footer-cols { display: grid; gap: var(--space-8); grid-template-columns: repeat(3, 1fr); }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-4); }
.footer-col a { display: block; text-decoration: none; color: rgba(255, 255, 255, 0.65); font-size: 14.5px; margin-bottom: var(--space-3); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom { margin-top: var(--space-12); border-top: 1px solid rgba(255, 255, 255, 0.1); padding: var(--space-6) var(--space-5); text-align: center; font-size: 13px; color: rgba(255, 255, 255, 0.4); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view .reveal-item:nth-child(3) { transition-delay: 0.25s; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding-top: 120px; }
.legal h1 { margin-bottom: var(--space-2); }
.legal .updated { color: var(--text-tertiary); font-size: 13px; margin-bottom: var(--space-8); }
.legal h2 { font-size: 1.15rem; margin-top: var(--space-8); }

/* Contact form */
.contact-form { margin: var(--space-8) 0; }
.form-field { margin-bottom: var(--space-5); }
.form-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: var(--space-2); }
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--accent); }
.cf-turnstile { margin-bottom: var(--space-5); }
.form-banner {
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
  font-size: 14px;
}
.form-banner-success { background: rgba(38, 198, 218, 0.12); color: var(--accent-deep); }
.form-banner-error { background: rgba(211, 47, 47, 0.1); color: #D32F2F; }

/* 404 */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8);
  background: radial-gradient(120% 90% at 15% -10%, var(--ocean-700) 0%, var(--ocean-900) 45%, var(--ocean-950) 100%);
  color: #fff;
}
.error-page h1 { font-size: clamp(3rem, 10vw, 5rem); color: #fff; margin-bottom: var(--space-2); }
.error-page p { color: rgba(255, 255, 255, 0.7); margin-bottom: var(--space-8); }

/* Responsive */
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
  .hero-visual { display: block; }
  .wave-divider svg { height: 80px; } /* still well under the 96px desktop .hero bottom padding */
  .spotlight { grid-template-columns: 1fr 1fr; }
  .spotlight.reverse .spotlight-visual { order: 2; }
  .site-footer-inner { grid-template-columns: 1fr 2fr; }
}

@media (max-width: 899px) {
  .device-frame { max-width: 240px; }
}

@media (max-width: 720px) {
  section { padding: var(--space-16) 0; }
  .hero { padding: 120px 0 var(--space-16); }
  .cta-band { padding: var(--space-10) var(--space-5); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-4); }

  .nav-toggle-label { display: flex; }
  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ocean-950);
    padding: var(--space-4) var(--space-5) var(--space-6);
    box-shadow: var(--shadow-lg);
  }
  .nav-toggle-checkbox:checked ~ .site-nav .site-nav-links { display: flex; }
  .site-nav-links a:not(.btn) { color: rgba(255, 255, 255, 0.85); padding: var(--space-3) 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .site-nav-links .btn-nav { margin-top: var(--space-4); justify-content: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 var(--space-4); }
  .hero-inner { padding: 0 var(--space-4); }
  .btn { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .store-badge { width: 100%; }
}
