:root {
  color-scheme: light;
  --bg: #f4f8fb;
  --surface: #ffffff;
  --ink: #182235;
  --muted: #617086;
  --line: #d8e0ea;
  --brand: #0f766e;
  --brand-strong: #0b5f59;
  --accent: #2563eb;
  --brain: #ec4899;
  --brain-soft: #fde2f1;
  --brain-deep: #7c2d5a;
  --soft: #edf4f7;
  --warm: #fff4ea;
  --success: #dff5ea;
  --warning: #fff5df;
  --danger: #fde8e8;
  --shadow: 0 20px 60px rgba(24, 34, 53, 0.08);
}

* {
  box-sizing: border-box;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(37, 99, 235, 0.14), transparent 24%),
    radial-gradient(circle at 12% 0%, rgba(15, 118, 110, 0.1), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 20px;
}

.timer {
  min-width: 76px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topbar-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.topbar-link:hover {
  border-color: rgba(15, 118, 110, 0.42);
  background: #fff;
}

.progress-shell {
  width: min(1180px, calc(100% - 32px));
  height: 6px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf4;
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f9a8d4, var(--brain), #a855f7);
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.34);
  transition: width 180ms ease;
}

main {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 168px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 32px 0 44px;
}

.home {
  display: grid;
  gap: 28px;
}

.home-hero {
  min-height: min(62vh, 560px);
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 500px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
}

.hero-copy .lede {
  max-width: 470px;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 14px;
}

.hero-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 18px;
}

.hero-value-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 250, 0.82));
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.05);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.hero-value-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brain-deep));
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.hero-meta strong,
.trust-row strong {
  color: var(--accent);
  font-weight: 900;
}

.hero-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 16%, rgba(236, 72, 153, 0.16), transparent 30%),
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 255, 0.86));
  box-shadow: var(--shadow);
}

.hero-visual svg {
  width: min(100%, 620px);
  height: auto;
}

