:root {
  color-scheme: light;
  --black: #080a0d;
  --black-soft: #11151a;
  --paper: #f4f6f7;
  --white: #ffffff;
  --ink: #101318;
  --ink-soft: #59616b;
  --ink-faint: #7d8793;
  --line: #d7dce1;
  --line-dark: rgba(255, 255, 255, 0.16);
  --blue: #1768ff;
  --blue-light: #73a5ff;
  --mint: #6df2c1;
  --amber: #ffb257;
  --danger: #d93b46;
  --max-width: 1240px;
  --section-pad: 120px;
  --shadow: 0 24px 80px rgba(11, 18, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(23, 104, 255, 0.35);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.section {
  width: 100%;
  padding: var(--section-pad) max(24px, calc((100vw - var(--max-width)) / 2));
}

.section-index {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading,
.story-intro,
.diagnosis-intro,
.method-heading,
.report-heading,
.lead-copy {
  max-width: 820px;
}

.section-heading h2,
.story-intro h2,
.diagnosis-intro h2,
.method-heading h2,
.report-heading h2,
.principles-copy h2,
.faq-heading h2,
.lead-copy h2 {
  margin: 0;
  font-size: 58px;
  font-weight: 760;
  line-height: 1.08;
}

.section-heading > p:last-child,
.story-intro > p:last-child,
.diagnosis-intro > p:nth-of-type(2),
.principles-copy > p:last-child,
.lead-copy > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-light {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-accent {
  color: #05120e;
  background: var(--mint);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.74);
  background: none;
  font-weight: 680;
  cursor: pointer;
}

.dark-link {
  color: var(--ink-soft);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  min-height: 68px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--white);
  background: rgba(8, 10, 13, 0.72);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 780;
}

.wordmark-symbol {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: var(--black);
  background: var(--mint);
  font-size: 15px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 760;
}

.menu-button,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 920px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 154px 24px 54px;
  color: var(--white);
  background: var(--black);
}

.hero-grid,
.hero-grid::before,
.hero-grid::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-grid {
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent 0, black 25%, black 82%, transparent 100%);
}

.hero-grid::before {
  background: linear-gradient(110deg, transparent 38%, rgba(23, 104, 255, 0.14) 50%, transparent 62%);
}

.hero-grid::after {
  background: linear-gradient(to bottom, transparent 55%, rgba(109, 242, 193, 0.07));
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero-overline {
  margin: 0 0 28px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 18px;
  font-weight: 740;
}

.hero-statement {
  margin: 20px 0 0;
  font-size: 84px;
  font-weight: 770;
  line-height: 1.02;
}

.hero-copy {
  max-width: 850px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 42px;
}

.live-answer {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1100px, 100%);
  grid-template-columns: 1.3fr 1fr;
  gap: 0 34px;
  margin: 88px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 21, 26, 0.62);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.live-query {
  padding: 30px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.live-query strong {
  display: block;
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.55;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 700;
}

.live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
}

.live-process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 25px 30px;
}

.live-process span {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}

.live-process span::before {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.live-process span.is-active {
  color: var(--mint);
}

.live-answer-text {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-strip span {
  padding: 24px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.signal-strip span:last-child {
  border-right: 0;
}

/* Entry shift */
.entry-shift {
  background: var(--white);
}

.shift-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shift-timeline article {
  min-height: 350px;
  padding: 34px 34px 38px 0;
  border-right: 1px solid var(--line);
}

.shift-timeline article + article {
  padding-left: 34px;
}

.shift-timeline article:last-child {
  border-right: 0;
}

.shift-timeline time {
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 850;
}

.shift-timeline h3 {
  margin: 72px 0 18px;
  font-size: 28px;
  line-height: 1.25;
}

.shift-timeline p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.shift-timeline strong {
  display: block;
  margin-top: 30px;
  color: var(--blue);
  font-size: 13px;
}

.shift-timeline .is-now {
  position: relative;
  background: #edf3ff;
}

.shift-timeline .is-now::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue);
  content: "";
}

.shift-quote {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  margin: 90px 0 0;
  padding: 0;
  border: 0;
}

.shift-quote span {
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.5;
}

.shift-quote strong {
  font-size: 34px;
  line-height: 1.35;
}

/* Jason story */
.jason-story {
  background: #e8ecef;
}

.story-body {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
  margin-top: 78px;
  padding-top: 50px;
  border-top: 1px solid #cbd1d7;
}

.story-signature {
  position: sticky;
  top: 116px;
  align-self: start;
}

.story-signature > span {
  display: block;
  color: var(--blue);
  font-size: 78px;
  font-weight: 850;
  line-height: 0.9;
}

.story-signature strong {
  display: block;
  margin-top: 28px;
}

.story-signature p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.story-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  padding: 0 0 38px;
}

