@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/geist-sans@latest/latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/geist-sans@latest/latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/geist-sans@latest/latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/geist-sans@latest/latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/geist-sans@latest/latin-800-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/geist-mono@latest/latin-600-normal.woff2") format("woff2");
}

:root {
  --blue-950: #041a31;
  --blue-900: #062346;
  --blue-800: #082f57;
  --blue-650: #1e5f8a;
  --blue-100: #e8f2f7;
  --orange: #c94f00;
  --orange-deep: #8f3400;
  --ink: #071d36;
  --muted: #66758a;
  --surface: #f7fbfd;
  --white: #ffffff;
  --line: rgba(8, 47, 87, 0.16);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font-heading: "Geist Sans", Aptos, "Segoe UI", sans-serif;
  --font-body: "Geist Sans", Aptos, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(30, 95, 138, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 34%, rgba(255, 106, 0, 0.08), transparent 25rem),
    linear-gradient(180deg, #eef6f9 0%, #fbfdfe 32%, #edf6fa 62%, #f9fbfc 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

main > section[id] {
  scroll-margin-top: 116px;
}

img {
  max-width: 100%;
}

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

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

:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.55);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 700;
  transition: transform 260ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: clamp(14px, 2.5vw, 26px);
  left: 50%;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(5, 25, 46, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-pill img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-pill span {
  display: grid;
  gap: 2px;
}

.brand-pill strong {
  color: var(--white);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1;
}

.brand-pill small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  padding: 12px 2px;
  transition: color 420ms var(--ease), transform 420ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 420ms var(--ease), opacity 420ms var(--ease);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100dvh;
  padding: clamp(110px, 9vw, 140px) 0 clamp(58px, 7vw, 86px);
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-bg img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.hero-scrim {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 106, 0, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(4, 20, 37, 0.96) 0%, rgba(5, 31, 57, 0.82) 46%, rgba(4, 20, 37, 0.5) 100%),
    linear-gradient(180deg, rgba(4, 20, 37, 0.24), rgba(4, 20, 37, 0.82));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(38px, 5.4vw, 92px);
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 106, 0, 0.42);
  border-radius: 999px;
  background: rgba(8, 47, 87, 0.56);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  max-width: 100%;
  text-transform: uppercase;
  white-space: normal;
}

.section .eyebrow,
.offer-section .eyebrow,
.faq-section .eyebrow {
  background: rgba(8, 47, 87, 0.08);
  color: var(--blue-800);
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(38px, 4.25vw, 60px);
  font-weight: 700;
  letter-spacing: -0.026em;
  line-height: 1.05;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-900);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.026em;
  line-height: 1.08;
}

h3 {
  color: var(--blue-900);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.hero-subtitle {
  max-width: 630px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.34vw, 19px);
  line-height: 1.6;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 680px);
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-proof-strip span {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.hero-proof-strip strong {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.hero-actions,
.hero-panel-core,
.offer-core {
  display: grid;
  gap: 18px;
}

.hero-actions {
  grid-template-columns: max-content max-content;
  align-items: center;
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 10px 8px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 560ms var(--ease),
    box-shadow 560ms var(--ease),
    background 560ms var(--ease);
}

.button-primary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 22px 48px rgba(255, 106, 0, 0.28);
}

.button-primary span[aria-hidden] {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 560ms var(--ease), background 560ms var(--ease);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 30px 64px rgba(255, 106, 0, 0.34);
}

.button-primary:hover span[aria-hidden],
.button-primary:focus-visible span[aria-hidden] {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.26);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.button-large {
  width: fit-content;
  min-height: 62px;
  padding-left: 28px;
}

.responsible-note {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.shell {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.2);
}

.hero-panel-core,
.cost-core,
.authority-core,
.offer-core {
  border-radius: 20px;
  background: rgba(5, 25, 46, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: clamp(22px, 3vw, 34px);
}

.vsl-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  width: 100%;
  min-height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.06);
  color: var(--white);
  text-align: left;
  cursor: default;
  transition: transform 560ms var(--ease), border-color 560ms var(--ease);
}

.vsl-card:hover,
.vsl-card:focus-visible,
.vsl-card.is-playing {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.54);
}