.trust-row {
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(216, 224, 234, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

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

.how-grid article {
  padding: 22px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.how-grid span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.how-grid h2 {
  margin: 12px 0 10px;
  font-size: 20px;
}

.how-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-heading h2 {
  margin-bottom: 0;
}

.faq-section {
  display: grid;
  gap: 20px;
  padding-top: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(24, 34, 53, 0.05);
}

.faq-grid summary {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 18px 18px 18px 20px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brain-soft);
  color: var(--brain-deep);
  font-size: 20px;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid details p {
  margin: -6px 20px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.panel {
  width: 100%;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.intro,
.feedback,
.email-capture,
.analyzing,
.checkout,
.result {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
}

.checkout {
  max-width: 980px;
}

.result {
  max-width: 1040px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.checklist,
.benefits,
.analysis-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.checklist li,
.benefits li,
.analysis-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist li::before,
.benefits li::before,
.analysis-list li::before {
  content: "\2713";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--brand);
  font-weight: 700;
}

.analysis-list li {
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 224, 234, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-weight: 700;
}

.analysis-list li::before {
  content: "";
  border: 1px solid rgba(97, 112, 134, 0.28);
  background: #fff;
}

.analysis-list li.active {
  border-color: rgba(37, 99, 235, 0.32);
  background: rgba(237, 246, 255, 0.86);
  color: var(--ink);
}

.analysis-list li.active::before {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 35%, transparent 38%);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.analysis-list li.done {
  color: var(--ink);
}

.analysis-list li.done::before {
  content: "\2713";
  border-color: transparent;
  background: rgba(15, 118, 110, 0.12);
  color: var(--brand);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.option,
.small-button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 120ms ease,
    background 120ms ease,
    border-color 120ms ease,
    color 120ms ease;
}

.button {
  min-width: 180px;
  padding: 16px 22px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
}

.button:hover,
.small-button:hover {
  background: var(--brand-strong);
}

.button:active,
.option:active,
.small-button:active {
  transform: translateY(1px);
}

.button.secondary {
  background: #edf4f7;
  color: var(--ink);
}

.button.secondary:hover {
  background: #dfeaf0;
}

.question-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
}

.question-card {
  min-height: 420px;
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(216, 224, 234, 0.28) 0, rgba(216, 224, 234, 0.28) 1px, transparent 1px, transparent 28px);
}

.question-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.question-count {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.brain-charge {
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid rgba(236, 72, 153, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(253, 226, 241, 0.92), rgba(255, 255, 255, 0.72)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brain-charge-top {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.brain-icon {
  width: 54px;
  height: 44px;
  display: grid;
  place-items: center;
}

.brain-icon svg {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 8px 10px rgba(124, 45, 90, 0.14));
}

.brain-charge-copy {
  min-width: 0;
}

.brain-charge-copy span,
.brain-charge-score span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brain-charge-copy strong {
  display: block;
  margin-top: 2px;
  color: var(--brain-deep);
  font-size: 18px;
  line-height: 1.15;
}

.brain-charge-score {
  min-width: 62px;
  text-align: right;
}

.brain-charge-score strong {
  display: block;
  color: var(--brain);
  font-size: 21px;
  line-height: 1;
}

.brain-meter {
  height: 10px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(124, 45, 90, 0.12);
}

.brain-meter span {
  display: block;
  width: var(--brain-fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f9a8d4, var(--brain), #c026d3);
  box-shadow: 0 0 16px rgba(236, 72, 153, 0.35);
  transition: width 280ms ease;
  animation: chargePulse 420ms ease;
}

.brain-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.brain-levels span {
  height: 4px;
  border-radius: 999px;
  background: rgba(124, 45, 90, 0.13);
}

.brain-levels span.active {
  background: var(--brain);
}

@keyframes chargePulse {
  0% {
    filter: brightness(1);
  }
  55% {
    filter: brightness(1.16);
  }
  100% {
    filter: brightness(1);
  }
}

.question-copy h2 {
  margin-bottom: 24px;
  max-width: 760px;
}

.visual-shell {
  min-height: 356px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(216, 224, 234, 0.92);
  background:
    linear-gradient(135deg, rgba(237, 246, 255, 0.9), rgba(236, 253, 245, 0.72)),
    #fbfdff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.visual-shell svg {
  width: min(100%, 520px);
  height: auto;
  max-height: 356px;
  filter: drop-shadow(0 12px 18px rgba(24, 34, 53, 0.08));
}

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

.answers {
  display: grid;
  gap: 14px;
}

.answers.grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option {
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  text-align: left;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(24, 34, 53, 0.05);
}

.option:hover {
  border-color: rgba(15, 118, 110, 0.45);
  background: #f8fcfb;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(24, 34, 53, 0.08);
}

.option-letter {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #edf4f7;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.option:hover .option-letter {
  background: var(--brand);
  color: #fff;
}

.option:disabled {
  cursor: default;
  opacity: 1;
}

.option:focus:not(:focus-visible) {
  outline: none;
}

.option:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.22);
  outline-offset: 3px;
}

.option-content {
  min-width: 0;
  font-weight: 700;
}

.option.visual {
  min-height: 148px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.92)),
    #ffffff;
}

.option.visual .option-content {
  display: grid;
  place-items: center;
  width: 100%;
  pointer-events: none;
}

.option.visual svg {
  width: 100%;
  max-width: 150px;
  height: 106px;
  filter: drop-shadow(0 8px 12px rgba(24, 34, 53, 0.08));
  pointer-events: none;
  touch-action: manipulation;
}

@media (hover: none) and (pointer: coarse) {
  .option:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.88);
    transform: none;
    box-shadow: 0 10px 24px rgba(24, 34, 53, 0.05);
  }

  .option:hover .option-letter {
    background: #edf4f7;
    color: var(--brand);
  }

  .option.visual:hover {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.92)),
      #ffffff;
  }
}

.likert .option:nth-child(1),
.likert .option:nth-child(2) {
  background: var(--success);
}

.likert .option:nth-child(3) {
  background: var(--warning);
}

