:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #60666f;
  --soft: #f7f3ec;
  --paper: #fffdf8;
  --panel: #ffffff;
  --line: #ded7ca;
  --sage: #5f7461;
  --sage-deep: #354f3b;
  --clay: #bc6c47;
  --sky: #dce9ef;
  --gold: #e5bd62;
  --danger: #a44242;
  --shadow: 0 22px 60px rgba(56, 48, 38, 0.12);
  --radius: 8px;
  --font-body:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-display: Lora, Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(220, 233, 239, 0.7), transparent 32rem),
    linear-gradient(180deg, #fffdf8 0%, var(--soft) 100%);
  font-family: var(--font-body);
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(222, 215, 202, 0.78);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(56, 48, 38, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(132px, 14vw, 168px);
  height: auto;
}

.brand-context {
  margin: 0;
  color: var(--sage-deep);
  font-size: clamp(0.78rem, 1.7vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage-deep);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.screen {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.hidden {
  display: none !important;
}

.hero-screen {
  width: 100%;
  padding: 0 0 56px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  background: #f4dfca;
}

.hero-video,
.hero-blur {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-blur {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 248, 0.96) 0%,
      rgba(255, 253, 248, 0.9) 24%,
      rgba(255, 253, 248, 0.58) 46%,
      rgba(255, 253, 248, 0.14) 66%
    ),
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(247, 243, 236, 0.24));
  backdrop-filter: blur(5px);
  pointer-events: none;
}

@supports not ((backdrop-filter: blur(1px))) {
  .hero-blur {
    background:
      linear-gradient(
        90deg,
        rgba(255, 253, 248, 0.98) 0%,
        rgba(255, 253, 248, 0.92) 35%,
        rgba(255, 253, 248, 0.46) 70%
      ),
      rgba(255, 253, 248, 0.16);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(8rem, 14vw, 9.5rem);
}

.hero-copy > * {
  max-width: 650px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.7rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
legend {
  font-family: var(--font-display);
}

h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 7vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-lede,
.screen-heading p,
.result-hero p,
.checkout-copy p,
.report-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.assessment-controls,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--sage-deep);
  box-shadow: 0 12px 28px rgba(53, 79, 59, 0.2);
}

.button.subtle {
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
}

.button.wide {
  width: 100%;
}

.methodology-bar {
  position: absolute;
  right: 16px;
  bottom: 18px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  align-items: center;
  justify-content: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(222, 215, 202, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.58);
  box-shadow: 0 14px 34px rgba(56, 48, 38, 0.08);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.methodology-bar span {
  flex: 0 0 auto;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(222, 215, 202, 0.74);
  border-radius: 999px;
  color: rgba(32, 33, 36, 0.7);
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
}

.methodology-bar span:first-child {
  border-color: transparent;
  color: var(--clay);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.score-card,
.panel,
.question-card {
  border: 1px solid rgba(222, 215, 202, 0.92);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.score-card {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.mini-bars {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.mini-bars span {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee6d9;
}

.mini-bars span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  content: "";
}

.persona-showcase {
  width: 100%;
  margin: 52px 0 0;
  padding: 0;
}

.persona-showcase .section-heading {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.persona-showcase .section-heading > * {
  max-width: 760px;
}

.section-heading {
  display: grid;
  gap: 0.1rem;
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.carousel-shell {
  position: relative;
  width: 100%;
}

.persona-carousel {
  display: grid;
  grid-auto-columns: minmax(255px, min(32vw, 370px));
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding-block: 0.2rem 0.45rem;
  padding-inline: max(16px, calc((100vw - 1120px) / 2));
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.persona-carousel::-webkit-scrollbar {
  display: none;
}

.persona-carousel.is-autoscrolling {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.persona-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, 0.92);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.persona-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.persona-card-copy {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
}

.persona-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.carousel-button {
  position: absolute;
  top: 42%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(222, 215, 202, 0.94);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 28px rgba(56, 48, 38, 0.14);
}

.carousel-button::before {
  display: block;
  width: 10px;
  height: 10px;
  border: solid var(--sage-deep);
  border-width: 0 2px 2px 0;
  content: "";
}

.carousel-button-prev {
  left: max(10px, calc((100vw - 1120px) / 2 - 22px));
}

.carousel-button-prev::before {
  margin-left: 4px;
  transform: rotate(135deg);
}

.carousel-button-next {
  right: max(10px, calc((100vw - 1120px) / 2 - 22px));
}

.carousel-button-next::before {
  margin-right: 4px;
  transform: rotate(-45deg);
}

.carousel-button:focus-visible {
  outline: 3px solid rgba(188, 108, 71, 0.35);
  outline-offset: 2px;
}

.carousel-button:hover {
  transform: translateY(-1px);
}

.parenting-radar {
  width: 100%;
  margin: 30px 0 0;
  padding: 3rem 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(229, 189, 98, 0.14), transparent 26rem),
    linear-gradient(180deg, #243a2d 0%, #354f3b 100%);
  box-shadow:
    inset 0 24px 34px rgba(14, 27, 19, 0.28),
    inset 0 -24px 34px rgba(14, 27, 19, 0.32);
}

.parenting-radar .section-heading {
  width: min(1120px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.parenting-radar .section-heading .eyebrow {
  color: rgba(229, 189, 98, 0.88);
}

.parenting-radar .section-heading h2 {
  color: #fffdf8;
}

.parenting-radar .section-heading p:last-child {
  color: rgba(255, 253, 248, 0.76);
}

.radar-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 1.25rem;
  align-items: stretch;
  width: min(1120px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.radar-chart {
  min-width: 0;
  padding: clamp(0.9rem, 3vw, 1.3rem);
  border: 1px solid rgba(222, 215, 202, 0.92);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 18%, rgba(188, 108, 71, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(224, 232, 211, 0.58), transparent 58%),
    rgba(255, 253, 248, 0.8);
  box-shadow: 0 18px 44px rgba(56, 48, 38, 0.08);
}

.radar-chart svg {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.radar-grid-ring {
  fill: none;
  stroke: rgba(95, 116, 97, 0.2);
  stroke-width: 1;
}

.radar-axis-line {
  stroke: rgba(95, 116, 97, 0.22);
  stroke-width: 1;
}

.radar-axis-label {
  fill: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 800;
  dominant-baseline: middle;
}

.radar-profile {
  fill: var(--profile-color);
  fill-opacity: 0.08;
  stroke: var(--profile-color);
  stroke-linejoin: round;
  stroke-opacity: 0.42;
  stroke-width: 2;
}

.radar-profile-primary {
  fill-opacity: 0.22;
  stroke-opacity: 0.96;
  stroke-width: 3;
}

.radar-point {
  fill: var(--paper);
  stroke: var(--profile-color, var(--sage-deep));
  stroke-width: 2;
}

.radar-preset-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.radar-preset-dot {
  display: inline-block;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  border: 1px solid rgba(53, 79, 59, 0.24);
  background: var(--legend-color);
  opacity: 0.42;
  transform: scale(0.8);
  transition: opacity 180ms ease, transform 180ms ease;
}

.radar-preset-dot.is-active {
  opacity: 1;
  transform: scale(1.18);
  box-shadow: 0 0 0 5px rgba(95, 116, 97, 0.12);
}

.radar-persona-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  block-size: 620px;
  min-height: 560px;
  min-width: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding: clamp(1.15rem, 3vw, 1.45rem);
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(250, 247, 239, 0.9)),
    var(--paper);
  box-shadow: 0 18px 44px rgba(56, 48, 38, 0.07);
}

.radar-persona-panel h3 {
  margin: 0.2rem 0 0.45rem;
  color: var(--sage-deep);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.18rem);
  letter-spacing: 0;
}

.radar-persona-panel > p:not(.card-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.radar-spectrum-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
  min-height: 360px;
}

.radar-spectrum-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.42rem;
  align-items: center;
  min-width: 0;
  padding: 0.68rem 0;
  border-bottom: 1px solid rgba(222, 215, 202, 0.78);
}

.radar-spectrum-item > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.radar-spectrum-item strong {
  color: var(--sage-deep);
  font-size: 0.95rem;
  text-align: center;
}

.radar-spectrum-item span {
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.radar-spectrum-item span:last-child {
  text-align: right;
}

.radar-mini-track {
  position: relative;
  height: 0.38rem;
  overflow: visible;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(95, 116, 97, 0.18), rgba(188, 108, 71, 0.22)),
    rgba(95, 116, 97, 0.11);
}

.radar-mini-track::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(53, 79, 59, 0.24);
  content: "";
  transform: translateY(-50%);
}

.radar-mini-marker {
  position: absolute;
  top: 50%;
  left: var(--score);
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--profile-color, var(--sage));
  box-shadow: 0 5px 12px rgba(56, 48, 38, 0.18);
  transform: translate(-50%, -50%);
}

.landing-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  gap: clamp(1rem, 4vw, 2.2rem);
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 58px auto 0;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  overflow: hidden;
  border-radius: 22px;
  color: #fffdf8;
  background:
    radial-gradient(circle at 16% 22%, rgba(229, 189, 98, 0.58), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(188, 108, 71, 0.86), transparent 22rem),
    radial-gradient(circle at 42% 118%, rgba(53, 79, 59, 0.98), transparent 26rem),
    linear-gradient(135deg, #354f3b 0%, #5f7461 46%, #bc6c47 100%);
  box-shadow: 0 24px 58px rgba(56, 48, 38, 0.16);
}

.landing-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.34;
  pointer-events: none;
}

.landing-cta::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 21px;
  content: "";
  pointer-events: none;
}

.landing-cta-copy {
  max-width: 670px;
}

.landing-cta .eyebrow {
  color: rgba(255, 253, 248, 0.74);
}

.landing-cta h2 {
  max-width: 680px;
  margin-bottom: 0.65rem;
  color: #fffdf8;
  font-size: clamp(1.75rem, 4vw, 3.15rem);
  line-height: 1.03;
}

.landing-cta p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.02rem;
}

.landing-cta-button {
  flex: 0 0 auto;
  min-width: 210px;
  color: var(--sage-deep);
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(255, 253, 248, 0.3);
  box-shadow: 0 16px 34px rgba(32, 33, 36, 0.16);
}

.landing-cta-button:hover {
  background: #ffffff;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 72px auto 0;
  padding: 2rem 0 1.35rem;
  border-top: 1px solid rgba(95, 116, 97, 0.24);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(130px, 0.55fr));
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 1rem;
  max-width: 410px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 0.58rem;
}

.footer-links h2 {
  margin: 0 0 0.2rem;
  color: var(--sage-deep);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sage-deep);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(222, 215, 202, 0.74);
  color: rgba(96, 102, 111, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.static-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.6rem) 0 3rem;
}

.static-hero {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.static-hero h1 {
  max-width: none;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
}

.static-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.static-content {
  display: grid;
  gap: 1.35rem;
}

.static-section {
  padding: 0 0 1.1rem;
  border-bottom: 1px solid rgba(222, 215, 202, 0.74);
}

.static-section h2 {
  color: var(--sage-deep);
}

.static-section p,
.static-section li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.static-section p:last-child,
.static-section ul:last-child {
  margin-bottom: 0;
}

.static-section a {
  color: var(--sage-deep);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.static-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.15rem;
}

.screen-heading,
.result-hero,
.report-heading {
  margin-bottom: 1.8rem;
}

.progress-shell {
  height: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: #ebe4d9;
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--clay));
  transition: width 180ms ease;
}