.play-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: auto 0 auto 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 20px 44px rgba(255, 106, 0, 0.28);
}

.play-orb::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
  transform: translateX(2px);
}

.diagnostic-orb {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.diagnostic-orb::before {
  display: none;
}

.vsl-card strong,
.vsl-card small {
  display: block;
}

.vsl-card strong {
  margin-top: 30px;
  font-size: 17px;
}

.vsl-card small {
  max-width: 310px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.proof-grid,
.decision-grid {
  display: grid;
  gap: 10px;
}

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

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

.proof-grid div,
.decision-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.proof-grid strong,
.decision-grid strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.proof-grid strong {
  font-family: var(--font-mono);
  font-size: 26px;
  letter-spacing: -0.035em;
}

.decision-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.proof-grid span,
.research-line {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.research-line {
  margin: 4px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--orange);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px, 6.2vw, 82px) 0;
}

.section-grid,
.authority-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 132px;
}

.section-copy p,
.request-copy p,
.method-head p,
.clarity-heading p,
.offer-heading p,
.faq-copy p,
.authority-copy p,
.cost-layout p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(15.5px, 1.24vw, 18px);
  line-height: 1.65;
}

.module-stack {
  display: grid;
  gap: 16px;
}

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid rgba(8, 47, 87, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 4%, rgba(255, 106, 0, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 251, 0.8));
  box-shadow: 0 18px 48px rgba(8, 47, 87, 0.08);
  transition: transform 700ms var(--ease), border-color 700ms var(--ease);
}

.module-card:hover,
.module-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 0, 0.3);
}

.module-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--blue-650);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 600;
}

.module-featured span {
  background: var(--orange);
}

.module-card small {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-card .quote {
  color: var(--blue-900);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 700;
  line-height: 1.4;
}

.module-card p:not(.quote) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.cost-section {
  width: min(1240px, calc(100% - 32px));
}

.cost-shell {
  background: linear-gradient(135deg, rgba(8, 47, 87, 0.16), rgba(255, 106, 0, 0.1));
}

.cost-core {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 106, 0, 0.16), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
}

.cost-core h2,
.cost-core .eyebrow,
.cost-core p {
  color: var(--white);
}

.cost-core .eyebrow {
  background: rgba(255, 255, 255, 0.08);
}

.cost-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(26px, 4.4vw, 58px);
  align-items: center;
}

.cost-layout p {
  color: rgba(255, 255, 255, 0.68);
}

.money-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.money-card span,
.money-card small,
.price-row span,
.offer-label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.money-card strong {
  display: block;
  margin: 10px 0;
  font-family: var(--font-mono);
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
  white-space: nowrap;
}

.money-card small {
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.method-head,
.offer-heading,
.clarity-heading {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.clarity-section {
  position: relative;
  width: min(1220px, calc(100% - 40px));
}

.clarity-section::before {
  content: "";
  position: absolute;
  inset: clamp(38px, 6vw, 80px) -4vw auto auto;
  z-index: -1;
  width: min(520px, 46vw);
  height: min(520px, 46vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.1), transparent 64%);
  filter: blur(6px);
}

.clarity-heading {
  margin-left: auto;
  margin-right: 0;
}

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

.diagnostic-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.diagnostic-grid .objection-card {
  grid-column: span 2;
}

.diagnostic-grid .objection-card-wide {
  grid-column: span 4;
}

.objection-card {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(8, 47, 87, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 246, 250, 0.72));
  box-shadow: 0 18px 54px rgba(8, 47, 87, 0.08);
}

.objection-card.accent {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 106, 0, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(5, 25, 46, 0.94), rgba(8, 47, 87, 0.88));
}

.objection-card.accent h3,
.objection-card.accent p {
  color: var(--white);
}

.objection-card.accent p {
  color: rgba(255, 255, 255, 0.68);
}

.objection-card span {
  display: inline-flex;
  margin-bottom: clamp(30px, 5vw, 64px);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.objection-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.clarity-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8, 47, 87, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(8, 47, 87, 0.07);
}

