:root {
  color-scheme: light;
  --ink: #0d151b;
  --muted: #626967;
  --paper: #f3efe6;
  --paper-strong: #fffcf5;
  --line: #d9d0c2;
  --accent: #8f5634;
  --accent-dark: #633720;
  --blue: #254f61;
  --green: #586b59;
  --gold: #a77a35;
  --shadow: 0 22px 55px rgba(13, 21, 27, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(246, 240, 229, 0.9);
  border-bottom: 1px solid rgba(20, 30, 34, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
nav,
.hero-actions,
.checkout-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper-strong);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.78rem;
}

nav {
  gap: clamp(12px, 3vw, 30px);
}

nav a,
.secondary-action {
  color: var(--ink);
  text-decoration: none;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.small-action,
.primary-action,
.secondary-action,
.email-strip button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.small-action {
  padding: 0 16px;
  color: var(--paper-strong);
  background: var(--ink);
}

.primary-action {
  padding: 0 22px;
  color: var(--paper-strong);
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(172, 79, 56, 0.24);
}

.primary-action:hover,
.email-strip button:hover {
  background: var(--accent-dark);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(20, 30, 34, 0.22);
  background: rgba(255, 250, 241, 0.72);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 30, 34, 0.9) 0%, rgba(20, 30, 34, 0.68) 43%, rgba(20, 30, 34, 0.16) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 82px 0 130px;
  color: var(--paper-strong);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1b09c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.email-strip {
  width: min(640px, 100%);
  margin-top: 34px;
  padding: 14px;
  background: rgba(255, 250, 241, 0.12);
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
}

.email-strip label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 250, 241, 0.9);
  font-weight: 800;
}

.email-strip div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid rgba(20, 30, 34, 0.18);
  border-radius: 8px;
}

.email-strip button {
  padding: 0 16px;
  color: var(--paper-strong);
  background: var(--accent);
}

[data-email-status] {
  min-height: 20px;
  margin: 8px 0 0;
  color: #f3cfbf;
  font-size: 0.9rem;
}

.credibility-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credibility-band div {
  padding: clamp(22px, 4vw, 42px);
  background: var(--paper-strong);
}

.credibility-band strong,
.credibility-band span {
  display: block;
}

.credibility-band strong {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.credibility-band span,
.section-intro p,
.feature-grid p,
.profile-card p,
.panel p,
.pricing-copy p,
.price-panel p,
.checkout-card p,
.success-card p {
  color: var(--muted);
  line-height: 1.62;
}

.product-section,
.profiles-section,
.upgrade-section,
.results-section {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-intro p {
  max-width: 720px;
  font-size: 1.06rem;
}

.diagnostic-shell {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 18px;
  align-items: stretch;
}

.progress-panel,
.quiz-card,
.panel,
.feature-grid article,
.profile-card,
.price-panel,
.checkout-card,
.success-card {
  background: var(--paper-strong);
  border: 1px solid rgba(20, 30, 34, 0.11);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.progress-panel {
  padding: 22px;
}

.step-label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  background: #e7ddcd;
  border-radius: 99px;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 180ms ease;
}

.score-preview {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.score-preview p {
  margin: 0 0 6px;
  color: var(--muted);
}

.score-preview strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.15;
}

.quiz-card {
  min-height: 510px;
  padding: clamp(22px, 5vw, 48px);
}

.question-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 900;
}

.question-title {
  margin-bottom: 26px;
  font-size: clamp(1.65rem, 4vw, 3.1rem);
}

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

.answer-button {
  width: 100%;
  padding: 18px;
  text-align: left;
  color: var(--ink);
  background: #fbf6ec;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.answer-button:hover,
.answer-button:focus-visible {
  border-color: var(--accent);
  outline: 3px solid rgba(172, 79, 56, 0.12);
}

.answer-button strong {
  display: block;
  margin-bottom: 5px;
}

.answer-button span {
  color: var(--muted);
  line-height: 1.42;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.ghost-button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.results-section {
  background: #172226;
  color: var(--paper-strong);
}

.results-hero,
.upgrade-section {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 360px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.results-hero p,
.upgrade-section p {
  max-width: 760px;
}

.result-meter {
  display: grid;
  min-height: 250px;
  place-items: center;
  color: var(--paper-strong);
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
}

.result-meter span {
  display: block;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
}

.result-meter small {
  margin-top: -58px;
  color: rgba(255, 250, 241, 0.7);
  font-weight: 800;
  text-transform: uppercase;
}

.result-grid,
.feature-grid,
.profile-list,
.score-breakdown,
.executive-report {
  display: grid;
  gap: 18px;
}

.result-grid {
  grid-template-columns: 1fr 1fr 1.35fr;
  margin-top: 28px;
}

.panel {
  padding: 24px;
  color: var(--ink);
}

.action-plan ol {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.58;
}

.score-breakdown {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.score-pill {
  padding: 18px;
  color: var(--ink);
  background: var(--paper-strong);
  border-radius: 8px;
}

.score-pill span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.score-pill strong {
  font-size: 2rem;
}

.upgrade-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper-strong);
  border-radius: 8px;
}

.sample-output {
  background: var(--paper-strong);
}

.feature-grid,
.advisory-flow,
.profile-list {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article,
.advisory-flow article,
.profile-card {
  padding: 26px;
}

.feature-grid span,
.advisory-flow span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 900;
}

.profile-card {
  box-shadow: none;
}

.profile-card b {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
}

.upgrade-section {
  background: #dde6df;
}

.price-panel {
  padding: 26px;
}

.price {
  display: block;
  margin-bottom: 12px;
  font-size: 3rem;
  font-weight: 900;
}

.checkout-modal {
  width: min(560px, calc(100% - 28px));
  padding: 0;
  border: 0;
  background: transparent;
}

.checkout-modal::backdrop {
  background: rgba(20, 30, 34, 0.72);
}

.checkout-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
}

.checkout-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.checkout-row {
  gap: 12px;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-strong);
  cursor: pointer;
  font-size: 1.3rem;
}

.success-page {
  position: fixed;
  inset: 0;
  z-index: 20;
  overflow: auto;
  padding: clamp(20px, 5vw, 60px);
  background: #172226;
}

.success-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  color: #172027;
  background: #fffdf8;
  border: 1px solid rgba(23, 32, 39, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.success-card h2 {
  max-width: 680px;
  margin: 8px 0 14px;
  color: #111820;
}

.success-card h1 {
  max-width: 720px;
  margin: 8px 0 16px;
  color: #111820;
  font-size: clamp(2.25rem, 6vw, 4.2rem);
  line-height: 1.02;
}

.success-card > p:not(.eyebrow) {
  max-width: 720px;
  color: #3d474f;
}

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

.success-next-steps article {
  padding: 18px;
  color: #172027;
  background: #f6f2eb;
  border: 1px solid rgba(23, 32, 39, 0.1);
  border-radius: 12px;
}

.success-next-steps span {
  display: block;
  margin-bottom: 14px;
  color: #7a5a2f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.success-next-steps strong {
  display: block;
  color: #111820;
  line-height: 1.35;
}

.success-next-steps p {
  margin: 8px 0 0;
  color: #4c5660;
  font-size: 0.92rem;
  line-height: 1.55;
}

.support-line {
  margin: 22px 0 0;
  color: #5a6670;
  font-size: 0.92rem;
}

.support-line a {
  color: #174657;
  font-weight: 760;
}

.premium-report {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.premium-report article {
  padding: 18px;
  background: #fbf6ec;
  border: 1px solid var(--line);
  border-radius: 8px;
}

footer {
  padding: 32px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 241, 0.72);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 32px;
}

.footer-brand {
  font-weight: 800;
  color: rgba(255, 250, 241, 0.9);
  white-space: nowrap;
}

.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 250, 241, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 150ms ease;
}

.footer-nav a:hover {
  color: rgba(255, 250, 241, 0.9);
}

.footer-copy {
  font-size: 0.84rem;
  color: rgba(255, 250, 241, 0.4);
  white-space: nowrap;
  text-align: right;
}

.checkout-legal {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: #5f665f;
  line-height: 1.5;
}

.checkout-legal a {
  color: var(--accent-dark);
  text-decoration: underline;
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: rgba(20, 30, 34, 0.74);
  }

  .hero-content {
    margin: 0 auto;
    padding: 72px 0 96px;
  }

  .credibility-band,
  .diagnostic-shell,
  .results-hero,
  .result-grid,
  .score-breakdown,
  .feature-grid,
  .advisory-flow,
  .profile-list,
  .upgrade-section,
  .upgrade-callout {
    grid-template-columns: 1fr;
  }

  .quiz-card {
    min-height: 0;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .small-action {
    padding: 0 12px;
  }

  .email-strip div,
  .checkout-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-actions,
  .quiz-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

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

  .diagnostic-shell {
    grid-template-columns: 1fr;
  }

  .progress-panel {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
  }

  .progress-panel .score-preview {
    margin-left: auto;
    text-align: right;
  }
}

/* Decisive commercial-readiness pass */
:root {
  --ink: #11181d;
  --muted: #465057;
  --paper: #f7f4ee;
  --paper-strong: #ffffff;
  --line: #cfc7ba;
  --accent: #174657;
  --accent-dark: #0f303d;
  --blue: #174657;
  --green: #174657;
  --gold: #174657;
  --shadow: 0 18px 44px rgba(17, 24, 29, 0.1);
}

body {
  color: var(--ink);
  background: var(--paper);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(17, 24, 29, 0.13);
}

.brand-mark,
.small-action {
  background: var(--ink);
}

nav a {
  color: #3f4a51;
  font-weight: 720;
}

nav a:hover,
nav a:focus-visible {
  color: var(--accent-dark);
}

.primary-action,
.email-strip button {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(15, 48, 61, 0.22);
}

.primary-action:hover,
.email-strip button:hover {
  background: var(--accent-dark);
}

.secondary-action {
  color: var(--ink);
  background: #ffffff;
  border-color: #aeb8bd;
}

.hero {
  min-height: 82vh;
  background: #0f171d;
}

.hero-image {
  opacity: 0.38;
  filter: grayscale(0.28) saturate(0.75) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 29, 0.98) 0%, rgba(15, 23, 29, 0.84) 54%, rgba(15, 23, 29, 0.42) 100%),
    linear-gradient(180deg, rgba(15, 23, 29, 0) 65%, rgba(15, 23, 29, 0.72) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 40px));
}

