﻿:root {
  --bg: #02020a;
  --white: #f5f3ff;
  --text: #c9c2eb;
  --muted: #82779f;
  --cyan: #22d3ee;
  --violet2: #7c3aed;
  --pink: #e040fb;
  --line: rgba(168, 85, 247, 0.28);
  --line2: rgba(34, 211, 238, 0.25);
  --radius: 26px;
  --max: 1180px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", var(--font);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: -100px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: #111;
}

.skip-link:focus {
  top: 10px;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.62), transparent 70%),
    radial-gradient(1px 1px at 28% 74%, rgba(170, 190, 255, 0.48), transparent 70%),
    radial-gradient(1px 1px at 66% 35%, rgba(210, 180, 255, 0.55), transparent 70%),
    radial-gradient(1px 1px at 82% 68%, rgba(255, 255, 255, 0.48), transparent 70%),
    radial-gradient(circle at 22% 10%, rgba(124, 58, 237, 0.16), transparent 28%),
    radial-gradient(circle at 88% 38%, rgba(34, 211, 238, 0.08), transparent 32%),
    linear-gradient(180deg, #02020a 0%, #040414 46%, #02020a 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 85%, rgba(124, 58, 237, 0.18), transparent 24%),
    radial-gradient(circle at 92% 92%, rgba(224, 64, 251, 0.13), transparent 26%);
}

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

.section {
  position: relative;
  padding: 96px 0;
}

.section-tight {
  padding: 76px 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 108px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(14px, 3.8vw, 48px);
  background: rgba(2, 2, 10, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--display);
  letter-spacing: 2px;
  font-weight: 800;
}

.brand-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex: none;
}

.nav .brand {
  font-size: 24px;
}

.nav .brand-logo {
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.25));
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a,
.footer-links a,
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.nav-links a:hover,
.footer-links a:hover,
.mobile-menu a:hover {
  color: var(--cyan);
}

.nav-cta {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet2), var(--pink));
  box-shadow: 0 0 28px rgba(224, 64, 251, 0.22);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 10px;
}

.mobile-menu {
  position: fixed;
  top: 108px;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 22px;
  background: rgba(3, 3, 13, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-family: var(--display);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 170px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d8c7ff;
  border: 1px solid var(--line);
  background: rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(224, 64, 251, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(224, 64, 251, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(224, 64, 251, 0);
  }
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 24px;
  font-size: clamp(44px, 8vw, 88px);
  max-width: 760px;
  background: linear-gradient(135deg, #fff 18%, #b793ff 52%, #26e2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(34px, 5.3vw, 62px);
}

h3 {
  font-size: 22px;
}

.hero-subtitle {
  color: var(--text);
  font-size: clamp(17px, 2.1vw, 22px);
  max-width: 650px;
  margin: 24px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.24s;
  cursor: pointer;
  font-family: var(--font);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, var(--violet2) 45%, var(--pink) 100%);
  box-shadow: 0 0 36px rgba(124, 58, 237, 0.34);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(224, 64, 251, 0.38);
}

.btn-secondary {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(34, 211, 238, 0.06);
}

.btn-secondary:hover {
  background: rgba(34, 211, 238, 0.12);
  transform: translateY(-2px);
}

.hero-note {
  color: var(--muted);
  margin-top: 18px;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 58%), radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.18), transparent 40%);
  filter: blur(28px);
  z-index: -1;
}

.phone-static {
  width: min(470px, 100%);
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 30px 90px rgba(124, 58, 237, 0.38));
  transform: rotate(-6deg);
}

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

.section-head h2 {
  margin-top: 18px;
}

.section-head p {
  color: var(--text);
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 18px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.comparison-col {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius);
  padding: 32px;
}

.comparison-col h3 {
  margin-bottom: 22px;
  color: var(--muted);
}

.comparison-col ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.comparison-col li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.comparison-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.comparison-col.highlighted {
  border-color: rgba(34, 211, 238, 0.35);
  background: radial-gradient(circle at 85% 0%, rgba(224, 64, 251, 0.16), transparent 38%), radial-gradient(circle at 0% 100%, rgba(34, 211, 238, 0.13), transparent 32%), rgba(18, 14, 48, 0.7);
  box-shadow: 0 0 55px rgba(34, 211, 238, 0.08);
}

.comparison-col.highlighted li::before {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  border: 0;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.45);
}