.clarity-close strong {
  max-width: 790px;
  color: var(--blue-900);
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.24;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.request-copy {
  max-width: 500px;
}

.request-board {
  background: linear-gradient(135deg, rgba(8, 47, 87, 0.16), rgba(255, 255, 255, 0.7));
}

.request-board-core {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 12%, rgba(201, 79, 0, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 251, 0.86));
  padding: clamp(18px, 2.8vw, 30px);
}

.request-board-core article {
  min-height: 174px;
  padding: 20px;
  border: 1px solid rgba(8, 47, 87, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.request-board-core span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.request-board-core strong {
  display: block;
  color: var(--blue-900);
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.request-board-core p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.chc-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.chc-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(8, 47, 87, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(8, 47, 87, 0.07);
}

.chc-card.wide {
  grid-column: span 2;
}

.chc-card.image-card {
  grid-row: span 2;
  min-height: 556px;
  padding: 0;
  overflow: hidden;
  background: var(--blue-900);
}

.chc-card.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.chc-card span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--orange);
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.chc-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.method-journey {
  background: linear-gradient(135deg, rgba(8, 47, 87, 0.16), rgba(255, 255, 255, 0.62));
}

.method-journey-core {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(201, 79, 0, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #edf6fa);
  padding: clamp(18px, 3vw, 34px);
}

.document-preview {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--blue-900);
}

.document-preview img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.document-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 26, 49, 0.04), rgba(4, 26, 49, 0.66));
}

.document-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(4, 26, 49, 0.78);
  color: var(--white);
}

.document-note span,
.method-steps span {
  display: block;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.document-note strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.document-note small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.method-steps {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(8, 47, 87, 0.18), transparent);
}

.method-steps li {
  position: relative;
  padding: 18px 18px 18px 66px;
  border: 1px solid rgba(8, 47, 87, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.method-steps li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 24px;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 4px solid #eff7fb;
  border-radius: 50%;
  background: var(--orange);
}

.method-steps strong {
  display: block;
  margin-top: 6px;
  color: var(--blue-900);
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.method-steps p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.56;
}

.authority-section {
  align-items: center;
}

.authority-media {
  background: linear-gradient(135deg, rgba(8, 47, 87, 0.14), rgba(255, 255, 255, 0.55));
}

.authority-core {
  padding: 0;
  overflow: hidden;
  background: var(--blue-900);
}

.authority-core img {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.authority-copy blockquote {
  margin: 0 0 22px;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--orange);
  color: var(--blue-900);
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.authority-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.authority-stats span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 700;
}

.offer-section {
  width: min(1120px, calc(100% - 40px));
  text-align: center;
}

.offer-heading {
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  text-align: left;
  background: linear-gradient(135deg, rgba(8, 47, 87, 0.18), rgba(255, 106, 0, 0.1));
}

.offer-core {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 106, 0, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #eff7fb);
}

.offer-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.offer-label {
  color: var(--blue-650);
}

.approval-badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.13);
  border: 1px solid rgba(255, 106, 0, 0.26);
  color: var(--orange-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.approval-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  color: var(--white);
  background: currentColor;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: grid;
  gap: 6px;
  padding: 13px 15px;
  border: 1px solid rgba(8, 47, 87, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-900);
  font-size: 15px;
  font-weight: 600;
}

.offer-list strong {
  display: block;
}

.offer-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.42;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.kit-mockup {
  position: relative;
  min-height: 330px;
}

.kit-sheet {
  position: absolute;
  width: min(84%, 420px);
  min-height: 196px;
  padding: 24px;
  border: 1px solid rgba(8, 47, 87, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 250, 0.88));
  box-shadow: 0 22px 60px rgba(8, 47, 87, 0.1);
}

