:root {
  --blue-950: #09115f;
  --blue-800: #1727a8;
  --blue-100: #e9edff;
  --gold: #865b00;
  --gold-on-dark: #f2c35b;
  --green: #087a36;
  --green-hover: #06632c;
  --ink: #111827;
  --body: #374151;
  --muted: #667085;
  --line: #dfe3eb;
  --soft: #f6f7fb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(9, 17, 95, .11);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.12; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 5.8vw, 4.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); letter-spacing: -.03em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; color: var(--body); }
blockquote { margin: 0; }

.container { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.narrow { max-width: 760px; margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; scroll-margin-top: 5rem; }
.section-soft { background: var(--soft); }
.section-ink { background: var(--blue-950); color: var(--white); }
.section-ink p { color: #d8dcf3; }
.section-ink .section-label, .offer-section .section-label { color: var(--gold-on-dark); }
.section-label, .eyebrow {
  margin-bottom: .85rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lead { max-width: 760px; font-size: clamp(1.03rem, 1.6vw, 1.2rem); }

.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; text-decoration: none; }
.brand img { width: 48px; height: 48px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: .85rem 1.25rem;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(8, 122, 54, .2);
  transition: background .2s ease, transform .2s ease;
}
.button:hover { background: var(--green-hover); transform: translateY(-2px); }
.button:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid #f2bf40; outline-offset: 3px; }
.button-large { padding: 1rem 1.5rem; }
.button-small { font-size: .86rem; }
.button-block { width: 100%; }

.hero {
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(181,125,10,.16), transparent 28rem),
    linear-gradient(135deg, #fff 0%, var(--blue-100) 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.hero-summary { max-width: 760px; margin-bottom: 1.8rem; font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.cta-note { margin-top: .8rem; color: var(--muted); font-size: .82rem; }
.question-prompt {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(23,39,168,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
}
.question-prompt::before { content: "“"; position: absolute; top: -.8rem; right: 1rem; color: var(--gold); font: 700 6rem Georgia, serif; opacity: .22; }
.question-prompt span { color: var(--blue-800); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.question-prompt blockquote { margin-top: 1rem; font: 700 clamp(1.35rem, 2.6vw, 2rem)/1.25 Georgia, serif; }

.two-column, .offer-grid, .authority-grid, .vsl-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.signal-list, .check-list { margin: 0; padding: 0; list-style: none; }
.signal-list li, .check-list li { position: relative; padding: .8rem 0 .8rem 2rem; border-bottom: 1px solid var(--line); }
.signal-list li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.vsl-grid { align-items: center; }
.vsl-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-950);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.vsl-frame iframe { width: 100%; height: 100%; border: 0; }
.vsl-placeholder {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 2rem;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(242,195,91,.28), transparent 12rem),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}
.vsl-placeholder span { color: var(--gold-on-dark); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.vsl-placeholder strong { display: block; margin: .8rem 0; font-size: clamp(1.35rem, 2.7vw, 2.1rem); line-height: 1.1; text-wrap: balance; }
.vsl-placeholder small { color: #d8dcf3; }

.stacked-cards { display: grid; gap: 1rem; }
.split-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.split-card h3 { margin-bottom: .45rem; }
.split-card p { margin-bottom: 0; }

.answer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.answer-card, .icon-card, .quote-card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.answer-card h2 { font-size: 1.3rem; }
.answer-card .direct-answer { color: var(--ink); font-weight: 700; }
.answer-card p:last-child { margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2.2rem; }
.video-testimonials-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem; margin-top: 2.2rem; }
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9,17,95,.06);
}
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--blue-100);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.section-ink .icon-card { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.07); }
.section-ink .icon-card h3 { color: var(--white); }
.before-after-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.before-after-card { padding: 1.5rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.before-after-card p { margin: 0; color: #d8dcf3; }
.before-after-card p + p { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.16); color: var(--white); }
.before-after-card span { display: block; margin-bottom: .25rem; color: var(--gold-on-dark); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.card-number { display: block; margin-bottom: .9rem; color: var(--gold); font-weight: 900; letter-spacing: .1em; }
.section-ink .card-number { color: var(--gold-on-dark); }
.method-grid .icon-card { box-shadow: 0 10px 30px rgba(9,17,95,.06); }
.disclaimer { margin: 2rem 0 0; padding: 1rem 1.2rem; border-left: 4px solid var(--gold); background: #fff9e8; font-size: .9rem; }

.offer-section { background: var(--blue-950); color: var(--white); }
.offer-section h2 { color: var(--white); }
.offer-section .check-list li { color: #e4e7f7; border-color: rgba(255,255,255,.15); }
.offer-section .check-list li::before { color: #7ce3a3; }
.guarantee { margin-top: 1.5rem; color: #d8dcf3; }
.price-card { padding: clamp(1.8rem, 4vw, 2.7rem); border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: var(--shadow); text-align: center; }
.price-card > span { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.price-card > strong { display: block; margin: .6rem 0; color: var(--blue-950); font-size: clamp(3.2rem, 7vw, 5rem); line-height: 1; }
.price-card strong small { font-size: 1rem; }
.price-card > small { display: block; margin-top: 1rem; color: var(--muted); }

.authority-grid { align-items: center; }
.authority-grid img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 600/448; object-fit: cover; }
.credentials { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.credentials li { padding: .55rem .8rem; border-radius: 999px; background: var(--blue-100); color: var(--blue-950); font-size: .82rem; font-weight: 800; }
.updated { color: var(--muted); font-size: .78rem; }

.faq-list { margin-top: 2rem; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; padding: 1.25rem 2rem 1.25rem 0; color: var(--ink); font-weight: 800; }
details p { padding: 0 2rem 1.25rem 0; }
.final-cta { padding: clamp(4rem, 9vw, 7rem) 0; background: linear-gradient(135deg, var(--blue-800), var(--blue-950)); color: var(--white); text-align: center; }
.final-cta p { color: #e2e6ff; font-size: 1.1rem; }
footer { padding: 2.5rem 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 1.4rem; }
.footer-grid p, .footer-grid small { color: var(--muted); }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.footer-grid nav a { font-size: .86rem; font-weight: 700; }

@media (max-width: 820px) {
  .hero-grid, .two-column, .offer-grid, .authority-grid, .vsl-grid { grid-template-columns: 1fr; }
  .answer-grid, .card-grid, .before-after-grid, .video-testimonials-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .question-prompt { max-width: 520px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 1.5rem, 1120px); }
  .brand span { display: none; }
  .button-small { padding: .7rem .85rem; font-size: .76rem; }
  .hero .button, .final-cta .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