.story-timeline time {
  padding-top: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.story-timeline div {
  padding-bottom: 38px;
  border-bottom: 1px solid #cbd1d7;
}

.story-timeline strong {
  font-size: 22px;
}

.story-timeline p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Diagnosis */
.diagnosis-section {
  width: 100%;
  padding: 120px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--black);
}

.diagnosis-intro > p:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.64);
}

.diagnosis-truth {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.diagnosis-truth span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 9px 2px 0;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.wizard {
  max-width: 1060px;
  margin: 70px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.36);
}

.wizard-head {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: end;
  gap: 40px;
  padding: 28px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.wizard-head span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
}

.wizard-head strong {
  font-size: 21px;
}

.wizard-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.wizard-progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--mint);
  transition: width 280ms ease;
}

.wizard-step {
  min-height: 420px;
  padding: 38px 34px 12px;
}

.wizard-step.is-entering {
  animation: stepIn 360ms ease both;
}

.form-grid {
  display: grid;
  gap: 22px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.compact-fields {
  margin-top: 30px;
}

.field,
.select-field {
  display: block;
}

.field > span,
.select-field > span,
.choice-fieldset legend {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 720;
}

.field em,
.choice-fieldset legend small {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.field input,
.field textarea,
.select-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.24);
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.select-field select {
  min-height: 52px;
}

.field textarea {
  min-height: 106px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.31);
}

.field input:focus,
.field textarea:focus,
.select-field select:focus {
  border-color: var(--mint);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 0 3px rgba(109, 242, 193, 0.1);
}

.field input.is-invalid,
.field textarea.is-invalid,
.select-field select.is-invalid,
.choice-fieldset.is-invalid {
  border-color: var(--danger);
}

.choice-fieldset.is-invalid {
  box-shadow: inset 3px 0 0 var(--danger);
}

.choice-fieldset {
  min-width: 0;
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}

.choice-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.choice-list label {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  padding: 16px 44px 16px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background-color 160ms ease;
}

.choice-grid label:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.choice-list label:hover {
  background: rgba(255, 255, 255, 0.06);
}

.choice-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-list label::after {
  position: absolute;
  right: 17px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  content: "";
}

.check-list label::after {
  border-radius: 3px;
}

.choice-list label:has(input:checked) {
  background: rgba(109, 242, 193, 0.1);
}

.choice-list label:has(input:checked)::after {
  border: 5px solid var(--mint);
  background: var(--black);
}

.check-list label:has(input:checked)::after {
  border: 0;
  background: var(--mint);
  box-shadow: inset 0 0 0 4px var(--black);
}

.choice-list b {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.45;
}

.choice-list small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
  line-height: 1.45;
}

