:root {
  --black: #0b0b0b;
  --black-soft: #141414;
  --white: #ffffff;
  --off-white: #f6f6f3;
  --orange: #ff6500;
  --text: #0b0b0b;
  --muted: #717171;
  --muted-light: #a3a3a3;
  --border: #e8e8e5;
  --border-dark: rgba(255, 255, 255, 0.1);
  --container: 1200px;
  --gutter: 20px;
  --radius: 16px;
  --radius-button: 11px;
  --section-y: 76px;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  color-scheme: light;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, button, a, summary { font-family: var(--font); }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--black); background: var(--orange); }

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--border-dark);
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--white);
  text-decoration: none;
}

.brand__logo { display: block; width: 148px; height: auto; }

.brand__monogram {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 101, 0, 0.75);
  border-radius: 3px;
  color: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  transform: rotate(45deg);
}

.brand__monogram::after {
  content: "RX";
  color: var(--orange);
  transform: rotate(-45deg);
}

.brand__wordmark { display: grid; gap: 1px; line-height: 1; }
.brand__wordmark strong { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em; }
.brand__wordmark small { color: var(--muted-light); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.26em; }
.site-nav { display: none; }

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-button);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease;
}

.header-action:hover { border-color: var(--orange); background: rgba(255, 101, 0, 0.08); }
.header-action b { color: var(--orange); font-size: 0.95rem; }
.header-action__desktop { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: 32px 32px;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 72px);
  display: grid;
  align-content: center;
  gap: 52px;
  padding-block: 70px 66px;
}

.hero__content { max-width: 760px; }

.edition-label, .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.edition-label > span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.15rem, 13vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em { color: var(--orange); font-style: normal; }

.hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c7c7c7;
  font-size: 1rem;
  line-height: 1.75;
}

.hero__actions {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary, .button--offer, .button--compact { color: var(--black); background: var(--orange); }
.button--primary:hover, .button--offer:hover, .button--compact:hover { background: #ff7a24; }

.hero__secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-button);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 220ms ease;
}

