/* =========================================================
   What Is Your Pet, Really? — monochrome editorial sales page
   Palette: black / white / grey only. No color, no gradients.
   Hierarchy via type, weight, whitespace, contrast.
   ========================================================= */

:root {
  /* DARK + GLOW THEME (warm amber) */
  --ink:        #f4efe6;   /* primary text — light on dark */
  --ink-soft:   #d8d1c4;
  --grey-700:   #b4aa9b;   /* secondary body text */
  --grey-500:   #8c8474;   /* muted captions */
  --grey-300:   #6b6354;   /* faint / separators */
  --grey-150:   #211d17;
  --grey-100:   #14110d;   /* dark alt band */
  --paper:      #0d0b09;   /* page background */
  --line:       #2a261f;

  /* warm amber accent + glow */
  --accent:        #e0a23a;
  --accent-hover:  #efb858;
  --on-accent:     #1a1308;
  --glow:          rgba(224, 162, 58, .30);
  --glow-soft:     rgba(224, 162, 58, .15);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --gap: clamp(20px, 5vw, 40px);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
s { color: var(--grey-500); }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gap);
}
.wrap--narrow { max-width: 760px; }

.section { padding-block: clamp(64px, 10vw, 120px); }
.section--inside { border-top: 1px solid var(--line); }
.section--get { background: var(--grey-100); border-block: 1px solid var(--line); }
.section--faq { border-top: 1px solid var(--line); }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 6vw, 64px); }
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 0 0 14px;
  font-weight: 600;
}
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
.section__sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--grey-700);
  margin: 18px 0 0;
  max-width: 56ch;
}

/* ---------- buttons ---------- */
.btn {
  --bh: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 22px;
  min-height: var(--bh);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn--solid { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.btn--solid:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--sm  { --bh: 40px; padding: 0 16px; font-size: 14px; }
.btn--lg  { --bh: 56px; padding: 0 30px; font-size: 16.5px; }
.btn--block { display: flex; width: 100%; }
.btn:active { transform: translateY(1px); }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.announce p {
  margin: 0;
  padding: 9px var(--gap);
  font-size: 13px;
  letter-spacing: .02em;
}
.announce strong { font-weight: 700; }
.announce s { color: rgba(255,255,255,.55); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark { font-size: 20px; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav { display: none; gap: 28px; }
.nav a {
  text-decoration: none;
  color: var(--grey-700);
  font-size: 15px;
  font-weight: 500;
  transition: color .15s;
}
.nav a:hover { color: var(--ink); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__actions .btn--sm { display: none; }

/* hamburger */
.menu-toggle {
  width: 42px; height: 42px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gap) 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid var(--grey-150);
}
.mobile-menu .btn { margin-top: 14px; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(48px, 9vw, 120px); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 8vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 720px; }
.eyebrow {
  font-size: 12.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  margin: 0 0 22px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(36px, 8.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}
.hero__title em { font-style: italic; font-weight: 400; }
.hero__sub {
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.6;
  color: var(--grey-700);
  max-width: 60ch;
  margin: 0 0 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__trust {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--grey-500);
  text-transform: uppercase;
  margin: 0;
}

/* ---------- floating 3D book ---------- */
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}
/* the monochrome "light pool" — tasteful greyscale glow */
.hero__media::before {
  content: "";
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    closest-side,
    rgba(0, 0, 0, 0.10),
    rgba(0, 0, 0, 0.04) 45%,
    transparent 72%
  );
  z-index: 0;
  pointer-events: none;
}
.book-scene {
  position: relative;
  z-index: 1;
  perspective: 2200px;
}
.book {
  position: relative;
  width: clamp(220px, 56vw, 300px);
  aspect-ratio: 100 / 140;
  transform-style: preserve-3d;
  transform: rotateY(-26deg) rotateX(5deg);
  animation: bookFloat 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes bookFloat {
  0%, 100% { transform: rotateY(-26deg) rotateX(5deg) translateY(0); }
  50%      { transform: rotateY(-22deg) rotateX(4deg) translateY(-14px); }
}

/* front cover */
.book__cover {
  position: absolute;
  inset: 0;
  transform: translateZ(19px);
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px 4px 4px 2px;
  padding: clamp(20px, 4vw, 30px) clamp(18px, 3.4vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* page-glow on the spine edge + soft inner depth */
  box-shadow:
    inset 14px 0 22px -16px rgba(255, 255, 255, 0.35),
    inset -6px 0 14px -8px rgba(0, 0, 0, 0.6);
}
.book__brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
}
.book__mark {
  font-size: clamp(26px, 6vw, 34px);
  line-height: 1;
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.92);
}
.book__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 4.4vw, 27px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
}
.book__title em { font-style: italic; }
.book__rule {
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 16px 0 14px;
}
.book__tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  max-width: 22ch;
}
/* the page block (right edge thickness) */
.book__pages {
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 38px;
  transform: translateX(18px) rotateY(90deg);
  transform-origin: right center;
  background: repeating-linear-gradient(
    to right,
    #f4f3f1 0,
    #f4f3f1 1px,
    #d9d7d3 1px,
    #d9d7d3 2px
  );
  border-radius: 1px;
}
/* the cast shadow on the ground */
.book::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -6%;
  height: 24px;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(18px);
  transform: translateZ(-40px) rotateX(80deg) scale(0.92);
  z-index: -1;
  animation: bookShadow 7s ease-in-out infinite;
}
@keyframes bookShadow {
  0%, 100% { opacity: 0.6; transform: translateZ(-40px) rotateX(80deg) scale(0.92); }
  50%      { opacity: 0.35; transform: translateZ(-40px) rotateX(80deg) scale(1.02); }
}

