.mi {
      font-family: 'Material Symbols Rounded';
      font-weight: normal; font-style: normal;
      font-size: inherit; line-height: 1;
      display: inline-flex; align-items: center; justify-content: center;
      text-transform: none; letter-spacing: normal; word-wrap: normal;
      white-space: nowrap; direction: ltr;
      -webkit-font-feature-settings: 'liga';
      font-feature-settings: 'liga';
      -webkit-font-smoothing: antialiased;
      user-select: none;
    }

/* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
:root {
  --ink:      #140017;
  --ink-soft: #140017;
  --purple:   #40024A;
  --purple-v: #40024A;
  --purple-g: #40024A;
  --lime:     #6CDB98;
  --cream:    #ffffff;
  --mid:      #2C0033;
  --white:    #FFFFFF;
  --glass:    rgba(255,255,255,0.05);
  --border:   rgba(255,255,255,0.08);
  --r:        16px;
  --r-lg:     28px;
  --spacing-sm: 12px;
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open {
  overflow: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   ABSOLUTE TRANSPARENT NAV (DEFAULT / DARK SECTIONS)
══════════════════════════════════════════════ */
#nav,
#nav.stuck {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  padding: 0 60px !important;
  min-height: 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Default White Theme (Over Hero & Dark Sections) */
#nav .nav-logo svg {
  fill: #FFFFFF !important;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.8)) !important;
  transition: fill 0.3s ease, filter 0.3s ease !important;
}

#nav .nav-links a {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.85)) !important;
  transition: color 0.3s ease, filter 0.3s ease !important;
}

#nav .nav-links a:hover {
  color: #6CDB98 !important;
}

/* Adaptive Light Theme (.nav-on-light over #why & #app-cta) */
#nav.nav-on-light .nav-logo svg {
  fill: #140017 !important;
  filter: none !important;
}

#nav.nav-on-light .nav-links a {
  color: #140017 !important;
  filter: none !important;
}

#nav.nav-on-light .nav-links a:hover {
  color: #2C9E6B !important;
}

#nav.nav-on-light .nav-lang-toggle {
  background: rgba(20, 0, 23, 0.08) !important;
  border-color: rgba(20, 0, 23, 0.25) !important;
  color: #140017 !important;
  filter: none !important;
}

.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }

.nav-links {
  display: flex !important;
  gap: 36px !important;
  list-style: none !important;
}
.nav-links a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.2s ease !important;
}
.nav-links a:hover { color: #6CDB98 !important; }

.nav-lang-toggle {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3)) !important;
}


.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.nav-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  transition: all .2s;
}
.nav-btn-ghost {
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.nav-btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.5); }
.nav-btn-solid {
  background: var(--lime);
  color: var(--ink);
}
.nav-btn-solid:hover { background: #d4ff40; transform: translateY(-1px); }
.nav-btn-mobile {
  padding: 9px 14px;
  white-space: nowrap;
}
.nav-lang-toggle {
  height: 36px !important;
  padding: 0 14px !important;
  font-size: 13px !important;
  border-radius: 50px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  white-space: nowrap;
}
.nav-lang-toggle .lang-flag {
  font-size: 16px;
}
.nav-lang-toggle .lang-divider {
  height: 12px;
  margin: 0 2px;
}
.nav-lang-toggle .lang-active {
  font-size: 10px;
  padding: 2px 6px;
}
.nav-menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nav-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}
.nav-menu-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  grid-template-columns: 1fr minmax(280px, 360px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.nav-drawer.is-open {
  display: grid;
  pointer-events: auto;
  opacity: 1;
}
.nav-drawer-scrim {
  border: 0;
  background: rgba(20,0,23,0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-drawer-panel {
  background: #140017 !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform .25s ease;
  min-height: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}
.nav-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.nav-drawer-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 6px;
}
.nav-drawer-header h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--white);
  text-transform: lowercase;
}
.nav-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); transform: translateY(-1px); }
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-drawer-link {
  min-height: auto;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  border-radius: 12px !important;
  padding: 16px !important;
  margin-bottom: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #FFFFFF !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-align: left !important;
  letter-spacing: 0 !important;
}
.nav-drawer-link:hover { background: rgba(255,255,255,0.08) !important; }
.nav-drawer-button {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}
.nav-drawer-button .nav-drawer-lang-flag,
.nav-drawer-button .nav-drawer-lang-label {
  line-height: 1;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px max(80px, env(safe-area-inset-bottom));
}