.mini-logo {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 1.4px;
  font-size: 30px;
}

.mini-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(124, 58, 237, 0.45));
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card,
.feature-card,
.waitlist-card,
.orbit-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)), rgba(9, 8, 28, 0.72);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.step-card {
  padding: 26px;
  min-height: 260px;
  transition: 0.25s;
}

.step-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.32);
}

.step-number {
  display: inline-flex;
  margin-bottom: 36px;
  font-family: var(--display);
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p,
.feature-card p,
.proof-copy p,
.faq-list p {
  color: var(--text);
}

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

.feature-card {
  padding: 26px;
  min-height: 220px;
}

.feature-card span {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.17);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  overflow: hidden;
}

.feature-icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.25));
}

.feature-card h3 {
  margin-bottom: 10px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 40px;
  align-items: center;
}

.proof-copy h2 {
  margin: 18px 0;
}

.proof-copy p {
  font-size: 18px;
  max-width: 680px;
}

.orbit-card {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orbit-card img {
  width: min(390px, 100%);
  opacity: 0.95;
}

.waitlist-card {
  max-width: 660px;
  margin: 0 auto;
  padding: 44px;
  border-color: rgba(168, 85, 247, 0.28);
  background: radial-gradient(circle at 100% 0%, rgba(224, 64, 251, 0.16), transparent 34%), rgba(12, 9, 35, 0.88);
}

.waitlist-card h2 {
  margin: 18px 0 14px;
}

.waitlist-card p {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 26px;
}

.form-row {
  margin-bottom: 16px;
}

label {
  display: block;
  color: var(--text);
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 14px;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.28);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  outline: none;
  font: inherit;
}

select option {
  background: #080819;
  color: #fff;
}

input:focus,
select:focus {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.form-btn {
  width: auto;
  border: 0;
  margin-top: 6px;
  min-width: 280px;
  padding: 0 34px;
  display: inline-flex;
}

form small {
  display: block;
  text-align: center;
  color: var(--muted);
  margin-top: 12px;
}

.success {
  padding: 24px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 20px;
  background: rgba(34, 211, 238, 0.06);
  margin-top: 22px;
}

.success h3 {
  color: var(--cyan);
  margin-bottom: 6px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 8, 28, 0.7);
  border-radius: 20px;
  padding: 0 22px;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 0 22px;
}

.final-cta {
  text-align: center;
  padding-top: 86px;
}

.final-cta p {
  color: var(--text);
  font-size: 19px;
  margin: 18px auto 30px;
  max-width: 620px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.footer-brand {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.footer-brand .brand-logo {
  width: 84px;
  height: 84px;
  filter: drop-shadow(0 0 14px rgba(124, 58, 237, 0.35));
}

.copy {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    height: 96px;
    padding: 0 16px;
  }

  .mobile-menu {
    top: 96px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav .brand {
    font-size: 21px;
  }

  .nav .brand-logo {
    width: 80px;
    height: 80px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-note {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .phone-static {
    width: min(430px, 92vw);
    transform: rotate(-5deg);
  }

  .comparison,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .section-tight {
    padding: 62px 0;
  }

  .nav {
    height: 82px;
  }

  .mobile-menu {
    top: 82px;
  }

  .nav .brand {
    gap: 10px;
    font-size: 17px;
    letter-spacing: 1.2px;
  }

  .nav .brand-logo {
    width: 64px;
    height: 64px;
  }

  .mini-logo img,
  .footer-brand .brand-logo {
    width: 56px;
    height: 56px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .hero {
    padding-top: 128px;
    padding-bottom: 28px;
    min-height: auto;
    overflow-x: clip;
  }

  .hero-subtitle {
    font-size: 16px;
    margin: 18px 0 24px;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .phone-static {
    width: min(340px, 92vw);
    max-width: 100%;
    transform: rotate(-4deg);
  }

  .comparison,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .comparison-col,
  .waitlist-card {
    padding: 24px;
  }

  .step-card {
    min-height: auto;
  }

  .step-number {
    margin-bottom: 22px;
  }

  .feature-card span {
    width: 72px;
    height: 72px;
  }

  .feature-icon-img {
    width: 58px;
    height: 58px;
  }

  .form-btn {
    width: 100%;
    min-width: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .copy {
    white-space: normal;
  }
}