/* ---------- chapters ---------- */
.chapters {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.chapter {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 24px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  background: var(--paper);
  transition: background .18s ease;
}
.chapter:hover { background: var(--grey-100); }
.chapter__no {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--grey-500);
  font-weight: 500;
  min-width: 22px;
  font-variant-numeric: tabular-nums;
}
.chapter__title {
  font-family: var(--serif);
  font-weight: 440;
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}
.chapter--plus { background: var(--ink); }
.chapter--plus:hover { background: var(--ink); }
.chapter--plus .chapter__no,
.chapter--plus .chapter__title { color: var(--paper); }
.chapter--plus .chapter__no { color: var(--grey-500); }

/* ---------- what you get cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--grey-100);
  padding: 32px 28px;
}
.card__title {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.card__body { margin: 0; color: var(--grey-700); font-size: 16px; }

/* ---------- pricing ---------- */
.section--pricing { text-align: center; }
.section--pricing .section__head { margin-inline: auto; }
.price-card {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  background: var(--paper);
}
.countdown { margin-bottom: 30px; }
.countdown__label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  margin: 0 0 14px;
}
.countdown__clock {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.countdown__unit span {
  font-family: var(--serif);
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 420;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__unit small {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 8px;
}
.countdown__sep {
  font-family: var(--serif);
  font-size: clamp(26px, 6vw, 36px);
  color: var(--grey-300);
  line-height: 1.1;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}
.price-card__was {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--grey-500);
}
.price-card__now {
  font-family: var(--serif);
  font-size: clamp(46px, 10vw, 64px);
  font-weight: 440;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-card__note {
  margin: 0 0 26px;
}
/* live urgency chip — monochrome standout via contrast, not color */
.tag-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
}
.tag-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--paper);
  animation: livePulse 1.7s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  50%      { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}
.includes {
  list-style: none;
  margin: 0 0 28px;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  text-align: left;
  display: grid;
  gap: 13px;
}
.includes li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: var(--ink-soft);
}
.includes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
  color: var(--ink);
}
.price-card__promise {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--grey-500);
  line-height: 1.5;
}
.price-card__guarantee {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
  color: var(--grey-500);
  text-align: center;
}
.price-card__guarantee strong { color: var(--ink); font-weight: 600; }

/* value-stack anchor + payment trust row */
.value-stack {
  margin: 0 0 22px;
  font-size: 14.5px;
  color: var(--grey-700);
  text-align: center;
}
.value-stack s { color: var(--grey-500); }
.value-stack strong { color: var(--ink); font-weight: 600; }
.pay-trust {
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--grey-500);
  line-height: 1.5;
}

/* hero assurance microline (guarantee at the CTA) */
.hero__assure {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--grey-700);
}

/* ---------- social proof ---------- */
.section--proof { border-top: 1px solid var(--line); }
.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.quote {
  background: var(--paper);
  margin: 0;
  padding: 32px 28px;
}
.stars {
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--ink);
  margin-bottom: 16px;
}
.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.quote figcaption {
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.proof__trust {
  text-align: center;
  margin: 38px 0 0;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--grey-500);
}
@media (min-width: 880px) {
  .proof__grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(18px, 2.4vw, 21px);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 26px;
  color: var(--grey-500);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin: 0;
  padding: 0 44px 26px 0;
  color: var(--grey-700);
  font-size: 16.5px;
}

/* ---------- closing ---------- */
.closing {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding-block: clamp(72px, 12vw, 132px);
}
.closing__title {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.closing__title em { font-style: italic; }
.closing__line {
  color: var(--grey-300);
  font-size: clamp(17px, 2.3vw, 20px);
  max-width: 48ch;
  margin: 0 auto 34px;
}
.closing .btn--solid {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.closing .btn--solid:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.closing__trust {
  margin: 20px 0 0;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-500);
}

/* ---------- footer ---------- */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-block: 56px 96px;
}
.footer__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.footer__brand {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 4px;
}
.footer__brand span { color: var(--grey-500); font-style: italic; }
.footer__copy { color: var(--grey-500); font-size: 14px; margin: 0 0 22px; }
.footer__disc {
  color: var(--grey-500);
  font-size: 12.5px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 8px auto 0;
}

