@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,650;9..144,750;9..144,850&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #142236;
  --deep: #12375f;
  --copy: #304861;
  --muted: #66758a;
  --line: #dce7f3;
  --paper: #ffffff;
  --soft: #f7fbff;
  --warm: #fffaf2;
  --warm-line: #eadbc3;
  --brass: #b8894d;
  --blue: #245f8f;
  --green: #287a3d;
  --green-bg: #eef9f2;
  --red: #9f2e23;
  --red-bg: #fff2ed;
  --shadow: 0 24px 70px rgba(18, 55, 95, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0, rgba(120, 166, 203, .18), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(184, 137, 77, .15), transparent 30%),
    linear-gradient(180deg, #fbfdff 0, #f7fbff 44%, #fff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(36, 95, 143, .045), transparent 44%);
}

a { color: inherit; }

.page {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 20px 88px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(760px, calc(100vh - 44px));
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(220, 231, 243, .92);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f7fbff 55%, #fffaf2 100%);
  box-shadow: var(--shadow);
}

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

h1,
h2,
h3 {
  font-family: Fraunces, Newsreader, Georgia, serif;
  color: var(--deep);
  font-weight: 750;
  letter-spacing: 0;
}

.quote-mark {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: inherit;
  line-height: 0;
}

h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 1.02;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
}

h3 {
  margin: 28px 0 10px;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.18;
}

p {
  margin: 0 0 16px;
  color: var(--copy);
  font-size: 18px;
}

.lead {
  max-width: 760px;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.48;
  color: #284a6f;
}

.hero-copy strong,
.content strong {
  color: var(--deep);
}

.hero-media {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.book-frame {
  width: min(100%, 390px);
  padding: 14px;
  border: 1px solid var(--warm-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 22px 58px rgba(18, 55, 95, .14);
}

.book-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.micro-panel {
  width: min(100%, 390px);
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
}

.micro-panel p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(36, 95, 143, .2);
}

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

.btn.secondary {
  background: #fff;
  color: var(--blue);
  border-color: var(--line);
  box-shadow: none;
}

.section {
  margin: 26px 0;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(220, 231, 243, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(18, 55, 95, .07);
}

.section.warm {
  border-color: var(--warm-line);
  background: linear-gradient(135deg, #fff, var(--warm));
}

.section.blue {
  background: linear-gradient(135deg, #f7fbff, #fff);
}

.content {
  max-width: 850px;
}

.content.wide {
  max-width: none;
}

ul {
  margin: 12px 0 18px;
  padding-left: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 9px 0;
  padding-left: 25px;
  color: var(--copy);
  font-size: 17px;
}

li::before {
  content: "•";
  position: absolute;
  left: 7px;
  color: var(--brass);
  font-weight: 900;
}

.bridge {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.bridge-card {
  padding: 24px;
  border: 1px solid var(--warm-line);
  border-radius: 8px;
  background: #fffaf2;
}

.bridge-card p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.list-box {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.list-box h3 {
  margin-top: 0;
}

.check li::before,
.good li::before {
  content: "✓";
  left: 0;
  color: var(--green);
}

.cross li::before,
.bad li::before {
  content: "×";
  left: 0;
  color: var(--red);
}

.check {
  border-color: #cfe6d5;
  background: var(--green-bg);
}

.cross {
  border-color: #f2cfc4;
  background: var(--red-bg);
}

.quote {
  padding: clamp(26px, 4vw, 44px);
  border-left: 6px solid var(--brass);
  border-radius: 8px;
  background: #fffaf2;
}

.quote p {
  max-width: 870px;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.25;
  color: var(--deep);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.section.faq {
  margin-top: clamp(42px, 6vw, 64px);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  color: var(--deep);
  font-weight: 850;
  font-size: 19px;
}

.faq details p {
  margin-top: 14px;
}

.order {
  border-color: var(--warm-line);
  background:
    radial-gradient(circle at top right, rgba(184, 137, 77, .16), transparent 34%),
    linear-gradient(135deg, #fff, #fffaf2);
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: start;
}

.order-grid > *,
.order-summary,
.fapi-box {
  min-width: 0;
}

.order * {
  overflow-wrap: anywhere;
}

.order-summary {
  padding: 22px;
  border: 1px solid var(--warm-line);
  border-radius: 8px;
  background: #fff;
}

.fapi-box {
  min-height: 360px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

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

.testimonials h3 {
  margin-top: 0;
}

.testimonial-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.testimonial-shot {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 55, 95, .08);
}

.testimonial-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.clean-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}

.fineprint {
  max-width: 900px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: none;
}

.sticky-cta .btn {
  min-height: 48px;
  padding: 12px 17px;
  font-size: 14px;
}

@media (max-width: 860px) {
  .hero,
  .bridge,
  .split,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    justify-items: start;
  }

  .book-frame,
  .micro-panel {
    width: min(100%, 330px);
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px 12px 84px;
  }

  .hero,
  .section {
    padding: 22px 18px;
    overflow: hidden;
  }

  h1 {
    font-size: 40px;
  }

  p,
  li {
    font-size: 16.5px;
  }

  .lead {
    font-size: 19px;
  }

  .btn {
    width: 100%;
  }

  .sticky-cta {
    display: block;
    left: 12px;
    right: 12px;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}
