:root {
  --bg: #090b14;
  --bg-soft: #111522;
  --panel: rgba(18, 22, 38, 0.88);
  --panel-strong: #14192a;
  --text: #f6f1ea;
  --muted: rgba(246, 241, 234, 0.72);
  --muted-soft: rgba(246, 241, 234, 0.54);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #8f85ff;
  --accent-soft: rgba(143, 133, 255, 0.16);
  --accent-2: #d8b4fe;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 133, 255, 0.2), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(216, 180, 254, 0.14), transparent 28%),
    linear-gradient(180deg, #090b14 0%, #0d1120 42%, #090b14 100%);
  overflow-x: hidden;
}

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

a:hover {
  opacity: 0.92;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.bg-orb,
.bg-grid {
  pointer-events: none;
  position: fixed;
  inset: auto;
  z-index: 0;
}

.bg-orb {
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.22;
}

.orb-one {
  top: -10rem;
  left: -8rem;
  background: #6f62ff;
}

.orb-two {
  right: -10rem;
  top: 18rem;
  background: #a168b4;
}

.bg-grid {
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 92%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding: 28px 0 120px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.brand-subtitle {
  margin: 6px 0 0;
  max-width: 400px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.topbar-actions,
.hero-actions,
.result-actions,
.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-actions {
  align-items: center;
}

.topbar-link,
.hero-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 241, 234, 0.78);
  min-height: auto;
  border-radius: 0;
  transition: color 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
}

.topbar-link:hover,
.hero-link:hover {
  color: var(--text);
}

.topbar-primary {
  min-width: 190px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #6f74ff 100%);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(111, 116, 255, 0.26);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.ghost-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.eyebrow,
.status-label,
.proof-label,
.metric-label,
.pricing-label,
.subtle-kicker {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(246, 241, 234, 0.62);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 34px;
  align-items: start;
  padding: 8px 0 72px;
}

.hero h1,
.section-block h2,
.quiz-sidebar h2,
.section-head h2,
.report-cover h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 15.4ch;
  font-size: clamp(2.28rem, 3.48vw, 3.12rem);
  margin-top: 10px;
}

.hero-text,
.section-heading p,
.quiz-sidebar > p,
.unlock-card p,
.pricing-section p,
.faq-card p,
.testimonial-card span,
.detail-card p,
.step-card p,
.feature-card p,
.proof-strip strong,
.proof-strip span,
.report-cover p,
.metrics-card strong,
.metrics-card span,
.preview-panel p,
.report-paragraphs,
.status-list,
.pricing-points strong,
.pricing-points span {
  color: rgba(246, 241, 234, 0.78);
  line-height: 1.75;
}

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

.hero-meta span,
.card-tag,
.card-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
}

.hero-meta span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 13px;
}

.trust-line {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted-soft);
  line-height: 1.55;
}

.trust-line span {
  position: relative;
  padding-left: 18px;
}

.trust-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(216, 180, 254, 0.72);
  transform: translateY(-50%);
}

.card-surface {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 25, 42, 0.96) 0%, rgba(13, 16, 28, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.report-pages {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
  align-items: end;
}

.sample-page {
  padding: 22px;
  min-height: 220px;
}

.sample-page-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
  text-align: right;
}

.page-primary {
  transform: rotate(-2deg);
}

.page-secondary {
  transform: translateY(14px) rotate(2.2deg);
  opacity: 0.94;
}

.sample-page h3 {
  margin: 14px 0 16px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
}

.sample-page blockquote {
  margin: 14px 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.sample-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.sample-bullets {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.chapter-list {
  margin-top: 8px;
}

.chapter-list li::marker {
  color: var(--accent-2);
}

.sample-bullets li + li {
  margin-top: 6px;
}

.report-cover {
  padding: 26px;
  overflow: hidden;
}

.report-cover::after {
  content: "";
  position: absolute;
  inset: auto -72px -112px auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 133, 255, 0.28), transparent 70%);
  filter: blur(14px);
}

.report-cover-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.report-cover h2 {
  font-size: clamp(1.34rem, 2vw, 1.72rem);
  max-width: 17ch;
  margin-bottom: 10px;
}

.report-outline {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.report-outline div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.report-outline strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  line-height: 1.6;
}

