﻿:root {
  --bg: #02040b;
  --bg2: #050816;
  --panel: rgba(8, 13, 28, 0.78);
  --panel2: rgba(13, 19, 38, 0.92);
  --line: rgba(158, 174, 205, 0.16);
  --text: #f8fbff;
  --muted: #9ca8ba;
  --dim: #6f7a8d;
  --purple: #8f4cff;
  --purple2: #6d35e8;
  --blue: #33bdf2;
  --cyan: #55dcff;
  --green: #7dd3a8;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.1), transparent 18%),
    radial-gradient(circle at 24% 11%, rgba(143,76,255,.25), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(51,189,242,.2), transparent 25%),
    radial-gradient(circle at 50% 82%, rgba(109,53,232,.2), transparent 35%),
    linear-gradient(180deg, #02030a 0%, #050816 50%, #02040b 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.14), transparent 9%),
    linear-gradient(rgba(120, 140, 180, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 140, 180, 0.03) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}
body::after {
  content: "";
  position: fixed;
  inset: auto -10% -34% -10%;
  height: 60vh;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(109, 53, 232, 0.22), transparent 64%);
  filter: blur(12px);
}
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }

.page {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 32px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: white;
  text-decoration: none;
}
.logo-mark {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 12px rgba(0, 216, 255, 0.7)) drop-shadow(0 0 24px rgba(143, 76, 255, 0.24));
}
.brand-text {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.45), 0 0 30px rgba(0, 216, 255, 0.2);
}.nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.nav a,
.header-link {
  color: #d2d8e3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.nav a:hover,
.header-link:hover { color: white; background: rgba(255,255,255,.08); }
.header-link { border: 1px solid rgba(158,174,205,.16); background: rgba(8,13,28,.64); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 54px;
  align-items: center;
  min-height: 690px;
  padding: 34px 0 76px;
}
.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(85,220,255,.22);
  border-radius: 999px;
  color: #d7f7ff;
  background: rgba(51,189,242,.09);
  box-shadow: 0 0 30px rgba(85,220,255,.08), inset 0 1px 0 rgba(255,255,255,.08);
  text-transform: none;
  letter-spacing: 0;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(85,220,255,.95);
}
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.2vw, 74px);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 950;
}
.glow-title {
  color: white;
  text-shadow: 0 0 24px rgba(255,255,255,.46), 0 0 70px rgba(85,220,255,.2);
}
.gradient-text {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(85,220,255,.28);
}
.mobile-headline { display: none; }
.mobile-hero-title { display: none; }
.hero-title-mobile { display: none; }
.subtitle {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  margin-bottom: 30px;
}
.actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: white;
  background: linear-gradient(180deg, #9f62ff, #7438ea);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 18px 46px rgba(111,57,232,.42), 0 0 42px rgba(143,76,255,.16);
}
.button-secondary {
  color: #dbeafe;
  border: 1px solid rgba(158,174,205,.18);
  background: rgba(8,13,28,.68);
}
.signal-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 620px; }
.signal,
.step,
.feature-card,
.stat,
.card {
  border: 1px solid rgba(158,174,205,.15);
  background: linear-gradient(180deg, rgba(16,23,45,.72), rgba(8,13,28,.68));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 18px 46px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.signal { padding: 14px; border-radius: 20px; }
.signal strong { display: block; margin-bottom: 3px; font-size: 15px; color: white; }
.signal span { color: var(--dim); font-size: 13px; line-height: 1.35; }

.app-showcase { position: relative; min-height: 610px; display: grid; place-items: center; }
.app-showcase::before {
  content: "";
  position: absolute;
  width: min(92%, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.12), transparent 18%),
    radial-gradient(circle, rgba(143,76,255,.38), transparent 52%),
    radial-gradient(circle at 70% 32%, rgba(51,189,242,.28), transparent 46%);
  filter: blur(28px);
  animation: breathe 7s ease-in-out infinite;
}
.phone-stack {
  position: relative;
  width: min(520px, 100%);
  min-height: 590px;
}
.phone-frame {
  position: absolute;
  padding: 12px;
  border: 1px solid rgba(235,244,255,.18);
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.03) 28%, rgba(2,4,11,.82));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
}
.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 76px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 15px 15px;
  background: #02040b;
  opacity: .8;
}
.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  background: #050816;
}
.phone-welcome {
  z-index: 2;
  width: 258px;
  height: 526px;
  left: 22px;
  top: 36px;
  transform: rotate(-4deg);
}
.phone-map {
  z-index: 1;
  width: 282px;
  height: 574px;
  right: 6px;
  top: 0;
  transform: rotate(5deg);
}
.screenshot-label {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 18px;
  max-width: 260px;
  padding: 16px;
  border: 1px solid rgba(85,220,255,.2);
  border-radius: 22px;
  background: rgba(5,8,22,.78);
  box-shadow: 0 22px 52px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}
