:root {
  --ink: #101010;
  --ink-2: #2b2b2b;
  --muted: #6b6864;
  --paper: #fffdf9;
  --page: #f5f1ea;
  --panel: #ebe4da;
  --line: rgba(16, 16, 16, 0.13);
  --red: #e40000;
  --red-dark: #9d0000;
  --red-soft: #ffe1df;
  --charcoal: #181614;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(16, 16, 16, 0.12);
  --radius: 8px;
  --header-height: 76px;
  --container: 1180px;
  --section-space: clamp(76px, 9vw, 132px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(16, 16, 16, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--page);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(155, 16, 24, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 234, 0.82);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 28px rgba(155, 16, 24, 0.22);
  font-size: 0.76rem;
}

.brand-text {
  color: var(--ink);
  font-size: 0.95rem;
}

.header-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(228, 0, 0, 0.22);
  border-radius: var(--radius);
  color: var(--red-dark);
  background: rgba(228, 0, 0, 0.06);
  font-size: 0.92rem;
  font-weight: 950;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--white);
  background: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(16, 16, 16, 0.06);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.05rem, 6.25vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 4.45rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height) - 96px);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.92) 48%, rgba(235, 228, 218, 0.82) 100%),
    repeating-linear-gradient(90deg, rgba(16, 16, 16, 0.05) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(16, 16, 16, 0.045) 0 1px, transparent 1px 58px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(155, 16, 24, 0.11) 58% 58.8%, transparent 58.8%),
    linear-gradient(155deg, transparent 0 65%, rgba(16, 16, 16, 0.10) 65% 65.2%, transparent 65.2%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-bg::before,
.hero-grid-bg::after {
  content: "";
  position: absolute;
  right: 0;
  width: min(48vw, 620px);
  height: 1px;
  background: rgba(16, 16, 16, 0.2);
}

.hero-grid-bg::before {
  top: 32%;
}

.hero-grid-bg::after {
  top: 67%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) 0 clamp(34px, 5vw, 58px);
}

.hero-content {
  max-width: 850px;
}

.hero-subtitle {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--ink-2);
  font-size: clamp(1.16rem, 2.2vw, 1.58rem);
  line-height: 1.34;
  font-weight: 820;
}

.hero-emotion {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.14rem);
}

.hero-actions,
.final-cta-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 20px 44px rgba(155, 16, 24, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.78);
  border-color: rgba(16, 16, 16, 0.2);
}

.btn-secondary:hover {
  background: var(--paper);
  border-color: var(--ink);
}

.assurance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 850;
}

.assurance-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(155, 16, 24, 0.11);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  padding: 24px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(155, 16, 24, 0.98) 0%, rgba(91, 8, 13, 0.96) 44%, rgba(24, 22, 20, 0.98) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px);
  opacity: 0.7;
}

.visual-topline,
.visual-statement,
.visual-metrics {
  position: relative;
  z-index: 2;
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-topline strong {
  color: var(--white);
}

.visual-statement {
  max-width: 390px;
  margin-bottom: 28px;
}

.visual-statement span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 850;
}

.visual-statement strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.9rem, 3.35vw, 3.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.truth-board {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin: 28px 0 24px;
}

.truth-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.truth-row span,
.truth-row strong,
.truth-row em {
  min-width: 0;
}

.truth-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 820;
}

.truth-row strong {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.truth-row em {
  justify-self: end;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.truth-head {
  min-height: 38px;
  background: rgba(255, 255, 255, 0.14);
}

.truth-head span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-metrics {
  display: grid;
  gap: 10px;
}

.visual-metrics div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
}

.visual-metrics span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.visual-metrics strong {
  font-size: 0.92rem;
  text-transform: uppercase;
}

.hero-proof-section {
  padding: 0 0 clamp(56px, 7vw, 88px);
  background: var(--page);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.12);
  box-shadow: 0 24px 60px rgba(16, 16, 16, 0.08);
}

.hero-proof div {
  min-height: 130px;
  padding: 24px;
  background: rgba(255, 253, 249, 0.92);
}

.hero-proof strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 720;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.035) 0 25%, transparent 25%),
    var(--panel);
}

