:root {
  --ink: #f7fbff;
  --muted: #a9c0d8;
  --deep: #020916;
  --navy: #031c44;
  --blue: #0759c9;
  --electric: #12a8ff;
  --cyan: #47f0ff;
  --yellow: #ffd34d;
  --orange: #ff8a22;
  --pink: #ff4fd8;
  --line: rgba(255,255,255,.16);
  --glass: rgba(4,18,42,.72);
  --panel: rgba(5,23,54,.84);
  --shadow: 0 28px 80px rgba(0,0,0,.38);
  --radius: 8px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--deep);
  color: var(--ink);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(18,168,255,.28), transparent 30%),
    radial-gradient(circle at 82% 6%, rgba(255,211,77,.12), transparent 26%),
    linear-gradient(145deg, #020916 0%, #031836 45%, #000 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .26;
  background-image:
    linear-gradient(rgba(71,240,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,240,255,.11) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, video { max-width: 100%; display: block; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--cyan);
  color: #02142e;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: linear-gradient(to bottom, rgba(1,8,20,.92), rgba(1,8,20,.42));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .3px;
}
.brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  text-decoration: none;
  color: rgba(247,251,255,.86);
  padding: 11px 13px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
}
.site-nav a:hover, .site-nav a:focus-visible {
  background: rgba(255,255,255,.1);
  color: #fff;
  outline: 0;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: #fff;
}

.hero {
  min-height: 96svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 104px clamp(18px, 5vw, 72px) 34px;
  overflow: hidden;
}
.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video, .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-fallback {
  background:
    linear-gradient(90deg, rgba(2,9,22,.98), rgba(2,16,39,.36), rgba(2,9,22,.88)),
    radial-gradient(circle at 70% 42%, rgba(18,168,255,.28), transparent 34%);
}
.motion-lines {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(71,240,255,.2) 36%, transparent 37% 100%),
    linear-gradient(115deg, transparent 0 53%, rgba(255,211,77,.18) 54%, transparent 55% 100%);
  background-size: 360px 360px, 520px 520px;
  animation: drift 18s linear infinite;
}
.phone-scene {
  position: absolute;
  right: clamp(18px, 8vw, 130px);
  top: 18%;
  width: min(390px, 43vw);
  aspect-ratio: 10 / 15;
  display: grid;
  place-items: center;
}
.phone {
  width: 68%;
  height: 86%;
  border: 10px solid #071126;
  border-radius: 34px;
  background: linear-gradient(160deg, #07142f, #062e6b);
  box-shadow: 0 34px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.2);
  padding: 18px;
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  translate: -50% 0;
  width: 76px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}
.phone-screen {
  height: 100%;
  border-radius: 22px;
  background: radial-gradient(circle at 70% 20%, rgba(71,240,255,.32), transparent 32%), #061b3f;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  text-align: center;
  padding: 22px;
}
.phone-screen img {
  width: 128px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.35));
}
.qr-code {
  width: 104px;
  height: 104px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 5px;
  padding: 9px;
  background: #fff;
  border-radius: 8px;
}
.qr-code span { background: #02142e; border-radius: 2px; }
.video-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255,211,77,.52);
  background: rgba(2,9,22,.64);
  color: #fff2b8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.video-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  padding-bottom: clamp(12px, 5vh, 54px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 108px);
  line-height: .92;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d9e9ff;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}
.hero-actions, .path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}
.btn, .text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
}
.btn {
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #061126;
  box-shadow: 0 18px 34px rgba(255,138,34,.24);
}
.btn.secondary {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.22);
  box-shadow: none;
}
.text-link {
  color: var(--cyan);
  padding: 8px 0;
}
.btn:hover, .text-link:hover { filter: brightness(1.08); }
.btn:focus-visible, .text-link:focus-visible, button:focus-visible {
  outline: 3px solid rgba(71,240,255,.8);
  outline-offset: 3px;
}
.scene-note {
  max-width: 620px;
  margin-top: 20px;
  padding-left: 14px;
  border-left: 3px solid rgba(71,240,255,.48);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-pad {
  padding: clamp(64px, 9vw, 126px) clamp(18px, 5vw, 72px);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}
.section-heading h2, .paths h2, .business h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1;
}
.carousel-shell {
  position: relative;
}
.experience-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 32%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 4px 4px 18px;
}
.experience-card {
  min-height: 620px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6,31,74,.92), rgba(2,9,22,.94));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.experience-visual {
  min-height: 280px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(18,168,255,.28), transparent 45%), #020916;
}
.experience-visual img {
  width: 74%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.45));
}
.experience-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.experience-body h3 {
  margin: 0 0 10px;
  font-size: 29px;
  line-height: 1.05;
}
.experience-body p {
  color: var(--muted);
  line-height: 1.5;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
  margin: 14px 0 20px;
}
.metric {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 11px;
}
.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.metric strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 20px;
}
.experience-card .btn { margin-top: auto; width: 100%; }
.carousel-btn {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 62px;
  translate: 0 -50%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background: rgba(1,8,20,.72);
  color: #fff;
  font-size: 38px;
}
.carousel-btn.prev { left: -14px; }
.carousel-btn.next { right: -14px; }

.paths {
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}
.path-card, .business-option {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow);
}
.path-card h3, .business-option h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}
.path-card p, .business-option p, .footer, .modal p {
  color: var(--muted);
  line-height: 1.55;
}
.path-visual {
  min-height: 210px;
  margin-bottom: 20px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(18,168,255,.18), rgba(255,211,77,.1)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.mini-phone, .qr-pending, .business-panel {
  width: min(250px, 86%);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(2,9,22,.7);
  padding: 18px;
}
.mini-phone strong, .qr-pending strong, .business-panel strong {
  display: block;
  color: #fff;
}
.store-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.store-pill {
  flex: 1;
  min-height: 42px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
}
.qr-pending {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-style: dashed;
}
.business-panel {
  display: grid;
  gap: 8px;
}
.business-panel span {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 7px;
}
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}
.benefit-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.benefit-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #dbeafe;
}
.benefit-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}
.business-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255,211,77,.32);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,211,77,.14), rgba(18,168,255,.09));
}
.business-cta p {
  margin: 0;
  color: #fff2b8;
  font-weight: 900;
}

.footer {
  padding: 32px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.7);
}
.modal {
  width: min(560px, 100%);
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: #061631;
  padding: 28px;
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 24px;
}
.modal-kicker {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.contact-list span {
  padding: 12px;
  border: 1px dashed rgba(255,255,255,.24);
  border-radius: 6px;
  color: #fff;
}

@keyframes drift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(240px,120px,0); }
}

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(2,9,22,.96);
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 46px; }
  .phone-scene {
    opacity: .54;
    right: -34px;
    top: 20%;
    width: min(390px, 70vw);
  }
  .experience-track { grid-auto-columns: minmax(290px, 82%); }
  .paths-grid, .business-grid { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
}

@media (max-width: 560px) {
  .site-header { min-height: 68px; }
  .brand span { font-size: 14px; }
  .brand img { width: 48px; height: 34px; }
  .hero { padding-top: 86px; min-height: 94svh; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn, .hero-actions .text-link, .path-actions .btn {
    width: 100%;
  }
  .scene-note { font-size: 13px; }
  .section-heading { display: block; }
  .experience-card { min-height: 600px; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
