:root {
  --midnight: #0b1c2b;
  --night: #102a40;
  --ink: #15283a;
  --teal: #176879;
  --teal-dark: #0f5361;
  --blue: #2f6f99;
  --sky: #dcecf5;
  --mist: #f4f8fb;
  --paper: #ffffff;
  --warm: #f2b65f;
  --warm-light: #ffdda3;
  --muted: #5b6a78;
  --line: #d4e0e8;
  --soft-line: rgba(255, 255, 255, .16);
  --shadow: 0 24px 70px rgba(8, 28, 43, .13);
  --serif: "Literata", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--midnight);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1280px;
  margin: auto;
  padding: 13px 32px;
  background: var(--paper);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark { width: 42px; height: 42px; color: var(--teal); stroke-width: 2; }
.brand > span { display: grid; line-height: 1.15; }
.brand strong { font-size: .98rem; letter-spacing: -.02em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .7rem; font-weight: 600; }
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a { font-size: .86rem; font-weight: 700; text-decoration: none; }
.site-header nav a:not(.sign-in):hover { color: var(--teal); }
.sign-in {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--mist);
}
.sign-in:hover { border-color: #9db6c6; background: var(--sky); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(16, 42, 64, .2), transparent 58%),
    var(--midnight);
  color: var(--paper);
}
.hero::after {
  position: absolute;
  right: -11vw;
  bottom: -180px;
  width: 58vw;
  height: 360px;
  border: 1px solid rgba(149, 209, 226, .14);
  border-radius: 50%;
  content: "";
  transform: rotate(-9deg);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.glow-one { top: -180px; right: 18%; width: 430px; height: 430px; background: rgba(42, 126, 143, .18); }
.glow-two { bottom: -250px; left: -90px; width: 490px; height: 490px; background: rgba(47, 111, 153, .13); }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .78fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  max-width: 1220px;
  margin: auto;
  padding: clamp(78px, 9vw, 126px) 32px clamp(82px, 10vw, 136px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .135em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow.light { color: #91d0dc; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.04em; }
h1 { max-width: 780px; font-size: clamp(3rem, 5.3vw, 5.35rem); line-height: 1; }
h2 { font-size: clamp(2.3rem, 4.2vw, 4.35rem); line-height: 1.04; }
.hero-copy h1 {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hero-copy h1 span { display: block; }
.hero-copy h1 .contrast-line { color: var(--warm-light); }
.hero-recognition {
  max-width: 690px;
  margin: 30px 0 0;
  color: #e5edf2;
  font-family: var(--serif);
  font-size: clamp(1.06rem, 1.6vw, 1.27rem);
  line-height: 1.68;
}
.hero-question { margin: 22px 0 0; color: #eef4f7; font-size: 1.06rem; }
.hero-question strong { color: var(--warm-light); }
.hero-relief { max-width: 665px; margin: 22px 0 0; color: #bcd0dc; font-size: 1rem; }
.hero-relief strong { color: var(--warm-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button-warm { background: var(--warm); color: #142432; box-shadow: 0 12px 28px rgba(242, 182, 95, .13); }
.button-warm:hover { background: #ffd18c; }
.button-ghost { border-color: rgba(255, 255, 255, .3); color: var(--paper); }
.button-ghost:hover { border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .07); }
.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 25px 0 0;
  padding: 0;
  color: #aebfca;
  font-size: .76rem;
  font-weight: 600;
  list-style: none;
}
.hero-assurances li { display: flex; align-items: center; gap: 7px; }
.hero-assurances svg { width: 17px; height: 17px; color: #72b8a7; stroke-width: 2.4; }

.recognition-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 22px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}
.recognition-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(var(--warm), #6db0c4);
  content: "";
}
.card-kicker { margin: 0 0 16px 8px; color: #98adbb; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.thought {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  margin-left: 8px;
  padding: 13px 0;
  border-bottom: 1px solid var(--soft-line);
  color: #eef4f7;
  font-family: var(--serif);
  font-size: .99rem;
  font-weight: 600;
}
.thought svg { flex: 0 0 27px; width: 27px; height: 27px; color: #8cc8d4; }
.card-answer { display: flex; align-items: center; gap: 14px; margin: 23px -5px -5px 8px; padding: 17px 18px; border-radius: 13px; background: var(--paper); color: var(--ink); }
.card-answer p { margin: 0; font-size: .86rem; line-height: 1.5; }
.answer-mark { display: grid; flex: 0 0 35px; width: 35px; height: 35px; place-items: center; border-radius: 50%; background: var(--warm); font-size: 1.15rem; font-weight: 800; }

.sample-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  max-width: 1160px;
  margin: auto;
  padding: 108px 28px;
}
.sample-copy h2 { font-size: clamp(2.35rem, 4vw, 4rem); }
.sample-copy > p:not(.eyebrow) { color: var(--muted); }
.grounding-list { display: grid; gap: 9px; margin-top: 27px; }
.grounding-list span { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 700; }
.grounding-list span::before { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); content: ""; box-shadow: 0 0 0 5px rgba(23,104,121,.1); }
.sample-plan { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: var(--mist); box-shadow: var(--shadow); }
.sample-plan::before { position: absolute; inset: 11px -11px -11px 11px; z-index: -1; border: 1px solid #b9ced9; border-radius: 20px; content: ""; }
.sample-plan-head { display: grid; gap: 8px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.sample-plan-head span { color: var(--teal); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sample-plan-head strong { font-family: var(--serif); font-size: 1.55rem; line-height: 1.25; }
.sample-plan > p { color: #42576a; }
.sample-plan h3 { margin: 26px 0 12px; font-family: var(--serif); }
.sample-plan ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; counter-reset: sample-action; }
.sample-plan li { display: grid; grid-template-columns: 29px 1fr; gap: 2px 11px; padding: 13px; border-radius: 11px; background: var(--paper); counter-increment: sample-action; }
.sample-plan li::before { grid-row: 1 / 3; display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; background: var(--sky); color: var(--teal); font-weight: 800; content: counter(sample-action); }
.sample-plan li span { color: var(--muted); font-size: .79rem; }
.sample-status { display: flex; align-items: center; gap: 9px; margin: 20px 0 0 !important; font-size: .72rem; }
.sample-status span { width: 9px; height: 9px; border-radius: 50%; background: var(--warm); }

.difference-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  padding: 104px max(32px, calc((100vw - 1160px) / 2));
  background: var(--night);
  color: var(--paper);
}
.difference-section h2 { max-width: 470px; }
.difference-copy > p { color: #bfd0da; }
.difference-copy ul { display: grid; gap: 15px; margin: 25px 0; padding: 0; list-style: none; }
.difference-copy li { position: relative; padding: 15px 18px 15px 48px; border: 1px solid var(--soft-line); border-radius: 12px; background: rgba(255,255,255,.045); }
.difference-copy li::before { position: absolute; top: 16px; left: 18px; color: var(--warm-light); font-weight: 800; content: "✓"; }
.difference-control { padding-top: 19px; border-top: 1px solid var(--soft-line); }
.difference-control strong { color: var(--warm-light); }

.situation-start {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 65px;
  align-items: end;
  max-width: 1160px;
  margin: auto;
  padding: 76px 28px;
}
.situation-start h2 { max-width: 510px; font-size: clamp(2rem, 3vw, 3.05rem); }
.situation-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.situation-buttons button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
  cursor: pointer;
  font-size: .83rem;
  font-weight: 700;
}
.situation-buttons button:hover { border-color: #8bb8c5; background: var(--sky); }
.situation-buttons svg { width: 21px; height: 21px; color: var(--teal); }

.truth-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 74px;
  align-items: center;
  padding: 96px max(32px, calc((100vw - 1160px) / 2));
  background: var(--sky);
}
.truth-marker { position: relative; min-height: 290px; }
.truth-marker::before, .truth-marker::after, .truth-marker span { position: absolute; border-radius: 50%; content: ""; }
.truth-marker::before { top: 5px; left: 50%; width: 260px; height: 260px; border: 1px solid rgba(23, 104, 121, .25); transform: translateX(-50%); }
.truth-marker::after { top: 52px; left: 50%; width: 164px; height: 164px; border: 1px solid rgba(23, 104, 121, .48); transform: translateX(-50%); }
.truth-marker span:nth-child(1) { top: 121px; left: calc(50% - 14px); width: 28px; height: 28px; background: var(--teal); box-shadow: 0 0 0 14px rgba(23, 104, 121, .11); }
.truth-marker span:nth-child(2) { top: 23px; left: calc(50% + 70px); width: 12px; height: 12px; background: var(--warm); }
.truth-marker span:nth-child(3) { top: 220px; left: calc(50% - 92px); width: 9px; height: 9px; background: var(--blue); }
.truth-copy { max-width: 700px; }
.truth-copy h2 { font-size: clamp(2.45rem, 4vw, 4rem); }
.truth-copy > p:not(.eyebrow) { max-width: 640px; color: #3f5667; font-size: 1.02rem; }
.plain-nuance { margin-top: 25px; padding: 20px 22px; border-left: 4px solid var(--warm); background: rgba(255, 255, 255, .67); }
.plain-nuance strong { color: var(--ink); }

.relief-section { max-width: 1160px; margin: auto; padding: 112px 28px 122px; }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 36px 80px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -15px; }
.section-heading h2 { max-width: 760px; }
.section-heading > p:last-child { margin: 0 0 7px; color: var(--muted); }
.relief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.result-card { position: relative; min-height: 315px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: var(--mist); }
.result-card h3 { margin: 48px 0 10px; font-family: var(--serif); font-size: 1.47rem; line-height: 1.15; }
.result-card > p:last-child, .pack-card p:last-child { margin: 0; color: var(--muted); font-size: .88rem; }
.result-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 14px; background: var(--paper); color: var(--teal); box-shadow: 0 8px 24px rgba(21, 40, 58, .07); }
.result-icon svg { width: 26px; height: 26px; }
.result-number { position: absolute; top: 29px; right: 27px; margin: 0; color: #526979; font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.meaning-card { background: #edf5f8; }
.words-card { background: #f7f4ed; }
.pack-card { display: grid; grid-column: 1 / -1; grid-template-columns: .75fr 1.25fr; gap: 55px; align-items: center; min-height: 360px; overflow: hidden; background: var(--night); color: var(--paper); }
.pack-card h3 { margin: 22px 0 12px; font-size: clamp(2rem, 3vw, 3rem); }
.pack-card p:last-child { max-width: 580px; color: #bed0db; }
.pack-card .result-number { position: static; color: #83c7d5; }
.pack-visual { position: relative; min-height: 285px; }
.paper { position: absolute; display: block; width: 190px; height: 245px; border-radius: 8px; box-shadow: 0 22px 40px rgba(0, 0, 0, .22); }
.paper-back { top: 24px; left: calc(50% - 116px); background: #89b8c5; transform: rotate(-9deg); }
.paper-middle { top: 13px; left: calc(50% - 82px); background: #e2edf1; transform: rotate(5deg); }
.paper-front { top: 21px; left: calc(50% - 98px); padding: 28px 23px; background: var(--paper); color: var(--ink); transform: rotate(-1deg); }
.paper-front i { display: block; width: 70%; height: 4px; margin-bottom: 9px; border-radius: 5px; background: #c6d7df; }
.paper-front i:nth-child(2) { width: 88%; }
.paper-front i:nth-child(3) { width: 52%; }
.paper-front b { position: absolute; bottom: 28px; left: 23px; color: var(--teal); font-family: var(--serif); font-size: 1.12rem; line-height: 1.25; letter-spacing: -.02em; }

.how-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  padding: 112px max(32px, calc((100vw - 1160px) / 2));
  background: var(--midnight);
  color: var(--paper);
}
.how-heading { position: sticky; top: 32px; align-self: start; }
.how-heading h2 { max-width: 520px; }
.how-heading > p:last-child { max-width: 525px; margin-top: 25px; color: #aebfca; }
.how-steps { margin: 0; padding: 0; list-style: none; }
.how-steps li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--soft-line); }
.how-steps li:first-child { padding-top: 8px; }
.step-number { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255, 255, 255, .24); border-radius: 50%; color: var(--warm-light); font-family: var(--serif); font-weight: 650; }
.how-steps h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.45rem; }
.how-steps p { margin: 0; color: #aebfca; }

.clarity-section { max-width: 1160px; margin: auto; padding: 108px 28px; }
.clarity-intro { display: grid; grid-template-columns: .45fr 1fr; gap: 55px; align-items: start; }
.clarity-intro h2 { max-width: 790px; font-size: clamp(2.2rem, 3.8vw, 3.8rem); }
.clarity-legend { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 58px; border: 1px solid var(--line); border-radius: 17px; overflow: hidden; }
.clarity-legend > div { position: relative; min-height: 175px; padding: 27px 22px; border-right: 1px solid var(--line); }
.clarity-legend > div:last-child { border-right: 0; }
.clarity-legend strong { display: block; margin-top: 34px; font-size: .9rem; }
.clarity-legend p { margin: 6px 0 0; color: var(--muted); font-size: .8rem; }
.status-dot { position: absolute; top: 26px; left: 23px; width: 15px; height: 15px; border-radius: 50%; }
.status-dot.verified { background: #2d8c70; box-shadow: 0 0 0 6px #e3f2ed; }
.status-dot.supported { background: #397da6; box-shadow: 0 0 0 6px #e4f0f7; }
.status-dot.unresolved { background: #ca873b; box-shadow: 0 0 0 6px #f9edda; }
.status-dot.next { background: #6a5a9e; box-shadow: 0 0 0 6px #eeeaf8; }

.pricing-section {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 74px;
  align-items: center;
  padding: 105px max(32px, calc((100vw - 1160px) / 2));
  background: #eef5f7;
}
.pricing-section > div:first-child > p:last-child { max-width: 690px; color: var(--muted); font-size: 1.05rem; }
.price-card { padding: 33px; border: 1px solid #bad0d9; border-radius: 20px; background: var(--paper); box-shadow: var(--shadow); }
.price { margin: 0; color: var(--midnight); font-family: var(--serif); font-size: 4rem; font-weight: 650; line-height: 1; }
.price span { margin-right: 5px; color: var(--teal); font-family: var(--sans); font-size: .9rem; }
.price-card > p:nth-child(2) { color: var(--muted); font-size: .8rem; }
.price-card ul { display: grid; gap: 9px; margin: 24px 0; padding: 0; list-style: none; }
.price-card li::before { margin-right: 9px; color: var(--teal); font-weight: 800; content: "✓"; }
.price-card .button { width: 100%; }
.price-card small { display: block; margin-top: 13px; color: var(--muted); text-align: center; }

.access-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 78px;
  align-items: center;
  padding: 96px max(32px, calc((100vw - 1160px) / 2));
  background: var(--teal-dark);
  color: var(--paper);
}
.access-copy h2 { max-width: 560px; }
.access-copy > p:not(.eyebrow, .privacy-link) { max-width: 555px; color: #c2d9de; }
.privacy-promise { display: flex; gap: 16px; max-width: 570px; margin-top: 29px; padding: 18px; border: 1px solid rgba(255, 255, 255, .19); border-radius: 13px; background: rgba(255, 255, 255, .07); }
.privacy-promise svg { flex: 0 0 27px; width: 27px; height: 27px; color: var(--warm-light); }
.privacy-promise p { margin: 0; color: #d9e8eb; font-size: .84rem; }
.privacy-promise strong { color: var(--paper); }
.privacy-link { color: #bdd4da; font-size: .8rem; }
.privacy-link a { color: var(--paper); text-underline-offset: 3px; }

#access-form { padding: 32px; border-radius: 19px; background: var(--paper); color: var(--ink); box-shadow: 0 26px 70px rgba(0, 0, 0, .17); }
.form-heading { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--teal); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h3 { margin: 4px 0; font-family: var(--serif); font-size: 1.65rem; }
.form-heading p { margin: 0; color: var(--muted); font-size: .76rem; }
.field { margin-bottom: 18px; }
label, legend { font-size: .84rem; font-weight: 800; }
label span { color: var(--muted); font-size: .74rem; font-weight: 500; }
input, select { width: 100%; min-height: 49px; margin-top: 7px; padding: 10px 12px; border: 1px solid #9cadb9; border-radius: 9px; background: var(--paper); color: var(--ink); }
fieldset { margin: 0 0 18px; padding: 0; border: 0; }
.choice { display: inline-flex; align-items: center; gap: 8px; margin: 10px 20px 0 0; font-weight: 600; }
.choice input { width: 21px; height: 21px; min-height: 0; margin: 0; accent-color: var(--teal); }
.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 23px; margin: 1px 0 8px; color: #a62e26; font-size: .82rem; font-weight: 800; }
.form-status.success { color: #247158; }
.button-submit { width: 100%; background: var(--midnight); color: var(--paper); }
.button-submit:hover { background: var(--teal); }
.button-submit:disabled { cursor: wait; opacity: .7; }
.form-footnote { margin: 12px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

footer { display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 35px; align-items: center; max-width: 1160px; margin: auto; padding: 38px 28px 44px; color: var(--muted); font-size: .78rem; }
.footer-brand { color: var(--ink); font-weight: 800; text-decoration: none; }
footer p { margin: 0; }
footer nav { display: flex; gap: 22px; }
footer a:not(.footer-brand) { text-underline-offset: 3px; }

input:focus, select:focus, button:focus-visible, a:focus-visible { outline: 3px solid var(--warm); outline-offset: 3px; }

@media (max-width: 980px) {
  .site-header nav > a:not(.sign-in) { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .recognition-card { max-width: 650px; }
  .sample-section, .difference-section, .pricing-section, .situation-start, .truth-section, .how-section, .access-section { grid-template-columns: 1fr; }
  .situation-start { gap: 32px; }
  .truth-marker { min-height: 230px; }
  .truth-marker::before { width: 210px; height: 210px; }
  .truth-marker::after { width: 130px; height: 130px; }
  .truth-marker span:nth-child(1) { top: 98px; }
  .truth-marker span:nth-child(2) { left: calc(50% + 57px); }
  .truth-marker span:nth-child(3) { top: 177px; left: calc(50% - 75px); }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .relief-grid { grid-template-columns: 1fr 1fr; }
  .pack-card { grid-column: 1 / -1; }
  .how-heading { position: static; }
  .clarity-legend { grid-template-columns: 1fr 1fr; }
  .clarity-legend > div:nth-child(2) { border-right: 0; }
  .clarity-legend > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .access-section { gap: 48px; }
}

@media (max-width: 640px) {
  .site-header { min-height: 70px; padding: 10px 18px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand small { display: none; }
  .sign-in { padding: 9px 11px; font-size: .74rem !important; }
  .hero-inner { padding: 68px 20px 80px; }
  h1 { font-size: clamp(3rem, 15vw, 4rem); }
  .hero-recognition { margin-top: 24px; font-size: 1.02rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-assurances { display: grid; gap: 8px; }
  .recognition-card { padding: 24px 20px 20px; }
  .card-kicker, .thought, .card-answer { margin-left: 6px; }
  .thought { font-size: .91rem; }
  .situation-start { padding: 65px 20px; }
  .sample-section, .difference-section, .pricing-section { gap: 40px; padding: 76px 20px; }
  .sample-plan { padding: 25px 20px; }
  .situation-buttons { display: grid; }
  .situation-buttons button { justify-content: flex-start; width: 100%; border-radius: 12px; }
  .truth-section { gap: 20px; padding: 67px 20px 74px; }
  .truth-copy h2 { font-size: 2.55rem; }
  .relief-section { padding: 80px 20px; }
  .relief-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .result-card { min-height: 270px; }
  .pack-card { grid-column: auto; grid-template-columns: 1fr; gap: 15px; padding-bottom: 34px; }
  .pack-visual { min-height: 245px; }
  .paper { width: 165px; height: 215px; }
  .paper-front { left: calc(50% - 83px); }
  .paper-back { left: calc(50% - 101px); }
  .paper-middle { left: calc(50% - 68px); }
  .how-section { gap: 50px; padding: 80px 20px; }
  .how-steps li { grid-template-columns: 48px 1fr; gap: 15px; }
  .step-number { width: 42px; height: 42px; }
  .clarity-section { padding: 78px 20px; }
  .clarity-intro { grid-template-columns: 1fr; gap: 5px; }
  .clarity-legend { grid-template-columns: 1fr; }
  .clarity-legend > div { min-height: 145px; border-right: 0; border-bottom: 1px solid var(--line); }
  .clarity-legend > div:last-child { border-bottom: 0; }
  .access-section { padding: 76px 20px; }
  #access-form { padding: 25px 19px; }
  footer { grid-template-columns: 1fr; gap: 13px; padding: 30px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
