:root {
  color-scheme: light;
  --ink: #1e1b1b;
  --muted: #6b6260;
  --soft: #6b5d58;
  --paper: #fff7f0;
  --surface: #ffffff;
  --surface-warm: #fff5f1;
  --line: #eadbe1;
  --coral: #c86f7d;
  --coral-dark: #8e3c58;
  --sage: #4f7f68;
  --gold: #c79143;
  --blue: #566f95;
  --plum: #9b59b6;
  --rose: #c9a0ab;
  --wine: #3a1624;
  --shadow: 0 24px 80px rgba(108, 60, 82, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(88, 28, 50, 0.22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(155, 89, 182, 0.18), transparent 30%),
    linear-gradient(115deg, rgba(255, 246, 236, 1) 0%, rgba(255, 247, 240, 0.94) 48%, rgba(250, 231, 237, 0.92) 100%),
    var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
textarea {
  font: inherit;
}

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

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.12rem 0.32rem;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92em;
}

.hidden {
  display: none !important;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 0 max(16px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(58, 22, 36, 0.06);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 247, 240, 0.62);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand__mark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: url("assets/logo-mark.svg") center / cover no-repeat;
  box-shadow: 0 10px 22px rgba(58, 22, 36, 0.22);
}

.brand__mark::before {
  content: none;
}

.brand__mark::after {
  content: none;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 680;
}

.nav-quiz {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
}

.nav-quiz:hover,
.nav-quiz:focus-visible {
  color: var(--wine);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(58, 22, 36, 0.1);
  border-radius: 8px;
  background: rgba(255, 247, 240, 0.28);
  color: var(--wine);
  cursor: pointer;
  place-items: center;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#app {
  min-height: 100vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  padding: 42px 0 80px;
}

.hero__content {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  font-weight: 820;
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.75;
}

.hero__actions,
.share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__actions {
  margin-top: 32px;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--wine), var(--plum));
  background-clip: text;
  color: transparent;
}

