@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Cabinet+Grotesk:wght@300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  /* Brand */
  --green: #4CAF50;
  --green-dim: #2E7D32;
  --green-light: #81C784;
  --green-glow: rgba(76,175,80,0.08);
  --green-glow-soft: rgba(76,175,80,0.04);
  --success: #00C853;
  --error: #F44336;
  --warning: #FF9800;

  /* App dark mode surfaces — matched exactly to Flutter design system */
  --bg: #121212;
  --bg-2: #0D0D0D;
  --surface: #1E1E1E;
  --surface-2: #262626;
  --surface-3: #303030;

  /* Borders — using app outline tokens */
  --border: #444444;
  --border-bright: #5C5C5C;

  /* Text — app dark mode text tokens */
  --text: #FFFFFF;
  --text-2: #CACACA;
  --text-3: #808080;

  /* Layout */
  --radius: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --nav-h: 68px;
  --pad: clamp(16px, 5vw, 60px);
  --max-w: 1160px;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─────────────────────────────────────────
   ANIMATED GRADIENT BACKGROUND
───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(76,175,80,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at -10% 80%, rgba(76,175,80,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 60%, rgba(46,125,50,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Scanline texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.display-font {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(1.75rem, 7vw, 5rem); font-weight: 800; word-break: break-word; overflow-wrap: break-word; }
h2 { font-size: clamp(1.8rem, 5.5vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 3vw, 1.3rem); font-weight: 700; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
section { position: relative; z-index: 1; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  z-index: 2;
}

.nav-logo .accent { color: var(--green); }

.nav-logo::before {
  content: '';
  position: absolute;
  left: -10px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateY(-50%) scale(0.7); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--green) !important;
  color: #121212 !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  transition: all 0.2s !important;
  box-shadow: 0 0 20px rgba(76,175,80,0.15);
}

.nav-cta:hover {
  background: var(--green-dim) !important;
  box-shadow: 0 0 30px rgba(76,175,80,0.2) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  z-index: 2;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #121212;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  min-height: 52px;
  transition: all 0.25s var(--transition);
  letter-spacing: -0.01em;
  box-shadow: 0 0 30px rgba(76,175,80,0.12);
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
  background: var(--green-dim);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(76,175,80,0.12);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid var(--border-bright);
  min-height: 52px;
  transition: all 0.25s var(--transition);
  backdrop-filter: blur(10px);
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost:hover {
  background: var(--green-glow);
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 14px;
  transition: all 0.25s var(--transition);
  min-height: 56px;
  backdrop-filter: blur(10px);
  -webkit-tap-highlight-color: transparent;
}

.btn-store:hover {
  border-color: var(--green);
  background: var(--green-glow);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(76,175,80,0.06);
}

.btn-store .store-label-small {
  font-size: 0.68rem;
  color: var(--text-2);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-store .store-label-big {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

/* ─────────────────────────────────────────
   CHIP / BADGE
───────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-glow);
  border: 1px solid var(--border-bright);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SECTION SKINS — bold, visible backgrounds
───────────────────────────────────────── */

/* Lifted — noticeably lighter, white-tinted panel feel */
.skin-raised {
  background: #1A1A1A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Teal wash — saturated green tint, clearly distinct */
.skin-teal {
  background: linear-gradient(160deg, #1a1f1a 0%, #1E1E1E 60%, #161616 100%);
  border-top: 1px solid rgba(76,175,80,0.1);
  border-bottom: 1px solid rgba(76,175,80,0.05);
}

/* Deep dark — true near-black contrast break */
.skin-deep {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Glow — strong radial green from top, cinematic */
.skin-glow {
  background:
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(76,175,80,0.09) 0%, transparent 60%),
    #181818;
  border-top: 1px solid rgba(76,175,80,0.12);
  border-bottom: 1px solid rgba(76,175,80,0.04);
}

/* Stripe — diagonal texture on raised base */
.skin-stripe {
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 40px,
      rgba(76,175,80,0.015) 40px,
      rgba(76,175,80,0.015) 80px
    ),
    #1C1C1C;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Grid — visible dot grid on dark, for data sections */
.skin-grid {
  background:
    radial-gradient(circle, rgba(76,175,80,0.08) 1px, transparent 1px),
    #141414;
  background-size: 28px 28px;
  border-top: 1px solid rgba(76,175,80,0.08);
  border-bottom: 1px solid rgba(76,175,80,0.04);
}

/* ── Cards — clearly visible on any dark bg ── */

/* Teal-tinted card */
.card-teal {
  background: linear-gradient(135deg, #1E2A1E 0%, #1E1E1E 100%);
  border: 1px solid rgba(76,175,80,0.15);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.card-teal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,175,80,0.12), transparent);
}

/* Dark card — visible on teal/raised sections */
.card-dark {
  background: #1A1A1A;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.card-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

/* Inset panel — data display */
.panel-inset {
  background: #0D0D0D;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow:
    inset 0 1px 0 rgba(76,175,80,0.04),
    0 4px 24px rgba(0,0,0,0.4);
}

/* ── Decorative corner accent for cards ── */
.card-corner::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 100% 100%, rgba(76,175,80,0.05), transparent 70%);
  border-radius: 0 0 var(--radius) 0;
  pointer-events: none;
}

/* ─────────────────────────────────────────
   SECTION HEADING
───────────────────────────────────────── */
.section-head {
  margin-bottom: 64px;
}

.section-head.centered {
  text-align: center;
}

.section-head .chip { margin-bottom: 20px; }

.section-head h2 { margin-bottom: 16px; }

.section-head p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.75;
}

.section-head.centered p { margin: 0 auto; }

/* gradient text */
.grad-text {
  background: linear-gradient(135deg, var(--green) 0%, #81C784 60%, #4CAF50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────
   GLASS CARD
───────────────────────────────────────── */
.glass-card {
  background: #1E1E1E;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--transition), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,175,80,0.18), transparent);
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(76,175,80,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(76,175,80,0.04);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATION
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Pre-footer CTA band */
.footer-cta-band {
  background: linear-gradient(100deg, rgba(76,175,80,0.03) 0%, rgba(76,175,80,0.01) 60%, transparent 100%);
  border-top: 1px solid rgba(76,175,80,0.06);
  border-bottom: 1px solid rgba(76,175,80,0.03);
  padding: 36px var(--pad);
}

.footer-cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.fcb-text {}

.fcb-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.fcb-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fcb-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Store pill buttons in footer CTA */
.footer-store-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #121212;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.2s var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.footer-store-pill:hover {
  background: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.12);
}

.footer-store-pill.ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-bright);
}

.footer-store-pill.ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  box-shadow: none;
}

/* Main footer body */
.footer-body {
  padding: 64px var(--pad) 0;
  background: #0D0D0D;
}

.footer-body-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

/* Brand column */
.footer-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
  padding-left: 14px;
  text-decoration: none;
  color: var(--text);
}

.footer-logo::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
  animation: pulse-dot 2s ease-in-out infinite;
}

.footer-logo .accent { color: var(--green); }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 24px;
}

/* Status indicator */
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-3);
  background: rgba(76,175,80,0.02);
  border: 1px solid rgba(76,175,80,0.04);
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Link columns */
.footer-col {}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 0.875rem;
  padding: 7px 0;
  min-height: 36px;
  transition: color 0.2s, gap 0.2s;
  position: relative;
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.2s var(--transition);
  flex-shrink: 0;
}

