/* ============================================================
   The Funding Framework — fundingframework.co
   Design system. Palette sampled from the book cover:
   warm amber + deep navy, red summit flag, iceberg blues.
   ============================================================ */

:root {
  /* Brand */
  --amber:        #F4A623;
  --amber-deep:   #E2900C;
  --amber-bright: #FFB938;
  --amber-soft:   #FCEBC8;
  --amber-wash:   #FBF4E3;

  --navy:         #1B3A57;
  --navy-deep:    #112A41;
  --navy-900:     #0C1F31;

  --ink:          #14202E;
  --slate:        #4A5A6A;
  --slate-soft:   #6B7B8A;

  --red:          #E2402B;

  /* Iceberg gradient stops */
  --ice-1: #E3F1FA;
  --ice-2: #A9D6EE;
  --ice-3: #5BA8D8;
  --ice-4: #2E76A8;
  --ice-5: #1C4E76;

  /* Surfaces */
  --paper:    #FFFDF8;
  --paper-2:  #FBF5EA;
  --paper-3:  #F6EEDC;
  --white:    #FFFFFF;
  --line:     rgba(20, 32, 46, 0.10);
  --line-2:   rgba(20, 32, 46, 0.06);

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --serif:   "Fraunces", Georgia, "Times New Roman", serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(12, 31, 49, 0.06), 0 2px 6px rgba(12, 31, 49, 0.05);
  --shadow-md: 0 12px 30px rgba(12, 31, 49, 0.10), 0 4px 10px rgba(12, 31, 49, 0.06);
  --shadow-lg: 0 30px 70px rgba(12, 31, 49, 0.18), 0 10px 24px rgba(12, 31, 49, 0.10);
  --shadow-book: 0 40px 80px rgba(12, 31, 49, 0.28), 0 14px 30px rgba(12, 31, 49, 0.18);

  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1180px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber);
  display: inline-block; flex: none;
}
.eyebrow--center { justify-content: center; margin-inline: auto; }
.eyebrow--center::before { display: none; }

h1, h2, h3 { font-family: var(--display); color: var(--navy); line-height: 1.04; letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(30px, 4.4vw, 50px); }
h3 { font-size: 22px; letter-spacing: -0.01em; }
.lede { font-size: clamp(18px, 2vw, 21px); color: var(--slate); line-height: 1.6; }
.section-head { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 12px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 10px 24px rgba(17, 42, 65, 0.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(17, 42, 65, 0.32); }
.btn--amber {
  background: var(--amber); color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(226, 144, 12, 0.35);
}
.btn--amber:hover { transform: translateY(-2px); background: var(--amber-bright); box-shadow: 0 16px 34px rgba(226, 144, 12, 0.42); }
.btn--ghost {
  background: transparent; color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 22px 0;
}
.nav.is-stuck {
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding: 14px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 18px; letter-spacing: -0.01em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--amber); display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(226, 144, 12, 0.4);
  flex: none;
}
.brand__mark svg { width: 17px; height: 17px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 500; font-size: 15px; color: var(--slate); transition: color .2s ease; }
.nav__links a:hover { color: var(--navy); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 152px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(244, 166, 35, 0.20), transparent 55%),
    radial-gradient(90% 80% at 6% 90%, rgba(91, 168, 216, 0.12), transparent 60%),
    var(--paper);
}
.hero__grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center;
}
.hero__title {
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: 0.96; letter-spacing: -0.03em; font-weight: 900;
  color: var(--navy);
}
.hero__title .accent { color: var(--amber-deep); }
.hero__sub {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(18px, 2.3vw, 22px); color: var(--navy);
  margin-top: 16px; letter-spacing: -0.01em;
}
.hero p.lede { margin-top: 18px; max-width: 512px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__meta {
  margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 18px; font-size: 14px; color: var(--slate-soft);
}
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }
.hero__meta strong { color: var(--navy); font-weight: 600; }

