/* ============================================================
   CNVY — DRIVE TOGETHER
   Theme: "night-convoy" — deep navy base, route blue +
   hazard red accents.
   ============================================================
   THEME: edit this :root block only to re-theme the site.
   Do not hardcode hex colors elsewhere.
   ============================================================ */
:root {
  /* 7-color palette */
  --c1: #095af4; /* route blue — primary accent */
  --c2: #0a46c9; /* deep route blue — secondary */
  --c3: #e61a23; /* hazard red — pop accent */
  --c4: #f2f5ff; /* icy blue-white — light neutral */
  --c5: #b8c4df; /* blue-grey light */
  --c6: #7081a8; /* blue-grey */
  --c7: #354466; /* muted navy */

  /* semantic tokens */
  --bg:             #030615; /* deep navy base */
  --bg-2:           #070d20; /* raised navy panel */
  --bg-3:           #01030b; /* near-black blue */
  --surface:        rgba(9, 22, 56, 0.48);
  --surface-strong: rgba(15, 37, 92, 0.62);
  --stroke:         rgba(157, 185, 255, 0.25);
  --stroke-soft:    rgba(157, 185, 255, 0.14);
  --glass-highlight: rgba(242, 245, 255, 0.16);
  --shadow:         rgba(3, 6, 21, 0.48);
  --grid-line:      rgba(9, 90, 244, 0.12);
  --text:           #f2f5ff;
  --text-dim:       rgba(226, 234, 255, 0.72);
  --text-faint:     rgba(202, 217, 255, 0.48);
  --accent:         var(--c1);
  --accent-2:       var(--c3);
  --on-accent:      #ffffff; /* text on highlights */
  --route:          var(--c1); /* route line */
  --glass-blur:     18px;

  /* shape & motion */
  --radius:    14px;
  --radius-sm: 10px;
  --ease:      cubic-bezier(0.65, 0.05, 0, 1);
  --duration:  0.75s;

  /* type — single variable family, width axis does the roles */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Archivo', system-ui, sans-serif;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 0.5em;
}

p { margin: 0; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--c5); }

::selection { background: var(--c1); color: var(--on-accent); }

:where(:focus-visible) {
  outline: 2px solid var(--c1);
  outline-offset: 2px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: rgba(184, 196, 223, 0.22);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(184, 196, 223, 0.38); }

/* skip link */
.skip-link {
  position: absolute;
  top: -64px;
  left: 16px;
  z-index: 300;
  background: var(--c1);
  color: var(--on-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; color: var(--on-accent); }

/* ============================================================
   PANEL PRIMITIVE — restrained route glass
   ============================================================ */
.glass {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 22px 70px var(--shadow);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(135%);
  backdrop-filter: blur(var(--glass-blur)) saturate(135%);
}
.card.glass,
.step.glass,
.faq-item.glass,
.manifesto.glass,
.footer-inner.glass {
  -webkit-backdrop-filter: blur(8px) saturate(118%);
  backdrop-filter: blur(8px) saturate(118%);
}

/* ============================================================
   BACKDROP
   ============================================================ */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg);
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: 0;
  display: block;
  background-image: linear-gradient(to right, var(--grid-line) 1px, transparent 1px), linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.34;
  transform: perspective(900px) rotateX(58deg) scale(1.8) translateY(12%);
  transform-origin: center bottom;
}

.bg-glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(140px);
  animation: glow-drift 26s ease-in-out infinite alternate;
}
.bg-glow-a { top: -22%; left: -14%; background: var(--c1); opacity: 0.12; }
.bg-glow-b { bottom: -26%; right: -16%; background: var(--c3); opacity: 0.07; animation-delay: -13s; }

/* grain */
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6vw, 4vh) scale(1.12); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 20px;
  transition: transform 0.4s var(--ease);
}
.nav.is-hidden { transform: translateY(-110%); }

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 18px 55px var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.brand-mark { width: 26px; height: 26px; color: var(--c1); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 120%;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--c1); }
.nav-mobile-cta { display: none !important; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-sm);
  font: 700 0.7rem var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-menu-toggle svg { width: 18px; height: 18px; }
.nav-menu-toggle:hover { color: var(--c1); border-color: var(--c1); }