.hero__secondary:hover { border-color: var(--orange); }
.hero__secondary span { color: var(--orange); }
.hero__note { margin: 14px 0 0; color: #777; font-size: 0.75rem; }

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.hero__proof > div { display: grid; gap: 4px; padding-inline: 12px; border-right: 1px solid var(--border-dark); }
.hero__proof > div:first-child { padding-left: 0; }
.hero__proof > div:last-child { padding-right: 0; border-right: 0; }
.hero__proof small { color: #6f6f6f; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.hero__proof strong { color: var(--white); font-size: 0.76rem; font-weight: 700; }

.hero__visual {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero__scan {
  position: relative;
  width: min(78vw, 330px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.hero__scan::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.hero__scan-ring { position: absolute; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; }
.hero__scan-ring--one { inset: 12%; }
.hero__scan-ring--two { inset: 29%; }
.hero__scan-ring--three { inset: 44%; border-color: var(--orange); }
.hero__scan-axis { position: absolute; background: rgba(255, 255, 255, 0.08); }
.hero__scan-axis--x { left: 0; right: 0; top: 50%; height: 1px; }
.hero__scan-axis--y { top: 0; bottom: 0; left: 50%; width: 1px; }
.hero__scan-sweep { position: absolute; left: 7%; right: 7%; top: 37%; height: 1px; background: var(--orange); animation: scan 4.6s ease-in-out infinite; }
.hero__scan-point { position: absolute; top: 25%; right: 22%; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,101,0,0.1); }
.hero__scan small { position: absolute; bottom: 28%; color: #696969; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.15em; }
.hero__scan strong { color: var(--white); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.04em; }
.hero__scan-mark { width: 86px; height: 86px; object-fit: contain; }
.hero__signature { position: absolute; right: 0; bottom: 0; display: grid; gap: 2px; text-align: right; }
.hero__signature span { color: var(--orange); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; }
.hero__signature strong { color: #7c7c7c; font-size: 0.68rem; font-weight: 500; }

@keyframes scan {
  0%, 100% { transform: translateY(-72px); opacity: 0.35; }
  50% { transform: translateY(72px); opacity: 1; }
}

.trust-strip { color: var(--text); background: var(--white); border-bottom: 1px solid var(--border); }
.trust-strip__grid { display: grid; grid-template-columns: 1fr 1fr; }
.trust-strip span {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 10px;
  border-bottom: 1px solid var(--border);
  color: #3d3d3d;
  font-size: 0.73rem;
  font-weight: 600;
}
.trust-strip span:nth-last-child(-n + 2) { border-bottom: 0; }
.trust-strip span::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); }

.section { padding-block: var(--section-y); }
.section--vsl,
.section--report,
.section--process,
.section--delivery,
.section--faq {
  position: relative;
  isolation: isolate;
}

.section--vsl::before,
.section--report::before,
.section--process::before,
.section--delivery::before,
.section--faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.section--vsl::before,
.section--report::before,
.section--delivery::before { background: var(--off-white); }

.section--process::before,
.section--faq::before { background: var(--white); }

.section-heading { max-width: 800px; margin-bottom: 42px; }
.section h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 9vw, 4rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.04;
}
.section h3 { margin: 0; font-size: 1.15rem; font-weight: 700; letter-spacing: -0.025em; line-height: 1.25; }
.section p { color: var(--muted); }
.kicker { margin-bottom: 18px; }
.kicker--light { color: var(--orange); }

.section--vsl { color: var(--text); background: var(--off-white); }
.section-heading--vsl { max-width: 880px; }
.vsl-frame {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #232323;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.13);
}
.vsl-frame video { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.vsl-sound-gate {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 28px;
  color: var(--white);
  border: 0;
  background: rgba(11, 11, 11, 0.46);
  cursor: pointer;
  text-align: center;
  transition: background 180ms ease;
}
.vsl-sound-gate:hover { background: rgba(11, 11, 11, 0.36); }
.vsl-sound-gate:focus-visible { outline-offset: -6px; }
.vsl-sound-gate[hidden] { display: none; }
.vsl-sound-gate::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(520px, calc(100% - 40px));
  height: min(250px, calc(100% - 32px));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: rgba(11, 11, 11, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}
.vsl-sound-gate > * { position: relative; z-index: 1; }
.vsl-sound-gate__eyebrow {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.vsl-sound-gate__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
}
.vsl-sound-gate__icon svg { width: 100%; height: 100%; fill: currentColor; }
.vsl-sound-gate__icon svg path:not(:first-child) { fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 4; }
.vsl-sound-gate__icon .vsl-sound-gate__slash { stroke: var(--orange); stroke-width: 6; }
.vsl-sound-gate strong {
  max-width: 430px;
  font-size: clamp(1.1rem, 3.2vw, 1.7rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.vsl-frame.is-waiting .vsl-sound-gate__slash { display: none; }
.transcript { max-width: 1000px; margin: 18px auto 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.transcript summary { position: relative; padding: 20px 40px 20px 0; color: var(--text); font-size: 0.9rem; font-weight: 700; cursor: pointer; list-style: none; }
.transcript summary::-webkit-details-marker { display: none; }
.transcript summary::after { content: "+"; position: absolute; right: 4px; color: var(--orange); font-size: 1.2rem; }
.transcript[open] summary::after { content: "−"; }
.transcript__body { max-width: 760px; padding: 0 0 20px; }
.transcript__body p { font-size: 0.95rem; line-height: 1.8; }
.vsl-statement { max-width: 850px; margin: 56px auto 0; color: var(--text) !important; font-size: clamp(1.7rem, 5vw, 2.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.2; text-align: center; }
.center-cta { margin-top: 22px; text-align: center; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: 0.8rem; font-weight: 700; text-decoration: none; }
.text-link span { color: var(--orange); }

.video-offer {
  position: relative;
  padding: 0 0 76px;
  color: var(--white);
  background: var(--off-white);
}
.video-offer__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 101, 0, 0.38);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 101, 0, 0.15), transparent 34%),
    var(--black);
  box-shadow: 0 28px 72px rgba(11, 11, 11, 0.18);
}
.video-offer__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--orange);
}
.video-offer__copy,
.video-offer__price { padding: 30px 24px; }
.video-offer__copy { border-bottom: 1px solid var(--border-dark); }
.video-offer__eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.video-offer h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2rem, 9vw, 3.35rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.04;
}
.video-offer__copy > p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #a3a3a3;
  font-size: 0.95rem;
  line-height: 1.75;
}
.video-offer__proof {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.video-offer__proof span {
  position: relative;
  padding-left: 19px;
  color: #d8d8d8;
  font-size: 0.78rem;
  font-weight: 650;
}
.video-offer__proof span::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 1px;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid var(--orange);
  border-left: 1.5px solid var(--orange);
  transform: rotate(-45deg);
}
.video-offer__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-offer__price > p {
  margin: 0;
  color: #898989;
  font-size: 0.8rem;
}
.video-offer__price s { color: #b0b0b0; }
.video-offer__value {
  display: flex;
  align-items: flex-end;
  margin: 9px 0 25px;
  line-height: 0.82;
}
.video-offer__value small {
  margin: 0 8px 8px 0;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
}
.video-offer__value strong {
  color: var(--white);
  font-size: clamp(5rem, 24vw, 7rem);
  font-weight: 750;
  letter-spacing: -0.09em;
}
.video-offer__value em {
  margin: 0 0 7px 11px;
  color: #858585;
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.2;
}
.video-offer__price > small {
  margin-top: 14px;
  color: #696969;
  font-size: 0.68rem;
  line-height: 1.6;
}

.section--insight { color: var(--text); background: var(--white); }
.insight-grid { display: grid; gap: 48px; }
.section-index { display: none; }
.insight-copy { max-width: 660px; }
.insight-copy > p:last-child { max-width: 620px; margin: 24px 0 0; font-size: 1rem; line-height: 1.8; }
.insight-list { border-top: 1px solid var(--border); }
.insight-list article { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding-block: 24px; border-bottom: 1px solid var(--border); }
.insight-list article > span { color: var(--orange); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; }
.insight-list strong { color: var(--text); font-size: 1rem; font-weight: 700; }
.insight-list p { margin: 7px 0 0; font-size: 0.92rem; line-height: 1.7; }

.section--report { display: grid; gap: 48px; color: var(--text); background: var(--off-white); }
.report-copy { align-self: center; }
.report-copy > p:not(.kicker) { max-width: 620px; font-size: 1rem; line-height: 1.8; }
.clean-list { display: grid; gap: 13px; padding: 0; margin: 28px 0 0; list-style: none; }
.clean-list li { position: relative; padding-left: 25px; color: #343434; font-size: 0.9rem; font-weight: 600; }
.clean-list li::before { content: ""; position: absolute; left: 1px; top: 0.58em; width: 8px; height: 4px; border-left: 1.5px solid var(--orange); border-bottom: 1.5px solid var(--orange); transform: rotate(-45deg); }

.report-mockup {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #292929;
  border-radius: 20px;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}
.report-mockup__header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--border-dark); }
.report-mockup__header > div { display: flex; align-items: center; gap: 10px; }
.report-mockup__header strong { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; }
.report-mockup__header small { color: #777; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; }
.mini-monogram { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--orange); border-radius: 7px; color: var(--orange); font-size: 0.63rem; font-weight: 800; }
.mini-mark { width: 28px; height: 28px; object-fit: contain; }
.report-mockup__title { display: grid; gap: 4px; padding-block: 24px 16px; }
.report-mockup__title span { color: var(--orange); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.13em; }
.report-mockup__title strong { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.04em; }
.report-mockup__title small { color: #838383; font-size: 0.72rem; }
.report-mockup__score { width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; margin: 16px auto 28px; border: 1px solid rgba(255,101,0,0.7); border-radius: 50%; box-shadow: 0 0 0 9px rgba(255,101,0,0.06); }
.report-mockup__score span, .report-mockup__score small { color: #858585; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; }
.report-mockup__score strong { color: var(--white); font-size: 2.2rem; font-weight: 700; letter-spacing: -0.06em; }
.report-mockup__rows { border-top: 1px solid var(--border-dark); }
.report-mockup__rows > div { display: grid; grid-template-columns: minmax(110px, 1fr) 1fr auto; gap: 12px; align-items: center; min-height: 48px; border-bottom: 1px solid var(--border-dark); }
.report-mockup__rows span { font-size: 0.72rem; font-weight: 600; }
.report-mockup__rows i { position: relative; height: 2px; overflow: hidden; background: #282828; }
.report-mockup__rows i::after { content: ""; position: absolute; inset: 0 28% 0 0; background: var(--orange); }
.report-mockup__rows small { color: #777; font-size: 0.62rem; }
.report-mockup > p { margin: 20px 0 0; color: #696969; font-size: 0.67rem; line-height: 1.6; }

.section--factors { color: var(--text); background: var(--white); }
.factor-grid { display: grid; border-top: 1px solid var(--border); }
.factor-grid article { min-height: 180px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.factor-grid article > span { color: var(--orange); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; }
.factor-grid h3 { margin-top: 28px; }
.factor-grid p { max-width: 330px; margin: 10px 0 0; font-size: 0.9rem; line-height: 1.7; }

.section--audience { color: var(--white); background: var(--black); }
.audience-grid { display: grid; gap: 48px; }
.audience-grid > div { max-width: 680px; }
.audience-grid ul { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--border-dark); }
.audience-grid li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding-block: 22px; border-bottom: 1px solid var(--border-dark); }
.audience-grid li span { color: var(--orange); font-size: 0.76rem; font-weight: 800; }
.audience-grid li p { margin: 0; color: #a7a7a7; font-size: 0.95rem; line-height: 1.65; }
.audience-grid li strong { color: var(--white); font-weight: 700; }

.section--process { color: var(--text); background: var(--white); }
.process-grid { display: grid; padding: 0; margin: 0; list-style: none; counter-reset: process; }
.process-grid li { position: relative; padding: 30px 0 34px 42px; border-left: 1px solid var(--border); }
.process-grid li::before { content: ""; position: absolute; top: 36px; left: -5px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.process-grid li > span { color: var(--orange); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; }
.process-grid h3 { margin-top: 22px; }
.process-grid p { max-width: 340px; margin: 10px 0 0; font-size: 0.9rem; line-height: 1.7; }

.section--delivery { display: grid; gap: 48px; color: var(--text); background: var(--off-white); }
.delivery-photo { position: relative; overflow: hidden; border-radius: 20px; }
.delivery-photo picture { display: block; aspect-ratio: 4 / 5; }
.delivery-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(0.15) saturate(0.82); }
.delivery-caption { position: absolute; left: 14px; right: 14px; bottom: 14px; display: grid; gap: 3px; padding: 16px 18px; border-radius: 12px; color: var(--white); background: rgba(11,11,11,0.92); backdrop-filter: blur(12px); }
.delivery-caption span { color: var(--orange); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; }
.delivery-caption strong { font-size: 0.95rem; }
.delivery-copy { align-self: center; }
.delivery-copy > p:not(.kicker) { font-size: 1rem; line-height: 1.8; }
.delivery-list { margin-top: 28px; border-top: 1px solid var(--border); }
.delivery-list span { min-height: 58px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--border); color: #303030; font-size: 0.88rem; font-weight: 650; }
.delivery-list i { min-width: 28px; color: var(--orange); font-size: 0.72rem; font-weight: 800; font-style: normal; }

.section--authority { color: var(--white); background: var(--black); }
.section--authority { padding-bottom: 44px; }
.authority-grid { display: grid; gap: 48px; }
.authority-copy { align-self: center; }
.authority-copy > p:not(.kicker) { max-width: 640px; color: #a3a3a3; font-size: 0.98rem; line-height: 1.8; }
.authority-copy blockquote { max-width: 620px; margin: 32px 0 0; padding-left: 20px; border-left: 2px solid var(--orange); color: var(--white); font-size: 1.3rem; font-weight: 650; letter-spacing: -0.03em; line-height: 1.45; }
.authority-media { position: relative; padding-bottom: 0; }
.authority-media picture { display: block; overflow: hidden; aspect-ratio: 4 / 5; border-radius: 20px; }
.authority-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: grayscale(0.35) contrast(1.04); }
.authority-stats { display: grid; margin-top: 12px; border-top: 1px solid var(--border-dark); }
.authority-stats > div { display: grid; gap: 4px; padding-block: 20px; border-bottom: 1px solid var(--border-dark); }
.authority-stats strong { color: var(--white); font-size: 1.8rem; font-weight: 750; letter-spacing: -0.055em; }
.authority-stats span { color: #7f7f7f; font-size: 0.75rem; line-height: 1.5; }

.section--offer { color: var(--white); background: var(--black); }
.section--offer { padding-top: 44px; }
.offer-card { overflow: hidden; border: 1px solid var(--border-dark); border-radius: 20px; background: var(--black-soft); }
.offer-card__copy, .offer-card__price { padding: 34px 24px; }
.offer-card__copy { border-bottom: 1px solid var(--border-dark); }
.offer-card__copy .kicker { color: var(--orange); }
.offer-card__copy > p:not(.kicker) { max-width: 590px; color: #9f9f9f; font-size: 0.96rem; line-height: 1.8; }
.offer-card__copy .clean-list li { color: #d1d1d1; }
.offer-card__price { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.offer-card__label { margin-bottom: 24px; color: var(--orange); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; }
.offer-card__price p { margin: 0; color: #858585; font-size: 0.8rem; }
.offer-card__price s { color: #a3a3a3; }
.offer-card__price > strong { margin-top: 8px; color: var(--white); font-size: clamp(5rem, 24vw, 7.4rem); font-weight: 750; letter-spacing: -0.09em; line-height: 0.82; }
.offer-card__price > strong small { margin-right: 8px; color: var(--orange); font-size: 0.9rem; font-weight: 800; letter-spacing: 0; }
.offer-card__price > em { margin: 18px 0 26px; color: #858585; font-size: 0.72rem; font-style: normal; }
.button--offer { width: 100%; justify-content: space-between; }
.button[data-disabled="true"] { color: #777; background: #222; border-color: #2b2b2b; pointer-events: none; }
.offer-card__price > small { margin-top: 15px; color: #696969; font-size: 0.68rem; line-height: 1.6; }

.section--faq { color: var(--text); background: var(--white); }
.section-heading--faq { max-width: 700px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 24px 46px 24px 0; color: var(--text); font-size: 1rem; font-weight: 700; line-height: 1.45; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 3px; top: 21px; color: var(--orange); font-size: 1.25rem; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 760px; margin: 0; padding: 0 48px 25px 0; font-size: 0.95rem; line-height: 1.8; }

.final-cta { position: relative; overflow: hidden; padding-block: 88px; background: var(--black); }
.final-cta::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 60px; background: var(--orange); }
.final-cta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-cta__number { display: none; }
.final-cta h2 { max-width: 850px; }
.final-cta p:not(.kicker) { max-width: 610px; margin: 22px 0 0; color: #9a9a9a; font-size: 1rem; }
.final-cta .button { width: 100%; max-width: 390px; margin-top: 30px; }
.final-cta small { max-width: 650px; margin-top: 20px; color: #666; font-size: 0.7rem; line-height: 1.6; }

.site-footer { padding-block: 56px 100px; border-top: 1px solid var(--border-dark); color: var(--white); background: var(--black); }
.footer-grid { display: grid; gap: 34px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.brand--footer { margin-bottom: 8px; }
.footer-grid p, .footer-grid a, .footer-grid span { margin: 0; color: #777; font-size: 0.78rem; line-height: 1.6; text-decoration: none; }
.footer-grid > div > a:not(.brand) { min-height: 44px; display: inline-flex; align-items: center; }
.footer-grid a:hover { color: var(--orange); }
.footer-grid > div > strong { margin-bottom: 5px; color: #cecece; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-disclaimer { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--border-dark); color: #5f5f5f; font-size: 0.7rem; line-height: 1.7; }

.mobile-cta {
  position: fixed;
  z-index: 50;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 9px 9px 14px;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  color: var(--white);
  background: rgba(11,11,11,0.96);
  box-shadow: 0 14px 40px rgba(0,0,0,0.34);
  backdrop-filter: blur(16px);
  transform: translateY(145%);
  transition: transform 300ms ease;
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta > div { display: grid; gap: 2px; }
.mobile-cta > div span { color: var(--orange); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.09em; }
.mobile-cta > div strong { font-size: 0.68rem; }
.mobile-cta__brand { width: 104px; height: auto; }
.button--compact { min-height: 46px; padding: 10px 14px; font-size: 0.7rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.legal-page { color: var(--text); background: var(--off-white); }
.legal-page .site-header { background: rgba(11,11,11,0.96); }
.legal-header { padding-inline: var(--gutter); }
.legal-back { color: var(--white); font-size: 0.75rem; font-weight: 700; text-decoration: none; }
.legal-back:hover { color: var(--orange); }
.legal-main { width: min(calc(100% - 40px), 900px); padding-block: 72px 100px; }
.legal-title { padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-title h1 { max-width: 820px; margin: 0; font-size: clamp(2.7rem, 11vw, 5.1rem); font-weight: 750; letter-spacing: -0.06em; line-height: 1; }
.legal-title > p { color: var(--muted); font-size: 0.78rem; }
.legal-review { margin-top: 22px; padding: 16px 18px; border-left: 2px solid var(--orange); color: #555; background: var(--white); font-size: 0.82rem; line-height: 1.6; }
.legal-review strong { color: var(--text); }
.legal-content h2 { margin: 46px 0 12px; font-size: 1.45rem; font-weight: 750; letter-spacing: -0.035em; }
.legal-content p, .legal-content li { color: #585858; font-size: 0.95rem; line-height: 1.85; }
.legal-content a { color: #b74800; }
.legal-content ul { padding-left: 22px; }
.legal-footer { padding-block: 24px; }
.legal-footer .footer-disclaimer { margin: 0; padding: 0; border: 0; }

@media (min-width: 700px) {
  :root { --gutter: 32px; --section-y: 104px; }
  .site-header { min-height: 80px; padding-inline: max(32px, calc((100% - var(--container)) / 2)); }
  .brand__logo { width: 176px; }
  .header-action__mobile { display: none; }
  .header-action__desktop { display: inline; }
  .hero__inner { min-height: calc(100svh - 80px); padding-block: 84px 80px; }
  .hero h1 { font-size: clamp(4.1rem, 9vw, 5.2rem); }
  .hero__lead { font-size: 1.06rem; }
  .hero__actions { grid-template-columns: max-content max-content; align-items: center; }
  .hero__secondary { padding-inline: 20px; }
  .hero__proof strong { font-size: 0.84rem; }
  .hero__visual { min-height: 390px; }
  .hero__scan { width: min(46vw, 390px); }
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .trust-strip span { min-height: 72px; padding-inline: 18px; border-right: 1px solid var(--border); border-bottom: 0; }
  .trust-strip span:last-child { border-right: 0; }
  .section--report, .section--delivery { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: 70px; }
  .video-offer { padding-bottom: 104px; }
  .video-offer__card { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); }
  .video-offer__copy, .video-offer__price { padding: 46px 42px; }
  .video-offer__copy { border-right: 1px solid var(--border-dark); border-bottom: 0; }
  .video-offer__proof { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .factor-grid { grid-template-columns: repeat(2, 1fr); }
  .factor-grid article { padding: 30px 28px; border-right: 1px solid var(--border); }
  .factor-grid article:nth-child(2n) { border-right: 0; }
  .process-grid { grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); }
  .process-grid li { min-height: 260px; padding: 36px 28px; border-left: 0; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .process-grid li:last-child { border-right: 0; }
  .process-grid li::before { top: -5px; left: 28px; }
  .authority-stats { grid-template-columns: repeat(3, 1fr); }
  .authority-stats > div { padding: 22px 14px; border-right: 1px solid var(--border-dark); border-bottom: 0; }
  .authority-stats > div:last-child { border-right: 0; }
  .offer-card { display: grid; grid-template-columns: 1.08fr 0.92fr; }
  .offer-card__copy, .offer-card__price { padding: 52px 46px; }
  .offer-card__copy { border-right: 1px solid var(--border-dark); border-bottom: 0; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 0.9fr; }
}

@media (min-width: 980px) {
  :root { --section-y: 124px; }
  .site-nav { display: flex; align-items: center; gap: 32px; }
  .site-nav a { position: relative; color: #a0a0a0; font-size: 0.75rem; font-weight: 650; text-decoration: none; }
  .site-nav a::after { content: ""; position: absolute; right: 100%; bottom: -8px; left: 0; height: 1px; background: var(--orange); transition: right 220ms ease; }
  .site-nav a:hover { color: var(--white); }
  .site-nav a:hover::after { right: 0; }
  .hero__inner { grid-template-columns: minmax(0, 7fr) minmax(330px, 5fr); align-items: center; gap: 70px; }
  .hero__content { max-width: 760px; }
  .hero h1 { font-size: clamp(4rem, 5.25vw, 4.65rem); }
  .hero__visual { min-height: 520px; }
  .hero__scan { width: min(31vw, 420px); }
  .insight-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: start; gap: 100px; }
  .factor-grid { grid-template-columns: repeat(3, 1fr); }
  .factor-grid article:nth-child(2n) { border-right: 1px solid var(--border); }
  .factor-grid article:nth-child(3n) { border-right: 0; }
  .audience-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); align-items: start; gap: 110px; }
  .authority-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; gap: 86px; }
  .section--authority { padding-bottom: 76px; }
  .section--offer { padding-top: 76px; }
  .authority-media { padding-bottom: 120px; }
  .authority-stats { position: absolute; right: 24px; bottom: 0; left: -46px; background: var(--black-soft); }
  .final-cta { padding-block: 128px; }
  .mobile-cta { display: none; }
  .legal-header { padding-inline: max(32px, calc((100% - var(--container)) / 2)); }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 4.5rem; }
}

@media (max-width: 420px) {
  :root { --gutter: 20px; }
  .site-header { gap: 12px; }
  .brand { gap: 9px; }
  .brand__logo { width: 132px; }
  .header-action { padding-inline: 11px; }
  .hero h1 { font-size: clamp(2.95rem, 13.4vw, 3.55rem); }
  .hero__lead { font-size: 0.96rem; }
  .hero__proof > div { padding-inline: 8px; }
  .hero__proof small { font-size: 0.59rem; }
  .hero__proof strong { font-size: 0.67rem; }
  .section h2, .final-cta h2 { font-size: 2.45rem; }
  .vsl-sound-gate { gap: 7px; padding: 12px; }
  .vsl-sound-gate::before { width: calc(100% - 20px); height: calc(100% - 16px); border-radius: 12px; }
  .vsl-sound-gate__eyebrow { font-size: 0.58rem; }
  .vsl-sound-gate__icon { width: 40px; height: 40px; }
  .vsl-sound-gate strong { max-width: 260px; font-size: 0.98rem; }
  .report-mockup { padding: 20px; }
  .report-mockup__header small { display: none; }
  .report-mockup__rows > div { grid-template-columns: 1fr 0.72fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