.social-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.social-proof-strip span {
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.social-proof-strip strong {
  color: var(--plum);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
}

.button--primary {
  background: linear-gradient(135deg, var(--wine), var(--plum));
  color: #fff;
  box-shadow: 0 14px 30px rgba(155, 89, 182, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(155, 89, 182, 0.32);
}

.button--secondary {
  border: 1px solid rgba(58, 22, 36, 0.16);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.hero-note {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.96rem;
}

.delivery-note,
.fulfillment-note {
  border-left: 4px solid rgba(79, 127, 104, 0.72);
  padding-left: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.delivery-note {
  max-width: 480px;
  margin-top: 20px;
  font-size: 0.96rem;
}

.fulfillment-note {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.button--ghost,
.button--ghost-dark {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button--ghost-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-panel {
  display: inline-flex;
  max-width: 440px;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(108, 60, 82, 0.09);
}

.proof-panel strong {
  color: var(--plum);
  font-size: 2rem;
  line-height: 1;
}

.proof-panel span {
  color: var(--muted);
  line-height: 1.35;
}

.trust-row span {
  border: 1px solid rgba(32, 28, 31, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__visual {
  position: relative;
  min-height: 590px;
  border: 1px solid rgba(58, 22, 36, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 84% 80%, rgba(155, 89, 182, 0.18), transparent 30%),
    linear-gradient(150deg, rgba(58, 22, 36, 0.96), rgba(105, 48, 76, 0.9) 48%, rgba(255, 244, 238, 0.9));
  box-shadow: var(--shadow);
}

.signal-card {
  position: absolute;
  left: 12%;
  right: 12%;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 250, 246, 0.92);
  box-shadow: 0 22px 48px rgba(20, 6, 12, 0.22);
}

.signal-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.16;
}

.signal-card--top {
  top: 58px;
  border-left: 6px solid var(--sage);
}

.signal-card--middle {
  top: 218px;
  left: 5%;
  right: 20%;
  border-left: 6px solid var(--gold);
}

.signal-card--bottom {
  top: 390px;
  left: 18%;
  right: 5%;
  border-left: 6px solid var(--coral);
}

.signal-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(30, 27, 27, 0.2);
  transform-origin: left center;
}

.signal-line--one {
  width: 360px;
  left: 28px;
  top: 176px;
  transform: rotate(24deg);
}

.signal-line--two {
  width: 380px;
  right: -70px;
  top: 366px;
  transform: rotate(-28deg);
}

.section-strip,
.report-preview,
.research-section,
.knowledge-section,
.articles-section,
.quiz-preview-section,
.locked-preview {
  width: min(1160px, calc(100% - 80px));
  margin: 0 auto;
}

.quiz,
.analysis,
.results,
.content-page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}

.section-strip,
.report-preview,
.research-section,
.locked-preview {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(44px, 8vw, 118px);
  align-items: start;
  padding: 96px 0;
  border-top: 1px solid rgba(58, 22, 36, 0.1);
}

.research-section {
  grid-template-columns: minmax(380px, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(54px, 7vw, 104px);
}

.section-strip h2,
.report-preview h2,
.research-section h2,
.locked-preview h2 {
  margin-bottom: 16px;
  max-width: 500px;
  text-wrap: balance;
}

.research-section h2,
.knowledge-section h2,
.articles-section h2 {
  font-size: clamp(3rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.section-kicker p:last-child,
.report-copy p:last-child,
.locked-preview__copy p:last-child {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.research-grid {
  display: grid;
  gap: 12px;
}

.research-grid article {
  border: 1px solid rgba(58, 22, 36, 0.12);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(108, 60, 82, 0.08);
}

.research-grid article span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.research-grid article strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.research-grid article p,
.research-note {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.research-note {
  grid-column: 2;
  font-size: 0.9rem;
}

.knowledge-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(540px, 1.1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
  padding: 88px 0;
  border-top: 1px solid rgba(58, 22, 36, 0.1);
}

.knowledge-section h2 {
  max-width: 500px;
  margin-bottom: 0;
  text-wrap: balance;
}

.knowledge-grid {
  display: grid;
  gap: 12px;
}

.knowledge-grid article {
  display: grid;
  grid-template-columns: 44px minmax(120px, 180px) 1fr;
  gap: 16px;
  align-items: baseline;
  border-top: 1px solid rgba(58, 22, 36, 0.12);
  padding: 20px 0;
}

.knowledge-grid span {
  color: var(--coral-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 820;
}

.knowledge-grid strong {
  font-size: 1.08rem;
}

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

.articles-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
  padding: 92px 0;
  border-top: 1px solid rgba(58, 22, 36, 0.1);
}

.articles-section h2 {
  max-width: 540px;
  margin-bottom: 16px;
  text-wrap: balance;
}

.articles-section__intro p:last-child {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.7;
}

.article-grid {
  display: grid;
  gap: 14px;
}

.article-grid a {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(58, 22, 36, 0.12);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 245, 241, 0.78)),
    radial-gradient(circle at 86% 20%, rgba(155, 89, 182, 0.12), transparent 26%);
  box-shadow: 0 16px 42px rgba(108, 60, 82, 0.08);
}

.article-grid span {
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-grid strong {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.15;
}

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

.quiz-preview-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid rgba(58, 22, 36, 0.1);
}

.quiz-preview-section h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.quiz-preview__copy p:not(.eyebrow) {
  max-width: 490px;
  color: var(--muted);
  line-height: 1.7;
}

.quiz-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.quiz-sample-card {
  border: 1px solid rgba(58, 22, 36, 0.14);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 241, 0.82)),
    radial-gradient(circle at 86% 22%, rgba(155, 89, 182, 0.12), transparent 28%);
  box-shadow: var(--shadow);
}

.quiz-sample-card h3 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

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

.sample-options span {
  border: 1px solid rgba(58, 22, 36, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  line-height: 1.45;
}

.locked-preview {
  align-items: center;
}

.locked-report-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 560px);
  justify-self: end;
  border: 1px solid rgba(58, 22, 36, 0.14);
  border-radius: 8px;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 243, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(155, 89, 182, 0.18), transparent 28%);
  box-shadow: var(--shadow);
}

.report-page {
  margin: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.report-page--visible h3 {
  font-family: "Fraunces", Georgia, serif;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.report-label {
  display: block;
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.report-page p {
  color: var(--muted);
  line-height: 1.65;
}

.mini-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-evidence span {
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--wine);
  font-size: 0.85rem;
  font-weight: 780;
}

.report-page--locked {
  filter: blur(3.4px);
  opacity: 0.54;
  transform: translateY(-8px);
  user-select: none;
}

.report-page--locked h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.lock-fade {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 34px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(58, 22, 36, 0), rgba(58, 22, 36, 0.62) 30%, rgba(58, 22, 36, 0.96) 100%),
    linear-gradient(180deg, rgba(255, 247, 240, 0), rgba(255, 247, 240, 0.72) 24%, rgba(58, 22, 36, 0.92));
  color: #fff;
}

.lock-fade strong,
.lock-fade span {
  display: block;
}

.lock-fade strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-shadow: 0 3px 18px rgba(30, 8, 18, 0.72);
}

.lock-fade span {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(30, 8, 18, 0.62);
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding-top: 12px;
}

.factor-grid article,
.price-panel,
.quiz__panel,
.results__header,
.insight-grid section,
.upgrade,
.share,
.full-report,
.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.factor-grid article {
  min-height: 150px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.factor-grid article::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(155, 89, 182, 0.1);
}

.factor-grid article:nth-child(1),
.factor-grid article:nth-child(2) {
  grid-column: span 3;
}

.factor-grid article:nth-child(3),
.factor-grid article:nth-child(4),
.factor-grid article:nth-child(5) {
  grid-column: span 2;
}

.factor-grid article:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 239, 0.88));
}