.section-problem {
  padding-top: clamp(40px, 6vw, 82px);
}

.section-copy p,
.truth-layout p,
.offer-content p,
.faq-layout p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.two-column,
.truth-layout,
.week-layout,
.about-layout,
.faq-layout,
.form-layout,
.rules-panel,
.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.leak-list {
  display: grid;
  gap: 10px;
}

.leak-list div {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 18px 14px 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.06);
  font-weight: 900;
}

.cards-grid,
.phase-grid,
.deliverables-grid,
.proof-grid,
.fit-grid {
  display: grid;
  gap: 16px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(16, 16, 16, 0.07);
}

.symptom-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
}

.symptom-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 5px;
  background: linear-gradient(90deg, var(--red), rgba(155, 16, 24, 0.08));
}

.symptom-card span,
.phase-number,
.proof-card span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.symptom-card h3 {
  margin: 34px 0 28px;
  font-size: 1.16rem;
}

.truth-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(155, 16, 24, 0.22), transparent 40%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 82px),
    var(--charcoal);
}

.truth-section .eyebrow {
  color: #ffc6c8;
}

.truth-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.truth-layout blockquote {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 7px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  font-size: clamp(1.85rem, 4vw, 3.7rem);
  line-height: 1.03;
  font-weight: 950;
}

.offer-section {
  background: var(--paper);
}

.offer-panel {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(155, 16, 24, 0.08), transparent 34%),
    var(--page);
  box-shadow: var(--shadow);
}

.offer-note {
  grid-column: 1 / -1;
  width: min(100%, 780px);
  margin: clamp(8px, 2vw, 18px) auto 0;
  padding: 12px;
  border: 1px solid rgba(228, 0, 0, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(228, 0, 0, 0.1), transparent 42%),
    var(--paper);
  text-align: center;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 950;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  box-shadow: 0 18px 46px rgba(16, 16, 16, 0.08);
}

.offer-note span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  text-transform: uppercase;
}

.offer-note strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 0.84rem;
}

.offer-note p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 850;
}

.access-box {
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 12px),
    var(--ink);
  box-shadow: 0 24px 54px rgba(16, 16, 16, 0.18);
}

.access-box span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.access-box strong {
  display: block;
  margin-bottom: 16px;
  max-width: 100%;
  font-size: clamp(2.05rem, 3.8vw, 3.45rem);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.access-box p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
}

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

.phase-card {
  min-height: 288px;
  padding: 24px;
  background:
    linear-gradient(180deg, var(--paper), rgba(255, 253, 249, 0.74));
}

.phase-card h3 {
  margin-top: 26px;
}

.phase-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.week-section {
  background: var(--paper);
}

.strong-line {
  padding: 18px 20px;
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  background: var(--red-soft);
  color: var(--ink) !important;
  font-weight: 950;
}

.week-timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.week-timeline li {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
}

.week-timeline strong {
  color: var(--red);
  font-size: 0.94rem;
}

.week-timeline span {
  color: var(--ink-2);
  font-weight: 760;
}

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

.deliverable {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.06);
  text-align: center;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.rules-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 16, 16, 0.18), transparent 55%),
    var(--red-dark);
}

.rules-section .eyebrow {
  color: #ffd4d6;
}

.rules-section .section-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 850;
}

.rules-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

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

.fit-column {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
}

.fit-column h3 {
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.fit-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-column li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 760;
}

.fit-column li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  font-weight: 950;
}

.fit-yes {
  border: 1px solid var(--line);
  background: var(--paper);
}

.fit-yes li::before {
  content: "+";
  color: var(--red);
}

.fit-no {
  color: var(--white);
  background: var(--ink);
}

.fit-no li {
  color: rgba(255, 255, 255, 0.72);
}

.fit-no li::before {
  content: "x";
  color: #ffc1c4;
}

.about-section {
  background: var(--paper);
}

.about-photo {
  min-height: 530px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: 47% center;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0;
}

.about-facts div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.about-facts strong {
  display: block;
  color: var(--red);
  font-size: 1.8rem;
  line-height: 1;
}