.likert .option:nth-child(4),
.likert .option:nth-child(5) {
  background: var(--danger);
}

.feedback-graphic {
  width: min(300px, 100%);
  margin: 0 auto 22px;
}

.rank-graphic {
  padding: 12px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 246, 255, 0.9), rgba(236, 253, 245, 0.76)),
    #fbfdff;
  border: 1px solid rgba(216, 224, 234, 0.88);
}

.feedback-graphic svg {
  width: 100%;
  height: auto;
}

.feedback {
  text-align: center;
}

.feedback .brain-charge {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.feedback .lede {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.feedback-subline {
  max-width: 560px;
  margin: 0 auto;
  color: var(--brand);
  font-weight: 800;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.stat strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.email-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.email-form input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.fine-print {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.analysis-track {
  height: 18px;
  margin: 22px 0 26px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf4;
}

.analysis-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.analysis-stats div {
  padding: 16px;
  border: 1px solid rgba(216, 224, 234, 0.88);
  border-radius: 8px;
  background: #fbfdff;
}

.analysis-stats strong {
  display: block;
  color: var(--accent);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
}

.analysis-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.analysis-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width 450ms ease;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(24, 34, 53, 0.34);
  backdrop-filter: blur(3px);
}

.modal {
  width: min(440px, 100%);
  padding: 32px 28px 28px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.13), transparent 34%),
    #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-spark {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.modal-spark::before,
.modal-spark::after {
  content: "";
  display: block;
  position: relative;
  background: #fff;
  border-radius: 999px;
}

.modal-spark::before {
  width: 28px;
  height: 6px;
  top: 25px;
  left: 15px;
  transform: rotate(-35deg);
}

.modal-spark::after {
  width: 6px;
  height: 28px;
  top: 8px;
  left: 26px;
  transform: rotate(-35deg);
}

.modal-rank {
  margin: 18px auto 10px;
  padding: 18px;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: #fbfdff;
}

.modal-rank strong {
  display: block;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.modal-rank span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.modal .button {
  width: 100%;
  margin-top: 10px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.price-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.unlock-options {
  display: grid;
  gap: 14px;
}

.unlock-choice-banner {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 184, 166, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(253, 226, 241, 0.74)),
    #fff;
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.08);
}

.unlock-choice-banner span {
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.unlock-choice-banner strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.unlock-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.unlock-card.price-card {
  padding: 24px;
}

.unlock-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.unlock-card-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.unlock-card-head b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brain-soft);
  color: var(--brain-deep);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.free-unlock {
  background:
    linear-gradient(135deg, rgba(253, 226, 241, 0.7), rgba(255, 255, 255, 0.98) 54%),
    #fff;
  border-color: rgba(236, 72, 153, 0.24);
  box-shadow: 0 16px 40px rgba(124, 45, 90, 0.07);
}

.free-unlock h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.free-unlock p {
  color: var(--muted);
  line-height: 1.55;
}

.unlock-divider {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.unlock-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}

.unlock-divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: var(--bg);
}

.price {
  margin: 12px 0 4px;
  font-size: 44px;
  font-weight: 800;
}

.paypal-checkout {
  min-height: 52px;
  margin-top: 18px;
}

.price-card .button[hidden] {
  display: none;
}

.checkout-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.checkout-status[data-tone="error"] {
  color: #b42318;
}

.free-unlock-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.verification-step {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(236, 72, 153, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(253, 242, 248, 0.94), rgba(240, 253, 250, 0.88));
}

.verification-step[hidden] {
  display: none;
}

.verification-step .form-field input {
  text-align: center;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.text-button {
  width: fit-content;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-button:hover {
  color: var(--brand-strong);
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.form-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 16px;
  outline: none;
}

.form-field input:focus {
  border-color: rgba(236, 72, 153, 0.7);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.consent-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(216, 224, 234, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand);
}

.free-unlock-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.free-unlock-status[data-tone="error"] {
  color: #b42318;
}

.free-unlock .button.secondary {
  background: linear-gradient(135deg, var(--brain), var(--brand));
  color: #fff;
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.22);
}

.free-unlock .button.secondary:hover {
  background: linear-gradient(135deg, #db2777, var(--brand-strong));
}

.checkout-trust-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 4px;
}

.checkout-trust-list span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid rgba(216, 224, 234, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
}

.checkout-trust-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.checkout-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.checkout-faq details {
  border: 1px solid rgba(216, 224, 234, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(20, 32, 51, 0.05);
}

.checkout-faq summary {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 26px;
  gap: 10px;
  align-items: center;
  padding: 15px 15px 15px 16px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.checkout-faq summary::-webkit-details-marker {
  display: none;
}

.checkout-faq summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brain-soft);
  color: var(--brain-deep);
  font-size: 18px;
  line-height: 1;
}

.checkout-faq details[open] summary::after {
  content: "-";
}

.checkout-faq p {
  margin: -3px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.checkout-includes-title {
  margin: 26px 0 12px;
  font-size: clamp(22px, 3vw, 30px);
}

.checkout .benefits {
  margin-top: 12px;
  margin-bottom: 0;
}

.checkout .benefits li {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(216, 224, 234, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.04);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.checkout-sticky-cta {
  display: none;
}

.report-preview {
  margin-top: 28px;
  padding: 20px;
  border-radius: 8px;
  background: #fbfdff;
  border: 1px solid var(--line);
}

.blurred {
  filter: blur(5px);
  user-select: none;
}

.result-score {
  font-size: clamp(48px, 8vw, 76px);
  line-height: 1;
  margin: 14px 0;
  color: var(--accent);
  font-weight: 800;
}

.result-hero-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: center;
}

.result-badge {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(236, 72, 153, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(237, 246, 255, 0.95), rgba(255, 255, 255, 0.9));
  text-align: center;
}

.result-badge strong {
  color: var(--brain);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}

.result-badge span {
  color: var(--muted);
  font-weight: 800;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.result-grid .stat {
  min-height: 112px;
}

.result-unlocked-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(253, 226, 241, 0.72), rgba(237, 246, 255, 0.82)),
    #fff;
}

.result-unlocked-strip div {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.result-unlocked-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-unlocked-strip strong {
  color: var(--ink);
  font-size: 18px;
}

.skill-breakdown {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.skill-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(216, 224, 234, 0.88);
}

.skill-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.skill-row b {
  color: var(--accent);
  font-size: 20px;
}

.unlocked-package {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.package-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.94));
}

.package-intro h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 4vw, 34px);
}