.cover-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.cover-stats div,
.pricing-points div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.cover-stats strong,
.pricing-points strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.cover-stats span,
.pricing-points span,
.metrics-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.floating-card {
  margin-left: 20px;
  background: linear-gradient(180deg, rgba(18, 22, 36, 0.94) 0%, rgba(12, 15, 25, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(3, 5, 12, 0.22);
}

.insight-card,
.metrics-card {
  padding: 22px 24px;
}

.insight-card p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.metrics-card {
  display: grid;
  gap: 16px;
}

.metrics-card strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
}

.card-tag,
.card-index {
  padding: 8px 12px;
  background: var(--accent-soft);
  color: #d8ceff;
  font-size: 12px;
  font-weight: 600;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 78px;
}

.proof-strip article {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.proof-strip strong {
  display: block;
  color: var(--text);
  margin-top: 10px;
}

.section-block {
  padding: 0 0 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 26px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2,
.section-head h2,
.quiz-sidebar h2,
.pricing-layout h2 {
  font-size: clamp(2.05rem, 3.5vw, 3rem);
  margin-top: 10px;
}

.section-heading p:last-child {
  margin: 0;
}

.narrow {
  grid-template-columns: minmax(0, 760px);
}

.testimonial-grid,
.sample-grid,
.faq-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

.comparison-heading {
  margin-bottom: 24px;
}

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

.comparison-card {
  padding: 24px;
  min-height: 250px;
}

.comparison-card-featured {
  border-color: rgba(143, 133, 255, 0.34);
  background: linear-gradient(180deg, rgba(28, 32, 56, 0.98) 0%, rgba(16, 19, 34, 0.98) 100%);
  box-shadow: 0 26px 70px rgba(67, 57, 152, 0.28);
}

.comparison-card h3 {
  margin: 16px 0 12px;
  color: var(--text);
}

.comparison-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.comparison-list li + li {
  margin-top: 8px;
}

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

.testimonial-card,
.feature-card,
.detail-card,
.step-card,
.faq-card,
.status-box,
.preview-panel,
.unlock-card,
.quiz-card,
.report-card,
.pricing-layout {
  padding: 24px;
}

.testimonial-card p {
  margin-top: 0;
  font-size: 1.02rem;
  line-height: 1.85;
}

.testimonial-card span {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted-soft);
}

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

.feature-card {
  min-height: 210px;
}

.feature-card h3,
.detail-card h3,
.step-card h3,
.faq-card h3,
.report-card h3,
.unlock-card h3,
.preview-title,
.preview-stats strong {
  margin: 16px 0 10px;
  color: var(--text);
}

.quiz-helper {
  margin: 14px 2px 0;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.6;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.editorial-stack {
  display: grid;
  gap: 18px;
}

.sticky-copy {
  align-self: start;
}

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

.step-card span {
  display: inline-block;
  color: var(--accent-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.quiz-section {
  padding: 0 0 104px;
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.status-box {
  margin-top: 24px;
}

.mini-price {
  margin-top: 24px;
  padding: 20px 22px;
}

.mini-price strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 1.65rem;
}

.mini-price p {
  margin: 10px 0 0;
}

.soft-panel {
  background: rgba(255, 255, 255, 0.04);
}

.status-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.status-list li + li {
  margin-top: 8px;
}

.progress-row {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.progress-fill {
  height: 100%;
  width: 12.5%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

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

.quiz-step.split.active {
  display: grid;
}

.quiz-step label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
}

.quiz-step input,
.quiz-step select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #141a2d;
  color: #f6f1ea;
}

.quiz-step select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(246, 241, 234, 0.88) 50%),
    linear-gradient(135deg, rgba(246, 241, 234, 0.88) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
  color-scheme: dark;
}

.quiz-step select option {
  background: #101625;
  color: #f6f1ea;
}

.quiz-step select:invalid {
  color: rgba(246, 241, 234, 0.68);
}

.quiz-step input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.quiz-step input:focus,
.quiz-step select:focus {
  outline: 2px solid rgba(143, 133, 255, 0.26);
  border-color: rgba(143, 133, 255, 0.65);
  background-color: #1a2036;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.hidden {
  display: none !important;
}

.results-section {
  padding: 0 0 104px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.preview-panel {
  margin-bottom: 18px;
}

.post-unlock-actions {
  margin-top: 18px;
}

.preview-shell {
  display: grid;
  gap: 20px;
}

.preview-header {
  display: grid;
  gap: 16px;
}

.preview-title-block h3 {
  margin: 12px 0 8px;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: "Cormorant Garamond", serif;
}

.preview-title-block p {
  margin: 0;
}

.preview-stats {
  min-width: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.preview-stats article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.preview-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.preview-copy,
.preview-bullets {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-bullets ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.preview-bullets li + li {
  margin-top: 8px;
}

.preview-quote {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(143, 133, 255, 0.16), rgba(216, 180, 254, 0.08));
  border: 1px solid rgba(143, 133, 255, 0.2);
}

.preview-quote p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 1.02rem;
}

.unlock-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 22px;
  padding: 30px;
  border: 1px solid rgba(143, 133, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(216, 180, 254, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(27, 31, 52, 0.98) 0%, rgba(12, 15, 27, 0.98) 100%);
  box-shadow: 0 30px 80px rgba(42, 34, 106, 0.28);
}

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

.unlock-copy h3 {
  margin: 14px 0 10px;
  max-width: 16ch;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.04;
}

.unlock-copy p {
  margin: 0;
  max-width: 62ch;
}

.unlock-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.unlock-proof-strip span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 12px;
}

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

.unlock-includes > div,
.unlock-price-box,
.unlock-editorial-note {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.unlock-includes strong,
.unlock-price-box strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
}

.unlock-includes p,
.unlock-price-box p,
.unlock-editorial-note p,
.unlock-cta-note {
  margin: 8px 0 0;
}

.unlock-editorial-note p {
  max-width: 58ch;
}

.unlock-card-aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.unlock-price-row {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.unlock-price-box strong {
  font-size: 2.4rem;
  line-height: 0.95;
}

.unlock-price-anchor {
  color: var(--accent-2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.unlock-cta {
  width: 100%;
  min-height: 56px;
}

.unlock-cta-note {
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.65;
}

.full-report {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.report-card {
  max-width: 860px;
}

.dimension-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(143, 133, 255, 0.08));
  border: 1px solid rgba(143, 133, 255, 0.16);
}

.dimension-card-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.dimension-card-head h4 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-family: "Cormorant Garamond", serif;
}

.dimension-card-head p {
  margin: 0;
  max-width: 64ch;
}

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

.dimension-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(8, 10, 20, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 10px;
}

.dimension-item-top,
.dimension-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.dimension-code,
.dimension-tone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dimension-label-row strong {
  color: var(--text);
}

.dimension-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.dimension-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(143, 133, 255, 0.9), rgba(216, 180, 254, 0.95));
}

.dimension-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.report-paragraphs {
  display: grid;
  gap: 16px;
}

.report-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.report-summary {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}

.report-insight-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(143, 133, 255, 0.14), rgba(216, 180, 254, 0.06));
  border: 1px solid rgba(143, 133, 255, 0.2);
}

.report-bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text);
  display: grid;
  gap: 10px;
}