.about-facts span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

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

.quote-credit {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 950;
  letter-spacing: 0;
}

.proof-card {
  min-height: 300px;
  padding: 24px;
}

.proof-card p {
  margin: 24px 0 0;
  color: var(--muted);
}

.proof-card-highlight {
  border-color: rgba(228, 0, 0, 0.42);
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 28px 70px rgba(155, 16, 24, 0.26);
}

.proof-card-highlight span,
.proof-card-highlight p {
  color: var(--white);
}

.proof-card-highlight p {
  opacity: 0.9;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 18px 58px 18px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 950;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 20px;
}

.final-cta {
  padding: clamp(68px, 8vw, 108px) 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(155, 16, 24, 0.24), transparent 46%),
    var(--ink);
}

.final-cta-inner {
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
}

.form-section {
  background: var(--paper);
}

.form-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
}

.diagnostic-lead {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 950;
}

.form-note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--ink);
  font-weight: 850;
}

.form-note a {
  color: var(--red-dark);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.diagnostic-link-card {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(228, 0, 0, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--ink), var(--red-dark));
  box-shadow: 0 28px 80px rgba(16, 16, 16, 0.18);
  overflow: hidden;
}

.diagnostic-link-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.diagnostic-link-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-link-card h3 {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.diagnostic-link-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.btn-diagnostic-form {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 68px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.diagnostic-small {
  margin: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  padding: clamp(54px, 7vw, 82px) 0 26px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(228, 0, 0, 0.18), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 70px),
    var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo .brand-text {
  color: var(--white);
}

.footer-brand p {
  max-width: 430px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  font-weight: 950;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(42px, 6vw, 70px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
  text-align: right;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(228, 0, 0, 0.1), transparent 34%),
    repeating-linear-gradient(90deg, rgba(16, 16, 16, 0.045) 0 1px, transparent 1px 72px),
    var(--page);
}

.thanks-panel {
  width: min(100%, 820px);
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.thanks-panel .brand {
  margin-bottom: clamp(32px, 5vw, 58px);
}

.thanks-panel h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 7vw, 5.3rem);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.reveal-ready .section,
.reveal-ready .hero-proof-section,
.reveal-ready .final-cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready .section.is-visible,
.reveal-ready .hero-proof-section.is-visible,
.reveal-ready .final-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

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

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
    --section-space: 72px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .header-phone {
    margin-left: auto;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 120;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 110;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 14px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.98);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 52px;
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
    line-height: 0.96;
  }

  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    padding: 20px;
  }

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

  .hero-proof div {
    min-height: auto;
  }

  .two-column,
  .truth-layout,
  .week-layout,
  .about-layout,
  .faq-layout,
  .form-layout,
  .rules-panel,
  .offer-panel {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 340px;
  }

  .about-facts,
  .fit-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.35rem, 11.6vw, 3.15rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .brand-text {
    display: none;
  }

  .header-phone {
    min-height: 38px;
    font-size: 0.78rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 18px;
  }

  .visual-statement strong {
    font-size: 1.85rem;
  }

  .visual-topline {
    margin-bottom: 22px;
  }

  .truth-board {
    margin: 18px 0 18px;
  }

  .truth-row {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: auto;
    padding: 12px;
  }

  .truth-row-optional {
    display: none;
  }

  .truth-row em {
    justify-self: start;
  }

  .truth-head {
    display: none;
  }

  .visual-metrics {
    gap: 8px;
  }

  .visual-metrics div {
    grid-template-columns: 1fr;
    gap: 2px;
    align-items: start;
    min-height: auto;
    padding: 10px 12px;
  }

  .visual-metrics {
    display: none;
  }

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

  .offer-note strong {
    justify-self: center;
  }

  .symptoms-grid,
  .phase-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .symptom-card,
  .phase-card {
    min-height: auto;
  }

  .week-timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .deliverable {
    min-height: 86px;
  }

  .access-box {
    padding: 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }
}

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

  .reveal-ready .section,
  .reveal-ready .hero-proof-section,
  .reveal-ready .final-cta {
    opacity: 1;
    transform: none;
  }
}