.kit-sheet span {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kit-sheet strong {
  display: block;
  color: var(--blue-900);
  font-size: clamp(24px, 3vw, 35px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.kit-sheet small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.sheet-main {
  z-index: 3;
  left: 0;
  top: 38px;
}

.sheet-mid {
  z-index: 2;
  right: 22px;
  top: 86px;
  transform: rotate(2.5deg);
}

.sheet-back {
  z-index: 1;
  right: 0;
  top: 18px;
  transform: rotate(-3deg);
  opacity: 0.76;
}

.purchase-panel {
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(8, 47, 87, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.price-row {
  margin-bottom: 28px;
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  display: block;
  color: var(--blue-900);
  font-family: var(--font-heading);
  font-size: clamp(48px, 7.6vw, 78px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.price-row small,
.guarantee,
.checkout-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.guarantee {
  margin: 20px 0 0;
  font-weight: 700;
}

.checkout-note {
  margin: 10px 0 0;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 132px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid rgba(8, 47, 87, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(8, 47, 87, 0.07);
}

.faq-item {
  border-bottom: 1px solid rgba(8, 47, 87, 0.1);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 20px 24px;
  color: var(--blue-900);
  cursor: pointer;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--blue-650);
  border-bottom: 2px solid var(--blue-650);
  transform: rotate(45deg);
  transition: transform 360ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  overflow: hidden;
  padding: clamp(50px, 7vw, 82px) max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 106, 0, 0.14), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.final-cta img {
  position: relative;
  z-index: 1;
  width: min(380px, 80vw);
}

.final-cta > div:not(.final-watermark) {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.final-watermark {
  position: absolute;
  right: -3vw;
  bottom: -0.2em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  font-size: clamp(130px, 21vw, 320px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.legal-footer {
  padding: 18px 24px;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.legal-footer p {
  max-width: 980px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.55;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(4px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease),
    filter 760ms var(--ease);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(5, 25, 46, 0.94);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 360ms var(--ease), transform 360ms var(--ease), visibility 360ms var(--ease);
  }

  .site-header.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-inner,
  .section-grid,
  .request-section,
  .objection-grid,
  .authority-section,
  .faq-section,
  .final-cta,
  .cost-layout,
  .method-journey-core,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .diagnostic-grid .objection-card,
  .diagnostic-grid .objection-card-wide {
    grid-column: auto;
  }

  .section-copy,
  .faq-copy {
    position: static;
  }

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

  .button {
    width: 100%;
  }

  .hero-panel {
    max-width: 560px;
  }

  .chc-map {
    grid-template-columns: 1fr;
  }

  .chc-card.wide,
  .chc-card.image-card {
    grid-column: auto;
    grid-row: auto;
  }

  .chc-card.image-card {
    min-height: 360px;
  }

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

  .document-preview,
  .document-preview img {
    min-height: 380px;
  }

  .kit-mockup {
    min-height: 280px;
  }

  .kit-sheet {
    width: 82%;
    min-height: 170px;
  }

  .clarity-heading {
    margin-left: 0;
  }

  .clarity-close {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 22px);
    min-height: 68px;
    padding: 8px;
  }

  .brand-pill strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-pill img {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-inner,
  .section,
  .cost-section,
  .offer-section {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy {
    width: min(100%, 360px);
  }

  .hero-subtitle,
  .responsible-note,
  .hero-actions {
    max-width: 360px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(34px, 10.2vw, 42px);
    letter-spacing: -0.026em;
    line-height: 1.08;
  }

  .hero .eyebrow {
    min-height: 30px;
    margin-bottom: 16px;
    padding: 7px 12px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  h2 {
    font-size: clamp(29px, 9vw, 36px);
  }

  .module-card,
  .objection-card,
  .chc-card,
  .request-board-core,
  .method-journey-core,
  .offer-core,
  .cost-core {
    border-radius: 20px;
    padding: 22px;
  }

  .request-board-core {
    grid-template-columns: 1fr;
  }

  .method-steps li {
    padding: 18px 16px 18px 54px;
  }

  .method-steps::before {
    left: 18px;
  }

  .method-steps li::before {
    left: 11px;
  }

  .sheet-mid,
  .sheet-back {
    transform: none;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .objection-card {
    min-height: auto;
  }

  .objection-card span {
    margin-bottom: 36px;
  }

  .offer-top {
    display: grid;
  }

  .price-row strong {
    font-size: clamp(44px, 14vw, 62px);
  }

  .faq-item summary {
    min-height: 68px;
    padding: 20px;
    font-size: 17px;
  }

  .faq-item p {
    padding: 0 20px 22px;
  }

  .final-cta {
    padding: 52px 20px;
  }

  .final-watermark {
    right: 0;
    font-size: clamp(100px, 28vw, 170px);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