/* Book figure */
.book-figure { position: relative; display: grid; place-items: center; }
.book-figure__glow {
  position: absolute; width: 64%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,166,35,0.45), rgba(244,166,35,0) 66%);
  filter: blur(12px); z-index: 0; transform: translateY(6px);
}
.book-stage { position: relative; z-index: 1; width: min(322px, 78%); }
.book {
  position: relative; z-index: 1; width: 100%;
  border-radius: 3px 8px 8px 3px;
  box-shadow: var(--shadow-book);
  transform: perspective(2400px) rotateY(-7deg) rotateX(1.5deg);
  transition: transform .6s var(--ease);
  animation: bookfloat 8s ease-in-out infinite;
}
.book::before { /* spine */
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 9px;
  background: linear-gradient(90deg, rgba(0,0,0,0.30), rgba(0,0,0,0.04) 65%, rgba(255,255,255,0.16));
  border-radius: 3px 0 0 3px;
}
.book::after { /* page edge */
  content: ""; position: absolute; right: -5px; top: 5px; bottom: 5px; width: 6px;
  background: repeating-linear-gradient(180deg, #fff 0 2px, #e6dcc7 2px 3px);
  border-radius: 0 2px 2px 0; transform: rotateY(12deg); transform-origin: left;
  box-shadow: 2px 0 6px rgba(0,0,0,0.10);
}
.book img { border-radius: 3px 6px 6px 3px; width: 100%; height: auto; aspect-ratio: 903 / 1356; }
.book-figure:hover .book { transform: perspective(2400px) rotateY(-3deg) rotateX(0.5deg) translateY(-6px); animation-play-state: paused; }
@keyframes bookfloat {
  0%, 100% { transform: perspective(2400px) rotateY(-7deg) rotateX(1.5deg) translateY(0); }
  50%      { transform: perspective(2400px) rotateY(-7deg) rotateX(1.5deg) translateY(-11px); }
}
.book-badge {
  position: absolute; z-index: 3; top: -10px; right: -24px;
  background: var(--navy); color: #fff; font-family: var(--display); font-weight: 700;
  font-size: 9.5px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 9px;
  box-shadow: 0 7px 16px rgba(12, 31, 49, 0.28);
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease;
}
.book-badge svg { width: 12px; height: 12px; color: var(--amber); }
.book-badge:hover { transform: translateY(-2px); background: var(--navy-deep); box-shadow: 0 11px 22px rgba(12, 31, 49, 0.34); }
@media (prefers-reduced-motion: reduce) {
  .book { animation: none; }
}

/* Marquee / featured strip */
.featured { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: var(--white); }
.featured .wrap { display: grid; grid-template-columns: 5fr 4fr; gap: 56px; align-items: start; padding-block: 44px; }
.featured__row { text-align: center; display: flex; flex-direction: column; }
.featured__row--featured { position: relative; }
.featured__row--featured::before { content: ""; position: absolute; left: -28px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.featured__label { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-soft); display: block; margin-bottom: 22px; }
.featured__logos { display: flex; align-items: center; gap: 18px 40px; flex-wrap: wrap; justify-content: center; min-height: 32px; }
.featured__also { font-size: 13.5px; color: var(--slate-soft); margin-top: 18px; line-height: 1.65; }
.featured__also a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--line); transition: color .2s ease, border-color .2s ease; }
.featured__also a:hover { color: var(--amber-deep); border-color: var(--amber); }
@media (max-width: 860px) {
  .featured .wrap { grid-template-columns: 1fr; gap: 0; padding-block: 38px; }
  .featured__row--featured { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line-2); }
  .featured__row--featured::before { display: none; }
}
.logo-chip { display: inline-flex; align-items: center; opacity: 0.5; filter: grayscale(100%); transition: opacity .25s var(--ease), filter .25s var(--ease), transform .25s var(--ease); }
.logo-chip:hover { opacity: 1; filter: grayscale(0%); transform: translateY(-2px); }
.logo-chip img { max-height: 26px; max-width: 122px; width: auto; height: auto; display: block; object-fit: contain; }
.logo-chip--icon img { max-height: 30px; }

/* ---------- Iceberg / framework ---------- */
.framework { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); overflow: hidden; }
.framework__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: stretch; margin-top: 28px; }
.iceberg-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line-2);
  background: #D2E9F6;
}
.iceberg-wrap svg { display: block; width: 100%; height: auto; }
.layer-list { display: grid; gap: 14px; align-content: space-between; }
.layer {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.layer:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(244,166,35,0.5); }
.layer__num {
  font-family: var(--display); font-weight: 800; font-size: 15px; color: #fff;
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none;
}
.layer:nth-child(1) .layer__num { background: var(--ice-2); color: var(--navy); }
.layer:nth-child(2) .layer__num { background: var(--ice-3); }
.layer:nth-child(3) .layer__num { background: var(--ice-4); }
.layer:nth-child(4) .layer__num { background: var(--ice-5); }
.layer h3 { margin-bottom: 4px; }
.layer p { font-size: 15.5px; color: var(--slate); line-height: 1.55; }

/* ---------- Inside / value bullets ---------- */
.inside { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 26px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(244,166,35,0.55); box-shadow: var(--shadow-md); }
.card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.card__icon { color: var(--amber-deep); display: flex; }
.card__icon svg { width: 27px; height: 27px; display: block; }
.card__no { font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; color: var(--slate-soft); }
.card h3 { margin-bottom: 9px; font-size: 19px; letter-spacing: -0.01em; }
.card p { font-size: 15.5px; color: var(--slate); line-height: 1.62; }