/* Layered background */
.hero-layer {
  position: absolute; inset: -30%;
  will-change: transform;
  pointer-events: none;
  z-index: 1;
}
.hl-bg {
  background:
    radial-gradient(ellipse 70% 60% at 25% 35%, rgba(43,15,255,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(123,94,255,0.25) 0%, transparent 60%),
    var(--ink);
}
.hl-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hl-glow {
  background: radial-gradient(ellipse 40% 30% at 50% 50%, rgba(198,241,53,0.08) 0%, transparent 70%);
}

/* Floating pill badges */
.hero-pill {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  pointer-events: none;
  will-change: transform;
  z-index: 4;
}
.hp1 { top: 22%; left: 8%;  }
.hp2 { top: 28%; right: 9%; }
.hp3 { bottom: 26%; left: 6%; }
.hp4 { bottom: 22%; right: 7%; }
.hp-icon { font-size: 18px; }
.hp-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }



/* Keep pills above bg */
.hero-content { position: relative; z-index: 5; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(198,241,53,0.12);
  border: 1px solid rgba(198,241,53,0.25);
  color: var(--lime);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); animation: blink 2s infinite; }

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 9.5vw, 120px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -5px;
  color: var(--white);
  margin-bottom: 30px;
}
.hero-h1 .lime  { color: var(--lime); }
.hero-h1 .ital  { font-style: italic; font-weight: 200; }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-lime {
  padding: 17px 38px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50px;
  font-size: 15px; font-weight: 800;
  transition: all .25s;
  box-shadow: 0 0 40px rgba(198,241,53,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-lime:hover { background: #d4ff40; transform: translateY(-3px); box-shadow: 0 0 60px rgba(198,241,53,0.4); }
.cta-icon,
.btn-lime svg,
.btn-outline-w svg,
#app-cta .store-btn svg {
  width: 18px !important;
  height: 18px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  margin-right: 8px;
}
.btn-outline-w {
  padding: 17px 38px;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  font-size: 15px; font-weight: 600;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-outline-w:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.04); }

/* Language toggle button */
.btn-lang-toggle {
  padding: 17px 28px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex; align-items: center; gap: 10px;
  backdrop-filter: blur(8px);
}
.btn-lang-toggle:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.lang-divider {
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.25);
}
.lang-active {
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--lime);
  background: rgba(198,241,53,0.12);
  border: 1px solid rgba(198,241,53,0.25);
  padding: 3px 8px; border-radius: 20px;
}
.lang-flag { font-size: 18px; line-height: 1; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.25);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce-down 2.2s ease-in-out infinite;
}
@keyframes bounce-down { 0%,100%{transform:translateX(-50%) translateY(0);} 55%{transform:translateX(-50%) translateY(8px);} }
.hero-scroll svg { opacity: .4; }

