@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/geist-001175b1.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/geist-98bbbccb.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f5f0e7;
  --paper-deep: #ece4d6;
  --card: #fffdf8;
  --ink: #1d1d1b;
  --muted: #68635c;
  --line: #d8d0c3;
  --amber: #a85c0c;
  --amber-dark: #824306;
  --gold: #d4ae62;
  --cream: #fbf7ef;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Geist", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto !important;
  height: auto !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  background: var(--ink);
  color: #fff;
}

#strength-items,
#priority-items {
  display: contents;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 5%, rgb(255 255 255 / 65%), transparent 28%),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.09;
  pointer-events: none;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible + *,
.answer-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.site-frame {
  min-height: 100vh;
  overflow: hidden;
}

.page-shell {
  width: min(100% - 96px, 1360px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.clipboard-fallback {
  position: fixed;
  top: 0;
  left: -9999px;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgb(245 240 231 / 93%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-button {
  display: inline-flex;
  min-width: 252px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  gap: 22px;
}

.logo-mark {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 54px;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}

.logo-mark span {
  position: absolute;
}

.logo-mark span:first-child {
  top: 1px;
  left: 0;
}

.logo-mark span:last-child {
  right: 0;
  bottom: 0;
}

.brand-divider {
  width: 1px;
  height: 54px;
  background: var(--gold);
}

.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3.2vw, 54px);
}

.main-nav a,
.main-nav button {
  position: relative;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
}

.main-nav a::after,
.main-nav button::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-exit {
  display: none;
  padding: 10px 15px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.hero-section {
  min-height: 806px;
  padding: 68px 0 62px;
}

.hero-grid {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 1.03fr) minmax(540px, 0.97fr);
  align-items: center;
  gap: 45px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 15px;
}

.hero-copy h1 {
  max-width: 740px;
  margin-bottom: 27px;
  font-family: var(--serif);
  font-size: clamp(58px, 5.45vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 31px;
  color: #3e3b36;
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  margin-bottom: 37px;
  align-items: center;
  gap: 39px;
}

.button {
  display: inline-flex;
  min-height: 60px;
  padding: 17px 26px;
  border: 1px solid transparent;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button span[aria-hidden="true"] {
  font-size: 26px;
  line-height: 0;
  transition: transform 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:hover:not(:disabled) span[aria-hidden="true"] {
  transform: translateX(5px);
}

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

.button-primary {
  background: linear-gradient(135deg, #b86108, #c87513);
  box-shadow: 0 12px 30px rgb(154 81 9 / 18%);
  color: #fff;
}

.button-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--amber-dark), #a45809);
  box-shadow: 0 16px 36px rgb(126 64 5 / 24%);
}

.button-secondary {
  border-color: #bfb5a5;
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover:not(:disabled) {
  border-color: var(--amber);
  background: rgb(255 253 248 / 56%);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: #393530;
}

.button-hero {
  min-width: 360px;
  min-height: 78px;
  padding-inline: 36px;
  justify-content: space-between;
  font-size: 19px;
}

.button-large {
  min-width: 290px;
  min-height: 72px;
  padding-inline: 33px;
  justify-content: space-between;
  font-size: 17px;
}

.button-full {
  width: 100%;
}

.text-link {
  position: relative;
  padding: 10px 0;
  font-size: 16px;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.trust-row {
  display: flex;
  max-width: 760px;
  padding: 0;
  margin: 0;
  align-items: center;
  color: #45413b;
  font-size: 13px;
  gap: 0;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  min-height: 30px;
  padding: 0 22px;
  border-right: 1px solid var(--gold);
  align-items: center;
  gap: 8px;
}

.trust-row li:first-child {
  padding-left: 0;
}

.trust-row li:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-row svg {
  width: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.balance-orbit {
  position: absolute;
  top: 3px;
  left: 7%;
  width: 515px;
  height: 515px;
  border: 2px solid #b98427;
  border-radius: 50%;
  opacity: 0.95;
}

.balance-disc {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
}

.balance-disc-dark {
  top: 125px;
  left: -2%;
  width: 236px;
  height: 236px;
  background:
    radial-gradient(circle at 35% 30%, #494641, #242422 68%),
    #242422;
  box-shadow: inset 0 0 28px rgb(255 255 255 / 5%);
}

.balance-disc-gold {
  top: 176px;
  right: 4%;
  width: 167px;
  height: 167px;
  background:
    radial-gradient(circle at 40% 32%, #f1bd54, #cf861b 72%),
    #d69a35;
  box-shadow:
    inset -10px -15px 30px rgb(114 54 2 / 12%),
    0 15px 35px rgb(159 93 12 / 12%);
}

.balance-beam {
  position: absolute;
  z-index: 4;
  top: 354px;
  right: 0;
  left: -5%;
  height: 7px;
  background: linear-gradient(90deg, #765019, #bd8b3f 45%, #846026);
  box-shadow: 0 3px 9px rgb(63 41 11 / 15%);
}

.balance-pivot {
  position: absolute;
  z-index: 5;
  top: 354px;
  left: 48%;
  width: 40px;
  height: 40px;
  border: 3px solid #9d7136;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0c878, #8e5f20 70%);
  transform: translate(-50%, -50%);
}

.balance-stone {
  position: absolute;
  z-index: 1;
  top: 386px;
  left: 31%;
  width: 218px;
  height: 130px;
  border-radius: 52% 45% 48% 40%;
  background:
    radial-gradient(circle at 42% 32%, #f5eee2, #d3c6b1 80%),
    #e0d6c7;
  box-shadow: 0 18px 35px rgb(49 40 29 / 11%);
}

.balance-line-drop {
  position: absolute;
  top: 512px;
  right: 13%;
  width: 1px;
  height: 128px;
  background: #a8731d;
}

.balance-line-drop::after {
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a8731d;
  content: "";
}

.sample-report {
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 0;
  width: 390px;
  padding: 25px 27px 24px;
  border: 1px solid #d4cabb;
  border-radius: 4px;
  background: rgb(255 253 248 / 95%);
  box-shadow: 0 17px 42px rgb(55 45 31 / 17%);
  backdrop-filter: blur(12px);
}

.sample-report-heading {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.sample-report-heading div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sample-report-heading small {
  color: var(--amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.sample-report-heading strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.sample-report-heading > span {
  display: grid;
  width: 44px;
  height: 38px;
  border-radius: 3px;
  background: var(--amber);
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.sample-bars {
  display: grid;
  gap: 9px;
}

.sample-bar-row {
  display: grid;
  grid-template-columns: 104px 1fr 24px;
  align-items: center;
  color: #4d4841;
  font-size: 10px;
  gap: 8px;
}

.sample-bar {
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 99px;
  appearance: none;
  background: #e5ddd0;
}

.sample-bar::-webkit-progress-bar {
  border-radius: inherit;
  background: #e5ddd0;
}

.sample-bar::-webkit-progress-value {
  border-radius: inherit;
  background: linear-gradient(90deg, #9b570f, #cf8b24);
}

.sample-bar::-moz-progress-bar {
  border-radius: inherit;
  background: linear-gradient(90deg, #9b570f, #cf8b24);
}

.sample-bar-row small {
  text-align: right;
}

.metric-ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 253 248 / 48%);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-grid > div {
  display: flex;
  min-height: 142px;
  padding: 28px 40px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.metric-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.metric-grid strong {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-size: 13px;
}

.content-section {
  padding: 116px 0;
}

.measurement-section {
  background: var(--card);
}

.section-heading {
  margin-bottom: 57px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.owner-quote blockquote,
.method-section h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.split-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.dimension-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.dimension-card {
  min-height: 285px;
  padding: 32px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.dimension-card:hover {
  position: relative;
  z-index: 2;
  background: #faf4e9;
  transform: translateY(-3px);
}

.dimension-number {
  display: block;
  margin-bottom: 45px;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 18px;
}

.dimension-card h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.13;
}

.dimension-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.owner-section {
  background: var(--ink);
  color: #f8f3e9;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.75fr);
  gap: 120px;
}

.owner-quote .eyebrow {
  color: #d99a49;
}

.owner-quote blockquote {
  max-width: 760px;
  margin: 0;
  color: #f9f3e8;
  font-size: clamp(43px, 4vw, 62px);
}

.owner-points {
  display: grid;
  border-top: 1px solid rgb(255 255 255 / 21%);
}

.owner-points article {
  display: grid;
  padding: 27px 0;
  border-bottom: 1px solid rgb(255 255 255 / 21%);
  grid-template-columns: 45px 1fr;
  gap: 22px;
}

.owner-points article > span {
  color: #d99a49;
  font-family: var(--serif);
  font-size: 17px;
}

.owner-points h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.owner-points p {
  margin-bottom: 0;
  color: #bbb4aa;
  font-size: 13px;
  line-height: 1.7;
}

.method-section {
  background: var(--paper);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.7fr);
  gap: 120px;
}

.method-section h2 {
  max-width: 700px;
  margin-bottom: 30px;
}

.method-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.method-notice {
  max-width: 720px;
  margin-top: 32px;
  padding: 23px 26px;
  border-left: 3px solid var(--amber);
  background: rgb(255 253 248 / 75%);
  color: #514b43;
  font-size: 13px;
  line-height: 1.7;
}

.method-details {
  max-width: 720px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-details summary {
  position: relative;
  padding: 20px 34px 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  list-style: none;
}

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

.method-details summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--amber);
  content: "+";
  font-family: var(--serif);
  font-size: 24px;
  transform: translateY(-50%);
}

.method-details[open] summary::after {
  content: "−";
}

.method-details > div {
  padding: 0 24px 18px 0;
}

.method-details p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.source-list {
  display: flex;
  border-top: 1px solid var(--line);
  flex-direction: column;
}

.source-list > p {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.source-list a {
  display: flex;
  min-height: 74px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition:
    padding 180ms ease,
    color 180ms ease;
}

.source-list a:hover {
  padding-left: 10px;
  color: var(--amber);
}

.source-list a span {
  font-size: 22px;
}

.final-cta-section {
  padding-top: 0;
}

.final-cta {
  display: grid;
  padding: 65px 70px;
  background: #e8dcc9;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(38px, 3.5vw, 54px);
}

.site-footer {
  padding: 75px 0 30px;
  background: #161615;
  color: #f3ede3;
}

.footer-grid {
  display: grid;
  padding-bottom: 59px;
  grid-template-columns: 1.35fr 1fr 0.75fr 1fr;
  gap: 70px;
}

.footer-grid > div > strong {
  display: block;
  margin-bottom: 20px;
  color: #d99a49;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.footer-grid button {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b9b2a8;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.65;
  text-align: left;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: #fff;
}

.footer-brand {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 20px;
}

.footer-brand .logo-mark {
  color: #f4eee4;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.footer-brand span {
  color: #b9b2a8;
  font-size: 11px;
}

.footer-small {
  max-width: 235px;
  margin-top: 14px !important;
  color: #817a71 !important;
}

.footer-bottom {
  display: flex;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 13%);
  justify-content: space-between;
  color: #777168;
  font-size: 10px;
  gap: 30px;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Quiz */

.quiz-page {
  min-height: calc(100vh - 94px);
  background: var(--paper);
}

.quiz-topline {
  border-bottom: 1px solid var(--line);
  background: rgb(255 253 248 / 58%);
}

.quiz-progress-meta {
  display: flex;
  padding: 15px 0 10px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-progress {
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border: 0;
  appearance: none;
}

.quiz-progress::-webkit-progress-bar {
  background: #ded5c7;
}

.quiz-progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--amber-dark), #d18c29);
  transition: width 250ms ease;
}

.quiz-progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--amber-dark), #d18c29);
}

.quiz-layout {
  display: grid;
  min-height: 710px;
  padding-top: 77px;
  padding-bottom: 90px;
  grid-template-columns: 275px minmax(0, 850px);
  justify-content: center;
  gap: 95px;
}

.quiz-aside {
  padding-top: 9px;
}

.quiz-aside h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.quiz-aside > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.quiet-button {
  margin-top: 25px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid #a59c8f;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.question-panel {
  padding: 43px 48px 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--card);
  box-shadow: 0 25px 70px rgb(66 49 25 / 8%);
}

.question-counter {
  margin-bottom: 24px;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 20px;
}

.question-panel h1 {
  min-height: 112px;
  margin-bottom: 31px;
  font-family: var(--serif);
  font-size: clamp(31px, 2.6vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.question-panel h1:focus {
  outline: none;
}

.question-panel fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.answer-grid {
  display: grid;
  gap: 9px;
}

.answer-card {
  position: relative;
  display: grid;
  min-height: 60px;
  padding: 9px 51px 9px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fdfaf4;
  grid-template-columns: 42px 1fr;
  align-items: center;
  cursor: pointer;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.answer-card:hover {
  border-color: #b98a4b;
  background: #fbf2e4;
  transform: translateX(2px);
}

.answer-card.is-selected {
  border-color: var(--amber);
  background: #f7ead6;
  box-shadow: inset 3px 0 0 var(--amber);
}

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

.answer-value {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid #c8bcaa;
  border-radius: 50%;
  place-items: center;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
}

.is-selected .answer-value {
  border-color: var(--amber);
  background: var(--amber);
  color: #fff;
}

.answer-label {
  font-size: 13px;
}

.answer-check {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--amber);
  font-size: 19px;
  opacity: 0;
  transform: translateY(-50%);
}

.is-selected .answer-check {
  opacity: 1;
}

.quiz-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quiz-actions .button-primary {
  min-width: 245px;
}

.keyboard-note {
  margin: 20px 0 0;
  color: #938b80;
  font-size: 10px;
  text-align: right;
}

/* Review */

.review-page {
  min-height: calc(100vh - 94px);
  background:
    radial-gradient(circle at 88% 8%, rgb(212 174 98 / 18%), transparent 24%),
    var(--paper);
}

.review-shell {
  padding-top: 78px;
  padding-bottom: 105px;
}

.review-heading {
  display: grid;
  margin-bottom: 36px;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: end;
  gap: 70px;
}

.review-heading h1 {
  max-width: 930px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(47px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.review-heading h1:focus {
  outline: none;
}

.review-heading > div:first-child > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.review-completion {
  padding: 24px 22px;
  border: 1px solid #d1b172;
  background: rgb(255 253 248 / 72%);
  text-align: center;
}

.review-completion strong {
  display: block;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 500;
  line-height: 1;
}

.review-completion span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-legend {
  display: flex;
  margin-bottom: 17px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  background: rgb(255 253 248 / 48%);
  color: var(--muted);
  font-size: 10px;
  gap: 28px;
}

.review-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.review-legend b {
  display: grid;
  width: 23px;
  height: 23px;
  border: 1px solid #c8bcaa;
  border-radius: 50%;
  place-items: center;
  color: var(--amber);
  font-family: var(--serif);
  font-weight: 500;
}

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

.review-group {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 13px 38px rgb(52 42 28 / 5%);
}

.review-group-heading {
  display: flex;
  min-height: 46px;
  margin-bottom: 17px;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.review-group-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.review-group-heading span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.review-answer {
  display: grid;
  min-height: 84px;
  padding: 11px;
  border: 1px solid var(--line);
  background: #fdfaf4;
  grid-template-columns: 30px 1fr;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    transform 150ms ease;
}

.review-answer:hover {
  border-color: #b98a4b;
  background: #f8eddb;
  transform: translateY(-2px);
}

.review-answer-number {
  color: #9a9185;
  font-family: var(--serif);
  font-size: 13px;
}

.review-answer-value {
  justify-self: end;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.review-answer-label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.review-answer.is-missing {
  border-color: #b7563d;
  background: #fae9e2;
}

.review-actions {
  display: flex;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-actions .button-primary {
  min-width: 260px;
}

/* Results */

.result-page {
  background: var(--paper);
}

.result-hero {
  padding: 77px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 28%, rgb(212 174 98 / 22%), transparent 27%),
    #ece2d2;
}

.result-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 310px;
  align-items: center;
  gap: 100px;
}

.result-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.result-hero h1:focus {
  outline: none;
}

.result-hero-grid > div:first-child > p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  color: #5e584f;
  font-size: 16px;
  line-height: 1.75;
}

.result-ring-wrap {
  text-align: center;
}

.result-ring {
  position: relative;
  display: grid;
  width: 218px;
  height: 218px;
  margin: 0 auto 18px;
  border-radius: 50%;
  place-items: center;
}

.result-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.result-ring circle {
  fill: none;
  stroke-width: 10;
}

.result-ring-track {
  stroke: #d6cab7;
}

.result-ring-value {
  stroke: var(--amber);
  stroke-linecap: round;
  transition: stroke-dasharray 750ms ease;
}

.result-ring > span {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: baseline;
}

.result-ring strong {
  font-family: var(--serif);
  font-size: 66px;
  font-weight: 500;
  line-height: 1;
}

.result-ring small {
  color: var(--muted);
  font-size: 12px;
}

.result-ring-wrap > p {
  max-width: 210px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.result-body {
  display: grid;
  padding-top: 75px;
  padding-bottom: 115px;
  grid-template-columns: minmax(0, 1fr) 325px;
  align-items: start;
  gap: 40px;
}

.result-main {
  display: grid;
  gap: 24px;
}

.result-card,
.sidebar-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--card);
  box-shadow: 0 15px 45px rgb(52 42 28 / 6%);
}

.result-card {
  padding: 44px 46px;
}

.result-card h2 {
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.result-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.result-focus {
  margin-top: 29px;
  padding: 23px 25px;
  border-left: 3px solid var(--amber);
  background: #f6ecdd;
}

.result-focus strong {
  display: block;
  margin-bottom: 7px;
  color: var(--amber-dark);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-focus p {
  margin-bottom: 0;
  color: #4f4941;
  font-size: 13px;
  line-height: 1.65;
}

.response-check-card {
  display: grid;
  padding-top: 34px;
  padding-bottom: 34px;
  border-color: #bdc8ad;
  background: #f3f5ed;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 22px;
}

.response-check-card.has-warning {
  border-color: #d1a178;
  background: #f9eee2;
}

.response-check-icon {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid #77905e;
  border-radius: 50%;
  place-items: center;
  color: #587240;
  font-family: var(--serif);
  font-size: 24px;
}

.has-warning .response-check-icon {
  border-color: var(--amber);
  color: var(--amber);
}

.response-check-card .eyebrow {
  margin-bottom: 10px;
}

.response-check-card h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.response-check-card > div:last-child > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.response-check-meta {
  margin-top: 10px !important;
  color: #837b70 !important;
  font-size: 9px !important;
}

.result-card-heading {
  display: grid;
  margin-bottom: 39px;
  grid-template-columns: 1fr 230px;
  gap: 50px;
}

.result-card-heading h2 {
  margin-bottom: 0;
}

.result-card-heading > p {
  align-self: end;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.result-bars {
  display: grid;
  gap: 29px;
}

.result-bar-meta {
  display: flex;
  margin-bottom: 10px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.result-bar-meta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.result-bar-meta strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.result-bar-meta small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-bar-meta > span {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 25px;
}

.result-bar-track {
  display: block;
  width: 100%;
  height: 7px;
  overflow: hidden;
  padding: 0;
  border: 0;
  appearance: none;
  background: #e4dcd0;
}

.result-bar-track::-webkit-progress-bar {
  background: #e4dcd0;
}

.result-bar-track::-webkit-progress-value {
  background: linear-gradient(90deg, var(--amber-dark), #d49638);
  animation: bar-in 750ms ease both;
}

.result-bar-track::-moz-progress-bar {
  background: linear-gradient(90deg, var(--amber-dark), #d49638);
}

.result-bar > p {
  margin: 8px 0 0;
  color: #777067;
  font-size: 10px;
  line-height: 1.5;
}

.insight-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.insight-column {
  padding: 26px;
  border: 1px solid var(--line);
}

.insight-column > strong {
  display: block;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.strength-column {
  background: #f5f0e7;
}

.priority-column {
  border-color: #d4b887;
  background: #f8ecd9;
}

.insight-item {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.insight-item > span {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 28px;
}

.insight-item h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.insight-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.action-intro {
  max-width: 760px;
}

.action-plan {
  display: grid;
  margin-top: 37px;
  gap: 27px;
}

.action-plan > section {
  padding: 29px;
  border: 1px solid var(--line);
  background: #fcf8f1;
}

.action-plan-heading {
  display: grid;
  margin-bottom: 22px;
  grid-template-columns: 50px 1fr;
  gap: 18px;
}

.action-plan-heading > span {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 23px;
}

.action-plan-heading small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action-plan-heading h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.action-plan ol {
  padding: 0;
  margin: 0;
  counter-reset: action;
  list-style: none;
}

.action-plan li {
  position: relative;
  min-height: 44px;
  padding: 0 0 0 51px;
  border-top: 1px solid #ded5c7;
  counter-increment: action;
}

.action-plan li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 28px;
  color: var(--amber);
  content: "0" counter(action);
  font-family: var(--serif);
  font-size: 16px;
}

.action-choice {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 11px 42px 11px 0;
  border: 0;
  background: transparent;
  color: #5f5850;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

.action-choice::after {
  position: absolute;
  top: 50%;
  right: 5px;
  display: grid;
  width: 24px;
  height: 24px;
  border: 1px solid #c6baa9;
  border-radius: 50%;
  content: "";
  place-items: center;
  color: #fff;
  font-size: 12px;
  transform: translateY(-50%);
}

.action-choice:hover {
  color: var(--ink);
}

.action-choice.is-selected {
  color: var(--ink);
  font-weight: 620;
}

.action-choice.is-selected::after {
  border-color: var(--amber);
  background: var(--amber);
  content: "✓";
}

.commitment-card {
  border-color: #9e671f;
  background:
    radial-gradient(circle at 92% 18%, rgb(212 174 98 / 28%), transparent 23%),
    #1d1d1b;
  color: #fff;
}

.commitment-kicker {
  display: flex;
  margin-bottom: 28px;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.commitment-kicker .eyebrow {
  margin-bottom: 0;
  color: #d99a49;
}

.commitment-kicker > span {
  flex: 0 0 auto;
  color: #aaa298;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commitment-card h2 {
  max-width: 680px;
  color: #f5f0e7;
  font-size: 36px;
}

.commitment-card > p {
  max-width: 760px;
  color: #cec6bc !important;
  font-size: 15px !important;
}

.commitment-rule {
  display: flex;
  margin-top: 30px;
  padding-top: 19px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.commitment-rule span {
  color: #8f887f;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commitment-rule strong {
  color: #d9a95d;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}

.result-disclaimer {
  background: #eee6da;
}

.result-disclaimer h2 {
  font-size: 29px;
}

.result-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 17px;
}

.sidebar-card {
  padding: 27px;
}

.sidebar-summary > strong {
  display: block;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.sidebar-summary > span {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
}

.sidebar-summary dl {
  margin: 27px 0 0;
}

.sidebar-summary dl div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.sidebar-summary dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-summary dd {
  margin: 0;
  font-size: 12px;
}

.sidebar-actions {
  display: grid;
  gap: 10px;
}

.sidebar-actions .button {
  min-height: 51px;
  padding: 13px 16px;
  font-size: 12px;
}

.text-button {
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.coaching-card {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.coaching-card .eyebrow {
  color: #d99a49;
}

.coaching-card h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.08;
}

.coaching-card p:not(.eyebrow) {
  margin-bottom: 24px;
  color: #bdb6ad;
  font-size: 11px;
  line-height: 1.65;
}

.coaching-card .button {
  background: #e4d4b8;
  color: var(--ink);
  font-size: 11px;
}

@keyframes bar-in {
  from {
    transform: scaleX(0);
  }
}

@media (max-width: 1180px) {
  .page-shell {
    width: min(100% - 56px, 1120px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.8fr);
  }

  .hero-copy h1 {
    font-size: 62px;
  }

  .hero-visual {
    transform: scale(0.88);
    transform-origin: center right;
  }

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

  .owner-grid,
  .method-grid {
    gap: 70px;
  }

  .quiz-layout {
    grid-template-columns: 230px minmax(0, 740px);
    gap: 55px;
  }

  .result-body {
    grid-template-columns: minmax(0, 1fr) 290px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 40px, 820px);
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-button {
    min-width: 0;
  }

  .brand-name,
  .brand-divider {
    display: none;
  }

  .main-nav a:first-child,
  .main-nav button:nth-of-type(2) {
    display: none;
  }

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

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

  .hero-copy h1 {
    max-width: 740px;
    font-size: clamp(50px, 8vw, 68px);
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 610px;
    margin: 0 auto;
    transform: none;
  }

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

  .metric-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .split-heading,
  .owner-grid,
  .method-grid,
  .final-cta,
  .footer-grid,
  .review-heading,
  .result-hero-grid,
  .result-body {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .owner-grid,
  .method-grid {
    gap: 45px;
  }

  .final-cta {
    gap: 40px;
  }

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

  .quiz-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quiz-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .quiz-aside .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .review-heading {
    gap: 28px;
  }

  .review-completion {
    width: 190px;
  }

  .review-groups {
    grid-template-columns: 1fr;
  }

  .quiet-button {
    align-self: end;
    justify-self: end;
  }

  .result-ring-wrap {
    justify-self: start;
  }

  .result-ring {
    width: 180px;
    height: 180px;
  }

  .result-ring strong {
    font-size: 54px;
  }

  .result-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .coaching-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 28px, 580px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 72px;
  }

  .logo-mark {
    width: 40px;
    height: 44px;
    font-size: 28px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a,
  .main-nav button {
    font-size: 12px;
  }

  .main-nav button {
    display: none;
  }

  .main-nav a:last-child {
    display: block;
  }

  .header-exit {
    display: block;
    font-size: 10px;
  }

  .hero-section {
    padding: 45px 0 35px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.99;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .button-hero {
    width: 100%;
    min-width: 0;
    min-height: 68px;
    font-size: 16px;
  }

  .text-link {
    align-self: flex-start;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .trust-row li {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: -5px;
    transform: scale(0.75);
    transform-origin: top left;
    width: 133%;
  }

  .balance-disc-dark {
    left: 2%;
  }

  .sample-report {
    right: 0;
    bottom: 0;
  }

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

  .metric-grid > div {
    min-height: 104px;
    padding: 18px;
  }

  .metric-grid strong {
    font-size: 34px;
  }

  .metric-grid span {
    font-size: 10px;
  }

  .content-section {
    padding: 76px 0;
  }

  .section-heading h2,
  .owner-quote blockquote,
  .method-section h2,
  .final-cta h2 {
    font-size: 39px;
  }

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

  .dimension-card {
    min-height: 230px;
  }

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

  .owner-points article {
    grid-template-columns: 36px 1fr;
  }

  .final-cta {
    padding: 39px 27px;
  }

  .button-large {
    min-width: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .quiz-layout {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 65px;
  }

  .quiz-aside {
    display: block;
  }

  .quiz-aside h2 {
    font-size: 26px;
  }

  .quiz-aside #quiz-exit {
    display: none;
  }

  .question-panel {
    padding: 27px 18px 26px;
  }

  .question-panel h1 {
    min-height: 128px;
    font-size: 29px;
  }

  .answer-card {
    min-height: 63px;
    padding-right: 38px;
    grid-template-columns: 39px 1fr;
  }

  .answer-label {
    font-size: 12px;
  }

  .answer-check {
    right: 13px;
  }

  .quiz-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

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

  .quiz-actions .button-primary {
    min-width: 0;
  }

  .keyboard-note {
    text-align: left;
  }

  .review-shell {
    padding-top: 52px;
    padding-bottom: 75px;
  }

  .review-heading h1 {
    font-size: 43px;
  }

  .review-legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .review-group {
    padding: 20px 16px;
  }

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

  .review-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

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

  .review-actions .button-primary {
    min-width: 0;
  }

  .result-hero {
    padding: 56px 0;
  }

  .result-hero h1 {
    font-size: 46px;
  }

  .result-hero-grid {
    gap: 45px;
  }

  .result-body {
    padding-top: 40px;
    padding-bottom: 75px;
  }

  .result-card {
    padding: 29px 20px;
  }

  .result-card h2 {
    font-size: 31px;
  }

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

  .result-card-heading,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .result-card-heading {
    gap: 15px;
  }

  .insight-column {
    padding: 20px;
  }

  .action-plan > section {
    padding: 22px 18px;
  }

  .action-plan-heading {
    grid-template-columns: 36px 1fr;
  }

  .action-plan-heading h3 {
    font-size: 21px;
  }

  .commitment-kicker,
  .commitment-rule {
    align-items: flex-start;
    flex-direction: column;
  }

  .commitment-rule strong {
    text-align: left;
  }

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

  .coaching-card {
    grid-column: auto;
  }
}

@page {
  size: A4;
  margin: 11mm;
}

@media print {
  * {
    print-color-adjust: exact;
  }

  body {
    background: #fff;
  }

  body::before,
  .site-header,
  .site-footer,
  .result-sidebar,
  .response-check-card,
  .insight-result-card,
  .action-plan-card,
  .result-disclaimer {
    display: none !important;
  }

  .result-hero {
    padding: 0 0 18px;
    background: #fff;
  }

  .result-hero-grid {
    grid-template-columns: 1fr 125px;
    gap: 18px;
  }

  .result-hero .eyebrow {
    margin-bottom: 9px;
    font-size: 8px;
  }

  .result-hero h1 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 1;
  }

  .result-hero-grid > div:first-child > p:last-child {
    font-size: 10px;
    line-height: 1.45;
  }

  .result-ring {
    width: 118px;
    height: 118px;
    margin-bottom: 6px;
  }

  .result-ring strong {
    font-size: 39px;
  }

  .result-ring-wrap > p {
    font-size: 8px;
  }

  .result-body {
    display: block;
    width: 100%;
    padding: 16px 0 0;
  }

  .result-main {
    gap: 12px;
  }

  .result-card {
    padding: 18px 20px;
    break-inside: avoid;
    box-shadow: none;
  }

  .result-card .eyebrow {
    margin-bottom: 7px;
    font-size: 7px;
  }

  .result-card h2 {
    margin-bottom: 8px;
    font-size: 23px;
  }

  .result-card > p:not(.eyebrow) {
    font-size: 9px;
    line-height: 1.45;
  }

  .result-focus {
    margin-top: 11px;
    padding: 11px 13px;
  }

  .result-focus strong {
    margin-bottom: 2px;
    font-size: 6px;
  }

  .result-focus p {
    font-size: 9px;
    line-height: 1.4;
  }

  .result-card-heading {
    display: block;
    margin-bottom: 10px;
  }

  .result-card-heading > p {
    display: none;
  }

  .result-bars {
    grid-template-columns: 1fr 1fr;
    gap: 13px 22px;
  }

  .result-bar-meta {
    margin-bottom: 4px;
  }

  .result-bar-meta strong {
    font-size: 13px;
  }

  .result-bar-meta small,
  .result-bar > p {
    display: none;
  }

  .result-bar-meta > span {
    font-size: 16px;
  }

  .result-bar-track {
    height: 5px;
  }

  .commitment-card {
    background: #1d1d1b;
  }

  .commitment-kicker {
    margin-bottom: 12px;
  }

  .commitment-kicker > span {
    font-size: 6px;
  }

  .commitment-card h2 {
    font-size: 22px;
  }

  .commitment-card > p {
    font-size: 10px !important;
  }

  .commitment-rule {
    margin-top: 12px;
    padding-top: 10px;
  }

  .commitment-rule span {
    font-size: 6px;
  }

  .commitment-rule strong {
    font-size: 10px;
  }
}

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