.hero .eyebrow,
.advisor-copy .eyebrow {
  color: #9dc2cf;
}

.hero-copy,
.advisor-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.advisor-section {
  color: #ffffff;
  background: #111a20;
}

.advisor-media-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.advisor-fallback {
  background:
    linear-gradient(180deg, rgba(15, 23, 29, 0.34), rgba(15, 23, 29, 0.9)),
    var(--advisor-poster) center / cover;
}

.advisor-fallback span,
.advisor-transcript summary span {
  color: #9dc2cf;
}

.credibility-band {
  background: #ffffff;
  border-color: var(--line);
}

.credibility-band span,
.section-intro p,
.profile-card p,
.pricing-copy p,
.price-panel p,
.checkout-card p,
.success-card p {
  color: var(--muted);
}

.product-section,
.sample-output {
  background: var(--paper);
}

.quiz-card,
.progress-panel,
.advisory-flow article,
.price-panel,
.checkout-card,
.success-card,
.upgrade-callout,
.snapshot-hero,
.snapshot-card,
.sentence-card,
.locked-preview-section,
.locked-score-card,
.score-pill,
.os-page-header,
.control-pathways,
.pattern-system,
.metric-card,
.recommended-path,
.mini-panel,
.roadmap-card,
.sim-card,
.practice-card,
.calendar-tools,
.daily-card,
.deep-card,
.micro-drill-card,
.scenario-card {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.question-kicker,
.eyebrow,
.advisory-flow span,
.profile-card b,
.results-section .eyebrow,
.results-section .scenario-field strong,
.results-section .deep-card summary span,
.results-section .daily-card summary span,
.results-section .metric-card span,
.results-section .sentence-card span,
.results-section .roadmap-card span,
.results-section .sim-card span,
.results-section .locked-preview-card span,
.results-section .locked-score-card span,
.results-section .snapshot-card span,
.results-section .snapshot-hero span {
  color: var(--accent);
}

.answer-button {
  background: #ffffff;
  border-color: #bfc8cc;
}

.answer-button:hover,
.answer-button:focus-visible,
.answer-button[aria-pressed="true"] {
  border-color: var(--accent);
  outline: 3px solid rgba(23, 70, 87, 0.14);
}

.answer-button[aria-pressed="true"] {
  background: #eef6f8;
}

.answer-button span {
  color: var(--muted);
}

.progress-track span {
  background: var(--accent);
}

.results-section {
  background: #111a20;
}

.results-section .os-shell,
.results-section .briefing-card,
.results-section .control-metric,
.results-section .next-section-bar,
.results-section .os-nav,
.results-section .os-nav-status {
  background: #121d24;
  border-color: rgba(255, 255, 255, 0.14);
}

.results-section .os-page-header,
.results-section .assessment-intro,
.results-section .locked-preview-section {
  background: #ffffff;
}

.upgrade-section {
  background: #edf1f2;
}

.price {
  color: var(--accent-dark);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.checkout-modal::backdrop {
  background: rgba(15, 23, 29, 0.74);
}

.checkout-card input,
select {
  color: var(--ink);
  background: #ffffff;
  border-color: #aeb8bd;
}

.checkout-legal,
.footer-copy {
  color: rgba(255, 255, 255, 0.64);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  color: #ffffff;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .credibility-band {
    grid-template-columns: 1fr;
  }

  .advisor-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .site-header nav {
    justify-self: center;
    max-width: 46vw;
  }

  .hero-content {
    padding-top: 54px;
  }

  .hero-actions {
    gap: 10px;
  }

  .advisor-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .advisor-video-shell {
    min-height: 190px;
  }

  .progress-panel {
    position: static;
  }

  .question-title {
    margin-bottom: 22px;
  }

  .answer-button {
    min-height: 84px;
  }

  .checkout-card {
    max-height: calc(100vh - 24px);
  }
}

/* Premium advisory polish */
.site-header {
  background: rgba(255, 252, 245, 0.86);
  border-bottom-color: rgba(13, 21, 27, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 760;
}

.brand-mark,
.small-action,
.primary-action,
.secondary-action,
.email-strip,
input,
.progress-panel,
.quiz-card,
.panel,
.feature-grid article,
.profile-card,
.price-panel,
.checkout-card,
.success-card,
.answer-button,
.ghost-button,
.score-pill,
.upgrade-callout,
.premium-report article {
  border-radius: 6px;
}

.small-action,
.primary-action,
.secondary-action,
.email-strip button,
.ghost-button {
  font-weight: 760;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.primary-action {
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(99, 55, 32, 0.18);
}

.primary-action:hover,
.secondary-action:hover,
.small-action:hover,
.email-strip button:hover {
  transform: translateY(-1px);
}

.secondary-action {
  border-color: rgba(13, 21, 27, 0.18);
  background: rgba(255, 252, 245, 0.74);
}

.hero {
  min-height: 90vh;
}

.hero-image {
  filter: saturate(0.82) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 21, 27, 0.95) 0%, rgba(13, 21, 27, 0.76) 48%, rgba(13, 21, 27, 0.18) 100%),
    linear-gradient(180deg, rgba(13, 21, 27, 0) 68%, rgba(13, 21, 27, 0.54) 100%);
}

.hero-content {
  width: min(830px, calc(100% - 36px));
}

.eyebrow {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #d7b08c;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7.2vw, 6.25rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.15rem);
}

h3 {
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  font-weight: 720;
  line-height: 1.16;
}

.hero-copy {
  color: rgba(255, 252, 245, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.72;
}

.email-strip {
  background: rgba(255, 252, 245, 0.09);
  border-color: rgba(255, 252, 245, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.1);
}

.credibility-band {
  background: #cfc5b7;
}

.credibility-band div,
.sample-output {
  background: #fffcf5;
}

.credibility-band strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

.product-section,
.profiles-section,
.upgrade-section,
.results-section {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
}

.section-intro {
  max-width: 920px;
}

.section-intro p {
  max-width: 760px;
}

.diagnostic-shell {
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
}

.progress-panel,
.quiz-card,
.panel,
.feature-grid article,
.profile-card,
.price-panel,
.checkout-card,
.success-card {
  border-color: rgba(13, 21, 27, 0.1);
  box-shadow: 0 18px 45px rgba(13, 21, 27, 0.1);
}

.progress-panel {
  background: #171f24;
  color: #fffcf5;
}

.progress-panel .step-label,
.score-preview p {
  color: rgba(255, 252, 245, 0.62);
}

.score-preview {
  border-top-color: rgba(255, 252, 245, 0.14);
}

.progress-track {
  background: rgba(255, 252, 245, 0.16);
}

.progress-track span {
  background: #caa06f;
}

.quiz-card {
  background: #fffcf5;
}

[data-quiz-stage] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

[data-quiz-stage].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.question-kicker {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.question-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

.answer-button {
  position: relative;
  padding: 20px 22px;
  background: #fbf8f0;
  border-color: #ddd3c5;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.answer-button::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 3px;
  background: transparent;
  transition: background 150ms ease;
}

.answer-button:hover,
.answer-button:focus-visible {
  transform: translateX(2px);
  background: #fffdf8;
  border-color: rgba(143, 86, 52, 0.52);
  box-shadow: 0 10px 28px rgba(13, 21, 27, 0.08);
}

.answer-button:hover::before,
.answer-button:focus-visible::before {
  background: var(--accent);
}

.answer-button strong {
  font-weight: 760;
}

.answer-button span {
  font-size: 0.96rem;
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.results-section {
  background:
    linear-gradient(180deg, #10191f 0%, #172227 55%, #10191f 100%);
}

.results-hero {
  border-bottom: 1px solid rgba(255, 252, 245, 0.12);
  padding-bottom: 32px;
}

.results-hero [data-result-summary] {
  color: rgba(255, 252, 245, 0.74);
  font-size: 1.08rem;
  line-height: 1.72;
}

.result-meter {
  min-height: 230px;
  background: rgba(255, 252, 245, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.08);
}

.result-meter span {
  font-family: var(--serif);
  font-weight: 400;
}

.result-grid {
  grid-template-columns: 1fr 1fr 1.45fr;
}

.panel {
  box-shadow: none;
}

.panel h3,
.feature-grid h3,
.profile-card h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.score-pill {
  background: rgba(255, 252, 245, 0.96);
  border: 1px solid rgba(255, 252, 245, 0.25);
}

.score-pill strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
}

.score-pill i {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
}

.upgrade-callout {
  background: #fffcf5;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.executive-report {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.assessment-intro,
.report-section {
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid rgba(255, 252, 245, 0.22);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.assessment-intro {
  grid-column: 1 / -1;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(135deg, #fffcf5 0%, #eee4d2 100%);
}

.assessment-intro span,
.report-section span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assessment-intro h3,
.report-section h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.assessment-intro p {
  max-width: 900px;
  margin: 14px 0 0;
  color: #4d5553;
  font-size: 1.04rem;
  line-height: 1.7;
}

.report-section {
  padding: 24px;
}

.scenario-section {
  grid-column: 1 / -1;
}

.report-section p,
.report-section li {
  color: #4d5553;
  line-height: 1.62;
}

.report-section ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.report-section li {
  position: relative;
  padding-left: 18px;
}

.report-section li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

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

.premium-report .assessment-intro {
  grid-column: 1 / -1;
}

.premium-report .report-section {
  box-shadow: none;
}

.briefing-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px;
  color: #fffcf5;
  background: linear-gradient(135deg, rgba(15, 24, 29, 0.96), rgba(31, 43, 47, 0.94));
  border: 1px solid rgba(255, 252, 245, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.hero-briefing {
  width: min(680px, 100%);
  margin-top: 28px;
  background: rgba(13, 21, 27, 0.72);
  backdrop-filter: blur(14px);
}

.module-briefing {
  margin-bottom: 18px;
}

.briefing-visual {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(202, 160, 111, 0.26), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 245, 0.09), rgba(255, 252, 245, 0.02));
  border: 1px solid rgba(255, 252, 245, 0.12);
  border-radius: 6px;
}

.briefing-visual span,
.briefing-visual i {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.briefing-visual span {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 252, 245, 0.36);
}

.briefing-visual i {
  width: 18px;
  height: 18px;
  background: #caa06f;
  box-shadow: 0 0 28px rgba(202, 160, 111, 0.7);
  animation: briefingPulse 2.8s ease-in-out infinite;
}

.briefing-play-visual {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  color: #171f22;
  font-size: 0;
  background: #fffcf5;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.briefing-play-visual::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 52%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #171f22;
  transform: translate(-50%, -50%);
}

@keyframes briefingPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

.briefing-copy h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.briefing-copy p:not(.eyebrow) {
  color: rgba(255, 252, 245, 0.76);
  line-height: 1.65;
}

.briefing-note {
  margin-top: 12px;
  padding-top: 12px;
  color: rgba(255, 252, 245, 0.62) !important;
  border-top: 1px solid rgba(255, 252, 245, 0.12);
  font-size: 0.88rem;
}

.briefing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.briefing-button.is-playing {
  border-color: rgba(202, 160, 111, 0.7);
  background: rgba(202, 160, 111, 0.18);
}

.snapshot-shell {
  display: grid;
  gap: 18px;
}

.snapshot-hero,
.snapshot-card,
.locked-preview-section,
.locked-score-card {
  padding: 24px;
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.snapshot-hero span,
.snapshot-card span,
.locked-preview-section span,
.locked-preview-card span,
.locked-score-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-hero h2,
.snapshot-card h3,
.locked-preview-section h3,
.locked-preview-card h4,
.locked-score-card strong {
  font-family: var(--serif);
  font-weight: 400;
}

.snapshot-hero p,
.snapshot-card p,
.locked-preview-section p,
.locked-preview-card p,
.locked-score-card p {
  color: #4d5553;
  line-height: 1.62;
}

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

.scenario-preview-card {
  position: relative;
  overflow: hidden;
}

.locked-fade {
  position: relative;
  max-height: 150px;
  overflow: hidden;
  filter: blur(1.4px);
  opacity: 0.62;
  pointer-events: none;
}

.locked-fade::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0), #fffcf5);
}

.snapshot-card small {
  display: block;
  margin-top: 14px;
  color: var(--accent-dark);
  line-height: 1.5;
}

.snapshot-limiter p {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

.locked-preview-section {
  display: grid;
  gap: 18px;
  background: linear-gradient(135deg, #fffcf5 0%, #eee4d2 100%);
}

.locked-preview-card {
  position: relative;
  min-height: 150px;
  padding: 18px;
  background: rgba(255, 252, 245, 0.72);
  border: 1px solid #ded2c1;
  border-radius: 6px;
  overflow: hidden;
}

.locked-preview-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0), #fffcf5);
}

.locked-score-card {
  grid-column: 1 / -1;
}

.advisory-flow,
.calibration-lab {
  display: grid;
  gap: 18px;
}

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

.advisory-flow article {
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.advisory-flow h3,
.calibration-case h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.calibration-lab {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.calibration-case {
  padding: 24px;
  color: var(--ink);
  background: #f7f0e5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.calibration-case > p:not(.eyebrow) {
  color: #4d5553;
  line-height: 1.62;
}

.calibration-case div {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #ded2c1;
}

.calibration-case strong,
.calibration-case span {
  display: block;
}

.calibration-case strong {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calibration-case span {
  color: #38413f;
  line-height: 1.55;
}

.os-intro {
  margin-bottom: 20px;
}

.os-shell {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: 20px;
  grid-column: 1 / -1;
  padding: 18px;
  background: #0f181d;
  border: 1px solid rgba(255, 252, 245, 0.1);
  border-radius: 8px;
}

.os-nav {
  position: sticky;
  top: 86px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 252, 245, 0.06);
  border: 1px solid rgba(255, 252, 245, 0.14);
  border-radius: 6px;
}

.os-nav-status {
  padding: 14px;
  color: #fffcf5;
  background: rgba(255, 252, 245, 0.08);
  border: 1px solid rgba(255, 252, 245, 0.12);
  border-radius: 6px;
}

.os-nav-status span,
.os-nav-status strong {
  display: block;
}

.os-nav-status span {
  color: rgba(255, 252, 245, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.os-nav-status strong {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.os-nav-status div {
  height: 7px;
  overflow: hidden;
  background: rgba(255, 252, 245, 0.14);
  border-radius: 99px;
}

.os-nav-status i {
  display: block;
  width: 12%;
  height: 100%;
  background: #caa06f;
}

.os-nav button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px;
  color: rgba(255, 252, 245, 0.72);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}

.os-nav button b,
.os-nav button em {
  display: block;
  font-style: normal;
}

.os-nav button em {
  margin-top: 3px;
  color: rgba(255, 252, 245, 0.45);
  font-size: 0.76rem;
}

.os-nav button span {
  color: #caa06f;
  font-size: 0.72rem;
  font-weight: 900;
}

.os-nav button.is-active,
.os-nav button:hover {
  color: var(--ink);
  background: #fffcf5;
  border-color: rgba(255, 252, 245, 0.28);
}

.os-nav button.is-active em,
.os-nav button:hover em {
  color: #6d716d;
}

.os-nav button.is-complete:not(.is-active) {
  border-color: rgba(202, 160, 111, 0.4);
}

.os-pages {
  min-width: 0;
}

.os-page {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.os-page.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: pageIn 180ms ease;
}

.next-section-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  margin-top: 20px;
  padding: 18px;
  color: #fffcf5;
  background: rgba(255, 252, 245, 0.08);
  border: 1px solid rgba(255, 252, 245, 0.14);
  border-radius: 8px;
}

.next-section-bar span,
.next-section-bar strong {
  display: block;
}

.next-section-bar span {
  color: rgba(255, 252, 245, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-section-bar strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
}

.next-section-bar button {
  justify-self: end;
  white-space: nowrap;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.os-page-header {
  margin-bottom: 22px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background: linear-gradient(135deg, #fffcf5 0%, #eee4d2 100%);
  border: 1px solid rgba(255, 252, 245, 0.22);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.control-header {
  background: linear-gradient(135deg, #fffaf0 0%, #ded0bd 100%);
}

.control-centre-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.control-metric {
  min-height: 170px;
  padding: 20px;
  color: #fffcf5;
  background: #172329;
  border: 1px solid rgba(255, 252, 245, 0.12);
  border-radius: 6px;
}

.control-metric span,
.control-metric small {
  display: block;
}

.control-metric span {
  margin-bottom: 12px;
  color: #caa06f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-metric strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 400;
  line-height: 1.13;
}

.control-metric small {
  margin-top: 12px;
  color: rgba(255, 252, 245, 0.62);
  line-height: 1.4;
}

.control-pathways {
  margin-bottom: 18px;
  padding: 22px;
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.control-pathways > span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-pathways h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.control-pathways > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.control-pathways article {
  padding: 16px;
  background: #f8f1e7;
  border: 1px solid #e1d5c5;
  border-radius: 6px;
}

.control-pathways strong,
.control-pathways small {
  display: block;
}

.control-pathways p {
  color: #4d5553;
  line-height: 1.58;
}

.control-pathways small {
  color: var(--accent-dark);
  font-weight: 800;
}

.os-page-header.compact {
  margin-top: 26px;
  padding: 24px;
  box-shadow: none;
}

.os-page-header p:not(.eyebrow) {
  max-width: 940px;
  color: #4d5553;
  line-height: 1.7;
}

.executive-metrics,
.reveal-board,
.identity-grid,
.roadmap-grid,
.simulator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.metric-card,
.sentence-card,
.recommended-path,
.mini-panel,
.roadmap-card,
.sim-card,
.practice-card,
.calendar-tools {
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.metric-card,
.sentence-card,
.recommended-path,
.mini-panel,
.roadmap-card,
.sim-card,
.practice-card,
.calendar-tools {
  padding: 20px;
}

.metric-card span,
.sentence-card span,
.recommended-path span,
.roadmap-card span,
.sim-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
}

.metric-card p,
.sentence-card p,
.mini-panel p,
.roadmap-card li,
.sim-card p,
.practice-card p {
  color: #4d5553;
  line-height: 1.6;
}

.reveal-board {
  margin-bottom: 18px;
}

.sentence-card,
.recommended-path {
  margin-bottom: 18px;
}

.pattern-system {
  margin-bottom: 18px;
  padding: 22px;
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.pattern-system > span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pattern-system > h3,
.pattern-grid h4 {
  font-family: var(--serif);
  font-weight: 400;
}

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

.pattern-grid article {
  padding: 18px;
  background: #f8f1e7;
  border: 1px solid #e1d5c5;
  border-radius: 6px;
}

.pattern-grid article span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pattern-grid p {
  color: #4d5553;
  line-height: 1.58;
}

.sentence-card p {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.22;
  color: var(--ink);
}

.recommended-path ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.recommended-path li {
  padding: 14px;
  color: #38413f;
  background: #f6efe3;
  border: 1px solid #e0d4c4;
  border-radius: 6px;
  counter-increment: path;
}

.recommended-path li::before {
  content: counter(path, decimal-leading-zero);
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
}

.mini-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.risk-deep-list,
.playbook-list,
.week-stack {
  display: grid;
  gap: 16px;
}

.daily-plan {
  margin: 22px 0;
  padding: 22px;
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.daily-plan > h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.daily-plan > p {
  max-width: 880px;
  color: #4d5553;
  line-height: 1.62;
}

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

.daily-card {
  background: #fdf9f1;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.daily-card summary {
  display: grid;
  gap: 6px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

.daily-card summary::-webkit-details-marker {
  display: none;
}

.daily-card summary span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.daily-card summary strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.daily-card .scenario-field {
  margin: 0 16px;
}

.deep-card {
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.deep-card summary {
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
}

.deep-card summary::-webkit-details-marker {
  display: none;
}

.deep-card summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deep-card summary h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.deep-card[open] {
  padding-bottom: 16px;
}

.deep-card > .scenario-field,
.deep-card > .appearance-grid,
.deep-card > .practice-card {
  margin-left: 24px;
  margin-right: 24px;
}

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

.playbook-card .scenario-field,
.week-card .scenario-field {
  border-top-color: #e2d8c9;
}

.plan-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.plan-progress span {
  padding: 12px;
  color: var(--ink);
  text-align: center;
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
  font-weight: 800;
}

.practice-card {
  margin-top: 14px;
}

.practice-card h4,
.calendar-tools h4 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.checklist {
  display: grid;
  gap: 10px;
}

.checklist label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #4d5553;
  line-height: 1.5;
}

.calendar-tools {
  margin-top: 22px;
}

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

.micro-drill-card {
  padding: 22px;
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.micro-drill-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.micro-drill-card h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.contrast-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.contrast-box div {
  padding: 14px;
  background: #f7f0e5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.contrast-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contrast-box p {
  margin: 0;
  color: #38413f;
  line-height: 1.55;
}

.calendar-controls {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
}

.calendar-controls label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

select {
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.calendar-output {
  margin-top: 16px;
  color: #4d5553;
}

.google-link-list {
  display: grid;
  gap: 8px;
}

.google-link-list a {
  color: var(--accent-dark);
}

.scenario-intro {
  margin: 12px 0 20px;
  padding: 16px 18px;
  color: #303937;
  background: #f2eadc;
  border-left: 3px solid var(--accent);
}

.scenario-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.scenario-card {
  padding: 20px;
  background: #fdf9f1;
  border: 1px solid #ded2c1;
  border-radius: 6px;
}

.scenario-card h4 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.scenario-field {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #e2d8c9;
}

.scenario-field strong {
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.scenario-field p {
  margin: 0;
  color: #38413f;
  line-height: 1.58;
}

.feature-grid article,
.advisory-flow article,
.profile-card {
  box-shadow: none;
}

.feature-grid span,
.advisory-flow span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.profile-card b {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upgrade-section {
  background: #e5e0d6;
}

.price {
  font-family: var(--serif);
  font-weight: 400;
}

.checkout-card {
  border: 1px solid rgba(255, 252, 245, 0.18);
}

.success-page {
  background: #10191f;
}

.premium-report article {
  background: #fbf8f0;
}

/* Paid experience polish */
.results-section {
  color: #fffcf5;
  background:
    radial-gradient(circle at 12% 0%, rgba(202, 160, 111, 0.12), transparent 30%),
    linear-gradient(180deg, #10191f 0%, #172227 48%, #10191f 100%);
}

.results-section .upgrade-callout,
.results-section .assessment-intro,
.results-section .report-section,
.results-section .snapshot-hero,
.results-section .snapshot-card,
.results-section .sentence-card,
.results-section .locked-preview-section,
.results-section .locked-preview-card,
.results-section .locked-score-card,
.results-section .os-page-header,
.results-section .control-pathways,
.results-section .pattern-system,
.results-section .metric-card,
.results-section .recommended-path,
.results-section .mini-panel,
.results-section .roadmap-card,
.results-section .sim-card,
.results-section .practice-card,
.results-section .calendar-tools,
.results-section .daily-card,
.results-section .deep-card,
.results-section .micro-drill-card,
.results-section .scenario-card {
  color: var(--ink);
  background: #fffcf5;
  border-color: #ded2c1;
}

.results-section .os-shell {
  gap: 22px;
  padding: clamp(14px, 2vw, 22px);
  background: #0f181d;
  border-color: rgba(255, 252, 245, 0.14);
}

.results-section .os-pages {
  min-width: 0;
}

.results-section .os-page-header,
.results-section .assessment-intro,
.results-section .locked-preview-section {
  background: linear-gradient(135deg, #fffcf5 0%, #eee4d2 100%);
}

.results-section p,
.results-section li,
.results-section .scenario-field p,
.results-section .practice-card p,
.results-section .mini-panel p,
.results-section .roadmap-card li,
.results-section .sim-card p,
.results-section .calendar-output,
.results-section .control-pathways p,
.results-section .daily-card .scenario-field p {
  color: #38413f;
}

.results-section .eyebrow,
.results-section .scenario-field strong,
.results-section .deep-card summary span,
.results-section .daily-card summary span,
.results-section .metric-card span,
.results-section .sentence-card span,
.results-section .roadmap-card span,
.results-section .sim-card span,
.results-section .locked-preview-card span,
.results-section .locked-score-card span,
.results-section .snapshot-card span,
.results-section .snapshot-hero span {
  color: var(--accent);
}

.results-section h2,
.results-section h3,
.results-section h4,
.results-section strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.results-section .briefing-card,
.results-section .control-metric,
.results-section .next-section-bar,
.results-section .os-nav,
.results-section .os-nav-status {
  color: #fffcf5;
  background: #172329;
  border-color: rgba(255, 252, 245, 0.14);
}

.results-section .briefing-card h3,
.results-section .briefing-card p,
.results-section .briefing-card .eyebrow,
.results-section .control-metric strong,
.results-section .control-metric small,
.results-section .next-section-bar strong,
.results-section .next-section-bar span,
.results-section .os-nav-status strong,
.results-section .os-nav-status span,
.results-section .os-nav button,
.results-section .os-nav button b,
.results-section .os-nav button em {
  color: #fffcf5;
}

.results-section .briefing-card .briefing-note,
.results-section .briefing-copy p:not(.eyebrow),
.results-section .control-metric small,
.results-section .os-nav button em {
  color: rgba(255, 252, 245, 0.68);
}

.results-section .os-nav button.is-active,
.results-section .os-nav button:hover {
  color: var(--ink);
  background: #fffcf5;
}

.results-section .os-nav button.is-active b,
.results-section .os-nav button:hover b {
  color: var(--ink);
}

.results-section .os-nav button.is-active em,
.results-section .os-nav button:hover em {
  color: #5f665f;
}

.control-centre-grid,
.executive-metrics,
.reveal-board,
.identity-grid,
.roadmap-grid,
.simulator-grid,
.micro-drill-grid,
.daily-grid,
.pattern-grid {
  align-items: stretch;
}

.control-metric,
.metric-card,
.snapshot-card,
.locked-preview-card,
.sim-card,
.micro-drill-card,
.scenario-card,
.daily-card,
.deep-card {
  overflow: hidden;
}

.deep-card summary,
.daily-card summary {
  align-items: start;
}

.scenario-field,
.contrast-box {
  min-width: 0;
}

.scenario-field p,
.contrast-box p,
.practice-card p,
.calendar-tools p {
  overflow-wrap: anywhere;
}

.checkout-card {
  color: var(--ink);
  background: #fffcf5;
  border-color: #ded2c1;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.checkout-card .eyebrow {
  color: var(--accent);
}

.checkout-card h2 {
  color: var(--ink);
}

.checkout-card p,
.checkout-card label {
  color: #4d5553;
}

.checkout-card .primary-action {
  margin-top: 4px;
}

.checkout-card input {
  min-height: 48px;
  color: var(--ink);
  background: #ffffff;
  border-color: #cdbfa9;
}

.checkout-card input::placeholder {
  color: #81877f;
}

.checkout-card input:focus {
  outline: 2px solid rgba(159, 105, 54, 0.34);
  outline-offset: 2px;
  border-color: var(--accent);
}

.inline-alert {
  margin: 0 0 18px;
  padding: 14px 16px;
  color: #5f2f22;
  background: #f7e2d9;
  border: 1px solid rgba(172, 79, 56, 0.24);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.45;
}

.legal-page {
  min-height: 70vh;
  padding: clamp(110px, 13vw, 160px) clamp(18px, 5vw, 72px) clamp(64px, 10vw, 120px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.94), rgba(236, 226, 207, 0.96)),
    var(--paper);
}

.legal-card {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  background: #fffcf5;
  border: 1px solid #ded2c1;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(13, 21, 27, 0.1);
}

.legal-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0;
}

.legal-card p {
  color: #38413f;
  line-height: 1.72;
}

.legal-card a:not(.secondary-action) {
  color: var(--accent-dark);
  font-weight: 800;
}

.advisor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: #fffcf5;
  background:
    radial-gradient(circle at 82% 18%, rgba(202, 160, 111, 0.13), transparent 26%),
    linear-gradient(135deg, #0f191f 0%, #17242a 54%, #0f191f 100%);
}

.advisor-copy {
  max-width: 600px;
}

.advisor-copy .eyebrow {
  color: #d7b08c;
}

.advisor-copy h2 {
  margin: 0;
  color: #fffcf5;
}

.advisor-copy p {
  max-width: 560px;
  color: rgba(255, 252, 245, 0.76);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.advisor-media-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(255, 252, 245, 0.07);
  border: 1px solid rgba(255, 252, 245, 0.14);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.advisor-video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 230px;
  background: #0b1217;
  border: 1px solid rgba(255, 252, 245, 0.12);
  border-radius: 8px;
}

.advisor-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.advisor-fallback {
  position: relative;
  display: grid;
  min-height: 100%;
  padding: clamp(22px, 4vw, 38px);
  align-items: end;
  background:
    linear-gradient(180deg, rgba(13, 21, 27, 0.25), rgba(13, 21, 27, 0.88)),
    var(--advisor-poster) center / cover;
}

.advisor-fallback::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 252, 245, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.advisor-fallback div {
  position: relative;
  max-width: 560px;
}

.advisor-fallback span {
  display: block;
  margin-bottom: 10px;
  color: #d7b08c;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisor-fallback h3 {
  margin: 0 0 10px;
  color: #fffcf5;
}

.advisor-fallback p {
  margin: 0;
  color: rgba(255, 252, 245, 0.76);
  line-height: 1.65;
}

.advisor-transcript {
  color: #fffcf5;
  background: rgba(13, 21, 27, 0.34);
  border: 1px solid rgba(255, 252, 245, 0.12);
  border-radius: 8px;
}

.advisor-transcript summary {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  cursor: pointer;
}

.advisor-transcript summary span {
  color: #d7b08c;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisor-transcript summary strong {
  color: #fffcf5;
}

.advisor-transcript p {
  margin: 0;
  padding: 0 20px 18px;
  color: rgba(255, 252, 245, 0.74);
  line-height: 1.72;
}

.advisor-transcript p + p {
  padding-top: 0;
}

.advisor-media-card .primary-action {
  justify-self: start;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (max-width: 920px) {
  .hero-overlay {
    background: rgba(13, 21, 27, 0.78);
  }

  .executive-report,
  .premium-report,
  .advisor-section,
  .os-shell,
  .executive-metrics,
  .reveal-board,
  .identity-grid,
  .roadmap-grid,
  .simulator-grid,
  .appearance-grid,
  .calendar-controls,
  .control-centre-grid,
  .control-pathways > div,
  .daily-grid,
  .pattern-grid,
  .micro-drill-grid,
  .contrast-box,
  .snapshot-grid,
  .locked-preview-grid,
  .advisory-flow,
  .calibration-lab {
    grid-template-columns: 1fr;
  }

  .os-nav {
    position: static;
  }

  .briefing-card {
    grid-template-columns: 1fr;
  }

  .briefing-visual {
    min-height: 120px;
  }

  .next-section-bar {
    grid-template-columns: 1fr;
  }

  .next-section-bar button {
    justify-self: stretch;
    width: 100%;
    white-space: normal;
  }

  .plan-progress {
    grid-template-columns: repeat(2, 1fr);
  }

  .recommended-path ol {
    grid-template-columns: 1fr;
  }

  .scenario-field {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 580px) {
  .diagnostic-shell {
    grid-template-columns: 1fr;
  }

  .progress-panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
  }

  .progress-panel .score-preview {
    margin-top: 0;
    margin-left: auto;
    padding-top: 0;
    text-align: right;
    border-top: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  .checkout-modal {
    width: min(100% - 22px, 520px);
    max-height: calc(100vh - 22px);
  }

  .checkout-card {
    gap: 12px;
    max-height: calc(100vh - 22px);
    overflow: auto;
    padding: 22px;
  }

  .checkout-card h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .checkout-card .primary-action {
    width: 100%;
    min-height: 50px;
    white-space: normal;
  }
}

/* Final readability and trust pass */
body {
  color: #121c21;
  background: #f4efe6;
  line-height: 1.5;
}

p,
li {
  overflow-wrap: anywhere;
}

.site-header {
  min-height: 66px;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.footer-nav a:focus-visible {
  color: var(--ink);
  outline: none;
}

.hero {
  min-height: 88vh;
}

.hero-content {
  width: min(780px, calc(100% - 40px));
  padding: clamp(72px, 10vw, 116px) 0 clamp(88px, 12vw, 132px);
}

.hero-copy,
.section-intro p,
.pricing-copy p,
.price-panel p {
  line-height: 1.72;
}

.hero-briefing,
.email-strip {
  max-width: 680px;
}

.product-section,
.profiles-section,
.upgrade-section,
.results-section {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.section-intro {
  max-width: 800px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.section-intro h2 {
  max-width: 780px;
}

.diagnostic-shell {
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.progress-panel,
.quiz-card,
.profile-card,
.price-panel,
.upgrade-callout,
.calibration-case,
.snapshot-hero,
.snapshot-card,
.sentence-card,
.locked-preview-section,
.locked-score-card,
.os-page-header,
.control-pathways,
.pattern-system,
.metric-card,
.recommended-path,
.mini-panel,
.roadmap-card,
.sim-card,
.practice-card,
.calendar-tools,
.daily-card,
.deep-card,
.micro-drill-card,
.scenario-card {
  border-radius: 8px;
}

.progress-panel {
  padding: clamp(20px, 3vw, 28px);
}

.quiz-card {
  padding: clamp(26px, 5vw, 52px);
}

.question-title {
  max-width: 860px;
  line-height: 1.12;
}

.answer-button {
  padding: 20px;
}

.answer-button span {
  line-height: 1.55;
}

.results-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(202, 160, 111, 0.08), transparent 28%),
    linear-gradient(180deg, #0f191f 0%, #18252b 52%, #0f191f 100%);
}

.results-hero {
  gap: clamp(24px, 5vw, 64px);
}

.results-hero p {
  color: rgba(255, 252, 245, 0.78);
  line-height: 1.7;
}

.upgrade-callout,
.locked-preview-section,
.snapshot-hero,
.snapshot-card,
.sentence-card {
  padding: clamp(22px, 4vw, 34px);
}

.snapshot-grid,
.locked-preview-grid,
.control-centre-grid,
.executive-metrics,
.pattern-grid,
.daily-grid,
.micro-drill-grid,
.simulator-grid {
  gap: clamp(14px, 2vw, 22px);
}

.results-section p,
.results-section li,
.snapshot-card p,
.locked-preview-card p,
.metric-card p,
.deep-card p,
.daily-card p,
.scenario-field p {
  line-height: 1.66;
}

.os-shell {
  align-items: start;
}

.results-section .os-shell {
  gap: clamp(18px, 2.6vw, 30px);
}

.os-nav {
  top: 88px;
}

.os-nav button {
  min-height: 58px;
}

.os-page-header p,
.control-pathways p,
.daily-plan > p {
  max-width: 920px;
}

.scenario-field {
  gap: 14px;
  padding: 14px 0;
}

.scenario-field + .scenario-field {
  border-top-color: rgba(13, 21, 27, 0.09);
}

.checkout-card {
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
}

.success-card {
  width: min(1120px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
}

@media (max-width: 920px) {
  .site-header {
    gap: 14px;
  }

  .site-header nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .results-hero,
  .upgrade-callout {
    align-items: stretch;
  }

  .result-meter {
    min-height: 220px;
  }
}

@media (max-width: 580px) {
  .site-header {
    min-height: 58px;
    padding: 10px 12px;
  }

  .site-header nav {
    gap: 14px;
    max-width: 48vw;
  }

  .site-header nav a {
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .small-action {
    min-height: 42px;
    white-space: nowrap;
  }

  .hero-content {
    width: min(100% - 28px, 720px);
    padding: 58px 0 76px;
  }

  .advisor-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .advisor-media-card {
    padding: 16px;
  }

  .advisor-video-shell {
    min-height: 210px;
  }

  .advisor-fallback {
    padding: 22px;
  }

  .advisor-media-card .primary-action {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .hero-copy,
  .section-intro p {
    font-size: 1rem;
  }

  .email-strip {
    padding: 16px;
  }

  .product-section,
  .profiles-section,
  .upgrade-section,
  .results-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .progress-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .progress-panel .score-preview {
    margin-left: 0;
    text-align: left;
  }

  .quiz-card {
    padding: 22px;
  }

  .question-title {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }

  .answer-button {
    min-height: 76px;
    padding: 18px;
  }

  .result-meter {
    min-height: 190px;
  }

  .result-meter small {
    margin-top: -34px;
  }

  .upgrade-callout,
  .locked-preview-section,
  .snapshot-hero,
  .snapshot-card,
  .sentence-card,
  .os-page-header,
  .control-pathways,
  .pattern-system,
  .metric-card,
  .recommended-path,
  .mini-panel,
  .roadmap-card,
  .sim-card,
  .practice-card,
  .calendar-tools,
  .daily-card,
  .deep-card,
  .micro-drill-card,
  .scenario-card {
    padding: 20px;
  }

  .scenario-field {
    padding: 12px 0;
  }

  .daily-card .scenario-field {
    margin-left: 0;
    margin-right: 0;
  }

  .calendar-controls label,
  .checkout-card label {
    gap: 8px;
  }

  .success-page {
    padding: 14px;
  }

  .success-card {
    padding: 24px;
  }

  .success-next-steps {
    grid-template-columns: 1fr;
  }

  select,
  input {
    min-height: 48px;
  }
}

/* Progressive disclosure pass */
body.is-panel-open {
  overflow: hidden;
}

.site-header nav {
  gap: clamp(18px, 2.4vw, 30px);
}

.credibility-band {
  position: relative;
  gap: 1px;
}

.band-detail-button,
.text-action {
  appearance: none;
  width: fit-content;
  min-height: 42px;
  padding: 0;
  color: var(--accent-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 70, 87, 0.35);
  cursor: pointer;
  font-weight: 780;
  letter-spacing: 0.01em;
}

.band-detail-button {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 22px 0 4px;
}

.text-action {
  margin-top: 18px;
}

.band-detail-button:hover,
.text-action:hover,
.band-detail-button:focus-visible,
.text-action:focus-visible {
  color: var(--accent);
  border-color: currentColor;
  outline: none;
}

.focus-overlay[hidden] {
  display: none;
}

.focus-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  background: rgba(13, 21, 27, 0.42);
  backdrop-filter: blur(12px);
}

.focus-backdrop {
  position: absolute;
  inset: 0;
}

.focus-panel {
  position: relative;
  width: min(760px, calc(100% - 28px));
  height: calc(100% - 28px);
  margin: 14px;
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
  color: #162027;
  background: #fffdf8;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.24);
  animation: panelEnter 220ms ease-out;
}

@keyframes panelEnter {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.focus-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  width: 42px;
  height: 42px;
  margin: -16px -16px 18px 18px;
  color: #162027;
  background: #f4efe6;
  border: 1px solid rgba(22, 32, 39, 0.14);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.focus-panel-content {
  clear: both;
}

.focus-panel-content h2 {
  max-width: 680px;
  margin-top: 10px;
  color: #11181d;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.focus-panel-content > p {
  max-width: 660px;
  color: #3d474f;
  font-size: 1.04rem;
  line-height: 1.7;
}

.focus-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.focus-list article,
.focus-quote {
  padding: clamp(18px, 3vw, 26px);
  background: #f6f2eb;
  border: 1px solid rgba(22, 32, 39, 0.1);
}

.focus-list span {
  display: block;
  margin-bottom: 12px;
  color: #7a5a2f;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.focus-list h3 {
  margin: 0 0 8px;
  color: #11181d;
  font-size: 1.18rem;
}

.focus-list p,
.focus-quote p {
  margin: 0;
  color: #3d474f;
  line-height: 1.65;
}

.focus-quote {
  margin-top: 26px;
  border-left: 3px solid var(--accent);
}

@media (max-width: 920px) {
  .site-header nav {
    display: flex;
  }
}

@media (max-width: 580px) {
  .site-header nav {
    max-width: 46vw;
  }

  .focus-overlay {
    align-items: end;
    justify-items: stretch;
  }

  .focus-panel {
    width: 100%;
    height: min(86vh, calc(100% - 20px));
    margin: 0;
    padding: 24px 18px 32px;
    border-radius: 18px 18px 0 0;
  }

  .focus-close {
    margin-right: 0;
  }
}

/* Final editorial UX and emotional pacing pass */
.admin-preview-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 8px 12px;
  color: #fffdf8;
  background: rgba(17, 24, 29, 0.88);
  border: 1px solid rgba(255, 252, 245, 0.18);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-preview-banner[hidden] {
  display: none;
}

.hero {
  min-height: 86vh;
}

.hero-content {
  width: min(720px, calc(100% - 44px));
}

.hero h1 {
  max-width: 700px;
  margin-top: 16px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin-top: 26px;
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
}

.hero .secondary-action {
  color: rgba(255, 252, 245, 0.78);
  background: transparent;
  border: 1px solid rgba(255, 252, 245, 0.24);
  box-shadow: none;
}

.hero .secondary-action:hover,
.hero .secondary-action:focus-visible {
  color: #fffdf8;
  background: rgba(255, 252, 245, 0.06);
  border-color: rgba(255, 252, 245, 0.42);
}

.advisor-section {
  gap: clamp(42px, 7vw, 96px);
  padding-top: clamp(78px, 10vw, 138px);
  padding-bottom: clamp(78px, 10vw, 138px);
}

.advisor-copy h2,
.section-intro h2,
.pricing-copy h2 {
  max-width: 820px;
  margin-top: 12px;
  margin-bottom: 22px;
  letter-spacing: 0;
}

.advisor-copy p:not(.eyebrow),
.section-intro p,
.pricing-copy p {
  max-width: 650px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.78;
}

.advisor-media-card {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

.credibility-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 44px);
  background: transparent;
  border: 0;
  gap: clamp(24px, 5vw, 60px);
}

.credibility-band div {
  padding: 0;
  background: transparent;
  border: 0;
}

.credibility-band strong {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.2vw, 1.72rem);
  line-height: 1.18;
}

.credibility-band span {
  max-width: 330px;
  color: #4d5860;
  line-height: 1.7;
}

.band-detail-button {
  margin-top: clamp(28px, 4vw, 46px);
  color: #53616a;
  font-size: 0.92rem;
  font-weight: 720;
}

.product-section,
.upgrade-section {
  padding-top: clamp(86px, 11vw, 150px);
  padding-bottom: clamp(86px, 11vw, 150px);
}

.section-intro {
  margin-bottom: clamp(38px, 6vw, 70px);
}

.diagnostic-shell {
  gap: clamp(24px, 4vw, 48px);
}

.progress-panel,
.quiz-card {
  box-shadow: 0 20px 60px rgba(17, 24, 29, 0.08);
}

.quiz-card {
  padding: clamp(30px, 5vw, 58px);
}

.question-title {
  max-width: 820px;
  margin-bottom: 30px;
  line-height: 1.08;
}

.answer-grid {
  gap: 12px;
}

.answer-button {
  border-color: rgba(18, 28, 33, 0.1);
  box-shadow: none;
}

.results-section {
  padding-top: clamp(78px, 9vw, 128px);
}

.results-hero {
  gap: clamp(30px, 6vw, 78px);
  margin-bottom: clamp(34px, 6vw, 72px);
}

.snapshot-shell {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.snapshot-grid {
  gap: 14px;
}

.locked-preview-section {
  margin-top: clamp(30px, 5vw, 64px);
  padding: clamp(28px, 5vw, 48px);
}

.locked-preview-section > div:first-child h3 {
  max-width: 760px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.locked-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.locked-preview-card {
  padding: 18px;
}

.locked-preview-card span {
  color: #6a7a82;
}

.upgrade-callout {
  margin-top: clamp(34px, 6vw, 72px);
  padding: clamp(30px, 5vw, 52px);
  border-color: rgba(255, 252, 245, 0.12);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.12);
}

.upgrade-callout h3 {
  max-width: 620px;
  margin-top: 8px;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.12;
}

.upgrade-callout p:not(.eyebrow) {
  max-width: 620px;
  line-height: 1.7;
}

.upgrade-section {
  align-items: center;
  background: #11181d;
  color: #fffdf8;
}

.upgrade-section .eyebrow {
  color: #9dc2cf;
}

.upgrade-section h2 {
  color: #fffdf8;
}

.upgrade-section p {
  color: rgba(255, 252, 245, 0.72);
}

.upgrade-section .text-action {
  color: rgba(255, 252, 245, 0.72);
  border-color: rgba(255, 252, 245, 0.28);
}

.upgrade-section .text-action:hover,
.upgrade-section .text-action:focus-visible {
  color: #fffdf8;
}

.price-panel {
  background: #fffdf8;
  border: 0;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
}

.price-panel p {
  color: #4b565e;
}

.price {
  color: #11181d;
}

.payment-status {
  color: #52606a;
  line-height: 1.55;
}

.focus-overlay {
  background: rgba(13, 21, 27, 0.52);
  backdrop-filter: blur(16px);
}

.focus-panel {
  width: min(720px, calc(100% - 32px));
  height: calc(100% - 32px);
  margin: 16px;
  padding: clamp(34px, 5.5vw, 68px);
  background: #fffdf8;
  box-shadow: -36px 0 120px rgba(0, 0, 0, 0.3);
  animation: panelEnter 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes panelEnter {
  from {
    opacity: 0;
    transform: translateX(34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.focus-panel-content h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 5vw, 3.7rem);
  line-height: 1.02;
}

.focus-panel-content > p {
  max-width: 610px;
  font-size: 1.06rem;
  line-height: 1.82;
}

.focus-list {
  gap: 16px;
  margin-top: clamp(34px, 5vw, 58px);
}

.focus-list article,
.focus-quote {
  padding: clamp(20px, 3.2vw, 30px);
  background: #f8f4ed;
  border: 0;
}

@media (max-width: 920px) {
  .credibility-band,
  .locked-preview-grid {
    grid-template-columns: 1fr;
  }

  .credibility-band span {
    max-width: 620px;
  }
}

@media (max-width: 580px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 74px;
    padding-bottom: 92px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .advisor-section,
  .credibility-band,
  .product-section,
  .upgrade-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .quiz-card {
    padding: 24px;
  }

  .upgrade-callout,
  .locked-preview-section {
    padding: 24px;
  }

  .focus-panel {
    height: min(88vh, calc(100% - 18px));
    padding: 28px 20px 36px;
  }
}