.question-card {
  padding: clamp(1.1rem, 4vw, 2rem);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  margin-bottom: 1.2rem;
  font-size: clamp(1.45rem, 5vw, 2.25rem);
  line-height: 1.15;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.answer-option {
  position: relative;
}

.answer-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-option span {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 0.75rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf8f1;
  color: var(--muted);
  font-size: clamp(0.82rem, 2vw, 0.95rem);
  font-weight: 800;
  text-align: center;
}

.answer-option input:checked + span {
  color: #fff;
  border-color: var(--sage-deep);
  background: var(--sage-deep);
}

.answer-option input:focus-visible + span {
  outline: 3px solid rgba(188, 108, 71, 0.35);
  outline-offset: 2px;
}

.form-error {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--danger);
  font-weight: 750;
}

.assessment-controls {
  justify-content: space-between;
}

.assessment-controls .button:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.family-context-form {
  display: grid;
  gap: 1.25rem;
}

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

.context-grid--family {
  grid-template-columns: minmax(0, 18rem);
}

.family-context-form label,
.select-field,
.context-fieldset {
  min-width: 0;
}

.family-context-form label,
.select-field {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 820;
}

.select-label {
  display: block;
}

.family-context-form input[type="text"] {
  width: 100%;
  min-height: 50px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffdf8;
  font-weight: 720;
}

