:root {
  --ink: #071b2b;
  --muted: #345267;
  --line: #c8deec;
  --paper: #f4f9fd;
  --white: #ffffff;
  --green: #0b7f73;
  --green-deep: #071b2b;
  --gold: #f0b84d;
  --blue: #0b6faf;
  --coral: #df6b4f;
  --mist: #e5f3fd;
  --stone: #f5fbff;
  --shadow: 0 24px 70px rgba(7, 27, 43, .12);
  --soft-shadow: 0 16px 42px rgba(7, 27, 43, .08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef7ff 0%, #f8fbfe 44%, #ffffff 100%);
}

.topbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 249, 253, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 850;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--ink);
}

.tag {
  color: var(--muted);
  font-size: 14px;
}

.layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 48px;
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
  padding: 44px 0 64px;
  position: relative;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow,
.section-label,
.option-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  max-width: 880px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 710px;
  font-size: 20px;
  margin: 22px 0 0;
  color: #29495f;
}

.lead.small {
  font-size: 18px;
  max-width: 760px;
}

.trust {
  max-width: 620px;
  font-size: 14px;
  margin-top: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-row.center {
  justify-content: center;
}

.primary,
.secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 20px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(7, 27, 43, .08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary {
  background: var(--blue);
  color: var(--white);
}

.primary:hover {
  background: #075b91;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(7, 27, 43, .12);
}

.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(7, 27, 43, .12);
}

.secondary.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero-panel {
  display: grid;
  gap: 12px;
  position: relative;
}

.hero-panel div,
.option,
.pathway-grid div,
.why,
.problem,
.final-cta {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.hero-panel div {
  padding: 24px;
  box-shadow: var(--soft-shadow);
  border-left: 4px solid var(--gold);
}

.hero-panel span {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 850;
  color: var(--green-deep);
}

.hero-panel p {
  margin: 10px 0 0;
  font-size: 14px;
}

.problem {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  margin: 10px 0 26px;
  box-shadow: var(--soft-shadow);
  background:
    linear-gradient(90deg, rgba(240, 184, 77, .16) 0%, rgba(255,255,255,1) 26%);
}

.problem p {
  max-width: 760px;
  font-size: 17px;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.free-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin: 26px 0;
  align-items: stretch;
}

.option {
  padding: 30px;
}

.free-copy,
.guide-stack,
.paid-strip,
.chain-grid div {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.free-copy {
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, #ffffff 0%, #eef8ff 58%, #fff8e7 100%);
  box-shadow: var(--shadow);
}

.free-copy h2 {
  max-width: 860px;
}

.free-copy p {
  max-width: 780px;
  font-size: 17px;
}

.guide-stack {
  padding: 26px;
  display: grid;
  gap: 12px;
  align-content: start;
  background: linear-gradient(180deg, var(--ink) 0%, #0c334e 100%);
  box-shadow: var(--soft-shadow);
}

.guide-stack strong {
  color: var(--white);
  font-size: 18px;
}

.guide-stack span {
  display: block;
  padding: 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.09);
  color: #d9f1ff;
  font-weight: 750;
  border: 1px solid rgba(255,255,255,.08);
}

.option-paid {
  border-color: rgba(8, 118, 185, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #e5f3fd 100%);
}

.option p {
  font-size: 16px;
}

ul {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

li {
  position: relative;
  padding-left: 24px;
  color: #29302b;
  line-height: 1.45;
}

li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 2px;
  top: 9px;
}

.pathways {
  padding: 34px 0 14px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.value-chain {
  padding: 26px 0 10px;
}

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

.chain-grid div {
  min-height: 150px;
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

.chain-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--ink);
}

.chain-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.paid-strip {
  margin: 28px 0 6px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, var(--ink) 0%, #0a5b88 58%, #0b7f73 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.paid-strip h2,
.paid-strip .option-kicker {
  color: var(--white);
}

.paid-strip p,
.paid-strip li {
  color: #e7f6ff;
}

.paid-strip li::before {
  background: var(--gold);
}

.paid-strip .secondary.dark {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

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

.pathway-grid div {
  padding: 22px;
  min-height: 170px;
  box-shadow: var(--soft-shadow);
}

.pathway-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--blue);
}

.pathway-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.why {
  margin: 28px 0;
  padding: 34px;
  background:
    linear-gradient(135deg, #ffffff 0%, var(--mist) 100%);
  box-shadow: var(--soft-shadow);
}

.why p {
  max-width: 840px;
  font-size: 17px;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.checks span {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 14px;
  color: #29302b;
}

.final-cta {
  padding: 46px 28px;
  text-align: center;
  background:
    linear-gradient(135deg, var(--green-deep) 0%, #0b4569 100%);
  box-shadow: var(--shadow);
}

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

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto;
}

.final-cta .primary {
  background: var(--white);
  color: var(--green-deep);
}

.final-cta .secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

footer {
  margin-top: 8px;
  padding: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid var(--line);
}

footer strong {
  color: var(--ink);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 24px;
  align-items: start;
  padding: 34px 0 54px;
}

.optin-shell {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: 24px;
  align-items: start;
  padding: 34px 0 54px;
}

.checkout-copy,
.checkout-card,
.optin-copy,
.optin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-copy,
.optin-copy {
  padding: clamp(24px, 4vw, 42px);
}

.checkout-card,
.optin-card {
  position: sticky;
  top: 92px;
  padding: clamp(22px, 3vw, 32px);
}

.optin-copy {
  background: linear-gradient(135deg, #ffffff 0%, #e5f3fd 72%, #fff8e7 100%);
}

.capture-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 8px;
}

.capture-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(7,27,43,.05);
}

.ghl-form-frame {
  width: 100%;
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--stone);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.checkout-section {
  margin-top: 28px;
}

.checkout-section h2 {
  font-size: clamp(26px, 2.6vw, 34px);
}

.checkout-section p {
  font-size: 17px;
}

ol {
  margin: 20px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

ol li {
  padding-left: 6px;
}

ol li::before {
  content: none;
}

.price {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
}

.secure {
  margin: 0 0 20px;
  color: #60798b;
  font-size: 14px;
}

.pay-button {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
}

.buyer-note {
  margin-top: 22px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.buyer-note strong {
  display: block;
}

.buyer-note p,
.fineprint {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.legal-shell {
  max-width: 860px;
  margin: 28px auto 56px;
  padding: clamp(26px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  font-size: clamp(42px, 5vw, 66px);
}

.legal-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.legal-block p {
  margin-bottom: 0;
  font-size: 17px;
}

.legal-shell .secondary {
  margin-top: 30px;
}

@media (max-width: 920px) {
  .hero,
  .problem,
  .options,
  .free-offer,
  .chain-grid,
  .pathway-grid,
  .checkout-shell,
  .optin-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .pathway-grid div {
    min-height: 0;
  }

  .checkout-card,
  .optin-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 0 18px;
  }

  .tag {
    display: none;
  }

  .layout {
    padding: 22px 16px 38px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .primary,
  .secondary {
    width: 100%;
    min-height: 52px;
  }

  .problem,
  .option,
  .free-copy,
  .guide-stack,
  .paid-strip,
  .why,
  .final-cta,
  .legal-shell {
    padding: 24px;
  }
}