.footer-col ul li a:hover {
  color: var(--text);
  gap: 12px;
}

.footer-col ul li a:hover::before {
  width: 12px;
}

/* Badge on a link */
.footer-link-badge {
  font-size: 0.58rem;
  font-weight: 700;
  background: var(--green);
  color: #121212;
  padding: 2px 7px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: auto;
}

/* Footer bottom bar */
.footer-bottom-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px var(--pad) 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fbb-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fbb-copy {
  font-size: 0.78rem;
  color: var(--text-3);
}

.fbb-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fbb-links a {
  font-size: 0.78rem;
  color: var(--text-3);
  transition: color 0.2s;
  white-space: nowrap;
}

.fbb-links a:hover { color: var(--text-2); }

.fbb-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fbb-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* Animated glow line at very bottom */
footer::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(76,175,80,0.0) 20%,
    rgba(76,175,80,0.12) 50%,
    rgba(76,175,80,0.0) 80%,
    transparent 100%
  );
  animation: footerGlow 4s ease-in-out infinite;
}

@keyframes footerGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Footer responsive ── */
@media (max-width: 900px) {
  .footer-body-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 640px) {
  .footer-cta-band-inner { flex-direction: column; align-items: flex-start; }
  .fcb-actions { width: 100%; }
  .footer-store-pill { flex: 1; justify-content: center; }
  .footer-body-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .fbb-right { display: none; }
}

@media (max-width: 400px) {
  .footer-body-inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   ORB
───────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────
   HORIZONTAL RULE / DIVIDER
───────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  margin: 0 auto;
  width: 80%;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --nav-h: 62px; }
}

@media (max-width: 768px) {
  :root {
    --pad: 20px;
    --nav-h: 60px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px var(--pad) 40px;
    gap: 0;
    z-index: 9999;
    animation: menuIn 0.25s var(--transition);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  @keyframes menuIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open li a {
    display: flex !important;
    align-items: center;
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    min-height: 56px;
    gap: 0;
  }

  .nav-links.open li:last-child a {
    border-bottom: none;
    margin-top: 16px;
    background: var(--green) !important;
    color: #05080A !important;
    border-radius: 14px;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px !important;
    min-height: 56px !important;
  }

  /* Full-width CTA buttons on mobile */
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
  }

  .cta-stores {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-stores .btn-store { justify-content: center; }

  .section-head { margin-bottom: 40px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root { --pad: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .chip { font-size: 0.65rem; }
}
