:root {
  --ink: #ecf2ff;
  --ink-soft: #b9c4e6;
  --muted: #94a1c7;
  --accent: #76f7ff;
  --accent-2: #ffb347;
  --accent-3: #7c5cff;
  --surface: rgba(12, 17, 33, 0.78);
  --surface-2: rgba(18, 24, 46, 0.8);
  --border: rgba(118, 247, 255, 0.2);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 10%, #0d1328 0%, #0b1020 40%, #070b16 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 247, 255, 0.25), transparent 70%);
  top: -200px;
  right: -180px;
  z-index: 0;
  filter: blur(2px);
}

.page::after {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.3), transparent 70%);
  bottom: -220px;
  left: -200px;
}

.hero {
  padding: 72px 8vw 40px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0;
}

.subhead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.content {
  flex: 1;
  padding: 28px 8vw 84px;
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hidden {
  display: none;
}

.btn {
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #76f7ff, #7c5cff);
  color: #04070f;
  box-shadow: 0 14px 28px rgba(118, 247, 255, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 36px rgba(118, 247, 255, 0.4);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(118, 247, 255, 0.35);
  color: var(--ink);
}

.progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.progress-bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(118, 247, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #76f7ff, #7c5cff);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  transition: transform 0.4s ease;
}

#questionsForm {
  display: grid;
  gap: 20px;
}

.question {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--surface-2);
  border-radius: 18px;
  border: 1px solid rgba(118, 247, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.question:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border-color: rgba(118, 247, 255, 0.4);
}

.question label {
  font-weight: 600;
}

.options {
  display: grid;
  gap: 10px;
}

.options button {
  border: 1px solid rgba(118, 247, 255, 0.2);
  background: rgba(7, 11, 22, 0.6);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.options button:hover {
  border-color: #76f7ff;
  transform: translateY(-1px);
}

.options button.selected {
  border-color: #76f7ff;
  background: rgba(118, 247, 255, 0.14);
  font-weight: 600;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.paywall-inner,
.results-inner {
  display: grid;
  gap: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.price small {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.bullets li::before {
  content: "✶";
  color: var(--accent);
  margin-right: 8px;
}

.result-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.result-card {
  padding: 16px;
  background: rgba(7, 11, 22, 0.7);
  border: 1px solid rgba(118, 247, 255, 0.2);
  border-radius: 16px;
}

.fineprint {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero,
  .content {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
