/* MORELEADS Growth Constraint Diagnostic™ */
:root {
  --bg: #f4f3ef;
  --paper: #fbfaf7;
  --ink: #0c0d0f;
  --muted: #6a6d70;
  --line: rgba(12,13,15,.11);
  --accent: #b7ff3c;
  --accent-2: #e8ffc2;
  --dark: #0c0f0f;
  --radius: 28px;
  --shadow: 0 18px 60px rgba(12,13,15,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection { background: var(--accent); color: #000; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.shell { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 128px 0; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .02; mix-blend-mode: multiply;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,243,239,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12,13,15,.06);
}
.nav {
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 850; letter-spacing: -.04em; font-size: 18px;
}
.brand-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(183,255,60,.14); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; color: #494c4f; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: #000; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 740; letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button span { transition: transform .2s ease; }
.button:hover span { transform: translate(2px,-2px); }
.button-small { min-height: 42px; padding: 0 18px; background: #121415; color: #fff; font-size: 13px; }
.button-primary { background: var(--accent); color: #071000; box-shadow: 0 12px 30px rgba(117,166,21,.16); }
.button-primary:hover { box-shadow: 0 16px 40px rgba(117,166,21,.24); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.55); }
.full { width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: #505356; font-size: 12px; font-weight: 760; letter-spacing: .04em; text-transform: uppercase;
}
.eyebrow > span { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.eyebrow.light { color: rgba(255,255,255,.64); }

.hero {
  min-height: calc(100svh - 76px); display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px;
  align-items: center; padding-top: 76px; padding-bottom: 82px;
}
.hero h1 {
  margin: 24px 0 24px;
  font-size: clamp(58px, 6vw, 92px);
  line-height: .93; letter-spacing: -.072em; font-weight: 900;
}
.hero h1 em { font-style: normal; color: #777b7e; }
.hero-sub { max-width: 670px; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; letter-spacing: -.025em; color: #4f5356; }
.hero-actions { display: flex; gap: 24px; align-items: center; margin-top: 38px; }
.text-link { font-weight: 700; font-size: 14px; border-bottom: 1px solid rgba(12,13,15,.18); padding-bottom: 4px; }
.qualification { margin-top: 56px; display: flex; flex-direction: column; gap: 3px; font-size: 13px; color: #686c6e; }
.qualification strong { color: #1b1d1f; }

.hero-visual {
  min-height: 610px; position: relative; border-radius: 42px;
  background:
    radial-gradient(circle at 50% 50%, rgba(183,255,60,.14), transparent 28%),
    linear-gradient(145deg, #111414, #080909);
  overflow: hidden; box-shadow: 0 32px 90px rgba(7,10,10,.2);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit-1 { width: 390px; height: 390px; }
.orbit-2 { width: 520px; height: 520px; border-style: dashed; animation: spin 28s linear infinite; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.scanner-line {
  position: absolute; top: 50%; left: 50%; width: 280px; height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), transparent);
  animation: scan 8s linear infinite;
}
@keyframes scan { to { transform: rotate(360deg); } }

.constraint-core {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%);
  width: 190px; aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center;
  color: #fff; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 55px rgba(183,255,60,.06), 0 0 70px rgba(183,255,60,.08);
}
.core-label { color: var(--accent); text-transform: uppercase; letter-spacing: .13em; font-size: 8px; font-weight: 800; }
.constraint-core strong { font-size: 24px; max-width: 140px; line-height: 1; letter-spacing: -.05em; margin: 9px 0; }
.constraint-core small { color: rgba(255,255,255,.4); }

.node {
  position: absolute; display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.72);
  padding: 9px 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px; font-size: 11px; backdrop-filter: blur(8px);
}
.node span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); }
.node-a { left: 50%; top: 9%; transform: translateX(-50%); }
.node-b { right: 8%; top: 26%; }
.node-c { right: 7%; bottom: 24%; }
.node-d { left: 50%; bottom: 8%; transform: translateX(-50%); }
.node-e { left: 7%; bottom: 24%; }
.node-f { left: 7%; top: 26%; }
.node-c { border-color: rgba(183,255,60,.38); color: #fff; }
.node-c span { background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.mini-chip { position: absolute; background: var(--accent); color: #111; font-size: 11px; font-weight: 850; border-radius: 8px; padding: 8px 10px; transform: rotate(-6deg); }
.chip-top { top: 18%; left: 29%; }
.chip-bottom { bottom: 14%; right: 27%; transform: rotate(5deg); }


.proof-strip { padding-top: 82px; }
.proof-head { display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: end; }
.proof-head h2 { font-size: clamp(50px, 5vw, 78px); line-height: .94; letter-spacing: -.06em; margin: 20px 0 0; font-weight: 900; }
.proof-head p { color: #616568; font-size: 18px; line-height: 1.6; max-width: 520px; margin: 0; }
.proof-stats { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.proof-stat { padding: 26px 24px; border-radius: 24px; background: rgba(255,255,255,.58); border: 1px solid rgba(12,13,15,.08); box-shadow: 0 10px 28px rgba(12,13,15,.03); }
.proof-stat.accent { background: var(--accent-2); border-color: rgba(146,207,38,.28); }
.proof-stat.dark { background: #111414; color: white; }
.proof-stat span { display:block; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: #7c8082; font-weight: 760; }
.proof-stat.dark span { color: rgba(255,255,255,.54); }
.proof-stat strong { display:block; margin-top: 12px; font-size: clamp(36px, 4vw, 56px); letter-spacing: -.06em; line-height: .94; }
.proof-stat p { margin: 10px 0 0; color: #696d6f; font-size: 12px; line-height: 1.45; }
.proof-stat.dark p { color: rgba(255,255,255,.62); }
.proof-gallery { margin-top: 20px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.proof-card { grid-column: span 4; border-radius: 28px; overflow: hidden; background: #fff; border: 1px solid rgba(12,13,15,.08); box-shadow: 0 16px 42px rgba(12,13,15,.05); }
.proof-card.feature { grid-column: span 7; }
.proof-card.side { grid-column: span 5; }
.proof-card.small.wide { grid-column: span 4; }
.proof-card img { width: 100%; display: block; background: #ecebe6; }
.proof-card-copy { padding: 18px 18px 22px; }
.proof-card-copy span { display:block; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; color: #888c8e; font-weight: 840; }
.proof-card-copy h3 { margin: 10px 0 8px; font-size: clamp(22px, 2.3vw, 36px); line-height: 1.03; letter-spacing: -.045em; }
.proof-card-copy p { margin: 0; color: #696d6f; font-size: 13px; line-height: 1.5; }
.proof-footnote { margin-top: 16px; font-size: 11px; color: #8b8e90; }

.statement { padding: 150px 0; background: var(--ink); color: #fff; }
.statement-inner { text-align: center; max-width: 1000px; }
.statement-kicker { text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-size: 11px; font-weight: 800; }
.statement h2 { margin: 30px 0; font-size: clamp(54px, 8vw, 118px); line-height: .9; letter-spacing: -.07em; font-weight: 900; }
.statement p { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.58); font-size: 18px; line-height: 1.6; }
.statement strong { color: #fff; }

.section-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8a8d90; font-weight: 800; margin-bottom: 58px; }
.section-label.light { color: rgba(255,255,255,.35); }

.case-head, .method-head {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end;
}
.case-head h2, .method-head h2, .paid h2, .solomon h2, .closing h2, .scorecard h2 {
  font-size: clamp(48px, 5vw, 76px); line-height: .94; letter-spacing: -.06em; margin: 20px 0 0; font-weight: 900;
}
.case-head > p, .method-head > p, .paid-copy > p {
  color: #616568; font-size: 18px; line-height: 1.6; max-width: 520px; margin: 0;
}

.metric-band {
  margin-top: 82px; display: grid; grid-template-columns: 1.6fr .7fr .7fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.metric-band > div { padding: 38px 28px; border-right: 1px solid var(--line); }
.metric-band > div:first-child { padding-left: 0; }
.metric-band > div:last-child { border-right: 0; }
.metric-band span { display: block; font-size: 12px; color: #777b7e; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.metric-main div { display: flex; align-items: center; gap: 20px; margin-top: 16px; }
.metric-main strong { font-size: clamp(42px, 5vw, 72px); letter-spacing: -.06em; }
.metric-main i { color: #9da0a2; font-style: normal; font-size: 30px; }
.metric-side strong { display: block; font-size: clamp(34px, 4vw, 54px); margin-top: 20px; letter-spacing: -.05em; }
.confidentiality { margin-top: 14px; font-size: 11px; color: #929597; }

.timeline { margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.timeline-card {
  min-height: 310px; padding: 26px; border: 1px solid var(--line); border-radius: 24px;
  background: rgba(255,255,255,.42); display: flex; flex-direction: column; transition: transform .25s ease, background .25s ease;
}
.timeline-card:hover { transform: translateY(-6px); background: #fff; }
.timeline-card .step { font-size: 11px; color: #8a8d90; font-weight: 800; }
.timeline-card h3 { margin: auto 0 14px; font-size: 28px; letter-spacing: -.04em; }
.timeline-card p { margin: 0; color: #676b6d; line-height: 1.5; font-size: 14px; }
.timeline-meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 11px; color: #74787a; }
.timeline-card.active { background: var(--accent-2); border-color: rgba(146,207,38,.25); }

.quote-card { margin-top: 80px; padding: 58px; border-radius: 34px; background: #111313; color: white; }
.quote-card > span { color: var(--accent); font-size: 10px; letter-spacing: .16em; font-weight: 850; }
.quote-card blockquote { margin: 24px 0 0; font-size: clamp(34px, 4vw, 58px); line-height: 1.08; letter-spacing: -.045em; font-weight: 770; max-width: 1050px; }

.method { background: #e9e8e3; }
.diagnostic-grid { margin-top: 74px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.diag-card {
  min-height: 230px; padding: 26px; border-radius: 22px; background: rgba(255,255,255,.58);
  border: 1px solid rgba(12,13,15,.08); display: flex; flex-direction: column;
}
.diag-top { display: flex; justify-content: space-between; align-items: center; }
.diag-top span { color: #8b8e90; font-size: 11px; }
.diag-top b { font-size: 13px; }
.diag-card p { margin: auto 0 24px; color: #676b6d; line-height: 1.48; max-width: 290px; }
.bar { height: 5px; border-radius: 999px; background: rgba(12,13,15,.07); overflow: hidden; }
.bar i { display: block; height: 100%; background: #161919; border-radius: 999px; }
.diag-card.flagged { background: var(--dark); color: #fff; }
.diag-card.flagged p { color: rgba(255,255,255,.6); }
.status-pill { width: max-content; margin-top: auto; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; background: var(--accent); color: #071000; padding: 9px 11px; border-radius: 999px; }
.method-flow { margin-top: 42px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; font-weight: 760; }
.method-flow i { color: #9da0a2; font-style: normal; }

.scorecard { background: #0d1010; color: white; }
.scorecard-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.scorecard-intro { position: sticky; top: 120px; }
.scorecard-intro > p { color: rgba(255,255,255,.58); font-size: 17px; line-height: 1.6; max-width: 470px; }
.scorecard-note { margin-top: 34px; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.5; }
.scorecard-note strong { color: white; display: block; margin-bottom: 3px; }

.assessment, .result-panel {
  background: #f6f5f1; color: #101212; border-radius: 32px; padding: 34px; min-height: 580px;
}
.progress-wrap { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; font-size: 11px; font-weight: 750; color: #727678; }
.progress { grid-column: 1/-1; height: 4px; background: rgba(12,13,15,.08); border-radius: 999px; overflow: hidden; }
.progress i { display: block; height: 100%; background: #101313; transition: width .35s ease; }

.question { display: none; border: 0; padding: 0; margin: 70px 0 0; }
.question.active { display: block; animation: questionIn .34s ease both; }
@keyframes questionIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.question legend { font-size: clamp(30px, 3.3vw, 46px); line-height: 1.05; letter-spacing: -.05em; font-weight: 850; margin-bottom: 28px; max-width: 650px; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.option-grid label { cursor: pointer; }
.option-grid input { position: absolute; opacity: 0; pointer-events: none; }
.option-grid span {
  display: flex; align-items: center; min-height: 70px; padding: 18px 20px; border: 1px solid rgba(12,13,15,.11);
  border-radius: 16px; background: #fff; font-weight: 720; letter-spacing: -.02em; transition: background .2s ease, border .2s ease, transform .2s ease;
}
.option-grid label:hover span { transform: translateY(-2px); border-color: rgba(12,13,15,.25); }
.option-grid input:checked + span { background: var(--accent); border-color: var(--accent); }

.assessment-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.back-button, .restart { border: 0; background: none; cursor: pointer; font-weight: 760; font-size: 12px; padding: 6px 0; }
.back-button:disabled { opacity: .28; cursor: default; }
.auto-hint { font-size: 10px; color: #929597; }

.result-panel { display: none; }
.result-panel.visible { display: block; }
.result-loading { min-height: 510px; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 18px; }
.result-loading.active { display: flex; }
.loader { width: 54px; height: 54px; border-radius: 50%; border: 2px solid rgba(12,13,15,.08); border-top-color: #101313; animation: spinLoader .8s linear infinite; }
@keyframes spinLoader { to { transform: rotate(360deg); } }
.result-loading small { text-transform: uppercase; letter-spacing: .12em; color: #767a7d; }
.result-content { display: none; }
.result-content.active { display: block; animation: questionIn .4s ease both; }
.result-kicker { color: #8b8f91; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 850; }
.result-content h3 { margin: 13px 0 10px; font-size: 48px; line-height: 1; letter-spacing: -.055em; }
.result-content > p { color: #64686a; line-height: 1.55; max-width: 590px; }
.profile-bars { margin: 35px 0; display: grid; gap: 14px; }
.profile-bars > div { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 14px; font-size: 11px; font-weight: 750; }
.profile-bars i { height: 8px; background: rgba(12,13,15,.08); border-radius: 999px; overflow: hidden; }
.profile-bars b { display: block; height: 100%; background: #111414; border-radius: 999px; width: 0; transition: width .8s cubic-bezier(.2,.8,.2,1); }

.locked-findings { border-top: 1px solid var(--line); margin: 30px 0; }
.locked-findings > div { display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; min-height: 58px; border-bottom: 1px solid var(--line); font-size: 12px; }
.locked-findings span { color: #8d9092; }
.locked-findings p { margin: 0; font-weight: 740; }
.locked-findings b { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #55595b; }
.locked-findings .locked p { filter: blur(4px); user-select: none; }
.locked-findings .locked b { color: #8a8e90; }
.restart { display: block; margin: 14px auto 0; color: #74787a; }

.paid-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.price-card { background: #fff; border-radius: 30px; padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.price-top { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.price-top span { color: #737779; font-size: 12px; }
.price-top strong { font-size: 64px; letter-spacing: -.07em; line-height: .85; }
.outcomes { display: grid; }
.outcomes > div { display: grid; grid-template-columns: 36px 1fr; column-gap: 10px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.outcomes span { color: #939698; font-size: 10px; }
.outcomes h3 { margin: 0; font-size: 17px; letter-spacing: -.02em; }
.outcomes p { grid-column: 2; color: #737779; font-size: 12px; margin: 5px 0 0; }

.solomon { background: #e9e8e3; }
.solomon-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: stretch; }
.portrait-photo-card {
  min-height: 540px; border-radius: 34px; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #151818, #080909);
  box-shadow: 0 24px 70px rgba(7,10,10,.18);
}
.portrait-photo-card::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.64), rgba(0,0,0,.08) 34%, rgba(0,0,0,0) 55%),
    radial-gradient(circle at 82% 18%, rgba(183,255,60,.12), transparent 24%);
  pointer-events: none;
}
.portrait-photo {
  width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: center top;
  display: block; filter: saturate(.9) contrast(1.03) brightness(.99);
}
.portrait-caption { position: absolute; left: 28px; bottom: 24px; z-index: 2; color: white; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; }
.solomon-copy { padding: 36px 0; }
.solomon-copy .role { font-size: 20px; color: #55595b; letter-spacing: -.03em; margin-top: 18px; }
.bio { margin-top: 38px; font-size: 17px; line-height: 1.65; color: #55595b; max-width: 650px; }
.proof-grid { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.proof-grid > div { padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid strong { display: block; font-size: 30px; letter-spacing: -.05em; }
.proof-grid span { font-size: 11px; color: #7b7e80; }
.disclaimer { display: block; margin-top: 14px; color: #8c8f91; }

.closing-card { padding: 70px; border-radius: 40px; background: #111414; color: white; overflow: hidden; position: relative; }
.closing-card::after {
  content:""; position:absolute; width:420px; height:420px; border-radius:50%; right:-120px; top:-160px;
  background: radial-gradient(circle, rgba(183,255,60,.22), transparent 65%);
}
.closing h2 { position: relative; z-index: 1; }
.closing-actions { margin-top: 42px; display: flex; gap: 12px; position: relative; z-index: 1; }
.closing .button-ghost { color: #fff; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05); }

.footer { padding: 46px 0 90px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 40px; align-items: end; }
.footer p { color: #777b7d; font-size: 12px; max-width: 340px; }
.footer-meta { display: flex; gap: 14px; flex-wrap: wrap; color: #727678; font-size: 11px; }
.footer-copy { color: #929597; font-size: 11px; }

.mobile-cta { display: none; }
.reveal { opacity: 0; transform: translateY(18px); animation: reveal .8s .15s cubic-bezier(.2,.8,.2,1) forwards; }
.delay-1 { animation-delay: .28s; }
@keyframes reveal { to { opacity:1; transform:none; } }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .proof-head { grid-template-columns: 1fr; gap: 40px; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .proof-gallery { grid-template-columns: 1fr 1fr; }
  .proof-card, .proof-card.feature, .proof-card.side, .proof-card.small.wide { grid-column: auto; }
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 52px; }
  .hero-visual { min-height: 520px; }
  .case-head, .method-head, .paid-grid, .solomon-grid, .scorecard-layout { grid-template-columns: 1fr; gap: 48px; }
  .scorecard-intro { position: static; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .diagnostic-grid { grid-template-columns: 1fr 1fr; }
  .metric-band { grid-template-columns: 1fr 1fr; }
  .metric-main { grid-column: 1/-1; border-bottom: 1px solid var(--line); }
  .metric-band > div:nth-child(2) { padding-left: 0; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 640px) {
  .proof-strip { padding-top: 32px; }
  .proof-head h2 { font-size: 13vw; }
  .proof-head p { font-size: 16px; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-gallery { grid-template-columns: 1fr; }
  .proof-card, .proof-card.feature, .proof-card.side, .proof-card.small, .proof-card.small.wide { grid-column: auto; }
  .proof-card { border-radius: 22px; }
  :root { --radius: 22px; }
  .shell { width: min(100% - 28px, 1220px); }
  .section { padding: 86px 0; }
  .nav { height: 66px; }
  .nav .button-small { display: none; }
  .hero { min-height: auto; padding-top: 48px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-sub { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .text-link { width: max-content; }
  .qualification { margin-top: 34px; }
  .hero-visual { min-height: 430px; border-radius: 28px; }
  .orbit-1 { width: 280px; height: 280px; }
  .orbit-2 { width: 380px; height: 380px; }
  .constraint-core { width: 150px; }
  .constraint-core strong { font-size: 20px; }
  .node { font-size: 9px; padding: 7px 9px; }
  .node-b, .node-c { right: 2%; }
  .node-e, .node-f { left: 2%; }
  .scanner-line { width: 210px; }
  .statement { padding: 100px 0; }
  .statement h2 { font-size: 15vw; }
  .case-head h2, .method-head h2, .paid h2, .solomon h2, .closing h2, .scorecard h2 { font-size: 13vw; }
  .case-head > p, .method-head > p, .paid-copy > p { font-size: 16px; }
  .metric-band { display: block; }
  .metric-band > div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .metric-band > div:last-child { border-bottom: 0; }
  .timeline { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
  .timeline-card { flex: 0 0 86%; scroll-snap-align: start; }
  .quote-card { padding: 34px 26px; }
  .diagnostic-grid { grid-template-columns: 1fr; }
  .scorecard { padding-bottom: 105px; }
  .assessment, .result-panel { padding: 24px; border-radius: 24px; min-height: 560px; }
  .question { margin-top: 52px; }
  .question legend { font-size: 34px; }
  .option-grid { grid-template-columns: 1fr; }
  .option-grid span { min-height: 58px; }
  .assessment-controls { align-items: flex-start; }
  .auto-hint { max-width: 110px; text-align: right; }
  .price-card { padding: 24px; border-radius: 24px; }
  .price-top strong { font-size: 54px; }
  .portrait-photo-card { min-height: 430px; }
  .portrait-photo { min-height: 430px; }
  .proof-grid strong { font-size: 24px; }
  .closing-card { padding: 42px 26px 46px; border-radius: 28px; }
  .closing-actions { flex-direction: column; }
  .closing-actions .button { width: 100%; }
  .mobile-cta {
    display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0 20px;
    background: var(--accent); color: #071000; border-radius: 999px; font-weight: 850; box-shadow: 0 18px 40px rgba(0,0,0,.18);
  }
}
\n\n/* Thank-you page */\n.thankyou-page { min-height: 100svh; background: #f4f3ef; }\n.thankyou-main { min-height: calc(100svh - 76px); display: grid; place-items: center; padding: 70px 0 100px; }\n.thankyou-card { width: min(880px, 100%); padding: 68px; border-radius: 38px; background: #111414; color: #fff; position: relative; overflow: hidden; box-shadow: 0 30px 90px rgba(7,10,10,.2); }\n.thankyou-card::after { content:""; position:absolute; width:520px; height:520px; border-radius:50%; right:-220px; top:-240px; background:radial-gradient(circle, rgba(183,255,60,.22), transparent 68%); pointer-events:none; }\n.success-mark { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #071000; display:grid; place-items:center; font-size: 26px; font-weight:900; margin-bottom: 34px; }\n.thankyou-card h1 { margin: 22px 0 20px; font-size: clamp(52px, 7vw, 86px); line-height: .94; letter-spacing: -.065em; font-weight: 900; position:relative; z-index:1; }\n.thankyou-card h1 em { font-style: normal; color: rgba(255,255,255,.46); }\n.thankyou-card > p { color: rgba(255,255,255,.62); font-size: 18px; line-height: 1.55; max-width: 630px; position:relative; z-index:1; }\n.thankyou-cta { margin-top: 28px; position:relative; z-index:1; }\n.thankyou-next { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:58px; position:relative; z-index:1; }\n.thankyou-next > div { padding:22px; border:1px solid rgba(255,255,255,.1); border-radius:20px; background:rgba(255,255,255,.035); }\n.thankyou-next span { color:var(--accent); font-size:10px; font-weight:850; }\n.thankyou-next strong { display:block; margin-top:24px; font-size:15px; }\n.thankyou-next p { margin:7px 0 0; color:rgba(255,255,255,.48); font-size:12px; line-height:1.5; }\n@media (max-width:640px){ .thankyou-main { min-height:auto; padding:34px 0 70px; } .thankyou-card { padding:34px 24px; border-radius:28px; } .thankyou-card h1 { font-size:14vw; } .thankyou-card > p { font-size:16px; } .thankyou-cta { width:100%; } .thankyou-next { grid-template-columns:1fr; margin-top:38px; } }\n