/* ---------- Who it's for ---------- */
.audience { background: var(--navy-deep); color: #fff; }
.audience h2 { color: #fff; margin-bottom: 20px; }
.audience .lede { color: rgba(255,255,255,0.72); line-height: 1.65; }
.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.checklist { display: grid; gap: 18px; margin-top: 8px; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; font-size: 17px; line-height: 1.5; color: rgba(255,255,255,0.88); }
.checklist .tick {
  width: 26px; height: 26px; border-radius: 8px; background: var(--amber); color: var(--navy-900);
  display: grid; place-items: center; flex: none;
}
.checklist .tick svg { width: 15px; height: 15px; }
.audience__not {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: clamp(34px, 4vw, 52px);
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
}
.audience__not h3 { color: #fff; font-size: clamp(27px, 3.6vw, 42px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 8px; }
.audience__not p { color: rgba(255,255,255,0.74); font-size: clamp(16.5px, 1.5vw, 18.5px); line-height: 1.62; }
.audience__not .x { color: var(--red); font-weight: 700; }

/* ---------- Author ---------- */
.author { background: var(--paper-2); }
.author__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.author__photo { position: relative; padding: 24px 26px 26px 0; perspective: 1300px; }
.author__backdrop {
  position: absolute; z-index: 0; inset: 0 0 26px 36px;
  background: linear-gradient(145deg, #2a557d 0%, var(--navy) 46%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  box-shadow:
    0 34px 60px -20px rgba(9, 22, 36, 0.62),
    0 12px 22px -10px rgba(9, 22, 36, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.12),
    inset 0 -3px 8px rgba(0, 0, 0, 0.28);
}
.author__dots {
  position: absolute; z-index: 0; top: 0; right: 0; width: 104px; height: 104px;
  background-image: radial-gradient(var(--amber) 1.7px, transparent 1.8px);
  background-size: 15px 15px; opacity: 0.55;
}
.author__frame {
  position: relative; z-index: 1; border-radius: var(--radius-lg); overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 50px -18px rgba(9, 22, 36, 0.45), 0 8px 18px -8px rgba(9, 22, 36, 0.18);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.author__photo:hover .author__frame {
  transform: translateY(-8px);
  box-shadow: 0 38px 64px -18px rgba(9, 22, 36, 0.5), 0 12px 24px -8px rgba(9, 22, 36, 0.22);
}
.author__frame img { width: 100%; height: auto; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.author__tag {
  position: absolute; z-index: 2; left: -12px; bottom: 46px;
  background: var(--amber); color: var(--navy-900);
  font-family: var(--display); font-weight: 800; font-size: 12.5px; letter-spacing: 0.03em;
  padding: 9px 15px; border-radius: 9px; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 7px;
}
.author__tag svg { width: 13px; height: 13px; flex: none; }
.author__stats { display: flex; gap: 32px; margin: 26px 0 22px; flex-wrap: wrap; }
.stat .n { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--navy); line-height: 1; }
.stat .l { font-size: 13.5px; color: var(--slate-soft); margin-top: 6px; }
.author blockquote {
  font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.5;
  color: var(--navy); border-left: 3px solid var(--amber); padding-left: 22px; margin-top: 8px;
}
.author__cred { font-size: 15px; color: var(--slate); margin-top: 22px; }

/* ---------- Proof ---------- */
.proof { background: var(--white); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.quote {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px 28px; display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s var(--ease), border-color .3s ease;
}
.quote::before {
  content: "\201C"; position: absolute; top: 6px; right: 20px;
  font-family: var(--serif); font-size: 110px; line-height: 1; color: var(--amber);
  opacity: 0.16; pointer-events: none;
}
.quote:hover { transform: translateY(-4px); border-color: rgba(244,166,35,0.5); }
.quote .stars { color: var(--amber); letter-spacing: 3px; font-size: 14px; position: relative; z-index: 1; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--navy); line-height: 1.5; position: relative; z-index: 1; }
.quote .who { font-size: 13.5px; color: var(--slate-soft); font-weight: 500; margin-top: auto; padding-top: 6px; }
.quote .who strong { color: var(--navy); display: block; font-weight: 700; font-family: var(--display); font-size: 15px; }

/* ---------- Book details + retailers ---------- */
.details { background: linear-gradient(180deg, var(--paper-2), var(--paper)); }
.details__head { max-width: 620px; margin-bottom: 44px; }
.details__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.spec { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.spec__row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 15px 22px; }
.spec__row + .spec__row { border-top: 1px solid var(--line-2); }
.spec dt { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-soft); font-weight: 600; flex: none; }
.spec dd { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 16px; text-align: right; }
.retailers { display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: space-between; }
.retailer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 20px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.retailer:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: rgba(244,166,35,0.6); }
.retailer__name { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 16px; }
.retailer__meta { font-size: 13px; color: var(--slate-soft); }
.retailer__go { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--amber-deep); }
.retailer--lead { background: var(--navy); border-color: var(--navy); }
.retailer--lead .retailer__name, .retailer--lead .retailer__go { color: #fff; }
.retailer--lead .retailer__meta { color: rgba(255,255,255,0.66); }
.retailer--lead:hover { box-shadow: 0 16px 32px rgba(17,42,65,0.3); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq__list { max-width: 820px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 24px; font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--navy);
}
.faq__q .ic { flex: none; width: 26px; height: 26px; display: grid; place-items: center; color: var(--amber-deep); transition: transform .3s var(--ease); }
.faq__item[open] .faq__q .ic { transform: rotate(45deg); }
.faq__a { padding: 0 24px 24px; color: var(--slate); font-size: 16px; line-height: 1.65; max-width: 70ch; }
.faq__item summary { list-style: none; cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }

/* ---------- Coaching / newsletter band (downplayed) ---------- */
.more { background: var(--paper-2); }
.more__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.more__card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .3s var(--ease), border-color .3s ease;
}
.more__card::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--amber); transition: width .5s var(--ease); }
.more__card:hover { transform: translateY(-4px); border-color: rgba(244,166,35,0.5); }
.more__card:hover::before { width: 100%; }
.more__card a.lnk svg { transition: transform .3s var(--ease); }
.more__card:hover a.lnk svg { transform: translate(3px, -3px); }
.more__card .tag { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-deep); }
.more__card h3 { font-size: 21px; }
.more__card p { font-size: 15.5px; color: var(--slate); }
.more__card a.lnk { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 15px; display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.more__card a.lnk:hover { color: var(--amber-deep); }

/* ---------- Final CTA ---------- */
.cta {
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(244,166,35,0.30), transparent 55%),
    var(--navy-deep);
  color: #fff; text-align: center; overflow: hidden;
}
.cta h2 { color: #fff; font-size: clamp(34px, 5vw, 58px); }
.cta p { color: rgba(255,255,255,0.74); max-width: 560px; margin: 18px auto 0; font-size: 19px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.6); padding: 64px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand { color: #fff; }
.footer p { font-size: 14.5px; line-height: 1.6; margin-top: 16px; max-width: 320px; }
.footer h4 { font-family: var(--display); color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,0.62); transition: color .2s; }
.footer ul a:hover { color: var(--amber); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; font-size: 13.5px; flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Retailer modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; }
.modal.is-open { display: grid; }
.modal__scrim { position: absolute; inset: 0; background: rgba(12, 31, 49, 0.55); backdrop-filter: blur(4px); }
.modal__box {
  position: relative; z-index: 1; width: min(460px, 100%); background: var(--paper);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg);
  animation: pop .3s var(--ease);
}
@keyframes pop { from { transform: scale(.96) translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__box h3 { font-size: 22px; margin-bottom: 6px; }
.modal__box p { color: var(--slate); font-size: 15px; margin-bottom: 22px; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--slate); transition: background .2s; }
.modal__close:hover { background: var(--line); }
.modal .retailers { gap: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .framework__grid, .audience__grid, .author__grid, .details__cols { grid-template-columns: 1fr; gap: 44px; }
  .hero__grid { gap: 36px; }
  .book-figure { margin-top: 8px; }
  .book-stage { width: min(280px, 64%); }
  .author__photo { max-width: 340px; }
  .cards, .quotes { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav { padding: 16px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--navy); }
  .nav__cta .btn--ghost { display: none; }
  .brand { font-size: 16px; line-height: 1.1; }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .hero { padding: 116px 0 64px; }
  .hero__title { font-size: clamp(40px, 13vw, 60px); }
  .book-stage { width: min(248px, 60%); }
  .nav { padding: 16px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--navy); }
  .nav__cta .btn { display: none; }
  .brand { font-size: 15.5px; max-width: 62vw; line-height: 1.1; }
  .cards, .quotes, .more__grid, .footer__top, .audience__not + *, .more__grid { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; }
  .audience__grid { gap: 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}
/* Mobile menu drawer */
.drawer { position: fixed; inset: 0; z-index: 70; display: none; }
.drawer.is-open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(12,31,49,0.5); backdrop-filter: blur(4px); }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 84vw); background: var(--paper); box-shadow: var(--shadow-lg); padding: 28px 26px; display: flex; flex-direction: column; gap: 8px; animation: slidein .3s var(--ease); }
@keyframes slidein { from { transform: translateX(100%); } to { transform: none; } }
.drawer__panel a { padding: 14px 0; font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--navy); border-bottom: 1px solid var(--line); }
.drawer__panel .btn { margin-top: 16px; }
.drawer__close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--slate); }
