:root {
  color-scheme: dark;
  --bg: #071019;
  --ink: #f5f2e9;
  --muted: #abb6c1;
  --faint: #758493;
  --line: rgba(221, 231, 238, .2);
  --gold: #e1a954;
  --gold-light: #f2cc89;
  --panel: #0b1722;
  --shell: 1280px;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--bg); }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.shell { width: min(var(--shell), calc(100% - 64px)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(96px, 11vw, 168px); }
.section-marker { margin: 0; color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
.section h2 { margin: 1rem 0 0; font-size: clamp(3rem, 5vw, 5rem); font-weight: 520; line-height: .98; letter-spacing: -.04em; text-wrap: balance; }
.section h2 span { color: var(--gold-light); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 86px 1fr auto;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-art {
  background: url("./assets/hero-map.jpg") 68% center / cover no-repeat;
  transform: scale(1.015);
  animation: settle 1.4s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, #071019 0%, rgba(7, 16, 25, .99) 25%, rgba(7, 16, 25, .84) 44%, rgba(7, 16, 25, .18) 72%),
    linear-gradient(0deg, rgba(7, 16, 25, .88) 0%, transparent 22%);
}

.header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.main-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; margin-right: 38px; }
.main-nav a { color: #c9d0d6; font-size: .75rem; text-decoration: none; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-light); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  overflow: visible;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1;
  stroke-linecap: round;
}

.brand-symbol .brand-accent { stroke: #63a9db; stroke-width: 2; }
.brand-name { display: flex; flex-direction: column; gap: 1px; line-height: .82; text-transform: uppercase; }
.brand-name b { font-size: .6875rem; font-weight: 750; letter-spacing: .1em; }
.brand-name b:last-child { color: var(--gold-light); letter-spacing: .18em; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.language { position: relative; }
.language-toggle,
.login {
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 3px;
  font-size: 13px;
  font-weight: 650;
}

.language-toggle svg { width: 12px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.login { min-height: 42px; padding: 0 18px; border: 1px solid rgba(245, 242, 233, .52); font-size: 13px; transition: background .2s ease, color .2s ease; }
.login:hover, .login:focus-visible { color: var(--bg); background: var(--ink); }

.language-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  width: 174px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(9, 21, 31, .98);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.language-menu button {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-menu button:hover,
.language-menu button:focus-visible { background: rgba(255, 255, 255, .07); }
.language-menu b { color: var(--gold-light); font-size: 11px; }

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  align-items: center;
  padding-block: clamp(54px, 8vh, 98px);
}

.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0; color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

h1 {
  max-width: 650px;
  margin: 19px 0 0;
  font-size: clamp(54px, 5.15vw, 82px);
  font-weight: 520;
  line-height: .96;
  letter-spacing: -.04em;
  text-wrap: balance;
}

h1 span { color: var(--gold-light); }
.lede { max-width: 600px; margin: 27px 0 0; color: #d6dde2; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.58; text-wrap: pretty; }
.hero-action { display: flex; align-items: center; gap: 20px; margin-top: 33px; }

.primary-action {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid var(--gold-light);
  color: #171007;
  background: var(--gold);
  cursor: pointer;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.primary-action svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.primary-action:hover, .primary-action:focus-visible { background: var(--gold-light); transform: translateY(-2px); }
.hero-action p { max-width: 210px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.art-caption {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  color: rgba(245, 242, 233, .7);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.art-caption i { width: 54px; height: 1px; background: rgba(245, 242, 233, .44); }
.art-caption span:first-child { color: var(--gold-light); }

.hero-footer {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
  line-height: 1.45;
}

.hero-footer p { max-width: 690px; margin: 0; }
.hero-footer a { color: var(--gold-light); font-size: .6875rem; text-decoration: none; white-space: nowrap; }

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(64px, 11vw, 168px);
  align-items: start;
}

.about-heading h2 { max-width: 46rem; }
.about-copy { padding-top: 3.5rem; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.about-copy p { max-width: 42rem; margin: 0; }
.about-copy p + p { margin-top: 1.5rem; }
.about-copy .lead-copy { color: var(--ink); font-size: 1.25rem; line-height: 1.55; letter-spacing: -.015em; }

.reasons {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #09141e;
}

.reasons-heading { max-width: 63rem; }
.reason-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  margin-top: clamp(4rem, 7vw, 7rem);
}

.reason-card { min-width: 0; padding-bottom: 1.75rem; border-bottom: 1px solid var(--line); }
.reason-card figure { position: relative; aspect-ratio: 4 / 3; margin: 0 0 1.75rem; overflow: hidden; background: #07111b; }
.reason-card figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 16, 25, .68), transparent 48%); }
.reason-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .4s ease; }
.reason-card:hover img { transform: scale(1.035); filter: brightness(1.08); }
.reason-card figure span { position: absolute; z-index: 1; left: 1.25rem; bottom: 1rem; color: var(--gold-light); font-size: .75rem; font-weight: 700; }
.reason-card h3 { max-width: 20rem; margin: 0; font-size: clamp(1.25rem, 1.7vw, 1.5rem); font-weight: 600; line-height: 1.18; letter-spacing: -.025em; }
.reason-card p { max-width: 22rem; margin: .8rem 0 0; color: var(--muted); font-size: .9375rem; line-height: 1.6; }

.inside {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(440px, .95fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: center;
}

.inside-art {
  position: relative;
  min-height: 49rem;
  overflow: hidden;
  margin-left: clamp(-7rem, -7vw, -2rem);
  background: radial-gradient(circle at 50% 42%, rgba(57, 108, 151, .18), transparent 58%);
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.inside-art img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: contain; object-position: center; opacity: .92; filter: saturate(.82) contrast(1.06); }
.inside-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg) 0%, transparent 13%, transparent 84%, rgba(7, 16, 25, .45) 100%); pointer-events: none; }
.inside-art-label { position: absolute; z-index: 2; inset: auto 12% 2rem; display: flex; align-items: center; justify-content: space-between; margin: 0; color: var(--muted); font-size: .6875rem; letter-spacing: .04em; text-transform: uppercase; }
.inside-art-label b { color: var(--gold-light); font-variant-numeric: tabular-nums; }
.map-coordinate { position: absolute; z-index: 3; display: flex; align-items: center; gap: .45rem; color: rgba(245, 242, 233, .55); font-size: .6875rem; font-weight: 700; transform: translateX(-.375rem); transition: color .25s ease, transform .25s ease; }
.map-coordinate i { width: .75rem; height: .75rem; border: 1px solid currentColor; border-radius: 50%; background: var(--bg); box-shadow: 0 0 0 0 rgba(225, 169, 84, 0); transition: background .25s ease, box-shadow .25s ease; }
.map-coordinate.is-active { color: var(--gold-light); transform: translateX(-.375rem) scale(1.08); }
.map-coordinate.is-active i { background: var(--gold); box-shadow: 0 0 1.5rem rgba(225, 169, 84, .65); }
.map-coordinate-1 { top: 22%; left: 50%; }
.map-coordinate-2 { top: 35%; left: 50%; }
.map-coordinate-3 { top: 46%; left: 50%; }
.map-coordinate-4 { top: 56%; left: 50%; }
.inside-copy h2 { max-width: 40rem; }
.outcome-list { margin-top: 3.5rem; }
.outcome-list article { position: relative; display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--line); cursor: pointer; transition: background .25s ease; }
.outcome-list article:last-child { border-bottom: 1px solid var(--line); }
.outcome-list article.is-active { background: linear-gradient(90deg, rgba(225, 169, 84, .1), transparent 70%); }
.outcome-list article.is-active h3 { color: var(--gold-light); }
.outcome-list article > span { padding-top: .25rem; color: var(--gold); font-size: .75rem; font-weight: 700; }
.outcome-list h3 { margin: 0; font-size: 1.125rem; font-weight: 600; letter-spacing: -.02em; }
.outcome-list p { max-width: 37rem; margin: .55rem 0 0; color: var(--muted); font-size: .9375rem; line-height: 1.58; }

.report {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0b1722;
}

.report-heading { display: grid; grid-template-columns: minmax(260px, .65fr) 1.25fr; gap: clamp(48px, 9vw, 140px); align-items: center; }
.report-number { color: transparent; font-size: clamp(12rem, 25vw, 24rem); font-weight: 700; line-height: .7; letter-spacing: -.08em; -webkit-text-stroke: 1px rgba(225, 169, 84, .55); }
.report-heading h2 { max-width: 48rem; }
.report-intro { max-width: 46rem; margin: 2rem 0 0; color: var(--muted); font-size: 1.0625rem; line-height: 1.68; }
.report-body { margin-top: clamp(4.5rem, 8vw, 7.5rem); }
.report-list { counter-reset: report-item; columns: 3; column-gap: 3rem; margin: 0; padding: 0; list-style: none; }
.report-list li { counter-increment: report-item; break-inside: avoid; position: relative; min-height: 4.5rem; padding: 1.2rem 0 1.2rem 2.5rem; border-top: 1px solid var(--line); color: #d9e0e5; font-size: .9375rem; line-height: 1.4; }
.report-list li::before { content: counter(report-item, decimal-leading-zero); position: absolute; top: 1.3rem; left: 0; color: var(--gold); font-size: .6875rem; font-weight: 700; }
.report-action { display: flex; align-items: center; justify-content: space-between; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.report-action p { max-width: 43rem; margin: 0; color: var(--ink); font-size: 1.1875rem; line-height: 1.5; letter-spacing: -.015em; }
.report-action .primary-action { min-width: 19rem; }

.process { display: grid; grid-template-columns: minmax(340px, .85fr) 1.4fr; gap: clamp(64px, 10vw, 148px); align-items: start; }
.process-heading { position: sticky; top: 2rem; }
.process-heading h2 { max-width: 42rem; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1.5rem; padding: 2.2rem 0 2.6rem; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps > li > span { color: transparent; font-size: 3.5rem; font-weight: 700; line-height: .9; -webkit-text-stroke: 1px var(--gold); }
.steps h3 { margin: 0; font-size: 1.375rem; font-weight: 600; letter-spacing: -.025em; }
.steps p { max-width: 31rem; margin: .7rem 0 0; color: var(--muted); font-size: .9375rem; line-height: 1.58; }

.expectations { border-block: 1px solid var(--line); background: #09141e; }
.expectations-heading h2 { max-width: 58rem; }
.reviews-note { max-width: 42rem; margin: 1.5rem 0 0; color: var(--muted); font-size: .875rem; line-height: 1.55; }
.review-marquee { margin-top: 4.5rem; overflow: hidden; border-top: 1px solid var(--line); }
.review-marquee-reverse { margin-top: 0; border-bottom: 1px solid var(--line); }
.review-track { width: max-content; display: flex; animation: review-scroll 150s linear infinite; }
.review-track-reverse { animation-direction: reverse; animation-duration: 165s; }
.review-marquee:hover .review-track { animation-play-state: paused; }
.review-track blockquote { width: 30rem; min-height: 19rem; display: flex; flex: 0 0 auto; flex-direction: column; justify-content: space-between; margin: 0; padding: 1.75rem; border-right: 1px solid var(--line); color: #dde3e7; }
.review-track blockquote p { margin: 0; font-size: 1rem; line-height: 1.58; letter-spacing: -.012em; }
.review-track blockquote footer { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; color: var(--gold-light); font-size: .6875rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.review-track blockquote footer::before { content: ""; width: 1.5rem; height: 1px; background: var(--gold); }

.boundaries { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .65fr); gap: clamp(64px, 12vw, 180px); align-items: center; }
.boundaries-copy h2 { max-width: 50rem; }
.boundaries-copy > p:last-child { max-width: 44rem; margin: 2rem 0 0; color: var(--muted); font-size: 1.0625rem; line-height: 1.7; }
.trust-list { margin: 0; padding: 0; list-style: none; }
.trust-list li { position: relative; padding: 1.4rem 0 1.4rem 2.1rem; border-top: 1px solid var(--line); color: #d6dde2; font-size: .9375rem; line-height: 1.45; }
.trust-list li:last-child { border-bottom: 1px solid var(--line); }
.trust-list li::before { content: ""; position: absolute; top: 1.75rem; left: 0; width: .55rem; height: .55rem; border: 1px solid var(--gold); border-radius: 50%; box-shadow: 0 0 1rem rgba(225, 169, 84, .35); }

.final-cta { min-height: 44rem; display: grid; place-items: center; overflow: hidden; text-align: center; isolation: isolate; }
.final-art { position: absolute; inset: 0; z-index: -2; background: url("./assets/final-path.jpg") center / cover no-repeat; filter: saturate(.82); }
.final-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7, 16, 25, .88) 0%, rgba(7, 16, 25, .72) 48%, rgba(7, 16, 25, .3) 100%), linear-gradient(0deg, rgba(7, 16, 25, .78), transparent 55%); }
.final-content { display: flex; flex-direction: column; align-items: center; }
.final-content h2 { max-width: 66rem; }
.final-content p { max-width: 42rem; margin: 1.75rem 0 0; color: #d5dde2; font-size: 1.125rem; line-height: 1.6; }
.final-content .primary-action { margin-top: 2rem; }
.final-content small { margin-top: .9rem; color: var(--muted); font-size: .75rem; }

.site-footer { min-height: 7.5rem; display: grid; grid-template-columns: 1fr auto auto; gap: 3rem; align-items: center; }
.footer-links { display: flex; align-items: center; gap: 1.75rem; }
.footer-links a,
.footer-links button { padding: 0; border: 0; color: var(--muted); background: transparent; cursor: pointer; font-size: .75rem; text-decoration: none; }
.footer-links a:hover,
.footer-links button:hover { color: var(--gold-light); }
.site-footer > p { color: var(--faint); font-size: .75rem; }
.legal-copy { color: var(--muted); font-size: .9375rem; line-height: 1.65; }
.legal-copy p { margin: 0; }
.legal-copy p + p { margin-top: 1.25rem; }

.dialog {
  width: min(470px, calc(100% - 32px));
  padding: 0;
  border: 1px solid rgba(225, 169, 84, .45);
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .48);
}

.dialog::backdrop { background: rgba(2, 7, 11, .78); backdrop-filter: blur(5px); }
.dialog-panel { position: relative; padding: 36px; }
.dialog-close { position: absolute; top: 12px; right: 15px; width: 36px; height: 36px; border: 0; color: var(--ink); background: transparent; cursor: pointer; font-size: 27px; }
.dialog h2 { max-width: 350px; margin: 10px 0 27px; font-size: 34px; font-weight: 520; line-height: 1.04; letter-spacing: -.035em; }
.dialog form { display: grid; gap: 8px; }
.dialog label { margin-top: 7px; color: var(--muted); font-size: 12px; }
.dialog input { width: 100%; min-height: 49px; padding: 0 13px; border: 1px solid rgba(245, 242, 233, .26); border-radius: 0; outline: 0; color: var(--ink); background: #07111a; }
.dialog input:focus { border-color: var(--gold-light); }
.form-action { width: 100%; margin-top: 15px; }
.form-status { min-height: 18px; margin: 2px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

body.result-mode > main,
body.result-mode > .site-footer { display: none; }
body.result-mode { background: #08121b; }

.result-view {
  min-height: 100svh;
  color: #edf1f3;
  background:
    radial-gradient(circle at 82% 4%, rgba(53, 116, 160, .2), transparent 29rem),
    #08121b;
}

.result-topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-inline: max(2rem, calc((100vw - 84rem) / 2));
  border-bottom: 1px solid rgba(221, 231, 238, .16);
  background: rgba(8, 18, 27, .94);
  backdrop-filter: blur(12px);
}

.result-topbar-meta { display: flex; align-items: center; gap: 1.25rem; color: #8fa0ad; font-size: .75rem; }
.result-back,
.result-footer button,
.result-to-section {
  border: 0;
  color: #e7bd73;
  background: transparent;
  cursor: pointer;
}
.result-back { min-height: 2.5rem; padding-inline: .25rem; font-weight: 650; }
.result-shell { width: min(84rem, calc(100% - 4rem)); margin-inline: auto; }

.result-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(31rem, .9fr);
  gap: clamp(4rem, 9vw, 9rem);
  padding-block: 6.5rem 5rem;
  border-bottom: 1px solid rgba(221, 231, 238, .16);
}

.result-heading > p,
.result-section-heading > span,
.full-boundary-label {
  margin: 0;
  color: #e7bd73;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-heading h1 {
  max-width: 44rem;
  margin: 1rem 0 0;
  font-size: 4.25rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.result-heading h1 span { color: #f2cc89; }
.result-profile-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; margin-top: 2rem; color: #9aabb7; font-size: .8125rem; }
.result-profile-meta span { position: relative; }
.result-profile-meta span + span::before { content: ""; position: absolute; top: .45em; left: -.85rem; width: 3px; height: 3px; border-radius: 50%; background: #e1a954; }

.result-core { display: grid; grid-template-columns: 11rem 1fr; align-self: end; border-block: 1px solid rgba(221, 231, 238, .18); }
.result-core-main { display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem 1.5rem 1.25rem 0; border-right: 1px solid rgba(221, 231, 238, .18); }
.result-core-main span { color: #9aabb7; font-size: .75rem; line-height: 1.35; }
.result-core-main strong { color: #f2cc89; font-size: 6rem; font-weight: 540; line-height: .8; letter-spacing: -.06em; }
.result-core-list { margin: 0; padding: .5rem 0 .5rem 1.5rem; }
.result-core-list div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 2.55rem; border-bottom: 1px solid rgba(221, 231, 238, .12); }
.result-core-list div:last-child { border-bottom: 0; }
.result-core-list dt { color: #aebbc4; font-size: .75rem; }
.result-core-list dd { margin: 0; color: #edf1f3; font-size: 1.125rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.result-disclaimer { grid-column: 1 / -1; max-width: 64rem; margin: 0; padding-top: 1.5rem; color: #81929f; font-size: .75rem; line-height: 1.55; }
.result-access-strip { grid-column: 1 / -1; display: grid; grid-template-columns: 10rem minmax(10rem, 15rem) 1fr auto; gap: 1.5rem; align-items: center; margin-top: .25rem; padding: 1.2rem 1.35rem; border: 1px solid rgba(225, 169, 84, .45); color: #d6dfe4; background: rgba(225, 169, 84, .08); text-decoration: none; }
.result-access-strip span { color: #e7bd73; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.result-access-strip strong { color: #f2cc89; font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.result-access-strip i { color: #adbbc5; font-size: .8125rem; font-style: normal; }
.result-access-strip b { color: #f2cc89; font-size: .75rem; white-space: nowrap; }

.result-preview { padding-block: 5.5rem; }
.result-section-heading { display: grid; grid-template-columns: minmax(13rem, .45fr) minmax(24rem, .75fr) minmax(20rem, .7fr); gap: 2.5rem; align-items: start; }
.result-section-heading h2 { margin: 0; font-size: 2.35rem; font-weight: 590; line-height: 1.06; letter-spacing: -.035em; }
.result-section-heading p { max-width: 34rem; margin: 0; color: #a8b5be; font-size: .9375rem; line-height: 1.65; }
.preview-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 3.75rem; border-block: 1px solid rgba(221, 231, 238, .18); }
.preview-card { min-height: 22rem; display: flex; flex-direction: column; padding: 2rem; border-right: 1px solid rgba(221, 231, 238, .18); }
.preview-card:last-child { border-right: 0; }
.preview-card-number { display: flex; align-items: baseline; justify-content: space-between; color: #e7bd73; }
.preview-card-number span { color: #7f919f; font-size: .6875rem; text-transform: uppercase; }
.preview-card-number strong { font-size: 4.75rem; font-weight: 520; line-height: 1; letter-spacing: -.055em; }
.preview-card h3 { margin: auto 0 0; font-size: 1.4rem; font-weight: 650; letter-spacing: -.025em; }
.preview-card p { margin: .9rem 0 0; color: #afbbc4; font-size: .9rem; line-height: 1.62; }
.preview-card a { align-self: flex-start; margin-top: 1.4rem; color: #e7bd73; font-size: .75rem; font-weight: 700; text-decoration: none; }

.full-boundary {
  display: grid;
  grid-template-columns: 1fr minmax(24rem, .65fr);
  gap: 5rem;
  padding: 3.5rem;
  border: 1px solid rgba(225, 169, 84, .48);
  background: #0c1b27;
}
.full-boundary h2 { max-width: 42rem; margin: .8rem 0 0; font-size: 2.5rem; line-height: 1.08; letter-spacing: -.035em; }
.full-boundary p { max-width: 48rem; margin: 1.25rem 0 0; color: #aebbc4; line-height: 1.65; }
.full-boundary ul { margin: 0; padding: 0; list-style: none; }
.full-boundary li { display: flex; align-items: baseline; gap: 1.25rem; padding: .8rem 0; border-bottom: 1px solid rgba(221, 231, 238, .16); color: #b9c3ca; }
.full-boundary li:first-child { border-top: 1px solid rgba(221, 231, 238, .16); }
.full-boundary li strong { min-width: 3rem; color: #f2cc89; font-size: 1.75rem; font-variant-numeric: tabular-nums; }
.full-boundary li > span { color: #bdc7ce; font-size: .9375rem; }
.full-boundary li:has(.result-unlock-action) { padding-block: 1.2rem 0; border-bottom: 0; }
.result-unlock-action { width: 100%; min-height: 3.5rem; text-decoration: none; }

.result-workspace { display: grid; grid-template-columns: 17rem minmax(0, 1fr); gap: clamp(4rem, 8vw, 8rem); padding-block: 6rem; }
.result-toc { position: sticky; top: 6.5rem; align-self: start; max-height: calc(100svh - 8rem); overflow: auto; }
.result-progress { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(221, 231, 238, .16); }
.result-progress > span { display: block; color: #81929f; font-size: .6875rem; text-transform: uppercase; letter-spacing: .07em; }
.result-progress > strong { display: block; margin-top: .45rem; color: #edf1f3; font-size: 1.125rem; }
.result-progress > i { display: block; height: 2px; margin-top: 1rem; overflow: hidden; background: rgba(221, 231, 238, .14); }
.result-progress > i b { display: block; width: 0; height: 100%; background: #e1a954; transition: width .2s ease; }
.result-toc-details summary { display: none; }
.result-toc nav { padding-top: 1.25rem; }
.toc-group + .toc-group { margin-top: 1.6rem; }
.toc-group > span { display: block; margin-bottom: .5rem; color: #71828f; font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.toc-group a { display: block; padding: .42rem 0; color: #aebbc4; font-size: .78rem; line-height: 1.4; text-decoration: none; transition: color .18s ease; }
.toc-group a:hover,
.toc-group a.is-active { color: #f2cc89; }

.report-group + .report-group { margin-top: 6rem; }
.report-group-heading { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(221, 231, 238, .2); }
.report-group-heading span { color: #e7bd73; font-size: .75rem; font-weight: 700; }
.report-group-heading h2 { max-width: 50rem; margin: .6rem 0 0; font-size: 2.75rem; line-height: 1.05; letter-spacing: -.04em; }
.report-group-heading p { max-width: 48rem; margin: 1rem 0 0; color: #96a6b1; line-height: 1.65; }
.report-entry { scroll-margin-top: 7rem; display: grid; grid-template-columns: 4.25rem minmax(0, 1fr); gap: 1.75rem; padding: 2.6rem 0; border-bottom: 1px solid rgba(221, 231, 238, .16); }
.report-entry-index { color: #e7bd73; font-size: .75rem; font-weight: 750; font-variant-numeric: tabular-nums; }
.report-entry h3 { margin: 0; font-size: 1.65rem; font-weight: 650; line-height: 1.16; letter-spacing: -.03em; }
.report-entry-summary { max-width: 48rem; margin: 1rem 0 0; color: #d8dfe3; font-size: 1.05rem; line-height: 1.7; }
.report-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 1.75rem; background: rgba(221, 231, 238, .14); }
.report-detail { padding: 1.3rem; background: #08121b; }
.report-detail span { display: block; margin-bottom: .55rem; color: #7f919f; font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.report-detail p { margin: 0; color: #b8c3ca; font-size: .875rem; line-height: 1.62; }
.report-question { max-width: 48rem; margin: 1.75rem 0 0; padding: 1.25rem 1.4rem; color: #f2cc89; background: rgba(225, 169, 84, .08); font-size: 1rem; line-height: 1.55; }
.report-data { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.report-data span { padding: .55rem .7rem; color: #cbd4d9; background: #0d1c27; font-size: .75rem; font-variant-numeric: tabular-nums; }
.report-body-copy { max-width: 48rem; margin: 1rem 0 0; color: #b8c3ca; line-height: 1.7; }
.report-list-clean { max-width: 48rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.report-list-clean li { padding: .8rem 0; border-bottom: 1px solid rgba(221, 231, 238, .13); color: #b8c3ca; line-height: 1.55; }

.locked-report { scroll-margin-top: 7rem; display: grid; grid-template-columns: minmax(18rem, .8fr) minmax(22rem, 1.2fr); gap: clamp(3rem, 7vw, 7rem); padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(225, 169, 84, .46); background: #0b1822; }
.locked-report-copy > span { color: #e7bd73; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.locked-report-copy h2 { margin: .8rem 0 0; font-size: 2.65rem; line-height: 1.06; letter-spacing: -.04em; }
.locked-report-copy p { max-width: 34rem; margin: 1rem 0 0; color: #aebbc4; line-height: 1.65; }
.locked-report-copy .primary-action { margin-top: 2rem; text-decoration: none; }
.locked-section-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(221, 231, 238, .16); }
.locked-section-list li { display: grid; grid-template-columns: 2.5rem minmax(0, 1fr) auto; gap: 1rem; align-items: center; min-height: 4.5rem; border-bottom: 1px solid rgba(221, 231, 238, .16); color: #bdc7ce; }
.locked-section-list span { color: #e7bd73; font-size: .75rem; font-weight: 700; }
.locked-section-list strong { font-size: .9375rem; line-height: 1.4; }
.locked-section-list i { color: #81929f; font-size: .6875rem; font-style: normal; text-transform: uppercase; letter-spacing: .06em; }

.checkout-page { min-height: 100svh; background: radial-gradient(circle at 85% 0, rgba(53, 116, 160, .18), transparent 28rem), #08121b; }
.checkout-topbar { width: min(84rem, calc(100% - 4rem)); min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-inline: auto; border-bottom: 1px solid rgba(221, 231, 238, .16); }
.checkout-topbar > span { color: #92a1aa; font-size: .75rem; }
.checkout-shell { width: min(70rem, calc(100% - 4rem)); display: grid; grid-template-columns: minmax(0, .9fr) minmax(23rem, .7fr); gap: clamp(4rem, 10vw, 10rem); align-items: start; margin: 0 auto; padding-block: clamp(4rem, 10vw, 9rem); }
.checkout-copy > p:first-child { margin: 0; color: #e7bd73; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.checkout-copy h1 { max-width: 38rem; margin: 1rem 0 0; font-size: clamp(3rem, 5vw, 4.75rem); line-height: .98; letter-spacing: -.04em; }
.checkout-profile { display: grid; gap: .3rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(221, 231, 238, .16); }
.checkout-profile span, .checkout-profile small { color: #92a1aa; font-size: .75rem; }
.checkout-profile strong { color: #f2cc89; font-size: 1.35rem; letter-spacing: -.02em; }
.checkout-note { max-width: 32rem; margin: 2rem 0 0; color: #aebbc4; line-height: 1.65; }
.checkout-order { padding: 2rem; border: 1px solid rgba(225, 169, 84, .45); background: #0c1b27; }
.checkout-order-head, .checkout-total { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.checkout-order-head span { color: #9aa9b3; font-size: .75rem; }
.checkout-order-head strong, .checkout-total strong { color: #f2cc89; font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.checkout-order h2 { margin: 1.75rem 0 1.25rem; padding-top: 1.5rem; border-top: 1px solid rgba(221, 231, 238, .16); font-size: 1.5rem; line-height: 1.15; letter-spacing: -.025em; }
.checkout-order ul { margin: 0; padding: 0; list-style: none; }
.checkout-order li { display: grid; grid-template-columns: 2rem 1fr; gap: .75rem; padding: .85rem 0; border-bottom: 1px solid rgba(221, 231, 238, .12); color: #bdc7ce; font-size: .875rem; line-height: 1.45; }
.checkout-order li span { color: #e7bd73; font-size: .75rem; font-weight: 700; }
.checkout-total { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(221, 231, 238, .16); color: #edf1f3; font-size: 1rem; }
.checkout-pay { width: 100%; margin-top: 1.75rem; text-decoration: none; }
.checkout-pay:disabled { cursor: not-allowed; opacity: .46; transform: none; }
.checkout-status { min-height: 1.25rem; margin: .8rem 0 0; color: #f2cc89; font-size: .8125rem; line-height: 1.45; }
.checkout-legal { margin: 1.25rem 0 0; color: #7f919f; font-size: .6875rem; line-height: 1.55; }

.result-footer { padding: 2.5rem 0 4rem; border-top: 1px solid rgba(221, 231, 238, .18); color: #81929f; font-size: .75rem; line-height: 1.55; }
.result-footer > p { max-width: 60rem; margin: 0; }
.result-footer > div { display: flex; justify-content: space-between; gap: 2rem; margin-top: 1.5rem; }

@keyframes settle {
  from { opacity: .25; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes review-scroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 40px, 680px); }
  .main-nav { display: none; }
  .hero { grid-template-rows: 74px 1fr auto; }
  .hero-art { background-position: 63% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, #071019 0%, rgba(7, 16, 25, .96) 55%, rgba(7, 16, 25, .35) 100%),
      linear-gradient(0deg, rgba(7, 16, 25, .94) 0%, transparent 31%);
  }
  .hero-content { grid-template-columns: 1fr; padding-block: 76px 62px; }
  .hero-copy { max-width: 620px; }
  .art-caption { display: none; }
  .about,
  .inside,
  .process,
  .boundaries { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-copy { padding-top: 0; }
  .reason-cards { grid-template-columns: 1fr; max-width: 38rem; }
  .reason-card { display: grid; grid-template-columns: 13rem 1fr; grid-template-rows: auto 1fr; column-gap: 1.5rem; }
  .reason-card figure { grid-row: 1 / 3; margin: 0; }
  .inside-art { min-height: 42rem; width: min(100%, 38rem); margin-left: 0; justify-self: center; }
  .inside-copy { order: -1; }
  .report-heading { grid-template-columns: 13rem 1fr; gap: 3rem; }
  .report-number { font-size: 12rem; }
  .report-list { columns: 2; }
  .process-heading { position: static; }
  .site-footer { grid-template-columns: 1fr; gap: 1.4rem; padding-block: 2.5rem; }
  .footer-links { flex-wrap: wrap; }
  .site-footer > p { margin: 0; }
  .result-shell { width: min(100% - 2.5rem, 46rem); }
  .result-intro { grid-template-columns: 1fr; gap: 3rem; padding-block: 4.5rem 3.5rem; }
  .result-access-strip { grid-template-columns: 1fr auto; gap: .75rem 1.25rem; }
  .result-access-strip i { grid-column: 1 / -1; }
  .result-heading h1 { font-size: 3.5rem; }
  .result-core { max-width: 38rem; }
  .result-section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .preview-list { grid-template-columns: 1fr; }
  .preview-card { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(221, 231, 238, .18); }
  .preview-card:last-child { border-bottom: 0; }
  .preview-card h3 { margin-top: 3rem; }
  .full-boundary { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
  .locked-report { grid-template-columns: 1fr; gap: 2.5rem; }
  .checkout-shell { grid-template-columns: 1fr; max-width: 44rem; gap: 3.5rem; }
  .result-workspace { grid-template-columns: 1fr; gap: 3rem; }
  .result-toc { position: static; max-height: none; }
  .result-toc-details summary { display: flex; align-items: center; justify-content: space-between; min-height: 3.25rem; border-bottom: 1px solid rgba(221, 231, 238, .16); color: #e7bd73; cursor: pointer; font-size: .8125rem; font-weight: 700; list-style: none; }
  .result-toc-details summary::-webkit-details-marker { display: none; }
  .result-toc-details summary::after { content: "+"; font-size: 1.25rem; font-weight: 400; }
  .result-toc-details[open] summary::after { content: "−"; }
  .result-toc nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 2rem; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 32px); }
  .hero { min-height: 100svh; }
  .hero-art { background-position: 66% center; opacity: .72; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 16, 25, .98) 0%, rgba(7, 16, 25, .89) 70%, rgba(7, 16, 25, .52) 100%),
      linear-gradient(0deg, #071019 0%, transparent 44%);
  }
  .brand-symbol { width: 32px; height: 32px; }
  .header-actions { gap: 11px; }
  .login { min-height: 38px; padding-inline: 12px; }
  .hero-content { align-items: start; padding-block: 55px 38px; }
  h1 { margin-top: 15px; font-size: clamp(43px, 12.6vw, 58px); line-height: .98; }
  .lede { margin-top: 22px; font-size: 15px; line-height: 1.52; }
  .hero-action { align-items: flex-start; flex-direction: column; gap: 12px; margin-top: 27px; }
  .primary-action { width: 100%; }
  .hero-footer { min-height: 78px; align-items: flex-start; padding-block: 15px; }
  .hero-footer a { display: none; }
  .section { padding-block: 5.5rem; }
  .section h2 { font-size: clamp(2.65rem, 12vw, 3.55rem); }
  .about-copy .lead-copy { font-size: 1.125rem; }
  .reason-cards { display: grid; gap: 2.25rem; margin-top: 3.5rem; }
  .reason-card { display: block; }
  .reason-card figure { margin-bottom: 1.4rem; }
  .inside-art { min-height: 34rem; }
  .outcome-list { margin-top: 2.5rem; }
  .outcome-list article { grid-template-columns: 2rem 1fr; }
  .report-heading { grid-template-columns: 1fr; gap: 2rem; }
  .report-number { font-size: 10rem; }
  .report-list { columns: 1; }
  .report-body { margin-top: 3.5rem; }
  .report-action { align-items: stretch; flex-direction: column; gap: 1.5rem; }
  .report-action .primary-action { min-width: 0; }
  .steps li { grid-template-columns: 4.25rem 1fr; gap: 1rem; }
  .steps > li > span { font-size: 2.9rem; }
  .review-marquee { margin-top: 3.5rem; }
  .review-marquee-reverse { margin-top: 0; }
  .review-track blockquote { width: 86vw; min-height: 21rem; }
  .boundaries { gap: 3rem; }
  .final-cta { min-height: 38rem; }
  .final-content p { font-size: 1rem; }
  .site-footer { width: calc(100% - 32px); }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .dialog-panel { padding: 31px 20px 24px; }
  .result-topbar { min-height: 4.25rem; padding-inline: 1rem; }
  .result-brand .brand-name { display: none; }
  .result-topbar-meta { gap: .75rem; }
  .result-topbar-meta > span { display: none; }
  .result-shell { width: calc(100% - 2rem); }
  .result-intro { padding-block: 3.75rem 3rem; }
  .result-heading h1 { font-size: 2.75rem; }
  .result-profile-meta { display: grid; gap: .55rem; }
  .result-access-strip { grid-template-columns: 1fr; gap: .5rem; margin-top: .75rem; padding: 1rem; }
  .result-access-strip i { grid-column: auto; }
  .result-profile-meta span + span::before { display: none; }
  .result-core { grid-template-columns: 8.5rem 1fr; }
  .result-core-main { padding-right: 1rem; }
  .result-core-main strong { font-size: 4.75rem; }
  .result-core-list { padding-left: 1rem; }
  .result-core-list dt { max-width: 7.5rem; }
  .result-preview { padding-block: 4rem; }
  .result-section-heading h2,
  .full-boundary h2 { font-size: 2rem; }
  .preview-card { padding: 1.5rem 0; }
  .full-boundary { margin-inline: -1rem; padding: 2rem 1rem; border-inline: 0; }
  .locked-report { margin-inline: -1rem; padding: 2rem 1rem; border-inline: 0; }
  .locked-report-copy h2 { font-size: 2.25rem; }
  .locked-section-list li { grid-template-columns: 2rem minmax(0, 1fr); gap: .65rem; }
  .locked-section-list i { grid-column: 2; margin-top: -.7rem; padding-bottom: .7rem; }
  .checkout-topbar { width: calc(100% - 2rem); min-height: 4.5rem; }
  .checkout-shell { width: calc(100% - 2rem); padding-block: 3.75rem; }
  .checkout-copy h1 { font-size: 2.8rem; }
  .checkout-order { margin-inline: -1rem; padding: 1.5rem 1rem; border-inline: 0; }
  .result-workspace { padding-block: 4.5rem; }
  .result-toc nav { grid-template-columns: 1fr; }
  .report-group + .report-group { margin-top: 4.5rem; }
  .report-group-heading h2 { font-size: 2.25rem; }
  .report-entry { grid-template-columns: 2.25rem minmax(0, 1fr); gap: .75rem; padding-block: 2.25rem; }
  .report-entry h3 { font-size: 1.4rem; }
  .report-entry-summary { font-size: 1rem; }
  .report-detail-grid { grid-template-columns: 1fr; }
  .result-footer > div { align-items: flex-start; flex-direction: column; }
}

@media (max-height: 700px) and (min-width: 901px) {
  .hero-content { padding-block: 40px; }
  h1 { font-size: clamp(50px, 4.6vw, 69px); }
  .lede { margin-top: 20px; }
  .hero-action { margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .review-marquee { overflow-x: auto; }
  .review-track { animation: none; }
}