.screenshot-label small {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.screenshot-label p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.section { padding: 72px 0; }
.section-header { max-width: 760px; margin-bottom: 28px; }
.section-kicker { margin-bottom: 12px; }
h2 { margin-bottom: 14px; font-size: clamp(34px, 4vw, 54px); line-height: 1.04; letter-spacing: 0; }
.section-header p,
.intro-panel p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.intro-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(158,174,205,.17);
  border-radius: 30px;
  background: radial-gradient(circle at 82% 10%, rgba(85,220,255,.12), transparent 24%), linear-gradient(135deg, rgba(143,76,255,.15), transparent 36%), rgba(8,13,28,.74);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.intro-panel::after { content: ""; position: absolute; right: -120px; top: -120px; width: 310px; height: 310px; border-radius: 50%; background: radial-gradient(circle, rgba(85,220,255,.18), transparent 66%); }
.intro-stats { position: relative; z-index: 1; display: grid; gap: 12px; }
.stat { padding: 18px; border-radius: 22px; background: rgba(2,4,11,.32); }
.stat strong { display: block; margin-bottom: 4px; font-size: 28px; line-height: 1; color: white; }
.stat span { color: var(--muted); font-size: 14px; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.step { padding: 24px; border-radius: 26px; }
.step-number { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 20px; border-radius: 16px; color: white; background: linear-gradient(180deg, #9f62ff, #7438ea); font-weight: 900; box-shadow: 0 16px 34px rgba(111,57,232,.28); }
.step h3,
.feature-card h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.18; }
.step p,
.feature-card p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature-card { position: relative; overflow: hidden; min-height: 220px; padding: 26px 24px; border-radius: 26px; }
.feature-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 28px 26px, rgba(85,220,255,.13), transparent 32%); pointer-events: none; }
.beta-panel { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 30px; border: 1px solid rgba(85,220,255,.18); border-radius: 30px; background: radial-gradient(circle at 82% 20%, rgba(85,220,255,.15), transparent 28%), linear-gradient(135deg, rgba(143,76,255,.18), rgba(5,8,22,.9)); box-shadow: var(--shadow); }
.beta-panel h2 { margin-bottom: 8px; font-size: clamp(30px, 4vw, 46px); }
.beta-panel p { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 660px; }
.document { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: radial-gradient(circle at 86% 10%, rgba(85,220,255,.12), transparent 24%), linear-gradient(135deg, rgba(143,76,255,.12), transparent 30%), var(--panel); box-shadow: var(--shadow); }
.doc-hero { padding: 34px 34px 22px; border-bottom: 1px solid rgba(158,174,205,.14); }
.doc-hero h1 { margin-bottom: 14px; font-size: clamp(38px, 7vw, 64px); }
.doc-hero p { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 17px; }
.content { padding: 12px 34px 34px; }
.content h2 { margin: 30px 0 10px; font-size: 24px; line-height: 1.2; }
.content p,
.content li { color: var(--muted); }
.content strong { color: white; }
.content ul { padding-left: 22px; margin-top: 10px; }
.content li + li { margin-top: 8px; }
.cards { display: grid; gap: 16px; margin: 26px 0 30px; }
.card { position: relative; overflow: hidden; padding: 24px; border-radius: 24px; background: rgba(2,4,11,.34); }
.card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--purple), var(--blue), var(--green)); }
.card h2 { margin-top: 0; }
.path { display: inline-block; margin: 4px 0 10px; padding: 9px 12px; border: 1px solid rgba(85,220,255,.18); border-radius: 14px; color: white; background: rgba(51,189,242,.08); font-weight: 800; }
.support-note { margin-top: 28px; padding: 18px; border: 1px solid rgba(85,220,255,.18); border-radius: 20px; background: rgba(51,189,242,.07); }
.support-note p { margin: 0; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0 8px; border-top: 1px solid rgba(158,174,205,.14); color: var(--dim); font-size: 14px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer a,
.content a { color: #c9b6ff; text-decoration: none; font-weight: 700; }
.footer a:hover,
.content a:hover { color: white; }

@keyframes breathe { 0%, 100% { opacity: .76; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.04); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
}
@media (max-width: 1020px) {
  .hero,
  .intro-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .app-showcase { min-height: 600px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .page { width: min(100% - 28px, 1160px); padding-top: 18px; }
  .site-header { align-items: flex-start; padding-bottom: 22px; }
  .nav { max-width: 180px; gap: 4px; }
  .nav a { padding: 8px 9px; font-size: 13px; }
  .hero { gap: 28px; padding-bottom: 46px; }
  .signal-row,
  .steps,
  .feature-grid { grid-template-columns: 1fr; }
  .app-showcase { min-height: 560px; }
  .phone-stack { min-height: 540px; }
  .phone-welcome { width: 226px; height: 462px; left: 0; top: 44px; }
  .phone-map { width: 236px; height: 486px; right: 0; top: 10px; }
  .screenshot-label { right: 10px; bottom: 0; max-width: 230px; }
  .section { padding: 50px 0; }
  .intro-panel,
  .beta-panel { padding: 24px; border-radius: 24px; }
  .beta-panel { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .document { border-radius: 24px; }
  .doc-hero,
  .content { padding-left: 22px; padding-right: 22px; }
}
@media (max-width: 560px) {
  .site-header { flex-direction: column; }
  .header-link { width: fit-content; }
  .app-showcase { min-height: 620px; }
  .phone-stack { min-height: 600px; }
  .phone-welcome { left: 4px; top: 0; transform: rotate(-2deg); }
  .phone-map { right: 4px; top: 134px; transform: rotate(3deg); }
  .screenshot-label { left: 14px; right: 14px; bottom: 0; max-width: none; }
}
@media (max-width: 700px) {
  .page {
    width: calc(100% - 44px);
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0 20px;
  }

  .brand {
    gap: 10px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 18px;
    letter-spacing: 0.13em;
  }

  .nav {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    justify-content: stretch;
  }

  .nav a,
  .header-link {
    min-width: 0;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .header-link {
    width: 100%;
    max-width: 220px;
  }

  .hero {
    gap: 16px;
    padding: 12px 0 32px;
  }

  .eyebrow {
    padding: 7px 11px;
    font-size: 12px;
    margin-bottom: 14px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(42px, 13vw, 52px);
    line-height: 1.02;
  }

  .subtitle {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
  }

  .signal-row {
    display: none;
  }

  .app-showcase {
    min-height: 470px;
    margin-top: 4px;
  }

  .app-showcase::before {
    width: min(100%, 390px);
    filter: blur(22px);
  }

  .phone-stack {
    width: min(100%, 360px);
    min-height: 460px;
  }

  .phone-frame {
    padding: 9px;
    border-radius: 30px;
  }

  .phone-frame::before {
    top: 8px;
    width: 58px;
    height: 17px;
    border-radius: 0 0 12px 12px;
  }

  .phone-frame img {
    border-radius: 22px;
  }

  .phone-welcome {
    width: 188px;
    height: 386px;
    left: 2px;
    top: 8px;
    transform: rotate(-3deg);
  }

  .phone-map {
    width: 202px;
    height: 414px;
    right: 2px;
    top: 42px;
    transform: rotate(4deg);
  }

  .screenshot-label {
    left: 16px;
    right: 16px;
    bottom: 0;
    max-width: none;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .screenshot-label small {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .screenshot-label p {
    font-size: 13px;
    line-height: 1.4;
  }

  .section {
    padding: 36px 0;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .section-kicker {
    margin-bottom: 9px;
    font-size: 12px;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
  }

  .section-header p,
  .intro-panel p {
    font-size: 16px;
    line-height: 1.55;
  }

  .intro-panel,
  .beta-panel {
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .intro-stats {
    gap: 10px;
  }

  .stat {
    padding: 15px;
    border-radius: 18px;
  }

  .stat strong {
    font-size: 22px;
  }

  .steps,
  .feature-grid {
    gap: 12px;
  }

  .step,
  .feature-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .step h3,
  .feature-card h3 {
    font-size: 20px;
  }

  .step p,
  .feature-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .beta-panel h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .beta-panel p {
    font-size: 16px;
    line-height: 1.55;
  }

  .document {
    border-radius: 22px;
  }

  .doc-hero {
    padding: 24px 20px 18px;
  }

  .doc-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.04;
  }

  .doc-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .content {
    padding: 8px 20px 26px;
  }

  .content h2 {
    margin-top: 24px;
    font-size: 22px;
  }

  .content p,
  .content li {
    font-size: 15px;
    line-height: 1.6;
  }

  .cards {
    gap: 12px;
    margin: 20px 0 26px;
  }

  .card {
    padding: 20px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 22px;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-links a {
    min-width: 0;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .page {
    width: calc(100% - 32px);
  }

  .brand-text {
    font-size: 16px;
    letter-spacing: 0.11em;
  }

  .nav a,
  .footer-links a {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(39px, 12.5vw, 46px);
  }

  .app-showcase {
    min-height: 440px;
  }

  .phone-stack {
    min-height: 430px;
  }

  .phone-welcome {
    width: 174px;
    height: 358px;
  }

  .phone-map {
    width: 186px;
    height: 382px;
  }
}
@media (max-width: 700px) {
  body {
    background:
      radial-gradient(circle at 50% -4%, rgba(255, 255, 255, 0.12), transparent 16%),
      radial-gradient(circle at 50% 18%, rgba(0, 216, 255, 0.16), transparent 28%),
      radial-gradient(circle at 50% 56%, rgba(143, 76, 255, 0.22), transparent 34%),
      linear-gradient(180deg, #02030a 0%, #050816 58%, #02040b 100%);
  }

  .page {
    width: calc(100% - 44px) !important;
    padding-top: 8px !important;
    padding-bottom: 22px !important;
  }

  .site-header {
    align-items: center !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 6px 0 18px !important;
  }

  .brand {
    justify-content: center !important;
    gap: 10px !important;
  }

  .logo-mark {
    width: 39px !important;
    height: 39px !important;
  }

  .brand-text {
    font-size: 18px !important;
    letter-spacing: 0.13em !important;
  }

  .nav {
    width: 100% !important;
    max-width: 360px !important;
    display: grid !important;
    grid-template-columns: 0.85fr 1.35fr 0.85fr !important;
    gap: 4px !important;
    justify-content: center !important;
  }

  .nav a,
  .header-link {
    min-width: 0 !important;
    padding: 7px 4px !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    min-height: auto !important;
    padding: 6px 0 30px !important;
  }

  .hero > div:first-child {
    width: 100% !important;
  }

  .eyebrow {
    margin-bottom: 13px !important;
    padding: 7px 11px !important;
    font-size: 12px !important;
  }

  #hero-title {
    max-width: 360px !important;
    margin-bottom: 14px !important;
    font-size: clamp(38px, 11vw, 44px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
  }

  .desktop-headline {
    display: none !important;
  }

  .mobile-headline {
    display: inline !important;
    color: #f8fbff !important;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.34), 0 0 34px rgba(85, 220, 255, 0.16) !important;
  }

  .subtitle {
    max-width: 355px !important;
    margin-bottom: 18px !important;
    font-size: 17px !important;
    line-height: 1.42 !important;
  }

  .actions {
    width: 100% !important;
    align-items: stretch !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 0 !important;
  }

  .button {
    width: 100% !important;
    min-height: 50px !important;
    padding: 0 18px !important;
    border-radius: 16px !important;
  }

  .signal-row {
    display: none !important;
  }

  .app-showcase {
    width: 100% !important;
    min-height: 430px !important;
    margin-top: 2px !important;
    order: 2 !important;
  }

  .app-showcase::before {
    width: min(100%, 360px) !important;
    filter: blur(22px) !important;
  }

  .phone-stack {
    width: min(100%, 342px) !important;
    min-height: 430px !important;
  }

  .phone-frame {
    padding: 8px !important;
    border-radius: 28px !important;
  }

  .phone-frame::before {
    top: 7px !important;
    width: 56px !important;
    height: 16px !important;
    border-radius: 0 0 12px 12px !important;
  }

  .phone-frame img {
    border-radius: 21px !important;
  }

  .phone-welcome {
    width: 176px !important;
    height: 362px !important;
    left: 0 !important;
    top: 0 !important;
    transform: rotate(-3deg) !important;
  }

  .phone-map {
    width: 192px !important;
    height: 394px !important;
    right: 0 !important;
    top: 34px !important;
    transform: rotate(4deg) !important;
  }

  .screenshot-label {
    display: none !important;
  }

  .section {
    padding: 34px 0 !important;
  }

  .section-header {
    margin-bottom: 18px !important;
  }

  .section-kicker {
    margin-bottom: 8px !important;
    font-size: 12px !important;
  }

  h2 {
    font-size: clamp(28px, 8.8vw, 38px) !important;
    line-height: 1.08 !important;
  }

  .section-header p,
  .intro-panel p {
    font-size: 16px !important;
    line-height: 1.52 !important;
  }

  .intro-panel,
  .beta-panel {
    gap: 18px !important;
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .intro-stats,
  .steps,
  .feature-grid {
    gap: 12px !important;
  }

  .stat,
  .step,
  .feature-card,
  .card {
    min-height: auto !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .stat strong {
    font-size: 22px !important;
  }

  .step-number {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 14px !important;
    border-radius: 14px !important;
  }

  .step h3,
  .feature-card h3 {
    font-size: 20px !important;
  }

  .step p,
  .feature-card p,
  .beta-panel p {
    font-size: 15px !important;
    line-height: 1.52 !important;
  }

  .beta-panel h2 {
    font-size: clamp(28px, 8.8vw, 38px) !important;
  }

  .document {
    border-radius: 22px !important;
  }

  .doc-hero {
    padding: 24px 20px 18px !important;
  }

  .doc-hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.04 !important;
  }

  .doc-hero p,
  .content p,
  .content li {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .content {
    padding: 8px 20px 26px !important;
  }

  .content h2 {
    margin-top: 22px !important;
    font-size: 22px !important;
  }

  .footer {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding-top: 22px !important;
  }

  .footer-links {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .footer-links a {
    min-width: 0 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  #hero-title {
    font-size: clamp(36px, 10.8vw, 41px) !important;
  }

  .page {
    width: calc(100% - 32px) !important;
  }

  .brand-text {
    font-size: 16px !important;
    letter-spacing: 0.11em !important;
  }

  .nav a,
  .footer-links a {
    font-size: 11px !important;
  }

  .app-showcase {
    min-height: 404px !important;
  }

  .phone-stack {
    min-height: 404px !important;
  }

  .phone-welcome {
    width: 164px !important;
    height: 338px !important;
  }

  .phone-map {
    width: 178px !important;
    height: 366px !important;
  }
}
@media (max-width: 700px) {
  .site-header {
    gap: 8px !important;
    padding: 6px 0 10px !important;
  }

  .brand {
    width: 100% !important;
    justify-content: center !important;
  }

  .nav {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
  }

  .nav a {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 5px 0 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .hero {
    padding-top: 2px !important;
  }

  .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }

  .desktop-hero-title,
  #hero-title,
  .desktop-headline {
    display: none !important;
  }

  .mobile-hero-title {
    display: block !important;
    max-width: 360px !important;
    margin: 0 0 14px !important;
    color: #f8fbff !important;
    font-size: clamp(38px, 11vw, 42px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
    font-weight: 950 !important;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.34), 0 0 34px rgba(85, 220, 255, 0.16) !important;
  }
}

@media (max-width: 390px) {
  .nav {
    gap: 14px !important;
  }

  .nav a {
    font-size: 13px !important;
  }

  .mobile-hero-title {
    font-size: clamp(36px, 10.6vw, 40px) !important;
  }
}
@media (max-width: 700px) {
  .site-header {
    gap: 6px !important;
    padding: 6px 0 8px !important;
  }

  .site-nav,
  nav,
  .nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: none !important;
  }

  .site-nav a,
  nav a,
  .nav a {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 5px 0 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .hero {
    padding-top: 0 !important;
  }

  .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

  .hero-title-desktop,
  .desktop-hero-title,
  #hero-title,
  .desktop-headline {
    display: none !important;
  }

  .hero-title-mobile {
    display: block !important;
    max-width: 12ch !important;
    margin: 26px 0 18px !important;
    color: #f8fbff !important;
    font-size: clamp(38px, 11vw, 44px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    font-weight: 950 !important;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.34), 0 0 34px rgba(85, 220, 255, 0.16) !important;
  }
}

@media (max-width: 390px) {
  .site-nav,
  nav,
  .nav {
    gap: 10px !important;
  }

  .site-nav a,
  nav a,
  .nav a {
    font-size: 12px !important;
  }
}
@media (max-width: 700px) {
  header.site-header nav.nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  header.site-header nav.nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 24px !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
  }
}

@media (max-width: 360px) {
  header.site-header nav.nav {
    gap: 9px !important;
  }

  header.site-header nav.nav a {
    font-size: 12px !important;
  }
}
@media (max-width: 700px) {
  header.site-header nav.site-nav {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    justify-items: center !important;
    column-gap: 10px !important;
    row-gap: 0 !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    white-space: nowrap !important;
  }

  header.site-header nav.site-nav a {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 22px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  header.site-header nav.site-nav a:nth-child(1) {
    justify-self: end !important;
  }

  header.site-header nav.site-nav a:nth-child(2) {
    justify-self: center !important;
  }

  header.site-header nav.site-nav a:nth-child(3) {
    justify-self: start !important;
  }
}

@media (max-width: 360px) {
  header.site-header nav.site-nav {
    max-width: 310px !important;
    column-gap: 8px !important;
  }

  header.site-header nav.site-nav a {
    font-size: 12px !important;
  }
}
/* Final header nav alignment override: keep top nav links on one row. */
.site-header .nav,
.site-header .site-nav,
header.site-header nav.nav,
header.site-header nav.site-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.site-header .nav a,
.site-header .site-nav a,
header.site-header nav.nav a,
header.site-header nav.site-nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: max-content !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px 0 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center !important;
}

@media (max-width: 700px) {
  .site-header .nav,
  .site-header .site-nav,
  header.site-header nav.nav,
  header.site-header nav.site-nav {
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .site-header .nav a,
  .site-header .site-nav a,
  header.site-header nav.nav a,
  header.site-header nav.site-nav a {
    min-width: max-content !important;
    padding: 5px 0 !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 360px) {
  .site-header .nav,
  .site-header .site-nav,
  header.site-header nav.nav,
  header.site-header nav.site-nav {
    gap: 10px !important;
  }

  .site-header .nav a,
  .site-header .site-nav a,
  header.site-header nav.nav a,
  header.site-header nav.site-nav a {
    font-size: 12px !important;
  }
}
@media (max-width: 700px) {
  header.site-header nav.site-nav,
  .site-header .site-nav {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: space-between !important;
    gap: 0 !important;
    padding: 0 2px !important;
  }

  header.site-header nav.site-nav a,
  .site-header .site-nav a {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    padding: 5px 2px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 390px) {
  header.site-header nav.site-nav,
  .site-header .site-nav {
    padding: 0 !important;
  }

  header.site-header nav.site-nav a,
  .site-header .site-nav a {
    font-size: 11px !important;
    padding: 5px 1px !important;
  }
}
@media (max-width: 700px) {
  header.site-header nav.site-nav,
  .site-header .site-nav {
    box-sizing: border-box !important;
    width: calc(100% - 12px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    overflow: visible !important;
  }

  header.site-header nav.site-nav a,
  .site-header .site-nav a {
    font-size: 11.5px !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 360px) {
  header.site-header nav.site-nav,
  .site-header .site-nav {
    width: calc(100% - 8px) !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  header.site-header nav.site-nav a,
  .site-header .site-nav a {
    font-size: 11px !important;
  }
}



/* App preview video: share the same rounded phone treatment as screenshots. */
.phone-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  background: #050816;
}

@media (max-width: 700px) {
  .phone-frame video {
    border-radius: 21px !important;
  }
}

.video-preview-section {
  padding-top: 14px;
}

.video-preview-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(85, 220, 255, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(85, 220, 255, 0.16), transparent 30%),
    radial-gradient(circle at 18% 12%, rgba(143, 76, 255, 0.18), transparent 32%),
    rgba(8, 13, 28, 0.76);
  box-shadow: var(--shadow);
}

.video-preview-copy {
  margin-bottom: 0;
}

.video-preview-frame {
  overflow: hidden;
  border: 1px solid rgba(235, 244, 255, 0.16);
  border-radius: 28px;
  background: #050816;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.38),
    0 0 48px rgba(143, 76, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-preview-video {
  display: block;
  width: 100%;
  max-height: 620px;
  background: #050816;
}

@media (max-width: 700px) {
  .video-preview-section {
    padding-top: 8px !important;
  }

  .video-preview-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .video-preview-frame {
    border-radius: 20px;
  }

  .site-preview-video {
    max-height: 520px;
  }
}

.video-share-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.share-video-button {
  min-height: 48px;
  cursor: pointer;
  border: 1px solid rgba(158, 174, 205, 0.22);
  font: inherit;
}

.share-status {
  min-height: 20px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 700px) {
  .video-share-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .share-video-button {
    width: 100%;
  }

  .share-status {
    text-align: center;
  }
}

/* Keep the preview share control attached to the video player. */
.video-preview-frame .video-share-actions {
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border-top: 1px solid rgba(158, 174, 205, 0.14);
  background: linear-gradient(180deg, rgba(8, 13, 28, 0.92), rgba(3, 6, 16, 0.96));
}

.video-preview-frame .share-video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(85, 220, 255, 0.26);
  border-radius: 14px;
  color: #f8fbff;
  background: rgba(85, 220, 255, 0.08);
  box-shadow: 0 0 24px rgba(85, 220, 255, 0.12);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.video-preview-frame .share-video-button:hover {
  background: rgba(85, 220, 255, 0.14);
  transform: translateY(-1px);
}

.share-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(85, 220, 255, 0.36));
}

.video-preview-frame .share-status {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 700px) {
  .video-preview-frame .video-share-actions {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
  }

  .video-preview-frame .share-video-button {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
  }
}

/* Final mobile footer override: keep all four legal/support links balanced. */
@media (max-width: 700px) {
  .footer {
    align-items: stretch !important;
    gap: 16px !important;
  }

  .footer-links {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 16px !important;
    justify-items: center !important;
  }

  .footer-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    width: 100% !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .footer > div:last-child {
    width: 100% !important;
    text-align: center !important;
  }
}