/* ══════════════════════════════════════════════
   LOGOTYPE STRIP
══════════════════════════════════════════════ */
#strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  background-color: #1a0028;
  background-image:
    /* Road network — horizontal arterials */
    linear-gradient(90deg, transparent 0%, transparent 11%, rgba(255,255,255,0.07) 11%, rgba(255,255,255,0.07) 11.6%, transparent 11.6%, transparent 28%, rgba(255,255,255,0.05) 28%, rgba(255,255,255,0.05) 28.4%, transparent 28.4%, transparent 44%, rgba(255,255,255,0.07) 44%, rgba(255,255,255,0.07) 44.7%, transparent 44.7%, transparent 61%, rgba(255,255,255,0.05) 61%, rgba(255,255,255,0.05) 61.3%, transparent 61.3%, transparent 78%, rgba(255,255,255,0.07) 78%, rgba(255,255,255,0.07) 78.6%, transparent 78.6%, transparent 100%),
    /* Road network — vertical arterials */
    linear-gradient(0deg, transparent 0%, transparent 15%, rgba(255,255,255,0.07) 15%, rgba(255,255,255,0.07) 15.8%, transparent 15.8%, transparent 42%, rgba(255,255,255,0.06) 42%, rgba(255,255,255,0.06) 42.5%, transparent 42.5%, transparent 68%, rgba(255,255,255,0.07) 68%, rgba(255,255,255,0.07) 68.7%, transparent 68.7%, transparent 88%, rgba(255,255,255,0.05) 88%, rgba(255,255,255,0.05) 88.4%, transparent 88.4%, transparent 100%),
    /* Diagonal roads — NW to SE */
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.035) 80px,
      rgba(255,255,255,0.035) 81px
    ),
    /* City blocks — fine grid */
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    /* Base dark purple */
    #1a0028;
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    32px 32px,
    32px 32px,
    100% 100%;
}
.strip-track {
  display: flex; gap: 0; width: max-content;
  animation: scroll-l 30s linear infinite;
}
@keyframes scroll-l { from{transform:translateX(0);} to{transform:translateX(-50%);} }
.strip-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px;
  font-family: 'Fraunces', serif;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative; z-index: 2;
  text-shadow: 0 0 12px rgba(160,80,220,0.6);
}
.strip-item .si-dot { color: var(--lime); font-size: 8px; }

/* Radial purple glow overlay on strip */
#strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 200% at 30% 50%, rgba(80,0,120,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 200% at 70% 50%, rgba(50,0,90,0.3) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
/* Fade edges */
#strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #1a0028 0%, transparent 8%, transparent 92%, #1a0028 100%);
  pointer-events: none; z-index: 3;
}