/* ---------- persistent mobile buy bar ---------- */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px var(--gap);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 -2px 14px rgba(0,0,0,.16);
}
.buybar__text { font-weight: 600; font-size: 16px; }
.buybar__price { font-family: var(--serif); font-size: 18px; }
.buybar__price s { color: rgba(0,0,0,.42); font-size: 14px; margin-left: 4px; }

/* keep content clear of the fixed bar on mobile */
body { padding-bottom: 0; }
@media (max-width: 859px) {
  main { /* spacing handled by footer padding */ }
  .footer { padding-bottom: 110px; }
}

/* =========================================================
   RESPONSIVE — mobile-first; enhance upward
   ========================================================= */
@media (min-width: 600px) {
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .header__actions .btn--sm { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .buybar { display: none; }
  .chapters { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1.08fr 0.92fr; }
  .book { width: clamp(260px, 24vw, 320px); }
}

@media (min-width: 1024px) {
  .chapters { grid-template-columns: 1fr 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr 1fr; }
}

/* draft-copy marker — visible only as a faint left rule while editing;
   delete this block once your verbatim copy is in. */
[data-draft] { /* no visual change in production — kept neutral */ }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .book, .book::after, .tag-live__dot { animation: none !important; }
}

/* ============================================================
   DARK + GLOW THEME — restyles surfaces that assumed a light bg.
   Structure/HTML unchanged. Warm amber glow woven throughout.
   ============================================================ */

/* announcement strip — subtle dark bar, amber price */
.announce { background: #16120d; color: var(--ink); border-bottom: 1px solid var(--line); }
.announce strong { color: var(--accent); }
.announce s { color: var(--grey-500); }

/* sticky header — dark translucent */
.header { background: rgba(13, 11, 9, .82); }

/* primary CTA — amber with a soft glow */
.btn--solid { box-shadow: 0 10px 34px -12px var(--glow); }
.btn--solid:hover { box-shadow: 0 14px 44px -10px var(--glow); }

/* hero — amber light pool + glowing dark book */
.hero__media::before {
  background: radial-gradient(closest-side, var(--glow), var(--glow-soft) 42%, transparent 72%);
}
.book__cover {
  background: #1a150d;
  color: var(--ink);
  box-shadow:
    inset 14px 0 22px -16px rgba(255, 255, 255, .16),
    inset -6px 0 14px -8px rgba(0, 0, 0, .75),
    0 36px 70px -22px rgba(0, 0, 0, .75),
    0 0 70px -8px var(--glow);
}
.book__title { color: var(--ink); }
.book__brand, .book__tag { color: var(--grey-700); }
.book__mark { color: var(--accent); }

/* inside-the-book highlight card → amber */
.chapter--plus { background: var(--accent); }
.chapter--plus .chapter__title { color: var(--on-accent); }
.chapter--plus .chapter__no { color: rgba(26, 19, 8, .5); }

/* what-you-get cards → elevated dark surface */
.card { background: #1a1610; }

/* urgency chip → glowing amber outline */
.tag-live {
  background: rgba(224, 162, 58, .12);
  color: var(--accent);
  border: 1px solid rgba(224, 162, 58, .45);
}
.tag-live__dot { background: var(--accent); box-shadow: 0 0 9px var(--accent); animation-name: livePulseAmber; }
@keyframes livePulseAmber {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 162, 58, .55); }
  50%      { opacity: .55; transform: scale(.82); box-shadow: 0 0 0 6px rgba(224, 162, 58, 0); }
}

/* pricing — glowing card floating on an amber pool */
.section--pricing { position: relative; overflow: hidden; }
.section--pricing::before {
  content: "";
  position: absolute;
  left: 50%; top: 46%;
  width: min(680px, 92%); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, var(--glow-soft), transparent 70%);
  pointer-events: none; z-index: 0;
}
.section--pricing .wrap { position: relative; z-index: 1; }
.price-card {
  background: #100d09;
  border-color: var(--line);
  box-shadow: 0 0 90px -24px var(--glow), 0 40px 90px -44px rgba(0, 0, 0, .85);
}

/* closing banner — deep panel with an amber bloom */
.closing { background: #0f0c09; position: relative; overflow: hidden; }
.closing::before {
  content: "";
  position: absolute;
  left: 50%; top: 64%;
  width: 150%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, var(--glow), transparent 68%);
  pointer-events: none;
}
.closing__inner { position: relative; z-index: 1; }
.closing__line { color: var(--ink-soft); }

/* persistent buy bar — amber with lift */
.buybar { box-shadow: 0 -6px 24px -6px var(--glow); }
