@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --surface: #ffffff;
  --ink: #0b1a24;
  --muted: #5c6b75;
  --border: #e7e2d9;
  --accent: #0f6f5c;
  --accent-dark: #0b5a4b;
  --accent-soft: #e5f4f2;
  --shadow: 0 24px 60px rgba(9, 16, 25, 0.12);
  --shadow-soft: 0 12px 32px rgba(9, 16, 25, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Work Sans", "Sora", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, #ffffff 0%, transparent 55%),
    radial-gradient(circle at 90% 0%, #e4f2f0 0%, transparent 45%),
    linear-gradient(135deg, #f6f4ef 0%, #f3f6f2 45%, #f6f4ef 100%);
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      rgba(11, 26, 36, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(11, 26, 36, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

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

.ambient {
  position: fixed;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.orb {
  width: 380px;
  height: 380px;
  border-radius: 50%;
}

.orb-one {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, #cfe9f2, transparent 70%);
}

.orb-two {
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, #dff4e8, transparent 70%);
}

.site-header {
  position: relative;
  z-index: 1;
  padding: 32px 8vw 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background-color: transparent;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted);
}

.ghost-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ghost-button:hover {
  border-color: rgba(15, 111, 92, 0.4);
  box-shadow: var(--shadow-soft);
}

.layout {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  padding: 32px 8vw 48px;
  align-items: start;
  min-height: calc(100vh - 140px);
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fade-rise 0.8s ease both;
}

.hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 3.2vw, 3.6rem);
  margin: 0;
  letter-spacing: -0.02em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 460px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.promise-card {
  margin-top: 12px;
  background: linear-gradient(140deg, #ffffff 0%, #f8f5ef 100%);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: fade-rise 0.9s ease both;
}

.promise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(15, 111, 92, 0.12),
    transparent 45%
  );
  opacity: 0.6;
  pointer-events: none;
}

.promise-card h2 {
  font-family: "Sora", sans-serif;
  margin: 0 0 8px;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.promise-card p,
.promise-card ul {
  position: relative;
  z-index: 1;
}

.promise-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.trust-row {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.trust-dot {
  opacity: 0.6;
}

.quiz-shell {
  display: flex;
  justify-content: center;
}

.quiz-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fdfbf7);
  border: 1px solid rgba(231, 226, 217, 0.9);
  border-radius: 28px;
  padding: 28px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: fade-rise 0.9s ease both;
  animation-delay: 0.1s;
  max-height: min(720px, calc(100vh - 160px));
  overflow: hidden;
}

.chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.primary-button {
  background: linear-gradient(135deg, var(--accent), #1a8a74);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 14px 28px rgba(15, 111, 92, 0.2);
}

.primary-button:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(15, 111, 92, 0.24);
}

.primary-button:active {
  transform: translateY(0);
  opacity: 0.92;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.quiz-run {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-wrap {
  height: 6px;
  background: #eae7e0;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0f6f5c, #5ac3ad);
  transition: width 0.4s ease;
}

.question {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  min-height: 96px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.question::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-soft);
  margin-top: 12px;
}

.answer-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.answer-list {
  display: grid;
  gap: 10px;
}

.answer-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.answer-option input {
  margin: 0;
  accent-color: var(--accent);
}

.answer-option span {
  font-size: 0.95rem;
  color: var(--ink);
}

.answer-option:hover {
  border-color: rgba(15, 111, 92, 0.4);
  box-shadow: var(--shadow-soft);
}

.answer-option input:focus-visible {
  outline: 2px solid rgba(15, 111, 92, 0.35);
  outline-offset: 3px;
}

.quiz-teaser {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quiz-thankyou {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
}

.teaser-left,
.teaser-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.teaser-wait {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.progress-step {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f0ea;
  color: #5c5a55;
  border: 1px solid var(--border);
}

.status-line {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}

.signal-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.signal-title {
  margin: 0 0 8px;
  font-weight: 600;
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.signal-chips span {
  background: #edf3f0;
  color: #0f6f5c;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.signal-foot {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.loss-line {
  margin: 0;
  color: #2a2a28;
  font-size: 0.9rem;
}

.quiz-teaser.active .progress-row {
  animation: fade-rise 0.6s ease both;
}

.quiz-teaser.active .status-line {
  animation: fade-rise 0.6s ease both;
  animation-delay: 0.1s;
}

.quiz-teaser.active .signal-card {
  animation: fade-rise 0.6s ease both;
  animation-delay: 0.2s;
}

.quiz-teaser.active .loss-line {
  animation: fade-rise 0.6s ease both;
  animation-delay: 0.3s;
}

.quiz-teaser.active .preview-open {
  animation: fade-rise 0.6s ease both;
  animation-delay: 0.35s;
}

.quiz-teaser.active .teaser-preview {
  animation: fade-rise 0.6s ease both;
  animation-delay: 0.4s;
}

.quiz-teaser.active .capture-wrap {
  animation: fade-rise 0.6s ease both;
  animation-delay: 0.5s;
}

.thankyou-lead {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.thankyou-card {
  background: linear-gradient(140deg, #ffffff 0%, #f8f5ef 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.thankyou-card p {
  margin: 0 0 10px;
}

.thankyou-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.thankyou-footnote {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.teaser-preview {
  position: relative;
  background: #f7f7f4;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  min-height: 220px;
}

.preview-open {
  color: var(--muted);
  line-height: 1.6;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.preview-open ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.preview-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  background: #f6f4ef;
}

.preview-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-card h4 {
  margin: 0;
  font-size: 0.95rem;
}

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

.preview-locked {
  position: relative;
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  background: #f9f6f0;
}

.blur-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(246, 244, 239, 0.95));
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  z-index: 1;
}

.roadmap-body {
  position: relative;
  z-index: 0;
  color: var(--muted);
  line-height: 1.6;
  padding: 16px 18px 40px;
}

.roadmap-body p {
  margin: 0 0 12px;
}

.roadmap-body ul {
  margin: 0;
  padding-left: 18px;
}

.unlock-message {
  position: relative;
  z-index: 2;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.capture-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.capture-header h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.capture-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.capture-form {
  display: grid;
  gap: 12px;
}

.capture-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.capture-form input,
.capture-form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: #ffffff;
}

.proof-line {
  margin: 2px 0 -2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.status-message {
  background: #f1f7ff;
  padding: 12px 14px;
  border-radius: 12px;
  color: #0a4a91;
  font-size: 0.95rem;
  border: 1px solid #cfe4ff;
}

.hidden {
  display: none;
}

.site-footer {
  padding: 24px 8vw 40px;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

input:focus-visible,
button:focus-visible,
.ghost-button:focus-visible {
  outline: 2px solid rgba(15, 111, 92, 0.35);
  outline-offset: 2px;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    gap: 12px;
  }

  .quiz-card {
    padding: 24px;
    max-height: none;
  }

  .progress-row {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    padding: 24px 6vw 0;
  }

  .layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 6vw 64px;
  }

  .quiz-shell {
    justify-content: stretch;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 12px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .lead {
    font-size: 1rem;
  }

  .promise-card {
    padding: 18px;
  }

  .quiz-card {
    padding: 20px;
  }

  .question {
    font-size: 1.15rem;
    min-height: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
