:root {
  --bg: #060b13;
  --bg-soft: #0f1623;
  --card: #121c2b;
  --text: #f4f7ff;
  --muted: #a6b4ce;
  --cyan: #00d2ff;
  --blue: #4a77ff;
  --line: #213149;
  --success: #79ffb1;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(3, 11, 26, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 210, 255, 0.16), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(74, 119, 255, 0.22), transparent 35%),
    linear-gradient(160deg, var(--bg), #0a1322 48%, #090f17);
  line-height: 1.5;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.35px, transparent 0.35px);
  background-size: 4px 4px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(10px);
  background: rgba(7, 12, 20, 0.65);
  border-bottom: 1px solid rgba(141, 162, 198, 0.2);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.brand span {
  color: var(--cyan);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) 0;
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.2rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-copy {
  max-width: 640px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--cyan);
  font-size: 0.78rem;
  margin: 0 0 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
  margin: 1.1rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--cyan), #34bbff 35%, #4a77ff);
  color: #031324;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(0, 188, 255, 0.25);
}

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

.button-sm {
  padding: 0.56rem 0.95rem;
  font-size: 0.92rem;
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(189, 211, 245, 0.35);
  box-shadow: none;
}

.micro {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.muted {
  color: #89a0c1;
}

.deck-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.4rem;
  position: relative;
  z-index: 1;
}

.hero-image {
  width: min(980px, 170%);
  max-width: none;
  display: block;
  transform: none;
  transform-origin: center;
  margin-right: -8%;
}

.stat {
  background: rgba(16, 25, 39, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.stat span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.stat strong {
  font-family: "Sora", sans-serif;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem 2rem;
  align-items: start;
}

.steps,
.features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.steps li,
.features li {
  background: rgba(15, 24, 37, 0.75);
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 14px;
}

.steps p,
.features li {
  color: var(--muted);
  margin: 0.35rem 0 0;
}

.pricing h2 {
  margin-bottom: 1.2rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  border-radius: var(--radius);
  background: rgba(12, 20, 32, 0.85);
  border: 1px solid var(--line);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: rgba(0, 210, 255, 0.6);
  transform: translateY(-4px);
}

.price-card.caution {
  border-color: rgba(121, 255, 177, 0.45);
}

.label {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.price {
  margin: 0.42rem 0;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.note {
  margin: 0;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.trust-grid article,
.waitlist-form,
.faq details {
  background: rgba(15, 24, 37, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

body.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-grid p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.faq details {
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.waitlist-form {
  display: grid;
  gap: 0.8rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #c3d4ef;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.turnstile-wrap {
  min-height: 64px;
}

input,
select {
  border: 1px solid #2b3f5f;
  background: #091321;
  color: var(--text);
  border-radius: 10px;
  font: inherit;
  padding: 0.72rem 0.8rem;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.14);
}

.waitlist-form button[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}

.form-status {
  min-height: 1.4em;
}

.footer {
  border-top: 1px solid rgba(138, 160, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
  color: #c6d4ea;
}

.footer nav {
  display: flex;
  gap: 0.9rem;
}

.footer a {
  color: #c6d4ea;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .two-col,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .price-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    width: min(840px, 160%);
    transform: none;
    margin-right: -4%;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding-inline: 1rem;
  }

  .price-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .hero-image {
    width: min(680px, 138%);
    transform: none;
    margin-right: 0;
  }
}