/* ══════════════════════════════════════════════
   SHARED SECTION LAYOUT
══════════════════════════════════════════════ */
.section {
  position: relative;
  overflow: hidden;
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 56px;
}
.showcase-shell,
.partner-shell {
  max-width: 1280px;
}
.showcase-intro,
.partner-intro,
.test-header {
  text-wrap: balance;
}
.showcase-layout,
.showcase-features,
.showcase-phones,
.partner-steps-grid,
.partner-benefits-grid {
  min-width: 0;
}
.partner-steps-grid {
  width: min(100%, 1080px);
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
.partner-step-card {
  height: 100%;
}
.showcase-feature h4,
.showcase-feature p,
.partner-step-card h3,
.partner-step-card p {
  overflow-wrap: anywhere;
}
.showcase-phone {
  will-change: transform;
}
.pad { padding-top: 120px; padding-bottom: 120px; }
.pad-sm { padding-top: 80px; padding-bottom: 80px; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.ey-lime  { color: var(--lime); }
.ey-white { color: rgba(255,255,255,0.4); }
.ey-purple{ color: var(--purple-g); }

.h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.h2 em { font-style: italic; font-weight: 300; }
.h2-white { color: var(--white); }
.h2-dark  { color: var(--ink); }
.h2-lime  em { color: var(--lime); }
.h2-purple em { color: var(--purple-g); }

.body-copy {
  font-size: 17px;
  line-height: 1.72;
  font-weight: 300;
}
.bc-muted  { color: rgba(255,255,255,0.5); }
.bc-dark   { color: rgba(10,10,15,0.6); }

/* ══════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.rv    { opacity:0; transform:translateY(40px); transition: opacity .75s ease, transform .75s ease; }
.rv-l  { opacity:0; transform:translateX(-40px); transition: opacity .75s ease, transform .75s ease; }
.rv-r  { opacity:0; transform:translateX(40px);  transition: opacity .75s ease, transform .75s ease; }
.rv.on, .rv-l.on, .rv-r.on { opacity:1; transform:translate(0); }
.d1 { transition-delay:.12s !important; }
.d2 { transition-delay:.24s !important; }
.d3 { transition-delay:.36s !important; }
.d4 { transition-delay:.48s !important; }

/* ══════════════════════════════════════════════
   §1 — ABOUT
══════════════════════════════════════════════ */
#about { background: var(--ink); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.about-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.about-tag .t-ico { font-size: 16px; }

/* Right — glassy stat cards */
.about-cards {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}
.about-cards .acard {
  height: 100%;
}
.acard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: background .3s, transform .3s;
}
.acard:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.acard-ico { font-size: 32px; margin-bottom: 16px; }
.acard-num {
  font-family: 'Fraunces', serif;
  font-size: 42px; font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.acard-num span { color: var(--lime); }
.acard-label { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 400; }
.acard-wide { grid-column: 1 / -1; }

/* ══════════════════════════════════════════════
   §2 — HOW IT WORKS
══════════════════════════════════════════════ */
#how {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
}
.how-intro { text-align: center; max-width: 560px; margin: 0 auto 80px; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
/* connector line */
.steps-row::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,241,53,.4), rgba(198,241,53,.4), transparent);
}
.step {
  padding: 0 20px;
  text-align: center;
  position: relative; z-index: 2;
}
.step-icon-wrap {
  width: 104px; height: 104px;
  border-radius: 50%;
  border: 1px solid rgba(198,241,53,0.25);
  background: rgba(43,15,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  margin: 0 auto 28px;
  position: relative;
  transition: border-color .3s, background .3s;
}
.step:hover .step-icon-wrap {
  border-color: var(--lime);
  background: rgba(198,241,53,0.08);
}
.step-n {
  position: absolute; top: -6px; right: -6px;
  width: 26px; height: 26px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.step p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ══════════════════════════════════════════════
   §3 — WHY FOODTRCKR
══════════════════════════════════════════════ */
#why {
  background: var(--cream);
  color: var(--ink);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-cards { display: flex; flex-direction: column; gap: 16px; }
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 20px;
  box-shadow: 0 2px 24px rgba(10,10,15,0.06);
  transition: box-shadow .3s, transform .3s;
}
.why-card:hover { box-shadow: 0 12px 48px rgba(43,15,255,0.12); transform: translateX(6px); }
.wc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.wci-p { background: rgba(43,15,255,0.1); }
.wci-l { background: rgba(198,241,53,0.3); }
.wci-o { background: rgba(255,150,40,0.12); }
.wci-g { background: rgba(44,180,100,0.12); }
.wc-text h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.wc-text p  { font-size: 14px; color: rgba(10,10,15,0.55); line-height: 1.6; }

.why-text-side .h2 { margin-bottom: 20px; }
.why-quote {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 3px solid var(--purple);
  background: rgba(43,15,255,0.05);
  border-radius: 0 var(--r) var(--r) 0;
}
.why-quote p {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   §4 — FEATURES FOR USERS
══════════════════════════════════════════════ */
#user-features { background: var(--ink); }
.features-header { text-align: center; max-width: 560px; margin: 0 auto 72px; }
.uf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.uf-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: background .3s, border-color .3s, transform .3s;
  cursor: default;
}
.uf-card:hover {
  background: rgba(43,15,255,0.12);
  border-color: rgba(43,15,255,0.4);
  transform: translateY(-6px);
}
.uf-card-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(198,241,53,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.uf-card h3 { font-family:'Fraunces',serif; font-size:20px; font-weight:700; color:var(--white); margin-bottom:10px; }
.uf-card p  { font-size:14px; color:rgba(255,255,255,0.45); line-height:1.65; }
.uf-card-wide { grid-column: span 1 !important; }

/* ══════════════════════════════════════════════
   §5 — FEATURES FOR BUSINESSES
══════════════════════════════════════════════ */
#biz-features {
  background: linear-gradient(135deg, var(--ink-soft) 0%, #0F0A2A 100%);
}
.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.biz-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.biz-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--glass);
  transition: background .3s, border-color .3s;
}
.biz-item:hover { background: rgba(43,15,255,0.12); border-color: rgba(79,53,255,0.35); }
.bi-num {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 900; line-height: 1;
  color: rgba(198,241,53,0.25);
  min-width: 44px;
  padding-top: 2px;
}
.bi-text h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.bi-text p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Glassy metrics panel */
.biz-panel {
  background: rgba(43,15,255,0.12);
  border: 1px solid rgba(43,15,255,0.25);
  border-radius: 32px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.bp-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--spacing-sm);
}
.bp-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
}
.bpm-val {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-weight: 900;
  letter-spacing: -2px;
  color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.bpm-val span { color: var(--lime); }
.bpm-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.bp-bar-wrap { }
.bp-bar-label {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.bp-bar {
  height: 6px; background: rgba(255,255,255,.08);
  border-radius: 50px; overflow: hidden;
}
.bp-bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--purple-v), var(--lime)); }
.bp-quote {
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.4);
  text-align: center; padding-top: 4px;
}

