: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%;
}

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;
}

.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;
  font-size: 24px;
  font-weight: 700;
}

.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);
}

.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-meta strong,
.trust-row strong {
  color: var(--accent);
  font-weight: 900;
}

.hero-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 244, 247, 0.8)),
    radial-gradient(circle at 50% 18%, rgba(37, 99, 235, 0.12), transparent 42%);
  box-shadow: var(--shadow);
}

.hero-visual svg {
  width: min(100%, 560px);
  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-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%;
}

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

.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;
}

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

.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;
}

.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;
}

.unlocked-package .section-heading p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.55;
}

.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;
}

.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-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;
}

.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;
}

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

@media (max-width: 820px) {
  main {
    padding-top: 12px;
  }

  .home-hero,
  .question-layout,
  .checkout-grid,
  .result-hero-block,
  .package-grid,
  .delivery-form {
    grid-template-columns: 1fr;
  }

  .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-visual {
    min-height: 220px;
  }

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

  .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;
  }

  .brain-charge {
    padding: 10px;
    margin-bottom: 14px;
  }

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

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

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

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

  .answers.grid,
  .stat-row,
  .analysis-stats,
  .result-grid {
    grid-template-columns: 1fr;
  }

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

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

  .delivery-panel {
    padding: 18px;
  }

  .delivery-form .button {
    width: 100%;
  }

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