.finish-note {
  margin-top: 34px;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.finish-note strong {
  color: var(--mint);
}

.finish-note p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.form-error {
  margin: 0 34px;
  padding: 12px 14px;
  border-left: 3px solid #ff6b75;
  color: #ffb7bd;
  background: rgba(217, 59, 70, 0.1);
  font-size: 13px;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px 34px 30px;
}

/* Report */
.report-section {
  background: var(--white);
}

.report-heading p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.report-tool {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-summary {
  display: grid;
  grid-template-columns: 220px 220px 1fr;
  color: var(--white);
  background: var(--black);
}

.score-block,
.report-conclusion {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.report-conclusion {
  border-right: 0;
}

.score-block > span,
.report-conclusion > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 750;
}

.score-block > strong {
  display: flex;
  align-items: baseline;
  margin-top: 34px;
}

.score-block b {
  font-size: 62px;
  line-height: 1;
}

.score-block small {
  color: rgba(255, 255, 255, 0.35);
}

.score-block p {
  margin: 16px 0 0;
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
}

.score-primary {
  background: var(--blue);
}

.score-primary p {
  color: var(--white);
}

.report-conclusion h3 {
  max-width: 600px;
  margin: 30px 0 0;
  font-size: 30px;
  line-height: 1.3;
}

.report-conclusion p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.65;
}

.report-dimensions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.dimension {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.dimension:last-child {
  border-right: 0;
}

.dimension-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.dimension-head span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.dimension-head strong {
  font-size: 24px;
}

.dimension-track {
  height: 4px;
  margin-top: 18px;
  background: #e8ebee;
}

.dimension-track i {
  display: block;
  height: 100%;
  background: var(--blue);
}

.report-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.report-content > section {
  min-height: 380px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-content > section:nth-child(even) {
  border-right: 0;
}

.report-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.report-content h3 {
  margin: 18px 0 26px;
  font-size: 24px;
  line-height: 1.35;
}

.question-list,
.gap-list,
.action-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: report-list;
}

.question-list li,
.gap-list li,
.action-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid #e7eaed;
  color: var(--ink-soft);
  line-height: 1.62;
  counter-increment: report-list;
}

.question-list li::before,
.action-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  content: counter(report-list, decimal-leading-zero);
}

.gap-list li::before {
  position: absolute;
  top: 20px;
  left: 3px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--amber);
  content: "";
}

.next-step-section {
  color: var(--white);
  background: #121b2c;
}

.next-step-section > p,
.next-step-section #nextStepCopy {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.next-step-section .button {
  margin-top: 24px;
  color: var(--black);
  background: var(--mint);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 28px 38px;
}

.report-actions .text-link {
  margin-left: auto;
}

/* Method */
.method-section {
  padding: 120px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--black);
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.method-flow article {
  min-height: 340px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.method-flow article:first-child {
  padding-left: 0;
}

.method-flow article:last-child {
  border-right: 0;
}

.method-flow article > span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
}

.method-flow h3 {
  margin: 92px 0 18px;
  font-size: 30px;
}

.method-flow p {
  min-height: 84px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.method-flow small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.6;
}

.method-note {
  max-width: 820px;
  margin: 64px 0 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

/* Offers */
.offers {
  background: var(--paper);
}

.featured-offer {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 34px;
  margin-top: 70px;
  padding: 48px;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.offer-label {
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.featured-offer h3 {
  margin: 18px 0 12px;
  font-size: 36px;
}

.featured-offer p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.featured-price {
  justify-self: end;
  text-align: right;
}

.featured-price strong {
  display: block;
  font-size: 58px;
  line-height: 1;
}

.featured-price span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.featured-offer ul {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 12px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.featured-offer li {
  padding: 18px 12px 18px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.featured-offer li::before {
  margin-right: 9px;
  color: var(--mint);
  content: "✓";
}

.featured-offer .button {
  width: fit-content;
}

.offer-ladder {
  margin-top: 58px;
  border-top: 1px solid #cdd3d9;
}

.offer-ladder article {
  display: grid;
  grid-template-columns: 300px 1fr 120px;
  align-items: center;
  gap: 38px;
  min-height: 150px;
  border-bottom: 1px solid #cdd3d9;
}

.offer-ladder article > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 16px;
}

.offer-ladder span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
}

.offer-ladder h3 {
  margin: 0;
  font-size: 20px;
}

.offer-ladder p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.offer-ladder a {
  justify-self: end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
}

.boundary-note {
  margin: 34px 0 0;
  color: var(--ink-faint);
  font-size: 13px;
}

/* Principles */
.principles-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding: 110px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--blue);
}

.principles-copy > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.principles-copy .section-index {
  color: var(--white);
}

.principles-list {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.principles-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.principles-list span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 850;
}

.principles-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.principles-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 19px;
}