/* ══════════════════════════════════════════════
   §6 — APP CTA
══════════════════════════════════════════════ */
#app-cta {
  background: var(--cream);
  color: var(--ink);
}
.app-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-text .h2 { margin-bottom: 18px; }
.app-text .body-copy { margin-bottom: 36px; }

.app-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: #140017 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  font-size: 13px; font-weight: 600;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(10, 10, 15, 0.3) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.store-btn:hover { background: #1a0028 !important; transform: translateY(-2px) !important; box-shadow: 0 10px 32px rgba(10,10,15,0.35) !important; }
.store-btn-ico { font-size: 24px; }
.store-btn-sub { font-size: 10px; opacity: .55; font-weight: 400; display: block; }
.store-btn-name { display: block; }
.app-note { margin-top: 20px; font-size: 13px; color: rgba(10,10,15,0.4); }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
.phone {
  width: 240px; height: 490px;
  background: var(--ink);
  border-radius: 38px;
  border: 8px solid #1C1C2E;
  box-shadow: 0 48px 100px rgba(10,10,15,0.25), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative; z-index: 2;
}
.phone-notch { width: 70px; height: 20px; background: var(--ink-soft); border-radius: 0 0 12px 12px; margin: 0 auto; flex-shrink: 0; }
.phone-body { flex: 1; padding: 14px 14px 18px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.pb-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.pb-hi { font-size: 14px; font-weight: 700; color: var(--white); }
.pb-loc { font-size: 10px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 3px; }
.pb-search {
  background: rgba(255,255,255,0.07);
  border-radius: 10px; padding: 9px 12px;
  font-size: 11px; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 6px;
}
.pb-map {
  background: rgba(43,15,255,0.2);
  border-radius: 12px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  border: 1px solid rgba(43,15,255,0.3);
  position: relative;
  overflow: hidden;
}
.pb-map-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198,241,53,0.25);
}
.pb-map-dot-a { top: 35%; left: 40%; }
.pb-map-dot-b { top: 55%; right: 30%; }
.pb-map-dot-c { bottom: 25%; left: 25%; }
.pb-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px; padding: 11px 12px;
  display: flex; align-items: center; gap: 10px;
}
.pb-card-ico { font-size: 22px; }
.pb-card-info { flex: 1; }
.pb-card-name { font-size: 12px; font-weight: 600; color: var(--white); }
.pb-card-sub  { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.pb-card-status { font-size: 10px; font-weight: 700; color: var(--lime); background: rgba(198,241,53,0.1); padding: 3px 8px; border-radius: 20px; }
.pb-order-btn {
  margin-top: 4px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 10px;
  padding: 11px;
  text-align: center;
  font-size: 12px; font-weight: 800;
}

/* floating chips */
.phone-chip {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(10,10,15,0.14);
  white-space: nowrap;
}
.pc-a { top: 50px; right: -60px; font-size: 12px; font-weight: 600; color: var(--ink); }
.pc-a span { display: block; font-size: 19px; font-family:'Fraunces',serif; font-weight:900; color: var(--purple); }
.pc-b { bottom: 90px; left: -60px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--ink); }
.pc-b-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }

/* ══════════════════════════════════════════════
   §7 — PARTNER FORM
══════════════════════════════════════════════ */
#partner {
  background: linear-gradient(180deg, #0F0A2A 0%, var(--ink) 100%);
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.partner-perks { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.7);
}
.perk-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(198,241,53,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--lime);
  font-weight: 700;
}

.partner-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 40px 36px;
}
.pf-title {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 800;
  color: var(--white); margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(198,241,53,0.45);
  background: rgba(255,255,255,0.08);
}
.form-field select option { background: var(--ink-soft); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--lime);
  color: var(--ink);
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  margin-top: 6px;
}
.form-submit:hover { background: #d4ff40; transform: translateY(-2px); }
.form-note { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 12px; }

/* ══════════════════════════════════════════════
   §8 — TESTIMONIALS / VISION
══════════════════════════════════════════════ */
#testimonials { background: var(--ink); }
.test-header { text-align: center; max-width: 540px; margin: 0 auto 72px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 32px;
  transition: background .3s, transform .3s, border-color .3s;
}
.tcard:hover { background: rgba(43,15,255,0.1); border-color: rgba(79,53,255,.3); transform: translateY(-6px); }
.tcard-stars { color: var(--lime); font-size: 15px; letter-spacing: 2px; margin-bottom: 18px; }
.tcard blockquote { font-size: 15px; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; font-weight: 300; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-ava { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; background: rgba(255,255,255,0.08); }
.tcard-name { font-size: 14px; font-weight: 700; color: var(--white); }
.tcard-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Vision banner */
.vision-banner {
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(43,15,255,0.25) 0%, rgba(198,241,53,0.07) 100%);
  border: 1px solid rgba(198,241,53,0.15);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
}
.vision-banner .h2 { font-size: clamp(30px, 4vw, 50px); letter-spacing: -2px; margin-bottom: 14px; }
.vision-banner p { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto 36px; font-weight: 300; line-height: 1.7; }

/* ══════════════════════════════════════════════
   FINAL CTA PARALLAX PANEL
══════════════════════════════════════════════ */
#final {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.final-bg {
  position: absolute; inset: -30%;
  will-change: transform;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(43,15,255,0.7) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(198,241,53,0.08) 0%, transparent 55%),
    var(--ink);
}
.final-grid {
  position: absolute; inset: -30%;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  will-change: transform;
}
.final-big {
  position: absolute;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(100px, 20vw, 260px); font-weight: 900;
  letter-spacing: -8px;
  color: rgba(255,255,255,0.02);
  white-space: nowrap; pointer-events: none; user-select: none;
  will-change: transform;
}
.final-content { position: relative; z-index: 5; padding: 80px 24px; max-width: 760px; }
.final-content .h2 { font-size: clamp(44px, 7vw, 88px); letter-spacing: -3px; margin-bottom: 18px; }
.final-content .body-copy { max-width: 480px; margin: 0 auto 44px; }
.final-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.final-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.3); }
.final-note strong { color: var(--lime); font-family: 'Fraunces', serif; letter-spacing: 1px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: #060609;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 60px max(40px, env(safe-area-inset-bottom));
}
.footer-inner { max-width: 1220px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand-tagline { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 260px; margin-top: 14px; }
.footer-brand-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(198,241,53,0.08);
  border: 1px solid rgba(198,241,53,0.15);
  color: var(--lime);
  font-size: 11px; font-weight: 600;
  padding: 6px 12px; border-radius: 50px;
  margin-top: 20px;
}
.footer-col h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px; color: rgba(255,255,255,0.5);
  margin-bottom: 11px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.2); transition: color .2s; }