.factor-grid article:nth-child(2) {
  background: linear-gradient(135deg, rgba(58, 22, 36, 0.92), rgba(105, 48, 76, 0.86));
  color: #fff;
}

.factor-grid article:nth-child(2) span {
  color: rgba(255, 255, 255, 0.76);
}

.factor-grid article:nth-child(2)::before {
  background: rgba(255, 255, 255, 0.16);
}

.factor-grid strong,
.factor-grid span {
  display: block;
}

.factor-icon {
  width: max-content;
  border: 1px solid rgba(155, 89, 182, 0.16);
  border-radius: 999px;
  padding: 5px 8px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.factor-grid article:nth-child(2) .factor-icon {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.factor-grid strong {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.factor-grid span,
.report-preview p,
.price-panel li {
  color: var(--muted);
  line-height: 1.5;
}

.price-panel {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  padding: clamp(26px, 4vw, 36px);
  align-self: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 241, 0.88)),
    radial-gradient(circle at 82% 18%, rgba(155, 89, 182, 0.18), transparent 28%);
}

.price-panel::before {
  content: "";
  position: absolute;
  inset: -24px -18px auto auto;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(58, 22, 36, 0.16);
  transform: rotate(14deg);
}

.price-panel__top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.price-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.price {
  display: block;
  margin-bottom: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 5rem;
  font-weight: 850;
  line-height: 1;
}

.price-badge {
  border: 1px solid rgba(155, 89, 182, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--coral-dark);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-note {
  color: var(--muted);
  line-height: 1.5;
}

.quiz,
.analysis,
.results {
  padding: 32px 0 56px;
}

.quiz__topbar {
  display: grid;
  grid-template-columns: 48px 48px 1fr 72px;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaded4;
}

.progress__bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--coral));
  transition: width 0.25s ease;
}

.counter {
  color: var(--muted);
  font-weight: 780;
  text-align: right;
}

.quiz__panel {
  padding: clamp(24px, 5vw, 48px);
}