.report-body {
  display: grid;
  gap: 14px;
}

.report-paragraphs p,
.report-body p {
  margin: 0;
}

.report-closing {
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
  font-style: italic;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 22px;
  align-items: start;
}

.pricing-points {
  display: grid;
  gap: 14px;
}

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

.brand-link {
  display: inline-block;
}

.legal-shell {
  max-width: 980px;
}

.legal-topbar {
  margin-bottom: 18px;
}

.legal-topbar-actions {
  justify-content: flex-end;
}

.legal-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.legal-page {
  padding-top: 10px;
}

.legal-heading h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin: 0;
}

.legal-card {
  padding: 32px;
}

.legal-copy {
  display: grid;
  gap: 14px;
}

.legal-copy h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.legal-copy p,
.legal-copy a {
  color: rgba(246, 241, 234, 0.82);
  line-height: 1.8;
}

.site-footer {
  margin-top: 12px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-note {
  margin: 0;
  color: var(--muted-soft);
  line-height: 1.6;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(246, 241, 234, 0.78);
}

@media (max-width: 1120px) {
  .hero,
  .editorial-layout,
  .quiz-layout,
  .pricing-layout,
  .preview-grid,
  .section-heading,
  .section-head,
  .unlock-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .unlock-includes {
    grid-template-columns: 1fr;
  }

  .testimonial-grid,
  .proof-strip,
  .modern-steps,
  .faq-grid,
  .refined-grid,
  .comparison-grid,
  .full-report,
  .report-pages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-stats {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--content-width));
    padding-top: 20px;
  }

  .site-footer {
    align-items: flex-start;
  }

  .legal-card {
    padding: 24px;
  }

  .topbar,
  .topbar-actions,
  .hero-actions,
  .result-actions,
  .quiz-actions,
  .unlock-card,
  .preview-header {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-actions {
    gap: 10px;
  }

  .topbar-link,
  .hero-link {
    width: 100%;
    text-align: left;
    padding: 4px 0 0;
  }

  .primary-btn,
  .secondary-btn,
  .ghost-btn {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.46rem, 10.4vw, 3.4rem);
    line-height: 1.01;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-meta span,
  .subtle-kicker,
  .page-label {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .report-cover-top,
  .sample-page-top {
    display: grid;
    gap: 6px;
  }

  .cover-stats,
  .proof-strip,
  .testimonial-grid,
  .refined-grid,
  .comparison-grid,
  .modern-steps,
  .faq-grid,
  .full-report,
  .quiz-step.split,
  .report-pages {
    grid-template-columns: 1fr;
  }

  .page-primary,
  .page-secondary {
    transform: none;
  }

  .floating-card {
    margin-left: 0;
  }

  .section-block,
  .quiz-section,
  .results-section {
    padding-bottom: 76px;
  }
}