.family-context-form input[type="text"]:focus {
  outline: 3px solid rgba(95, 116, 97, 0.22);
  border-color: var(--sage);
}

.modern-select {
  position: relative;
}

.select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.modern-select-trigger {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0.78rem 0.78rem 0.95rem;
  border: 1px solid rgba(158, 148, 128, 0.52);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 245, 237, 0.98)),
    var(--paper);
  box-shadow:
    0 18px 32px rgba(56, 48, 38, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.modern-select-trigger:hover,
.modern-select.is-open .modern-select-trigger {
  border-color: rgba(53, 79, 59, 0.58);
  box-shadow:
    0 18px 40px rgba(56, 48, 38, 0.14),
    0 0 0 4px rgba(95, 116, 97, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
}

.modern-select-trigger:focus-visible {
  outline: 3px solid rgba(95, 116, 97, 0.24);
  outline-offset: 2px;
}

.modern-select-copy {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
}

.modern-select-value,
[data-select-value] {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 830;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modern-select.has-value [data-select-value] {
  color: var(--ink);
}

.modern-select-microcopy {
  color: rgba(96, 102, 111, 0.76);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.2;
}

.modern-select-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(95, 116, 97, 0.22);
  border-radius: 50%;
  background: rgba(220, 233, 239, 0.44);
}

.modern-select-icon::before {
  width: 0.5rem;
  height: 0.5rem;
  border: solid var(--sage-deep);
  border-width: 0 2px 2px 0;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.modern-select.is-open .modern-select-icon::before {
  transform: translateY(2px) rotate(225deg);
}

.modern-select-menu {
  position: absolute;
  z-index: 35;
  top: calc(100% + 0.52rem);
  right: 0;
  left: 0;
  display: grid;
  gap: 0.18rem;
  padding: 0.38rem;
  border: 1px solid rgba(158, 148, 128, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.98);
  box-shadow:
    0 24px 50px rgba(56, 48, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.modern-select.is-open .modern-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.modern-select-option {
  display: grid;
  width: 100%;
  min-height: 52px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.68rem;
  padding: 0.62rem 0.68rem;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  text-align: left;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.modern-select-option:hover,
.modern-select-option:focus-visible {
  color: var(--ink);
  outline: none;
  background: rgba(95, 116, 97, 0.1);
}

.modern-select-option[aria-selected="true"] {
  color: var(--ink);
  background: rgba(95, 116, 97, 0.16);
}

.modern-select-option-token {
  display: inline-grid;
  min-width: 2.12rem;
  height: 2.12rem;
  place-items: center;
  border: 1px solid rgba(95, 116, 97, 0.2);
  border-radius: 50%;
  color: var(--sage-deep);
  background: #eef4ee;
  font-size: 0.84rem;
  font-weight: 880;
}

.modern-select-option-label {
  min-width: 0;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 820;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modern-select-option-check {
  position: relative;
  width: 1.12rem;
  height: 1.12rem;
  opacity: 0;
}

.modern-select-option-check::before {
  position: absolute;
  top: 0.05rem;
  left: 0.35rem;
  width: 0.36rem;
  height: 0.72rem;
  border: solid var(--sage-deep);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.modern-select-option[aria-selected="true"] .modern-select-option-check {
  opacity: 1;
}

.child-age-fields {
  display: grid;
  gap: 1rem;
}

.child-age-range {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.is-hidden {
  display: none !important;
}

.context-fieldset legend {
  width: 100%;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
  font-weight: 850;
  line-height: 1.25;
}

.context-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

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

.context-option {
  position: relative;
}

.context-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.context-option span {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fbf8f1;
  font-size: 0.94rem;
  font-weight: 820;
  line-height: 1.25;
}

.context-option input:checked + span {
  color: #fff;
  border-color: var(--sage-deep);
  background: var(--sage-deep);
}

.context-option input:focus-visible + span {
  outline: 3px solid rgba(188, 108, 71, 0.35);
  outline-offset: 2px;
}

.context-actions {
  display: flex;
  justify-content: flex-end;
}

.loading-screen {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
}

.loading-card {
  width: min(680px, 100%);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(222, 215, 202, 0.92);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(188, 108, 71, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(224, 232, 211, 0.62), rgba(255, 253, 248, 0.94));
  box-shadow: var(--shadow);
  text-align: center;
}

.loading-card h1 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.1rem, 6vw, 4.6rem);
}

.loading-card p:not(.eyebrow) {
  max-width: 36rem;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.loading-insight {
  width: min(100%, 38rem);
  margin: 1.35rem auto 0;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(95, 116, 97, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 236, 0.96)),
    var(--paper);
  box-shadow: 0 16px 34px rgba(56, 48, 38, 0.1);
  opacity: 0;
  text-align: left;
  transform: translateY(8px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.loading-insight[data-insight-tone="steady"] {
  border-color: rgba(95, 116, 97, 0.42);
  background:
    linear-gradient(135deg, rgba(224, 232, 211, 0.68), rgba(255, 253, 248, 0.96)),
    var(--paper);
}

.loading-insight[data-insight-tone="pressure"] {
  border-color: rgba(188, 108, 71, 0.38);
  background:
    linear-gradient(135deg, rgba(188, 108, 71, 0.14), rgba(255, 253, 248, 0.96)),
    var(--paper);
}

.loading-insight[data-insight-tone="contrast"],
.loading-insight[data-insight-tone="mixed"] {
  border-color: rgba(229, 189, 98, 0.46);
  background:
    linear-gradient(135deg, rgba(229, 189, 98, 0.2), rgba(255, 253, 248, 0.96)),
    var(--paper);
}

.loading-insight-card .card-kicker {
  margin-bottom: 0.35rem;
  color: var(--sage-deep);
}

.loading-insight-card h2 {
  margin: 0 0 0.45rem;
  color: var(--sage-deep);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 2.8vw, 1.22rem);
  font-weight: 850;
  line-height: 1.25;
}

.loading-card .loading-insight-card p:not(.card-kicker) {
  max-width: none;
  margin: 0;
  color: rgba(32, 33, 36, 0.76);
  font-size: 0.98rem;
  line-height: 1.62;
}

.loading-screen--complete .loading-insight {
  opacity: 1;
  transform: translateY(0);
}

.loading-next-button {
  width: min(100%, 16rem);
  margin: 1rem auto 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.loading-screen--complete .loading-next-button {
  opacity: 1;
  transform: translateY(0);
}

.loading-visual {
  position: relative;
  display: grid;
  width: 132px;
  height: 132px;
  margin: 2rem auto 0;
  place-items: center;
}

.loading-ring {
  position: absolute;
  inset: 0;
  display: grid;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0 22%, var(--sage) 22% 64%, var(--clay) 64% 84%, transparent 84% 100%);
  filter: drop-shadow(0 14px 26px rgba(53, 79, 59, 0.14));
  place-items: center;
  animation: loadingSweep 1.1s linear infinite;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.loading-ring span {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(222, 215, 202, 0.92);
}

.loading-success-icon {
  position: absolute;
  display: grid;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 16px 34px rgba(53, 79, 59, 0.24);
  opacity: 0;
  place-items: center;
  transform: scale(0.72);
  transition:
    opacity 240ms ease,
    transform 260ms ease;
}

.loading-tick {
  width: 34px;
  height: 18px;
  border: solid #fff;
  border-width: 0 0 5px 5px;
  opacity: 0;
  transform: translateY(-3px) rotate(-45deg) scale(0.9);
}

.party-popper {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 240ms ease,
    transform 260ms ease;
}

.party-popper::before {
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: 34px;
  height: 54px;
  background: linear-gradient(135deg, var(--clay), var(--gold));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  transform: rotate(38deg);
}

.party-popper span {
  position: absolute;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  background: var(--sage);
  opacity: 0;
}

.party-popper span:nth-child(1) {
  top: 14px;
  left: 22px;
  background: var(--clay);
}

.party-popper span:nth-child(2) {
  top: 4px;
  left: 54px;
  background: var(--gold);
}

.party-popper span:nth-child(3) {
  top: 22px;
  right: 18px;
  background: var(--sage-deep);
}

.party-popper span:nth-child(4) {
  top: 42px;
  left: 12px;
  background: var(--sage);
}

.party-popper span:nth-child(5) {
  top: 36px;
  right: 42px;
  background: var(--clay);
}

.party-popper span:nth-child(6) {
  top: 60px;
  left: 48px;
  background: var(--gold);
}

.loading-screen--final .loading-visual {
  width: 180px;
  height: 180px;
  margin-top: 1.5rem;
}

.loading-screen--final .party-popper {
  width: 176px;
  height: 176px;
}

.loading-screen--final .party-popper::before {
  right: 50px;
  bottom: 34px;
  width: 48px;
  height: 76px;
}

.loading-screen--final .party-popper span {
  width: 11px;
  height: 20px;
  border-radius: 3px;
}

.loading-screen--final .party-popper span:nth-child(1) {
  top: 22px;
  left: 34px;
}

.loading-screen--final .party-popper span:nth-child(2) {
  top: 8px;
  left: 82px;
}

.loading-screen--final .party-popper span:nth-child(3) {
  top: 28px;
  right: 28px;
}

.loading-screen--final .party-popper span:nth-child(4) {
  top: 64px;
  left: 18px;
}

.loading-screen--final .party-popper span:nth-child(5) {
  top: 56px;
  right: 66px;
}

.loading-screen--final .party-popper span:nth-child(6) {
  top: 92px;
  left: 72px;
}

.loading-screen--complete .loading-ring {
  opacity: 0;
  transform: scale(0.76);
}

.loading-screen--complete .loading-success-icon {
  opacity: 1;
  transform: scale(1);
}

.loading-screen--complete .loading-tick {
  animation: drawTick 420ms ease 90ms forwards;
}

.loading-screen--final.loading-screen--complete .loading-success-icon {
  opacity: 0;
  transform: scale(0.72);
}

.loading-screen--final.loading-screen--complete .party-popper {
  opacity: 1;
  transform: scale(1);
}

.loading-screen--final.loading-screen--complete .party-popper span {
  animation: confettiFall 980ms ease-out forwards;
}

.loading-screen--final.loading-screen--complete .party-popper span:nth-child(2) {
  animation-delay: 70ms;
}

.loading-screen--final.loading-screen--complete .party-popper span:nth-child(3) {
  animation-delay: 120ms;
}

.loading-screen--final.loading-screen--complete .party-popper span:nth-child(4) {
  animation-delay: 160ms;
}

.loading-screen--final.loading-screen--complete .party-popper span:nth-child(5) {
  animation-delay: 210ms;
}

.loading-screen--final.loading-screen--complete .party-popper span:nth-child(6) {
  animation-delay: 260ms;
}

@keyframes loadingSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drawTick {
  0% {
    opacity: 0;
    transform: translateY(-3px) rotate(-45deg) scale(0.75);
  }

  100% {
    opacity: 1;
    transform: translateY(-3px) rotate(-45deg) scale(1);
  }
}

@keyframes confettiFall {
  0% {
    opacity: 0;
    transform: translateY(18px) rotate(0deg);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-76px) rotate(150deg);
  }
}

.result-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 1rem;
  align-items: start;
}

.panel {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.panel-header {
  margin-bottom: 1rem;
}

.score-list {
  display: grid;
  gap: 1rem;
}

.spectrum-item {
  display: grid;
  gap: 0.45rem;
}

.spectrum-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.spectrum-top strong {
  font-size: 1rem;
}

.spectrum-top span {
  color: var(--muted);
  font-weight: 800;
}

.spectrum-track {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #ede6da;
}

.spectrum-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--clay), var(--sage));
}

.spectrum-labels {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.paywall-preview ul,
.check-list,
.report-list,
#report-foundations {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.paywall-preview li,
.check-list li,
.report-list li,
#report-foundations li {
  margin-bottom: 0.55rem;
}

.fine-print {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.checkout-copy {
  background:
    linear-gradient(180deg, rgba(220, 233, 239, 0.7), transparent),
    #fff;
}

.assessment-lead-screen {
  min-height: calc(100vh - 76px);
}

.assessment-lead-layout {
  align-items: stretch;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.price-line span {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
}

.price-line small {
  color: var(--muted);
  font-weight: 750;
}

.checkout-form {
  display: grid;
  gap: 0.85rem;
}

.checkout-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.checkout-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffdf8;
}

.checkout-form input:focus {
  outline: 3px solid rgba(95, 116, 97, 0.22);
  border-color: var(--sage);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.spectrum-report,
.reflection-plan,
.disclaimer-panel {
  margin-top: 1rem;
}

.reflection-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.7rem;
}

.reflection-day {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf8f1;
}

.reflection-day strong {
  display: block;
  margin-bottom: 0.35rem;
}

.reflection-day p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .site-footer {
    margin-top: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .static-page {
    padding-top: 2.6rem;
  }
}

@media (max-width: 800px) {
  .topbar-inner {
    min-height: 68px;
  }

  .result-layout,
  .checkout-layout,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    align-items: flex-start;
    min-height: 720px;
  }

  .hero-video {
    object-position: 70% center;
  }

  .hero-blur {
    background:
      linear-gradient(
        180deg,
        rgba(255, 253, 248, 0.98) 0%,
        rgba(255, 253, 248, 0.9) 38%,
        rgba(255, 253, 248, 0.3) 68%
      ),
      rgba(255, 253, 248, 0.08);
    backdrop-filter: blur(4px);
  }

  .hero-copy {
    padding-top: 3rem;
    padding-bottom: 11.5rem;
  }

  .methodology-bar {
    bottom: 14px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .methodology-bar::-webkit-scrollbar {
    display: none;
  }

  .persona-showcase {
    margin-top: 40px;
  }

  .persona-carousel {
    grid-auto-columns: minmax(240px, 76%);
  }

  .radar-layout {
    grid-template-columns: 1fr;
  }

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

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

  .carousel-button {
    display: none;
  }

  .answer-grid {
    grid-template-columns: 1fr;
  }

  .context-grid,
  .context-grid--family,
  .child-age-range,
  .context-options,
  .context-options--compact {
    grid-template-columns: 1fr;
  }

  .answer-option span {
    min-height: 52px;
    justify-content: start;
    text-align: left;
  }

  .reflection-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .screen,
  .topbar-inner {
    width: min(100% - 24px, 1120px);
  }

  .topbar-inner {
    gap: 0.7rem;
  }

  .brand-logo {
    width: clamp(112px, 34vw, 136px);
  }

  .brand-context {
    font-size: 0.66rem;
    max-width: 9.5rem;
    white-space: normal;
  }

  .screen {
    padding-top: 28px;
  }

  .context-option span {
    min-height: 54px;
  }

  .context-actions .button {
    width: 100%;
  }

  .loading-card {
    padding: 1rem;
  }

  .loading-card h1 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.02;
  }

  .loading-card p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .loading-visual {
    width: 96px;
    height: 96px;
    margin-top: 1rem;
  }

  .loading-ring span {
    width: 70px;
    height: 70px;
  }

  .loading-success-icon {
    width: 66px;
    height: 66px;
  }

  .loading-tick {
    width: 27px;
    height: 15px;
    border-width: 0 0 4px 4px;
  }

  .party-popper {
    width: 92px;
    height: 92px;
  }

  .loading-screen--final .loading-visual {
    width: 136px;
    height: 136px;
    margin-top: 0.8rem;
  }

  .loading-screen--final .party-popper {
    width: 132px;
    height: 132px;
  }

  .loading-screen--final .party-popper::before {
    right: 38px;
    bottom: 26px;
    width: 36px;
    height: 58px;
  }

  .loading-screen--final .party-popper span {
    width: 9px;
    height: 16px;
  }

  .loading-next-button {
    width: 100%;
    margin-top: 0.85rem;
  }

  .loading-insight {
    margin-top: 0.85rem;
    padding: 0.8rem;
  }

  .loading-insight-card .card-kicker {
    margin-bottom: 0.28rem;
    font-size: 0.68rem;
  }

  .loading-insight-card h2 {
    margin-bottom: 0.32rem;
    font-size: 1rem;
  }

  .loading-card .loading-insight-card p:not(.card-kicker) {
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .assessment-screen {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
  }

  .hero-screen {
    padding-top: 0;
  }

  .hero-visual {
    min-height: 690px;
  }

  .hero-video {
    object-position: 72% center;
  }

  .methodology-bar {
    width: calc(100% - 24px);
    padding: 0.55rem;
  }

  .methodology-bar span {
    font-size: 0.68rem;
  }

  .persona-carousel {
    grid-auto-columns: minmax(238px, 88%);
  }

  .parenting-radar {
    width: 100%;
    margin-top: 24px;
  }

  .radar-chart {
    padding: 0.75rem 0.6rem 1rem;
  }

  .radar-axis-label {
    font-size: 0.64rem;
  }

  .radar-spectrum-list {
    grid-template-columns: 1fr;
  }

  .radar-spectrum-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.18rem;
  }

  .radar-spectrum-item > div:first-child {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.16rem;
  }

  .radar-spectrum-item strong,
  .radar-spectrum-item span,
  .radar-spectrum-item span:last-child {
    text-align: left;
  }

  .landing-cta {
    width: min(100% - 24px, 1120px);
    margin-top: 42px;
    border-radius: 18px;
  }

  .landing-cta::after {
    border-radius: 17px;
  }

  .landing-cta-button {
    width: 100%;
    min-width: 0;
  }

  .persona-card-copy {
    padding: 0.9rem;
  }

  .question-card {
    padding-bottom: calc(7rem + env(safe-area-inset-bottom));
  }

  .button {
    width: 100%;
  }

  .assessment-controls {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(82px, 0.42fr) minmax(0, 1fr);
    gap: 0.6rem;
    margin: 0;
    padding: 0.65rem;
    border: 1px solid rgba(222, 215, 202, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 18px 38px rgba(56, 48, 38, 0.16);
    backdrop-filter: blur(14px);
  }

  .assessment-controls .button {
    width: auto;
    min-width: 0;
  }
}
