:root {
  color-scheme: light;
  --ink: #24233a;
  --muted: #667074;
  --paper: #fbfbf4;
  --linen: #eef3e7;
  --sage: #84a082;
  --sage-dark: #405d50;
  --lavender: #52508e;
  --periwinkle: #6d74b8;
  --patriot-blue: #263f75;
  --cranberry: #b2474d;
  --gold: #d1a650;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(38, 63, 117, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  padding-bottom: 88px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 15% 14%, rgba(109, 116, 184, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(178, 71, 77, 0.1), transparent 38%),
    linear-gradient(290deg, rgba(132, 160, 130, 0.26), transparent 48%),
    var(--paper);
}

main {
  overflow: hidden;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vh, 92px) 0 44px;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--patriot-blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-weight: 700;
}

.sale-ribbon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  border: 1px solid rgba(178, 71, 77, 0.25);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--cranberry);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.cover-title {
  display: grid;
  gap: 0;
  line-height: 0.88;
}

.cover-title__top {
  color: var(--patriot-blue);
  font-size: clamp(2.9rem, 7.2vw, 6.4rem);
  letter-spacing: 0;
}

.cover-title__script {
  color: var(--lavender);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(4rem, 10vw, 8.4rem);
  font-weight: 500;
  line-height: 0.72;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
}

.cover-title__bottom {
  color: var(--patriot-blue);
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

h3 {
  margin: 14px 0 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.subtitle {
  margin: 28px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.countdown {
  max-width: 650px;
  margin: 18px 0 0;
  border-left: 5px solid var(--cranberry);
  padding: 10px 0 10px 16px;
  color: var(--patriot-blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.4;
}

.hero__actions,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__actions {
  margin-top: 34px;
}

button,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 19px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

button {
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--patriot-blue);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(38, 63, 117, 0.24);
}

.button--secondary {
  border-color: rgba(82, 80, 142, 0.28);
  color: var(--lavender);
  background: rgba(255, 255, 255, 0.5);
}

.book-stage {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.book-cover {
  width: min(100%, 390px);
  aspect-ratio: 309 / 400;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.book-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.book-facts span {
  border: 1px solid rgba(82, 80, 142, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--patriot-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.intro-band,
.details-band,
.cta-band,
.campaign-band,
.choice-band,
.proof-band,
.share-band,
.qr-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: clamp(24px, 4vw, 54px);
  padding: 64px 0;
  border-top: 1px solid rgba(37, 33, 29, 0.12);
}

.intro-copy p,
.quote-panel p,
.feature-grid p,
.details-list,
.cta-band {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.intro-copy p {
  max-width: 660px;
  margin: 22px 0 0;
}

.quote-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
  border-left: 5px solid var(--cranberry);
  padding: 18px 0 18px 28px;
}

.quote-panel p {
  margin: 0;
  color: var(--patriot-blue);
  font-size: 1.28rem;
}

.choice-band {
  padding: 8px 0 64px;
}

.choice-band__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.42fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  margin-bottom: 22px;
}

.choice-band__heading h2 {
  color: var(--patriot-blue);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(38, 63, 117, 0.16);
}

.choice-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 286px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.72);
}

.choice-grid h3 {
  margin: 0;
  color: var(--patriot-blue);
}

.choice-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.choice-grid .button {
  align-self: end;
  width: fit-content;
  margin-top: 8px;
}

.choice-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.campaign-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  margin-bottom: 1px;
  border-block: 1px solid rgba(38, 63, 117, 0.13);
  padding: 42px 0;
}

.campaign-band h2 {
  color: var(--lavender);
}

.campaign-band p:last-child {
  margin: 0;
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(238, 243, 231, 0.9));
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.55;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  padding: 54px 0;
}

.proof-band h2 {
  color: var(--patriot-blue);
}

.proof-steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: proof-step;
  background: rgba(38, 63, 117, 0.14);
}

.proof-steps li {
  counter-increment: proof-step;
  position: relative;
  min-height: 96px;
  padding: 20px 20px 20px 72px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.proof-steps li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--cranberry);
  color: var(--white);
  content: counter(proof-step);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
}

.proof-steps strong {
  display: block;
  color: var(--patriot-blue);
}

.proof-copy {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-top: 22px;
}

.proof-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.proof-copy .button {
  width: fit-content;
}

.proof-copy span {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.share-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(310px, 0.58fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: 0 0 64px;
}

.share-band h2 {
  color: var(--lavender);
}

.share-panel {
  display: grid;
  gap: 14px;
  border-left: 5px solid var(--sage-dark);
  padding: 20px 0 20px 28px;
}

.share-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.share-panel .button {
  width: fit-content;
}

.share-panel span {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.qr-band {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(260px, 0.38fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: 0 0 64px;
}

.qr-band h2 {
  color: var(--patriot-blue);
}

.qr-band p:last-child {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  border: 1px solid rgba(38, 63, 117, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.qr-card img {
  width: min(100%, 260px);
  aspect-ratio: 1;
}

.qr-card figcaption {
  color: var(--patriot-blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(38, 63, 117, 0.16);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 64px;
}

.feature-grid article {
  min-height: 245px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(251, 251, 244, 0.94);
}

.feature-number {
  color: var(--cranberry);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
}

.feature-grid p {
  margin: 0;
}

.details-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(310px, 0.55fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid rgba(38, 63, 117, 0.12);
}

.details-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(38, 63, 117, 0.14);
}

.details-list div {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 18px;
  padding: 18px;
  background: rgba(251, 251, 244, 0.96);
}

dt {
  color: var(--patriot-blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--ink);
}

.cta-band {
  justify-content: space-between;
  margin-bottom: 40px;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(90deg, rgba(38, 63, 117, 0.1), rgba(178, 71, 77, 0.08)),
    var(--linen);
}

.cta-band h2 {
  max-width: 760px;
}

.sticky-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: flex;
  max-width: min(560px, calc(100% - 36px));
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(38, 63, 117, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(251, 251, 244, 0.96);
  box-shadow: 0 18px 48px rgba(38, 63, 117, 0.2);
}

.sticky-order p {
  margin: 0;
  color: var(--patriot-blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.sticky-order .button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 15px;
}

@media (max-width: 860px) {
  .hero,
  .intro-band,
  .details-band,
  .campaign-band,
  .proof-band,
  .share-band,
  .qr-band,
  .choice-band__heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
    gap: 26px;
  }

  .book-stage {
    order: -1;
  }

  .book-cover {
    width: min(48vw, 220px);
  }

  .cover-title__top {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

  .cover-title__script {
    font-size: clamp(3.35rem, 12vw, 5.1rem);
  }

  .cover-title__bottom {
    font-size: clamp(2rem, 8vw, 3.3rem);
  }

  .feature-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .choice-grid article {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .hero,
  .intro-band,
  .details-band,
  .cta-band,
  .campaign-band,
  .feature-grid,
  .choice-band,
  .proof-band,
  .share-band,
  .qr-band {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    max-width: 100%;
  }

  .cover-title__top {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .cover-title__script {
    font-size: clamp(3.6rem, 18vw, 5.3rem);
  }

  .cover-title__bottom {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hero__actions,
  .cta-band,
  .sticky-order {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .sticky-order {
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    max-width: calc(100% - 28px);
  }

  .choice-grid .button {
    width: 100%;
  }

  .proof-copy .button {
    width: 100%;
  }

  .share-panel {
    padding-left: 18px;
  }

  .share-panel .button {
    width: 100%;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