/* ============================================================
   BUTTONS / SELECT
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary {
  background: var(--c1);
  color: var(--on-accent);
}
.btn-primary:hover { background: var(--c2); color: var(--on-accent); transform: translateY(-2px); }
.btn-quiet {
  color: var(--text);
  background: rgba(3, 6, 21, 0.42);
  border-color: var(--stroke);
}
.btn-quiet:hover { color: var(--c1); background: var(--surface-strong); border-color: var(--c1); transform: translateY(-2px); }
.btn-dark {
  color: var(--text);
  background: var(--bg);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-dark:hover { color: var(--bg); background: var(--c4); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  font: 600 0.76rem var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 30px 8px 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23f4f4ed' stroke-opacity='0.6' stroke-width='2' stroke-linecap='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lang-select:hover { color: var(--text); border-color: var(--stroke); }
.lang-select option { background: var(--bg-2); color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 96px max(20px, calc((100vw - 1120px) / 2)) 80px;
  overflow: hidden;
}

#hero-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}
#hero-map .leaflet-control-zoom { display: none; }
#hero-map .leaflet-control-attribution {
  font-size: 9px;
  color: rgba(226, 234, 255, 0.28);
  background: transparent;
}
#hero-map .leaflet-control-attribution a { color: rgba(226, 234, 255, 0.34); }

.hero-map-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg);
  opacity: 0.35;
  pointer-events: none;
}

.pin-marker { background: none; border: none; }
.pin-marker svg { display: block; filter: drop-shadow(0 2px 6px rgba(3, 6, 21, 0.65)); }

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-title {
  font-size: clamp(3.4rem, 9vw, 8.3rem);
  font-weight: 800;
  font-stretch: 125%;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 0.35em;
  animation: hero-in 0.9s var(--ease) both;
}
.hero-word { display: block; }
.hero-word:last-child { color: var(--c1); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 0 2.6rem;
  animation: hero-in 0.9s 0.15s var(--ease) both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  animation: hero-in 0.9s 0.3s var(--ease) both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* store badges */
.badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-in 0.9s 0.3s var(--ease) both;
}
.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--stroke-soft);
  color: var(--text);
}
.badge-icon { width: 26px; height: 26px; flex-shrink: 0; }
.badge-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
.badge-store {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-soon {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c1);
}
.badge.is-disabled { opacity: 0.55; cursor: not-allowed; }
.badge.is-disabled:hover { color: var(--text); }

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  color: var(--text-faint);
  border-radius: 50%;
  animation: hint-bob 2s ease-in-out infinite;
}
.scroll-hint svg { width: 100%; height: 100%; }
@keyframes hint-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  background: var(--c1);
  color: var(--on-accent);
  overflow: hidden;
  border-block: 1px solid rgba(3, 6, 21, 0.42);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 122%;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee-star {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 110px 20px 40px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  font-stretch: 118%;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

/* eyebrow label */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: var(--c1);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  background: var(--c1);
  flex-shrink: 0;
}

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* cards */
.card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--c1) 55%, transparent);
  background: var(--surface-strong);
}

.card-icon { width: 40px; height: 40px; margin-bottom: 18px; }
.card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}
.card p { color: var(--text-dim); font-size: 0.95rem; }

@media (min-width: 961px) {
  .grid-3 .feature-lead {
    grid-column: span 2;
    min-height: 260px;
    background: color-mix(in srgb, var(--c1) 11%, var(--surface));
  }
  .grid-3 .feature-lead .card-icon { width: 48px; height: 48px; }
  .grid-3 .feature-recap {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 54px minmax(0, 0.65fr) minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
    background: color-mix(in srgb, var(--c3) 8%, var(--surface));
  }
  .grid-3 .feature-recap .card-icon { grid-row: span 2; margin: 0; }
  .grid-3 .feature-recap h3 { margin: 0; }
}

/* palette tints */
.tint-1 .card-icon { color: var(--c1); }
.tint-2 .card-icon { color: var(--c2); }
.tint-3 .card-icon { color: var(--c3); }
.tint-4 .card-icon { color: var(--c4); }
.tint-5 .card-icon { color: var(--c5); }
.tint-6 .card-icon { color: var(--c6); }
.tint-7 .card-icon { color: var(--c7); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps-line {
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed color-mix(in srgb, var(--c1) 40%, transparent);
  z-index: -1;
}

.step { padding: 30px 26px; }
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--c1);
}
@supports (-webkit-text-stroke: 1px black) {
  .step-num {
    color: transparent;
    -webkit-text-stroke: 2px var(--c1);
  }
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
}
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ============================================================
   SCREENSHOTS
   ============================================================ */
.phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 30px 0 50px;
}

.phone {
  width: 230px;
  aspect-ratio: 9 / 19;
  border-radius: 30px;
  border: 1px solid var(--stroke);
  background: var(--bg-2);
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  will-change: transform;
}
.phone-main { width: 262px; z-index: 1; }

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background:
    radial-gradient(120% 90% at 20% 0%, color-mix(in srgb, var(--c1) 14%, transparent), transparent 60%),
    radial-gradient(120% 90% at 90% 100%, color-mix(in srgb, var(--c2) 12%, transparent), transparent 60%),
    var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.phone-screen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
}
.phone-placeholder {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 0 18px;
}

