:root {
  --navy: #061d3a;
  --navy-2: #0b2b4d;
  --orange: #ef6533;
  --gold: #c8922d;
  --paper: #f5efe5;
  --warm: #ffe1b8;
  --mist: #d9e5e7;
  --ink: #10243a;
  --muted: #5f6f7d;
  --white: #fffaf1;
  --shadow: 0 24px 70px rgba(6, 29, 58, 0.25);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Arial Narrow", Impact, Haettenschweiler, "Franklin Gothic Condensed", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(6, 29, 58, 0.94);
  border-bottom: 1px solid rgba(200, 146, 45, 0.5);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 8px 14px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 800;
}

.support-banner {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--navy);
  background: var(--warm);
  border-bottom: 1px solid rgba(200, 146, 45, 0.55);
  font-size: 0.98rem;
  text-align: center;
  text-decoration: none;
}

.support-banner span {
  font-weight: 700;
}

.support-banner strong {
  color: var(--navy);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 66px);
  padding: clamp(42px, 6vw, 78px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(217, 229, 231, 0.86), rgba(255, 225, 184, 0.72) 58%, rgba(245, 239, 229, 1)),
    var(--mist);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1,
h2 {
  color: var(--navy);
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 9vw, 7.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-transform: none;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.subtitle {
  color: var(--orange);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}

.promise {
  max-width: 690px;
  margin-bottom: 28px;
  color: #23374b;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--navy);
  font-weight: 900;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--navy);
  background: transparent;
}

.cover-panel {
  position: relative;
  justify-self: center;
  width: min(100%, 390px);
}

.cover-panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(6, 29, 58, 0.16);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  right: -18px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 18px;
  color: var(--white);
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

section {
  padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 76px);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-note {
  max-width: 680px;
  margin-bottom: 0;
  color: #30455a;
  font-size: 1.12rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.copy-stack {
  max-width: 640px;
  padding: 24px 28px;
  background: rgba(255, 250, 241, 0.58);
  border-left: 4px solid var(--gold);
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.copy-stack p,
.fit-list p,
.author-box p,
.purchase-box p,
.value p {
  font-size: 1.08rem;
}

.problem {
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid rgba(6, 29, 58, 0.12);
}

.outcome,
.faq {
  background: #edf5f3;
}

.thank-you {
  scroll-margin-top: 96px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(245, 239, 229, 1)),
    var(--paper);
}

.thank-you-box {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
  padding: clamp(30px, 5vw, 54px);
  background: var(--white);
  border-top: 5px solid var(--orange);
  box-shadow: inset 0 0 0 1px rgba(6, 29, 58, 0.07), 0 18px 54px rgba(6, 29, 58, 0.08);
}

.thank-you-box h2 {
  max-width: 420px;
}

.thank-you-copy {
  max-width: 760px;
  padding-left: clamp(0px, 2.4vw, 30px);
  border-left: 3px solid rgba(200, 146, 45, 0.65);
}

.thank-you-copy p {
  margin-bottom: 16px;
  color: #30455a;
  font-size: 1.08rem;
}

.thank-you-copy p:first-child {
  color: var(--navy);
  font-weight: 850;
}

.thank-you-copy .signature {
  margin: 6px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.outcome-grid article {
  min-height: 245px;
  padding: 26px;
  background: var(--white);
  border-top: 5px solid var(--orange);
}

.outcome-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.value {
  color: var(--white);
  background: var(--navy);
}

.value h2,
.value .eyebrow {
  color: var(--white);
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.value-callout {
  padding: 34px;
  border: 2px solid var(--gold);
  background: rgba(255, 250, 241, 0.06);
}

.value-callout p {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.value-callout strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.3vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: none;
}

.learn {
  background: var(--paper);
}

.learn h2 {
  max-width: 920px;
}

.learn-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.learn-list article {
  position: relative;
  min-height: 190px;
  padding: 26px;
  background: rgba(255, 250, 241, 0.72);
  border-top: 4px solid var(--gold);
  box-shadow: inset 0 0 0 1px rgba(6, 29, 58, 0.06);
}

.learn-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learn-list h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.learn-list p {
  margin-bottom: 0;
  color: #30455a;
  font-size: 1rem;
}

.learn-list .learn-final {
  min-height: auto;
  grid-column: 1 / -1;
  padding: 28px 32px;
  color: var(--white);
  background: var(--navy);
  border-top-color: var(--orange);
}

.learn-list .learn-final span {
  margin-bottom: 12px;
  color: var(--gold);
}

.learn-list .learn-final h3 {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.fit {
  color: var(--white);
  background: var(--navy-2);
}

.fit h2,
.fit .eyebrow {
  color: var(--white);
}

.fit-list p {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200, 146, 45, 0.5);
}

.author {
  background: var(--white);
}

.author-box {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-top: 6px;
  border-top: 3px solid var(--gold);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

details {
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(6, 29, 58, 0.16);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: #30455a;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 29, 58, 0.98), rgba(6, 29, 58, 0.88)),
    var(--navy);
}

.purchase-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.purchase-box h2,
.purchase-box .eyebrow {
  color: var(--white);
}

.purchase-box .button.primary {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .two-column,
  .value-layout,
  .thank-you-box,
  .author-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cover-panel {
    width: min(84vw, 360px);
  }

  .copy-stack {
    max-width: 100%;
  }

  .thank-you {
    scroll-margin-top: 0;
  }

  .thank-you-copy {
    padding-left: 0;
    border-left: 0;
  }

  .outcome-grid,
  .learn-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .learn-list .learn-final {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .support-banner {
    flex-direction: column;
    gap: 2px;
    padding: 12px 18px;
  }

  nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12.5vw, 4.4rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
    letter-spacing: -0.045em;
  }

  .copy-stack {
    padding: 20px;
  }

  .thank-you-box {
    padding: 24px 22px;
  }

  .learn-list article,
  .learn-list .learn-final {
    min-height: auto;
    padding: 22px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .price-badge {
    right: 10px;
    bottom: 16px;
    width: 94px;
    height: 94px;
    font-size: 0.86rem;
  }
}