.quiz__panel h2 {
  margin-bottom: 28px;
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.option {
  width: 100%;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.option:hover,
.option:focus-visible {
  border-color: rgba(207, 77, 66, 0.7);
  box-shadow: 0 10px 24px rgba(58, 39, 32, 0.1);
  transform: translateY(-1px);
}

.analysis {
  display: grid;
  min-height: calc(100vh - 68px);
  align-content: center;
  justify-items: center;
  text-align: center;
}

.analysis__meter {
  width: min(360px, 88vw);
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaded6;
}

.analysis__meter div {
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  animation: loading 1.1s ease-in-out infinite alternate;
}

@keyframes loading {
  from {
    transform: translateX(-35%);
  }
  to {
    transform: translateX(165%);
  }
}

.analysis h2 {
  margin: 24px 0 8px;
}

.analysis p {
  color: var(--muted);
}

.results {
  display: grid;
  gap: 18px;
}

.results__header,
.full-report,
.upgrade,
.share {
  padding: clamp(22px, 4vw, 34px);
}

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

.results__header h2 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 6vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.results__header p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.result-visual {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 20%),
    linear-gradient(135deg, rgba(201, 160, 171, 0.32), rgba(155, 89, 182, 0.16));
}

.result-visual--image {
  min-height: 240px;
  background: rgba(255, 247, 240, 0.72);
  box-shadow: 0 18px 46px rgba(108, 60, 82, 0.1);
}

.result-visual--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.result-visual span,
.result-visual i,
.result-visual b {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.result-visual span {
  width: 106px;
  height: 106px;
  left: 32px;
  top: 36px;
  background: var(--rose);
}

.result-visual i {
  width: 86px;
  height: 86px;
  right: 28px;
  top: 72px;
  background: var(--plum);
}

.result-visual b {
  width: 132px;
  height: 16px;
  left: 46px;
  bottom: 46px;
  border-radius: 8px;
  background: rgba(30, 27, 27, 0.38);
  transform: rotate(-12deg);
}

.result-visual--secure span,
.result-visual--secure i {
  background: var(--sage);
}

.result-visual--good-base i {
  background: var(--gold);
}

.result-visual--anxious b {
  transform: rotate(18deg);
}

.result-visual--avoidant span {
  opacity: 0.45;
}

.result-visual--hot-cold {
  background:
    radial-gradient(circle at 28% 24%, rgba(201, 160, 171, 0.45), transparent 24%),
    radial-gradient(circle at 72% 66%, rgba(155, 89, 182, 0.32), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 232, 0.88));
}

.result-visual--unsafe span,
.result-visual--unsafe i {
  background: var(--coral-dark);
}

.score-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--ink);
  color: #fff;
}

.score-strip__label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.score-strip strong {
  font-size: 2.3rem;
}

.score-strip__small {
  font-size: 1.15rem !important;
  line-height: 1.15;
}

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

.pattern-brief article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(108, 60, 82, 0.08);
}

.pattern-brief span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pattern-brief strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.dimensions {
  display: grid;
  gap: 12px;
}

.radar-card,
.compare-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.radar-card p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.radar-wrap svg {
  width: 100%;
  max-width: 360px;
  display: block;
  margin-left: auto;
  overflow: visible;
}

.radar-grid {
  fill: none;
  stroke: rgba(155, 89, 182, 0.18);
  stroke-width: 1.4;
}

.radar-axis {
  stroke: rgba(107, 98, 96, 0.22);
  stroke-width: 1;
}

.radar-shape {
  fill: rgba(155, 89, 182, 0.24);
  stroke: var(--plum);
  stroke-width: 3;
}

.radar-dot {
  fill: var(--coral-dark);
}

.radar-label {
  fill: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.dimension {
  display: grid;
  grid-template-columns: minmax(150px, 230px) 1fr 48px;
  gap: 12px;
  align-items: center;
}

.dimension__track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaded6;
}

.dimension__bar {
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
}

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

.insight-grid section {
  padding: 24px;
}

.insight-grid h3,
.upgrade h3,
.full-report h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.5;
}

.full-report__header,
.upgrade {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

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

.report-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
}

.report-block strong {
  display: block;
  margin-bottom: 8px;
}

.report-block p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.upgrade p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.upgrade__actions,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.upgrade__actions {
  justify-content: flex-end;
}