.package-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.deliverable-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 224, 234, 0.84);
  color: var(--ink);
  font-weight: 800;
}

.deliverable-list li::before {
  content: "\2713";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brain-soft);
  color: var(--brain-deep);
  font-size: 13px;
  font-weight: 900;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94)),
    #fff;
  box-shadow: 0 14px 34px rgba(24, 34, 53, 0.06);
}

.package-card.featured-package {
  background:
    radial-gradient(circle at 85% 10%, rgba(236, 72, 153, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 255, 0.95));
}

.package-card > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brain-soft);
  color: var(--brain-deep);
  font-weight: 900;
}

.package-card h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.package-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-metric {
  min-height: 68px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 224, 234, 0.82);
}

.mini-metric span,
.compact-list span,
.day-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mini-metric strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
}

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

.compact-list li,
.day-list li {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 224, 234, 0.78);
}

.compact-list strong,
.day-list strong {
  display: block;
  margin-bottom: 4px;
}

.day-list .day-exercise,
.day-list .day-answer {
  margin-top: 8px;
  padding: 9px 10px;
  border-radius: 8px;
}

.day-list .day-exercise {
  background: rgba(236, 253, 245, 0.7);
  color: #315b58;
}

.day-list .day-answer {
  background: rgba(253, 242, 248, 0.82);
  color: #7a2a55;
}

.day-list b {
  color: var(--ink);
}

.delivery-panel {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.92), rgba(255, 255, 255, 0.88)),
    #ffffff;
}

