:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color-scheme: dark;
  --bg-main: #050717;
  --bg-elevated: #0b0f25;
  --bg-elevated-soft: #111632;
  --accent-primary: #6b5bff;
  --accent-secondary: #ff4fd8;
  --accent-cyan: #4fd1ff;
  --text-main: #f9fafb;
  --text-muted: #a5b0d5;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-full: 999px;
  --shadow-soft:
    0 18px 45px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(107, 91, 255, 0.35);
}


/* ------------------------ GLOBAL ------------------------ */

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top left, #181744 0, #050515 55%, #020312 100%);
  color: var(--text-main);
}

.page-bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(107, 91, 255, 0.45), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255, 79, 216, 0.4), transparent 55%);
  opacity: 0.85;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: -1;
}



/* ------------------------ NAV ------------------------ */

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 90px;
  width: auto;
  margin-top: 8px;
  display: block;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  margin-left: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-secondary));
  color: white !important;
  font-weight: 500;
}



/* ------------------------ HERO ------------------------ */

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2px 20px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-cyan));
  padding: 11px 22px;
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 11px 22px;
  border-radius: 999px;
  color: var(--text-muted);
  cursor: pointer;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-footnote {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}



/* ------------------------ UI SHELL (RIGHT SIDE) ------------------------ */

.ui-shell {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 253, 0.16);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.ui-shell-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ui-shell-title {
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}
.dot-red { background: #f87171; }
.dot-amber { background: #fbbf24; }
.dot-green { background: #22c55e; }

.ui-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 253, 0.3);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: rgba(209, 213, 219, 0.8);
}

.card-main {
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0;
}

.card-meta {
  font-size: 11px;
  color: var(--text-muted);
}



/* ------------------------ SECTIONS ------------------------ */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}



/* ------------------------ HOW IT WORKS ------------------------ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 253, 0.2);
  border-radius: 18px;
  padding: 16px;
}

.step-badge {
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
}



/* ------------------------ VALUE GRID ------------------------ */

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.insight-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 253, 0.2);
  padding: 16px;
}

.insight-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.insight-card p {
  font-size: 13px;
  color: var(--text-muted);
}



/* ------------------------ WAITLIST ------------------------ */

.waitlist-inner {
  border: 1px solid rgba(148, 163, 253, 0.35);
  background: rgba(15, 23, 42, 0.95);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  box-shadow: var(--shadow-soft);
}



/* -------- LEFT SIDE VISUAL -------- */

.waitlist-visual {
  margin-bottom: 120px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148,163,253,0.5);
  border-radius: 10px;
  padding: 12px;
  max-width: 260px;
  position: relative;
  overflow: hidden;
}

.wv-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(96,165,250,0.4), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(236,72,153,0.4), transparent 55%);
  filter: blur(3px);
}

.wv-card {
  position: relative;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148,163,253,0.65);
  padding: 8px 10px;
  margin-bottom: 8px;
}

.wv-card-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wv-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.9);
}

.wv-pill {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-cyan));
}

.wv-card-small {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wv-offset {
  transform: translateX(8px);
}

.wv-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

.wv-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wv-line {
  height: 4px;
  background: rgba(148,163,253,0.35);
  border-radius: 999px;
}

.wv-line-strong {
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-cyan));
  width: 70%;
}



/* -------- PILLS BELOW TEXT -------- */

.waitlist-highlights {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waitlist-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15,23,42,0.8);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,253,0.4);
  font-size: 12px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-secondary));
}



/* -------- RIGHT SIDE FORM -------- */

.waitlist-form {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 22px;
  padding: 16px;
  border: 1px solid rgba(148,163,253,0.4);
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 11px;
  margin-bottom: 4px;
  color: rgba(209,213,219,0.9);
}

input, select, textarea {
  border-radius: 12px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,253,0.5);
  padding: 8px 10px;
  font-size: 13px;
  color: #e5e7eb;
}

textarea {
  resize: vertical;
}

.btn-full {
  width: 100%;
  margin-top: 10px;
}

.form-footnote {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}



/* ------------------------ FOOTER ------------------------ */

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  font-size: 12px;
  color: var(--text-muted);
}



/* ------------------------ RESPONSIVE ------------------------ */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }

  .waitlist-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-title { font-size: 34px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}


/* ------------------------ THANK YOU PAGE ------------------------ */

/* ------------------------ THANK YOU PAGE ------------------------ */

.thank-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;        /* vertically center */
  justify-content: center;    /* horizontally center */
  padding: 10px 20px;         /* more breathing room */
}

.thank-card {
  max-width: 880px;           /* wider card */
  width: 100%;
  background: rgba(15, 23, 42, 0.96);
  border-radius: 32px;
  border: 1px solid rgba(148, 163, 253, 0.45);
  box-shadow: var(--shadow-soft);
  padding: 48px 40px;         /* much more padding */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 10% 0%, rgba(96, 165, 250, 0.35), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(236, 72, 153, 0.3), transparent 60%);
  opacity: 0.55;
  pointer-events: none;
  filter: blur(2px);
}

.thank-icon-circle.clean {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: rgba(171, 196, 255, 0.12); /* soft subtle background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(148, 163, 253, 0.3);
  box-shadow: none !important;   /* remove glow */
}

.thank-icon-check {
  font-size: 60px;
  line-height: 1;
}

.thank-icon-check {
  font-size: 38px;
  font-weight: 700;
  color: #0b1020;
}

.thank-title {
  margin: 0 0 16px;
  font-size: 32px;            /* bigger title */
  font-weight: 700;
  letter-spacing: -0.03em;
}

.thank-subtitle {
  margin: 0 auto 36px;
  max-width: 620px;           /* wider subtitle */
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Bigger, spacious grid boxes */

.thank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;                  /* more spacing between cards */
  margin: 0 auto 32px;
}

.thank-item {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 253, 0.35);
  padding: 20px 18px;         /* bigger boxes */
  min-height: 140px;          /* guaranteed height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.thank-item h3 {
  font-size: 16px;
  margin: 0 0 10px;
  color: #fff;
}

.thank-item p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
}

.thank-item a {
  color: var(--accent-cyan);
}

.thank-actions {
  margin-bottom: 20px;
}

.thank-footnote {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .thank-grid {
    grid-template-columns: 1fr;
  }
}