.upgrade__actions .button {
  width: 180px;
  min-height: 48px;
  padding: 0 18px;
  text-align: center;
  line-height: 1.15;
}

.compare-offer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  overflow: hidden;
}

.compare-offer article {
  min-height: 134px;
  padding: 22px;
}

.compare-offer article + article {
  border-left: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(201, 160, 171, 0.18), rgba(155, 89, 182, 0.08));
}

.compare-offer strong,
.compare-offer span {
  display: block;
}

.compare-offer strong {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.compare-offer span {
  color: var(--muted);
  line-height: 1.5;
}

.upgrade-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.upgrade-comparison article {
  min-height: 220px;
  padding: 24px;
}

.upgrade-comparison article + article {
  border-left: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(201, 160, 171, 0.18), rgba(155, 89, 182, 0.08));
}

.comparison-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.comparison-head strong {
  font-size: 1.18rem;
}

.comparison-head span {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(155, 89, 182, 0.1);
  color: var(--coral-dark);
  font-size: 0.8rem;
  font-weight: 820;
}

.price-lockup {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 8px 0 12px;
}

.price-lockup del {
  color: var(--soft);
}

.price-lockup b {
  color: var(--plum);
  font-size: 2.4rem;
  line-height: 1;
}

.price-lockup em {
  color: var(--sage);
  font-style: normal;
  font-weight: 820;
}

.muted-item {
  color: var(--soft);
}

.urgency-line {
  margin: 14px 0 0;
  color: var(--coral-dark);
  font-weight: 760;
}

.share {
  display: grid;
  gap: 12px;
}

.share label {
  color: var(--muted);
  font-weight: 760;
}

.social-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-share a,
.visual-share-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.64);
  color: var(--wine);
}

.visual-share-button {
  cursor: pointer;
  font: inherit;
}

.social-share a:hover,
.social-share a:focus-visible,
.visual-share-button:hover,
.visual-share-button:focus-visible {
  border-color: rgba(155, 89, 182, 0.34);
  background: #fff;
}

.social-share svg,
.visual-share-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

textarea {
  min-height: 110px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
}

.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  border-top: 1px solid rgba(32, 28, 31, 0.08);
  padding: 26px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.debug-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(58, 22, 36, 0.12);
  padding: 10px 16px;
  background: rgba(255, 250, 246, 0.94);
  color: var(--wine);
  font-size: 0.9rem;
  backdrop-filter: blur(14px);
}

.debug-bar a {
  border: 1px solid rgba(155, 89, 182, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
}

.intent-dialog {
  width: min(440px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.intent-dialog::backdrop {
  background: rgba(30, 27, 27, 0.28);
}

.intent-dialog form {
  padding: 26px;
}

.content-page {
  padding: 46px 0 72px;
}

.content-page h1 {
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.content-card {
  padding: clamp(22px, 4vw, 34px);
}

.article-page {
  width: min(1080px, calc(100% - 56px));
}

.article-page .content-card {
  padding: clamp(30px, 5vw, 56px);
}

.article-page h1 {
  max-width: 860px;
  font-size: clamp(3rem, 5.2vw, 4.65rem);
  line-height: 1;
  text-wrap: balance;
}

.article-page .content-card > p {
  max-width: 860px;
}

.content-card p {
  color: var(--muted);
  line-height: 1.62;
}

.content-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 850;
  line-height: 1.12;
}

.success-card {
  display: grid;
  gap: 18px;
}

.success-card h1 {
  margin-bottom: 0;
}

.success-steps {
  display: grid;
  gap: 12px;
  margin: 8px 0;
}

.success-steps article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(58, 22, 36, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 245, 241, 0.76);
}

.success-steps span {
  color: var(--coral-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 820;
  line-height: 1;
}

.success-steps strong,
.success-steps p {
  grid-column: 2;
}

.success-steps strong {
  color: var(--ink);
}

.success-steps p {
  margin-bottom: 0;
}

.paid-report h1 {
  margin-bottom: 28px;
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
}

.report-hero h2,
.paid-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.report-score {
  border-radius: 8px;
  padding: 20px;
  background: var(--ink);
  color: #fff;
}

.report-score span,
.report-score small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.report-score strong {
  display: block;
  margin: 8px 0;
  font-size: 3.2rem;
  line-height: 1;
}

.paid-section {
  margin-top: 18px;
}

.paid-bars {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.paid-bars > div {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 42px 1fr;
  gap: 12px;
  align-items: center;
}

.paid-bars span {
  font-weight: 760;
}

.paid-bars strong {
  text-align: right;
}

.paid-bars div div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaded6;
}

.paid-bars i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--coral));
}

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