/* FAQ */
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  background: var(--white);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 46px 26px 0;
  font-size: 17px;
  font-weight: 720;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 26px;
  right: 4px;
  color: var(--blue);
  font-size: 22px;
  content: "+";
}

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

.faq-list p {
  margin: -4px 0 26px;
  padding-right: 40px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Lead and footer */
.lead-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  padding: 120px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--black);
}

.lead-copy .section-index {
  color: var(--mint);
}

.lead-copy > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.lead-form {
  align-self: start;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lead-form .field + .field {
  margin-top: 20px;
}

.lead-form .button {
  width: 100%;
  margin-top: 24px;
}

.lead-form > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 44px max(24px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: var(--black);
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer div:last-child {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  text-align: right;
}

.site-footer strong {
  font-size: 20px;
}

.site-footer div:first-child span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* Reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1080px) {
  :root {
    --section-pad: 96px;
  }

  .site-header {
    padding: 0 24px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .hero-statement {
    font-size: 70px;
  }

  .section-heading h2,
  .story-intro h2,
  .diagnosis-intro h2,
  .method-heading h2,
  .report-heading h2,
  .principles-copy h2,
  .faq-heading h2,
  .lead-copy h2 {
    font-size: 48px;
  }

  .method-flow {
    grid-template-columns: 1fr 1fr;
  }

  .method-flow article:nth-child(2) {
    border-right: 0;
  }

  .method-flow article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .report-summary {
    grid-template-columns: 190px 190px 1fr;
  }

  .principles-section,
  .lead-section {
    gap: 58px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 62px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    padding: 0;
    color: var(--white);
    background: transparent;
  }

  .menu-button span {
    position: absolute;
    right: 7px;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-button span:first-child { top: 16px; }
  .menu-button span:last-child { top: 25px; }
  .menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    top: 62px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    color: var(--white);
    background: rgba(8, 10, 13, 0.97);
    backdrop-filter: blur(24px);
  }

  .mobile-nav a {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 20px;
    font-weight: 720;
  }

  .hero {
    min-height: 860px;
    padding-top: 128px;
  }

  .hero-statement {
    font-size: 58px;
  }

  .live-answer {
    grid-template-columns: 1fr;
    margin-top: 74px;
  }

  .live-query {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }

  .signal-strip span:nth-child(2) {
    border-right: 0;
  }

  .signal-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .shift-timeline {
    grid-template-columns: 1fr;
  }

  .shift-timeline article,
  .shift-timeline article + article {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shift-timeline article:last-child {
    border-bottom: 0;
  }

  .shift-timeline h3 {
    margin-top: 34px;
  }

  .shift-timeline .is-now {
    padding-right: 24px;
    padding-left: 24px;
  }

  .shift-quote,
  .story-body,
  .principles-section,
  .faq-section,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .story-signature {
    position: static;
  }

  .wizard-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .report-summary {
    grid-template-columns: 1fr 1fr;
  }

  .report-conclusion {
    grid-column: 1 / -1;
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .report-dimensions {
    grid-template-columns: 1fr 1fr;
  }

  .dimension:nth-child(2) {
    border-right: 0;
  }

  .dimension:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .report-content {
    grid-template-columns: 1fr;
  }

  .report-content > section,
  .report-content > section:nth-child(even) {
    min-height: 0;
    border-right: 0;
  }

  .featured-offer {
    grid-template-columns: 1fr;
  }

  .featured-price {
    justify-self: start;
    text-align: left;
  }

  .featured-offer ul {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
  }

  .offer-ladder article {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .offer-ladder a {
    justify-self: start;
  }

  .faq-section,
  .lead-section {
    gap: 52px;
  }
}

@media (max-width: 620px) {
  :root {
    --section-pad: 76px;
  }

  .section,
  .diagnosis-section,
  .method-section,
  .principles-section,
  .lead-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .wordmark {
    font-size: 15px;
  }

  .hero {
    min-height: 790px;
    padding: 112px 18px 28px;
  }

  .hero-overline {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 16px;
  }

  .hero-statement {
    margin-top: 18px;
    font-size: 45px;
    line-height: 1.07;
  }

  .hero-copy {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.72;
  }

  .desktop-only {
    display: none;
  }

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

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

  .live-answer {
    margin-top: 56px;
  }

  .live-query,
  .live-process,
  .live-answer-text {
    padding-right: 20px;
    padding-left: 20px;
  }

  .live-query strong {
    font-size: 16px;
  }

  .signal-strip span {
    padding: 18px 10px;
    font-size: 11px;
  }

  .section-index {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .section-heading h2,
  .story-intro h2,
  .diagnosis-intro h2,
  .method-heading h2,
  .report-heading h2,
  .principles-copy h2,
  .faq-heading h2,
  .lead-copy h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .section-heading > p:last-child,
  .story-intro > p:last-child,
  .diagnosis-intro > p:nth-of-type(2),
  .principles-copy > p:last-child,
  .lead-copy > p:last-child {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.72;
  }

  .shift-timeline {
    margin-top: 46px;
  }

  .shift-timeline h3 {
    font-size: 23px;
  }

  .shift-quote {
    gap: 20px;
    margin-top: 54px;
  }

  .shift-quote span {
    font-size: 16px;
  }

  .shift-quote strong {
    font-size: 25px;
  }

  .story-body {
    gap: 48px;
    margin-top: 48px;
  }

  .story-signature > span {
    font-size: 56px;
  }

  .story-timeline li {
    grid-template-columns: 70px 1fr;
    gap: 14px;
  }

  .story-timeline strong {
    font-size: 18px;
  }

  .diagnosis-truth {
    display: grid;
    gap: 10px;
  }

  .wizard {
    margin-top: 46px;
  }

  .wizard-head,
  .wizard-step,
  .wizard-actions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .wizard-step {
    min-height: 0;
    padding-top: 28px;
  }

  .two-col,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid label:nth-child(odd) {
    border-right: 0;
  }

  .choice-list label {
    min-height: 70px;
    padding-left: 4px;
  }

  .wizard-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .wizard-actions .button:only-child,
  .wizard-actions #wizardNext:not([hidden]):first-child,
  .wizard-actions #wizardSubmit:not([hidden]):first-child {
    grid-column: 1 / -1;
  }

  .wizard-actions #wizardBack[hidden] ~ #wizardNext {
    grid-column: 1 / -1;
  }

  .form-error {
    margin-right: 18px;
    margin-left: 18px;
  }

  .report-heading h2 {
    overflow-wrap: anywhere;
  }

  .report-tool {
    margin-top: 38px;
  }

  .report-summary {
    grid-template-columns: 1fr 1fr;
  }

  .score-block,
  .report-conclusion {
    min-height: 174px;
    padding: 22px 18px;
  }

  .score-block b {
    font-size: 48px;
  }

  .report-conclusion h3 {
    font-size: 23px;
  }

  .dimension {
    padding: 20px 16px;
  }

  .dimension-head {
    display: block;
  }

  .dimension-head strong {
    display: block;
    margin-top: 8px;
  }

  .report-content > section {
    padding: 30px 20px;
  }

  .report-actions {
    display: grid;
    padding: 24px 20px;
  }

  .report-actions .text-link {
    margin: 0 auto;
  }

  .method-flow {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .method-flow article,
  .method-flow article:first-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .method-flow h3 {
    margin-top: 44px;
  }

  .method-flow p {
    min-height: 0;
  }

  .method-note {
    margin-top: 46px;
    font-size: 22px;
  }

  .featured-offer {
    margin-top: 48px;
    padding: 28px 20px;
  }

  .featured-offer h3 {
    font-size: 28px;
  }

  .featured-offer ul {
    grid-template-columns: 1fr;
  }

  .featured-offer .button {
    width: 100%;
  }

  .offer-ladder article > div {
    grid-template-columns: 86px 1fr;
  }

  .principles-section {
    gap: 46px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .site-footer {
    display: grid;
    gap: 28px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer div:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