.showcase-placeholder {
  position: relative;
  max-width: 780px;
  min-height: 340px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: color-mix(in srgb, var(--c1) 7%, var(--bg-3));
  border-color: var(--stroke);
}
.showcase-placeholder::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 120px;
  border-top: 1px solid color-mix(in srgb, var(--c1) 65%, transparent);
  border-radius: 50%;
  opacity: 0.6;
  transform: rotate(-9deg);
}
.showcase-placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--stroke-soft);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.showcase-marker {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--c3);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item { border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--surface-strong); }
.faq-item[open] summary { color: var(--c1); }

.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-dim); transition: transform 0.3s var(--ease), color 0.2s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--c1); }

.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ============================================================
   MANIFESTO — built by drivers
   ============================================================ */
.manifesto {
  max-width: 840px;
  margin: 0 auto 56px;
  text-align: left;
  padding: 48px 30px;
  border-left: 2px solid var(--c1);
}
.manifesto .manifesto-body {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 720px;
  margin: 0;
}

/* ============================================================
   FINAL CTA — route hand-off panel
   ============================================================ */
.cta { padding-bottom: 110px; }
.cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 76px 30px;
  background: var(--c1);
  border: none;
  border-radius: var(--radius);
  color: var(--on-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 28px 80px rgba(3, 6, 21, 0.42);
}
.cta-kicker {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.cta-title {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  font-stretch: 125%;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--on-accent);
}
.cta-box p { color: color-mix(in srgb, var(--on-accent) 75%, transparent); margin-bottom: 2.2rem; font-size: 1.08rem; }
.cta-box .cta-kicker { margin-bottom: 1rem; color: rgba(255, 255, 255, 0.72); font-size: 0.72rem; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-link {
  color: var(--on-accent);
  border-bottom: 1px solid color-mix(in srgb, var(--on-accent) 55%, transparent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-link:hover { color: var(--on-accent); border-color: var(--on-accent); }
.cta-store-badges {
  margin-top: 28px;
  animation: none;
}
.cta-box .badge {
  min-width: 190px;
  background: rgba(3, 6, 21, 0.2);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--on-accent);
}
.cta-box .badge-soon { color: rgba(255, 255, 255, 0.7); }
.cta-box .badge.is-disabled { opacity: 0.58; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 0 20px 30px; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 44px 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  background: var(--bg-2);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
}
.footer-tag {
  color: var(--text-faint);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c1);
  margin-bottom: 0.9em;
}
.footer-col a { color: var(--text-dim); font-size: 0.95rem; }
.footer-col a:hover { color: var(--text); }

.socials { display: flex; gap: 10px; }
.socials a,
.social-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--stroke-soft);
  color: var(--text-dim);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-placeholder { opacity: 0.42; cursor: not-allowed; }