.footer-legal a:hover { color: var(--lime); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1080px) {
  #nav { padding: 0 32px; }
  .container { padding: 0 32px; }
  .about-grid, .why-grid, .biz-grid, .app-cta-inner, .partner-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .uf-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-pill { display: none; }
  .showcase-layout,
  .partner-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .showcase-phones {
    justify-content: center !important;
  }
  footer { padding: 60px 32px 32px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .about-cards { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  /* AT REST (Top of page): Full-width, transparent, hardware-accelerated coordinates */
  #nav,
  #nav.stuck {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    padding: 0 20px !important;
    min-height: 68px !important;
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    z-index: 1250 !important;
    transition: top 0.38s cubic-bezier(0.16, 1, 0.3, 1), left 0.38s cubic-bezier(0.16, 1, 0.3, 1), right 0.38s cubic-bezier(0.16, 1, 0.3, 1), padding 0.38s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.38s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease !important;
  }

  /* SCROLLING (.stuck): Glides smoothly into a floating glass capsule without flickering */
  #nav.stuck {
    top: 12px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    margin: 0 !important;
    min-height: 60px !important;
    padding: 0 16px !important;
    border-radius: 9999px !important;
    background: rgba(18, 2, 22, 0.84) !important;
    background-color: rgba(18, 2, 22, 0.84) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55) !important;
  }

  /* Ensure crisp white contrast inside the dark frosted mobile pill */
  #nav .nav-logo svg,
  #nav.stuck .nav-logo svg {
    fill: #FFFFFF !important;
    height: 36px !important;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.5)) !important;
  }

  /* Hide Desktop Links on Mobile */
  .nav-links,
  .nav-right {
    display: none !important;
  }

  /* Keep Mobile Actions and Hamburger Menu perfectly positioned inside the pill */
  .nav-mobile-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .nav-btn-mobile {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  .nav-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }

  .nav-menu-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #FFFFFF !important;
    border-radius: 2px !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease !important;
    transform-origin: center !important;
  }

  body.drawer-open .nav-menu-toggle span:nth-child(1),
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  body.drawer-open .nav-menu-toggle span:nth-child(2),
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  body.drawer-open .nav-menu-toggle span:nth-child(3),
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  /* 1. Master Popover Container */
  .nav-drawer {
    position: fixed !important;
    top: 82px !important;
    left: 14px !important;
    right: 14px !important;
    bottom: auto !important;
    width: auto !important;
    z-index: 1100 !important;
    display: block !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transform: translateY(-8px) scale(0.98) !important;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .nav-drawer.is-open {
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  /* 2. Background Dimming Scrim (Must stay strictly BELOW the panel) */
  .nav-drawer-scrim {
    position: fixed !important;
    inset: -1000px !important;
    background: rgba(8, 0, 12, 0.72) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 1 !important;
    border: none !important;
  }

  /* 3. The Interactive Popover Panel (Must sit strictly ABOVE the scrim) */
  .nav-drawer-panel {
    position: relative !important;
    z-index: 10 !important;
    background: rgba(22, 4, 28, 0.94) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 28px !important;
    padding: 20px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75) !important;
    max-height: calc(100dvh - 110px) !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
  }

  /* Remove redundant modal header inside the compact popover */
  .nav-drawer-header {
    display: none !important;
  }

  /* 4. High-Contrast Navigation Links */
  .nav-drawer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    position: relative !important;
    z-index: 11 !important;
  }

  .nav-drawer-link {
    display: flex !important;
    align-items: center !important;
    padding: 14px 16px !important;
    margin-bottom: 0 !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 14px !important;
    opacity: 1 !important;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease !important;
  }

  .nav-drawer-link:hover,
  .nav-drawer-link:active {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(108, 219, 152, 0.4) !important;
    color: #6CDB98 !important;
  }
}

