:root {
  --bg: #07090d;
  --bg-elevated: #0d1118;
  --panel: #121722;
  --panel-2: #171d2b;
  --line: #232a3a;
  --line-soft: #1a2030;
  --text: #eef1f7;
  --muted: #93a0b8;
  --faint: #66748f;
  --teal: #2ee6a6;
  --teal-deep: #14b87f;
  --teal-dim: rgba(46, 230, 166, 0.12);
  --coral: #ff6b6b;
  --violet: #8b7cff;
  --gold: #f0c75e;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(46, 230, 166, 0.08), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(139, 124, 255, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: #04120c;
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 13, 0.72);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-transform: uppercase;
}

.logo span {
  color: var(--teal);
  font-weight: 700;
}

.logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, var(--teal) 0%, #1bc4ff 55%, var(--violet) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 20px rgba(46, 230, 166, 0.25);
}

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

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  margin-left: 8px !important;
  color: #04120c !important;
  background: var(--teal) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: #5ef0bc !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
}

/* Hero */
.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-dim);
}

.eyebrow.light {
  color: #b8ffe4;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 14ch;
}

.lede {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: #04120c;
  border-color: #5ef0bc;
}

.btn-primary:hover {
  background: #5ef0bc;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.hero-stats dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}

.hero-stats dd {
  font-weight: 700;
  font-size: 15px;
}

/* Phone mock */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 520px;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(300px, 100%);
  filter: drop-shadow(var(--shadow));
}

.phone-bezel {
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #2a3144, #0c0f15 40%, #1a2030);
  border: 1px solid #3a4258;
}

.phone-screen {
  border-radius: 28px;
  background: linear-gradient(180deg, #0b1018 0%, #101722 100%);
  border: 1px solid #1e2638;
  padding: 14px 14px 18px;
  min-height: 520px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--faint);
  font-family: var(--mono);
  margin-bottom: 18px;
}

.phone-pill {
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: #000;
  border: 1px solid #222;
}

.phone-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.phone-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 4px;
}

.phone-meta {
  color: var(--muted);
  font-size: 12px;
  margin: 6px 0 16px;
}

.phone-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}

.phone-card.live {
  background: linear-gradient(180deg, rgba(46, 230, 166, 0.08), transparent 70%), var(--panel);
  border-color: rgba(46, 230, 166, 0.28);
}

.phone-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.phone-card .big {
  font-size: 22px;
  font-weight: 800;
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}

.phone-card .tag {
  font-size: 11px;
  color: var(--teal);
  background: var(--teal-dim);
  border-radius: 999px;
  padding: 3px 8px;
}

.phone-card .muted,
.muted {
  color: var(--muted);
  font-weight: 500;
}

.phone-card .small {
  font-size: 12px;
  margin-top: 4px;
}

.phone-card .score {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 18px;
}

.phone-card .mono {
  font-family: var(--mono);
  color: var(--text);
}

.bar {
  height: 6px;
  border-radius: 999px;
  background: #1c2434;
  overflow: hidden;
  margin-bottom: 10px;
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  border-radius: inherit;
}

.phone-dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
}

.phone-dock .on {
  color: var(--teal);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.orb-a {
  width: 220px;
  height: 220px;
  background: rgba(46, 230, 166, 0.18);
  top: 40px;
  right: 10%;
}

.orb-b {
  width: 180px;
  height: 180px;
  background: rgba(139, 124, 255, 0.16);
  bottom: 40px;
  left: 8%;
}

/* Sections */
.section {
  padding: 88px 0;
}

.muted-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%),
    rgba(10, 13, 20, 0.65);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.approach h2,
.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 800;
}

.section-lede {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.status-pill {
  display: inline-flex;
  margin-top: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(240, 199, 94, 0.35);
  color: var(--gold);
  background: rgba(240, 199, 94, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.panel.accent {
  background:
    linear-gradient(160deg, rgba(46, 230, 166, 0.1), transparent 45%),
    var(--panel-2);
  border-color: rgba(46, 230, 166, 0.22);
}

.panel h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.panel > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 14.5px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(46, 230, 166, 0.5);
  box-shadow: inset 0 0 0 3px transparent;
  background-image: radial-gradient(circle at center, var(--teal) 0 2px, transparent 2.5px);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-grid div {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px;
}

.mini-grid strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.mini-grid span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 180px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover {
  border-color: rgba(46, 230, 166, 0.35);
  transform: translateY(-2px);
}

.card .icon {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal-dim);
  color: var(--teal);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  justify-content: center;
}

.pill-row span {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  border-radius: 999px;
  padding: 7px 12px;
}

/* Approach */
.approach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.approach-grid div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.approach-grid h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.approach-grid p {
  color: var(--muted);
  font-size: 14px;
}

/* Company */
.company {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.company-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: linear-gradient(160deg, rgba(139, 124, 255, 0.08), transparent 50%), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.company-panel div {
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line-soft);
}

.company-panel .label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}

.company-panel strong {
  font-size: 15px;
}

/* CTA */
.cta-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(46, 230, 166, 0.16), transparent 60%),
    linear-gradient(180deg, #101722, #0c1119);
  border: 1px solid rgba(46, 230, 166, 0.22);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 46ch;
}

.waitlist {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.waitlist input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 14px 18px;
  font: inherit;
  outline: none;
}

.waitlist input:focus {
  border-color: rgba(46, 230, 166, 0.55);
  box-shadow: 0 0 0 3px var(--teal-dim);
}

.waitlist .btn {
  white-space: nowrap;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--muted);
}

.form-note a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0 48px;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-tag {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.copyright {
  color: var(--faint);
  font-size: 13px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Privacy page helpers */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 96px;
}

.prose h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.prose .meta {
  color: var(--muted);
  margin-bottom: 32px;
}

.prose h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.prose p,
.prose li {
  color: var(--muted);
  margin-bottom: 12px;
}

.prose ul {
  padding-left: 1.2rem;
  margin-bottom: 12px;
}

.prose a {
  color: var(--teal);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .feature-split,
  .approach,
  .company,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
    order: -1;
  }

  .phone {
    width: min(280px, 100%);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 18px;
    background: rgba(7, 9, 13, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .cards,
  .timeline,
  .mini-grid,
  .approach-grid,
  .company-panel,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .section {
    padding: 64px 0;
  }

  .cta-box {
    padding: 28px 22px;
  }
}