.social-note {
  color: var(--text-faint);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.socials a:hover {
  background: var(--c1);
  color: var(--on-accent);
  border-color: var(--c1);
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }

.footer-rights {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--stroke-soft);
  color: var(--text-faint);
  font-size: 0.85rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

.grid .reveal:nth-child(2), .steps .reveal:nth-child(3) { transition-delay: 0.1s; }
.grid .reveal:nth-child(3), .steps .reveal:nth-child(4) { transition-delay: 0.2s; }
.grid .reveal:nth-child(4) { transition-delay: 0.1s; }
.grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-inner { position: relative; gap: 12px; }
  .nav-menu-toggle { display: inline-flex; }
  .nav-desktop-cta { display: none; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    gap: 4px;
    margin: 0;
    padding: 10px;
    background: var(--surface-strong);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: 0 22px 70px var(--shadow);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(135%);
    backdrop-filter: blur(var(--glass-blur)) saturate(135%);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 11px 12px; }
  .nav-links .nav-mobile-cta { display: inline-flex !important; margin-top: 6px; }
  .nav-actions { margin-left: auto; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .steps-line { display: none; }

  .phones { gap: 16px; }
  .phone { width: 180px; }
  .phone-main { width: 210px; }

  .footer-inner { grid-template-columns: 1fr 1fr; padding: 34px 26px 22px; }
}

@media (max-width: 620px) {
  .nav { padding: 10px; }
  .nav-inner { padding: 8px 10px; gap: 8px; border-radius: 18px; }
  .brand { gap: 7px; }
  .brand-mark { width: 23px; height: 23px; }
  .brand-name { font-size: 0.95rem; }
  .nav-menu-toggle { padding: 7px; }
  .nav-menu-label { display: none; }
  .lang-select { padding: 7px 24px 7px 9px; font-size: 0.68rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 80px 16px 30px; }

  .phones { flex-direction: column; gap: 22px; }
  .phone, .phone-main { width: min(250px, 78vw); }
  .showcase-placeholder { min-height: 250px; }

  .footer-inner { grid-template-columns: 1fr; }

  .hero { align-items: center; padding: 100px 16px 72px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { padding: 11px 14px; font-size: 0.7rem; }
  .cta-actions { align-items: stretch; flex-direction: column; }
  .cta-actions .btn, .cta-link { text-align: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .glass,
  .nav-links {
    background: var(--bg-2);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* ============================================================
   INVITE PAGE
   ============================================================ */
.invite-page {
  position: relative;
  min-height: 100svh;
  background: var(--bg);
}

.invite-page::before,
.invite-page::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
}

.invite-page::before {
  top: -22%;
  left: -16%;
  background: var(--c1);
  opacity: 0.08;
}

.invite-page::after {
  right: -18%;
  bottom: -26%;
  background: var(--c3);
  opacity: 0.05;
}

.invite-header,
.invite-main,
.invite-footer {
  position: relative;
  z-index: 1;
}

.invite-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.invite-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  font-stretch: 120%;
  letter-spacing: 0.12em;
}

.invite-brand:hover { color: var(--c1); }

.invite-brand-mark {
  width: 26px;
  height: 26px;
  color: var(--c1);
}

.invite-back {
  color: var(--text-faint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.invite-back:hover { color: var(--c1); }

.invite-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 74px 24px 92px;
}

.invite-kicker,
.invite-card-label {
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: var(--c1);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.invite-kicker { margin-bottom: 1.25rem; }

.invite-kicker::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  flex-shrink: 0;
  background: var(--c1);
}

.invite-title {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  font-weight: 800;
  font-stretch: 125%;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.invite-title span { color: var(--c1); }

.invite-lede {
  max-width: 560px;
  margin-bottom: 46px;
  color: var(--text-dim);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.invite-card {
  padding: 34px 36px 36px;
  background: var(--surface);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
}

.invite-card + .invite-card { margin-top: 16px; }

.invite-card-head { margin-bottom: 22px; }

.invite-card-label { margin-bottom: 0.9rem; }

.invite-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 800;
  font-stretch: 115%;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.invite-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.invite-step {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--stroke-soft);
}

.invite-step:first-child { border-top: 0; }

.invite-step-number {
  display: block;
  color: transparent;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  font-stretch: 125%;
  letter-spacing: -0.04em;
  line-height: 0.9;
  -webkit-text-stroke: 1px var(--c1);
}

.invite-step h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 700;
  font-stretch: 112%;
  line-height: 1.15;
}

.invite-stores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 570px;
  margin-top: 20px;
}

.invite-store {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: var(--text-dim);
  background: var(--surface-strong);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-sm);
  cursor: not-allowed;
  user-select: none;
}

.invite-store.is-disabled { opacity: 0.56; }

.invite-store-mark {
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--text-faint);
}

.invite-store-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.invite-store-copy strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
}

.invite-store-copy small {
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.invite-note {
  max-width: 610px;
  margin: 4px 0 0 88px;
  padding-left: 16px;
  color: var(--text-dim);
  border-left: 2px solid var(--c1);
  font-size: 0.95rem;
}

.invite-card-secondary > p {
  max-width: 650px;
  color: var(--text-dim);
  font-size: 0.98rem;
}

.invite-footnote {
  max-width: 650px;
  margin: 30px auto 0;
  color: var(--text-faint);
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: center;
}

.invite-footer {
  max-width: 820px;
  margin: 0 auto;
  padding: 22px 24px 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-faint);
  border-top: 1px solid var(--stroke-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .invite-header { padding: 22px 16px; }
  .invite-back { font-size: 0.66rem; }
  .invite-main { padding: 58px 16px 68px; }
  .invite-title { font-size: clamp(3rem, 15vw, 5.2rem); }
  .invite-lede { margin-bottom: 34px; }
  .invite-card { padding: 26px 20px 28px; }
  .invite-step { grid-template-columns: 48px minmax(0, 1fr); gap: 12px; }
  .invite-step-number { font-size: 2.25rem; }
  .invite-stores { grid-template-columns: 1fr; }
  .invite-note { margin-left: 60px; }
  .invite-footer { padding-inline: 16px; }
}