.compare-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
}

.script-stack {
  display: grid;
  gap: 12px;
}

blockquote {
  margin: 0;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
  color: var(--ink);
  line-height: 1.6;
}

.day-plan {
  display: grid;
  gap: 12px;
}

.day-plan article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
}

.day-plan span {
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.day-plan h3 {
  margin-bottom: 10px;
}

.day-plan p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.report-actions {
  margin-top: 22px;
}

.report-actions--inline {
  margin-top: 20px;
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    min-height: 62px;
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .menu-toggle {
    background: transparent;
    border-color: rgba(58, 22, 36, 0.14);
  }

  .site-header--menu .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(58, 22, 36, 0.12);
    border-radius: 8px;
    padding: 10px;
    background: rgba(255, 247, 240, 0.94);
    box-shadow: 0 22px 58px rgba(58, 22, 36, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-header--menu.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header--menu .site-nav a,
  .site-header--menu .site-nav .nav-quiz {
    border-radius: 8px;
    padding: 13px 12px;
    background: rgba(255, 255, 255, 0.46);
    text-align: left;
  }

  .site-header--menu .menu-toggle {
    display: grid;
  }

  .hero,
  .section-strip,
  .report-preview,
  .research-section,
  .knowledge-section,
  .articles-section,
  .quiz-preview-section,
  .locked-preview {
    width: min(960px, calc(100% - 32px));
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(2.6rem, 13.5vw, 4.8rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
    line-height: 0.98;
  }

  .section-strip,
  .report-preview,
  .research-section,
  .knowledge-section,
  .articles-section,
  .quiz-preview-section,
  .locked-preview {
    padding: 66px 0;
  }

  .knowledge-grid article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .research-note {
    grid-column: auto;
  }

  .locked-report-card {
    width: 100%;
    justify-self: stretch;
    min-height: 560px;
  }

  .price-panel {
    width: 100%;
    justify-self: stretch;
  }

  .hero__visual {
    min-height: 460px;
  }

  .factor-grid,
  .insight-grid,
  .report-sections {
    grid-template-columns: 1fr;
  }

  .factor-grid article:nth-child(1),
  .factor-grid article:nth-child(2),
  .factor-grid article:nth-child(3),
  .factor-grid article:nth-child(4),
  .factor-grid article:nth-child(5) {
    grid-column: auto;
  }

  .score-strip {
    grid-template-columns: 1fr;
  }

  .pattern-brief {
    grid-template-columns: 1fr;
  }

  .dimension {
    grid-template-columns: 1fr 44px;
  }

  .dimension__track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .full-report__header,
  .upgrade {
    align-items: stretch;
    display: grid;
  }

  .report-hero,
  .result-hero-grid,
  .compare-grid,
  .paid-bars > div,
  .radar-card,
  .compare-offer,
  .upgrade-comparison {
    grid-template-columns: 1fr;
  }

  .compare-offer article + article,
  .upgrade-comparison article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .paid-bars strong {
    text-align: left;
  }

  .result-visual--image,
  .result-visual--image img {
    min-height: 260px;
  }

  .radar-wrap {
    padding: 0 12px;
  }

  .radar-wrap svg {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero,
  .section-strip,
  .report-preview,
  .quiz,
  .analysis,
  .upgrade,
  .share,
  .button {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .results {
    display: block !important;
    width: 100%;
    padding: 0;
  }

  .results__header,
  .full-report,
  .insight-grid section,
  .content-card {
    box-shadow: none;
  }

  .content-page {
    width: 100%;
    padding: 0;
  }
}