.delivery-panel h3 {
  margin-bottom: 8px;
}

.delivery-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.delivery-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.delivery-items span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 118, 110, 0.16);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.delivery-items span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--brand);
}

.delivery-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.delivery-form input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.delivery-form .button {
  min-height: 54px;
}

.paid-dashboard {
  gap: 18px;
}

.dashboard-intro {
  background:
    radial-gradient(circle at 88% 16%, rgba(236, 72, 153, 0.16), transparent 34%),
    radial-gradient(circle at 15% 88%, rgba(15, 118, 110, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
}

.dashboard-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  scrollbar-width: thin;
}

.dashboard-tab {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

.dashboard-tab:hover,
.dashboard-tab.is-active {
  border-color: rgba(15, 118, 110, 0.18);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
}

.dashboard-panel {
  display: none;
}

.dashboard-panel.is-active {
  display: block;
}

.dashboard-grid,
.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.94)),
    #fff;
  box-shadow: 0 14px 34px rgba(24, 34, 53, 0.06);
}

.dashboard-card-wide {
  grid-column: 1 / -1;
}

.package-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brain-soft);
  color: var(--brain-deep);
  font-weight: 900;
}

.dashboard-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.dashboard-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.answer-review-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.answer-review-summary div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(216, 224, 234, 0.92);
  border-radius: 8px;
  background: #fff;
}

.answer-review-summary span,
.certificate-details span,
.certificate-topline span,
.skill-profile-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-review-summary strong {
  color: var(--ink);
  font-size: 24px;
}

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

.answer-review-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-left: 5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 34, 53, 0.045);
}

.answer-review-card.correct {
  border-left-color: var(--brand);
}

.answer-review-card.missed {
  border-left-color: var(--brain);
}

.answer-review-head,
.review-answers,
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.answer-review-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-review-head strong {
  display: block;
  margin-top: 3px;
}

.review-status {
  min-width: 82px;
  padding: 7px 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
}

.review-status.correct {
  background: var(--success);
  color: #14685f;
}

.review-status.missed {
  background: var(--brain-soft);
  color: var(--brain-deep);
}

.answer-review-card p {
  margin: 0;
  line-height: 1.5;
}

.review-answers {
  justify-content: flex-start;
}

.review-answers span,
.review-meta span {
  padding: 8px 10px;
  border-radius: 8px;
  background: #f8fbfd;
  border: 1px solid rgba(216, 224, 234, 0.82);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-answers b {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
}

.review-explanation {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(237, 246, 255, 0.72);
  color: #415069;
}

.skill-profile-grid {
  display: grid;
  gap: 12px;
}

.skill-profile-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 8px;
  background: #fff;
}

.skill-profile-card h4 {
  margin: 0 0 5px;
  font-size: 20px;
}

.skill-profile-card strong {
  color: var(--brain-deep);
}

.skill-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf3;
}

.skill-meter span {
  display: block;
  width: var(--skill-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brain), #2563eb);
}

.skill-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-profile-meta span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f8fbfd;
  border: 1px solid rgba(216, 224, 234, 0.84);
}

.guide-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.certificate-card {
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(236, 72, 153, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 255, 0.95));
  box-shadow: 0 18px 42px rgba(24, 34, 53, 0.08);
}

.certificate-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(216, 224, 234, 0.82);
}

.certificate-topline strong {
  color: var(--brand);
}

.certificate-body {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px 18px;
  text-align: center;
}

.certificate-body h3 {
  margin: 0;
  font-size: clamp(26px, 5vw, 40px);
}

.certificate-body p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.certificate-score {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brain), #2563eb);
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.18);
}

.certificate-label {
  color: var(--muted);
  font-weight: 900;
}

.certificate-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}

.certificate-details div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(216, 224, 234, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.certificate-details strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.certificate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-top: 1px solid rgba(216, 224, 234, 0.82);
  background: rgba(255, 255, 255, 0.55);
}