@media (max-width: 320px) {
  #nav.stuck {
    top: 8px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 0 12px !important;
    min-height: 56px !important;
  }

  .nav-mobile-actions {
    gap: 8px !important;
  }

  .nav-btn-mobile {
    padding: 7px 12px !important;
    font-size: 11px !important;
  }

  .nav-menu-toggle {
    width: 38px !important;
    height: 38px !important;
  }

  .nav-menu-toggle span {
    width: 16px !important;
  }

  .nav-drawer {
    top: 78px !important;
    left: 10px !important;
    right: 10px !important;
  }

  .nav-drawer-panel {
    padding: 20px !important;
    border-radius: 24px !important;
    max-height: calc(100dvh - 92px) !important;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .pad { padding-top: 80px; padding-bottom: 80px; }
  .uf-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .vision-banner { padding: 40px 24px; }
  .showcase-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    width: 100% !important;
  }
  .showcase-features {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  .showcase-feature {
    text-align: center !important;
    padding: 0 16px !important;
  }
  .showcase-phones {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding: 20px 24px 40px !important;
    width: 100vw !important;
    margin-left: calc(-1 * var(--container-padding, 20px)) !important;
    margin-right: calc(-1 * var(--container-padding, 20px)) !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none;
  }
  .showcase-phones::-webkit-scrollbar {
    display: none !important;
  }
  .showcase-phone {
    flex: 0 0 200px !important;
    height: 420px !important;
    scroll-snap-align: center !important;
    transform: none !important;
    opacity: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 28px !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5) !important;
  }
  .showcase-phone .pb-card-name {
    font-size: 11px !important;
  }
  .showcase-phone .pb-order-btn {
    font-size: 11px !important;
    padding: 8px !important;
  }
  .app-badges {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .footer-legal {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-legal a {
    margin-bottom: 0 !important;
    display: inline-block !important;
  }
  .about-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .acard {
    padding: 20px 16px !important;
  }
  .partner-steps-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .partner-step-card {
    width: 100% !important;
    text-align: left !important;
    padding: 24px !important;
  }
  .partner-cta-panel {
    padding: 36px 24px !important;
  }
  footer { padding: 48px 20px 28px; }
  .phone-chip { display: none; }
}
@media (max-width: 550px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .about-cards .acard {
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }
  .acard-num {
    font-size: 32px !important;
  }
  .acard-label {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  #hero { padding: 104px 18px 72px; }
  .hero-h1 { font-size: clamp(40px, 17vw, 68px); letter-spacing: -3px; }
  .hero-actions,
  .final-actions {
    width: 100%;
  }
  .hero-actions > *,
  .final-actions > * {
    width: 100%;
    justify-content: center;
  }
  .btn-lime,
  .btn-outline-w,
  .btn-lang-toggle {
    width: 100%;
    justify-content: center;
  }
  .container { padding: 0 16px; }
  .pad { padding-top: 72px; padding-bottom: 72px; }
  .body-copy { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .rv, .rv-l, .rv-r { opacity: 1 !important; transform: none !important; }
  .hero-layer, .final-bg, .final-grid, .final-big { will-change: auto !important; transform: none !important; }
  .strip-track { animation: none; }
}

#showcase-map .leaflet-tile-pane { filter: saturate(0.38) brightness(0.88) hue-rotate(195deg); }
#showcase-map .leaflet-control-container { display: none; }
@keyframes sc-pulse-anim {
  0%   { transform:scale(1);   opacity:0.75; }
  70%  { transform:scale(2.5); opacity:0; }
  100% { transform:scale(2.5); opacity:0; }
}
.sc-pulse { animation: sc-pulse-anim 2.4s ease-out infinite; }