.certificate-actions .fine-print {
  max-width: 520px;
  margin: 0;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 60px;
  margin: 0 auto 12px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.footer nav {
  display: flex;
  gap: 16px;
}

.footer a {
  color: inherit;
}

.legal {
  width: min(860px, calc(100% - 32px));
  margin: 34px auto 60px;
}

.legal article {
  padding: clamp(22px, 4vw, 40px);
}

.legal h1 {
  font-size: clamp(28px, 4vw, 38px);
}

.legal h2 {
  margin-top: 28px;
  font-size: 22px;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.7;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-panel h1,
.contact-panel p {
  margin-bottom: 0;
}

.contact-email {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(236, 72, 153, 0.26);
  border-radius: 8px;
  background: var(--brain-soft);
  color: var(--brain-deep);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.legal-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 2px;
}

.legal-signal-grid div {
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 253, 255, 0.92));
}

.legal-signal-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.legal-signal-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.support-note {
  padding: 14px 16px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(240, 253, 250, 0.92);
  color: var(--muted);
  line-height: 1.65;
}

.support-note strong {
  color: var(--ink);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.demo-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--warning);
  color: #7a5513;
}

@media (max-width: 820px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(236, 72, 153, 0.1), transparent 28%),
      linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
  }

  .topbar {
    width: min(100% - 20px, 1180px);
    min-height: 56px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .topbar-link {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .timer {
    min-width: 64px;
    padding: 6px 9px;
    font-size: 13px;
  }

  .progress-shell,
  main {
    width: min(100% - 20px, 1180px);
  }

  main {
    min-height: calc(100svh - 96px);
    align-items: start;
    padding-top: 10px;
  }

  .home-hero,
  .question-layout,
  .checkout-grid,
  .checkout-faq,
  .result-hero-block,
  .package-grid,
  .dashboard-grid,
  .growth-grid,
  .answer-review-summary,
  .certificate-details,
  .delivery-form {
    grid-template-columns: 1fr;
  }

  .question-layout {
    gap: 10px;
    align-items: start;
  }

  .checkout {
    padding-bottom: 98px;
  }

  .unlock-card,
  .unlock-card.price-card {
    padding: 18px;
  }

  .unlock-card-head {
    align-items: flex-start;
  }

  .unlock-choice-banner {
    padding: 14px;
  }

  .unlock-choice-banner strong {
    font-size: 18px;
  }

  .free-unlock h3 {
    font-size: 20px;
  }

  .checkout-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 40;
    display: block;
    padding: 10px;
    border: 1px solid rgba(216, 224, 234, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -16px 38px rgba(20, 32, 51, 0.14);
    backdrop-filter: blur(12px);
  }

  .checkout-sticky-cta .button {
    width: 100%;
  }

  .home-hero {
    min-height: auto;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .hero-copy .lede {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-meta {
    margin-top: 14px;
  }

  .hero-value-grid,
  .legal-signal-grid {
    grid-template-columns: 1fr;
  }

  .hero-value-grid {
    margin-top: 14px;
  }

  .checkout-faq {
    margin-top: 16px;
  }

  .hero-visual {
    min-height: 260px;
    padding: 10px;
  }

  .hero-visual svg {
    width: min(100%, 430px);
  }

  .trust-row,
  .how-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    padding: 14px;
    min-height: 60px;
  }

  .faq-section {
    padding-top: 10px;
  }

  .faq-grid summary {
    min-height: 58px;
    padding: 16px;
  }

  .faq-grid details p {
    margin: -4px 16px 16px;
  }

  .question-card {
    min-height: auto;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 26px rgba(24, 34, 53, 0.07);
  }

  .question-card-text {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
      #ffffff;
  }

  .question-meta {
    display: none;
  }

  .brain-charge {
    padding: 9px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .brain-charge-top {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .brain-icon,
  .brain-icon svg {
    width: 42px;
  }

  .brain-icon {
    height: 36px;
  }

  .brain-charge-copy span,
  .brain-charge-score span {
    font-size: 10px;
  }

  .brain-charge-copy strong {
    font-size: 15px;
  }

  .brain-charge-score strong {
    font-size: 18px;
  }

  .brain-charge-score {
    min-width: 52px;
  }

  .brain-meter {
    height: 7px;
    margin-top: 8px;
  }

  .brain-levels {
    display: none;
  }

  .question-count {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .question-copy h2 {
    margin-bottom: 0;
    font-size: clamp(21px, 6.1vw, 28px);
    line-height: 1.12;
  }

  .question-card-text .question-note {
    display: none;
  }

  .question-note {
    margin-top: 10px;
    font-size: 12px;
  }

  .visual-shell {
    min-height: 214px;
    padding: 8px;
    border-radius: 10px;
  }

  .visual-shell svg {
    width: min(100%, 360px);
    max-height: 214px;
  }

  .answers {
    gap: 8px;
  }

  .answers.grid,
  .stat-row,
  .analysis-stats,
  .result-grid,
  .result-unlocked-strip,
  .package-intro,
  .guide-list,
  .delivery-items {
    grid-template-columns: 1fr;
  }

  .question-layout-visual .answers.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option {
    min-height: 52px;
    padding: 9px 10px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(24, 34, 53, 0.05);
  }

  .option-letter {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .option-content {
    font-size: 17px;
    line-height: 1.18;
  }

  .option.visual {
    min-height: 104px;
    padding: 8px;
  }

  .option.visual svg {
    max-width: 112px;
    height: 78px;
  }

  .checkpoint-feedback {
    padding: 12px;
    display: grid;
    gap: 7px;
    align-content: center;
  }

  .checkpoint-feedback .feedback-graphic {
    width: min(150px, 44vw);
    margin-bottom: 2px;
  }

  .checkpoint-feedback .rank-graphic {
    padding: 6px;
  }

  .checkpoint-feedback .brain-charge {
    margin-bottom: 2px;
  }

  .checkpoint-feedback .eyebrow {
    margin-bottom: 0;
    font-size: 11px;
  }

  .checkpoint-feedback h2 {
    margin-bottom: 0;
    font-size: clamp(22px, 6vw, 26px);
  }

  .checkpoint-feedback .lede {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .checkpoint-feedback .feedback-subline {
    font-size: 13px;
    line-height: 1.3;
  }

  .checkpoint-feedback .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 4px;
  }

  .checkpoint-feedback .stat {
    padding: 8px 5px;
    min-width: 0;
  }

  .checkpoint-feedback .stat span {
    display: block;
    font-size: 10px;
    line-height: 1.2;
  }

  .checkpoint-feedback .stat strong {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.05;
  }

  .checkpoint-feedback .action-row {
    margin-top: 6px !important;
  }

  .checkpoint-feedback .button {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
  }

  .result-badge {
    min-height: 138px;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-tabs {
    margin-inline: -2px;
    padding: 6px;
  }

  .dashboard-tab {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .dashboard-card,
  .answer-review-card {
    padding: 16px;
  }

  .review-answers span,
  .review-meta span {
    width: 100%;
  }

  .certificate-topline,
  .certificate-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .certificate-score {
    width: 112px;
    height: 112px;
    font-size: 38px;
  }

  .delivery-panel {
    padding: 18px;
  }

  .delivery-form .button {
    width: 100%;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .topbar-link {
    display: none;
  }

  .question-copy h2 {
    font-size: clamp(20px, 5.9vw, 25px);
  }

  .option {
    min-height: 50px;
  }

  .option-content {
    font-size: 16px;
  }

  .question-layout-visual .answers.grid {
    gap: 7px;
  }

  .option.visual {
    min-height: 98px;
  }

  .option.visual svg {
    max-width: 104px;
    height: 72px;
  }
}

@media (max-width: 820px) and (max-height: 700px) {
  .checkpoint-feedback .feedback-graphic {
    display: none;
  }

  .checkpoint-feedback {
    gap: 6px;
  }

  .checkpoint-feedback .brain-charge {
    padding: 8px 10px;
  }

  .checkpoint-feedback .lede {
    font-size: 13px;
  }
}
