@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');

:root {
  /* === "Espresso & Caramel" palette - LOCKED. Warm brown-black, caramel accent. === */
  --bg: #100b07;
  --bg-2: #090604;
  --surface: #1b130c;
  --surface-2: #241a10;
  --ink: #f1e8d8;
  --muted: #ad9c84;
  --muted-2: #9a8c75;
  --white: #fbf3e6;
  --silver: #c8b79a;
  --thread: #cc8f4c;
  --gold-bright: #e0a96a;
  --paper: #ece1cd;
  --paper-edge: #b8a682;
  --paper-ink: #181009;
  --line: rgba(241, 232, 216, 0.12);

  --grad-silver: linear-gradient(135deg, #f5ecda 0%, #ddccb0 38%, #9c8a6c 72%, #ddccb0 100%);
  --grad-foil: linear-gradient(110deg, #9c8a6c 0%, #f5ecda 22%, #b3a98f 46%, #f5ecda 70%, #9c8a6c 100%);
  --grad-line: linear-gradient(to right, transparent, rgba(241, 232, 216, 0.55), transparent);

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body: 'EB Garamond', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scrollbar-color: #6e4a1f var(--bg-2); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #5a3f1c; border-radius: 6px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--thread); }

body {
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(201, 162, 74, 0.08), transparent 60%),
    radial-gradient(ellipse 130% 80% at 50% 118%, rgba(58, 36, 20, 0.55), transparent 72%),
    linear-gradient(180deg, #130d08 0%, #0a0705 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--thread); color: #14110a; }

a { color: var(--ink); }

#progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--thread);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 100;
}

/* ---------- Shared silver gradient text ---------- */
h2,
.brand,
.name-ferentz,
.signature,
.pull-quote blockquote,
.book-title,
.book-author strong,
.tiers .amount,
.review-name,
.card h3,
.stage-title,
.f-name {
  background-image: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  display: block;
  line-height: 1;
}

.header-right { display: flex; align-items: center; gap: 1.4rem; }

.nav { display: flex; gap: 1.3rem; align-items: center; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
@media (max-width: 880px) { .nav { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.7rem;
  border-radius: 1px;
  border: 1px solid var(--paper-edge);
  background: var(--paper);
  color: var(--paper-ink);
  cursor: pointer;
  box-shadow: 0 3px 0 var(--paper-edge);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.12s ease;
}
.btn:hover { background: #f4ecda; transform: translateY(1px); box-shadow: 0 2px 0 var(--paper-edge); }
.btn:active { transform: translateY(3px); box-shadow: 0 0 0 var(--paper-edge); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--thread);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(204, 143, 76, 0.08); color: var(--white); border-color: var(--thread); transform: translateY(1px); box-shadow: none; }
.btn-ghost:active { transform: translateY(2px); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.1rem; }

:focus-visible { outline: 2px solid var(--thread); outline-offset: 3px; }

/* ---------- Layout ---------- */
section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; z-index: 2; }
.wrap { max-width: 760px; margin: 0 auto; padding-inline: clamp(1.2rem, 5vw, 2rem); }
.wrap-wide { max-width: 1060px; margin: 0 auto; padding-inline: clamp(1.2rem, 5vw, 2rem); }
[id] { scroll-margin-top: 84px; }

h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  line-height: 1.15;
  text-align: center;
  margin-bottom: 1.6rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-top: -1rem;
  margin-bottom: 1.9rem;
}

p { margin-bottom: 1.15rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.12em; color: var(--ink); text-align: center; }

/* ---------- Ornament divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--thread);
  margin-bottom: 1.8rem;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 90px);
  background: linear-gradient(to right, transparent, rgba(236, 227, 207, 0.5));
}
.ornament::after { background: linear-gradient(to left, transparent, rgba(236, 227, 207, 0.5)); }
.ornament span { font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 2rem);
  position: relative;
  z-index: 2;
}
.hero > * { animation: rise 0.9s ease both; }
.hero .book-wrap { animation-delay: 0.15s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { to { background-position: 220% center; } }

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.7rem, 1.6rem + 5vw, 5rem);
  line-height: 1.03;
  margin-bottom: 1rem;
  background-image: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: rise 0.9s ease both;
}

.hero-sub {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.hero-hook {
  font-size: 1.18rem;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.1)) 1;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Book cover ---------- */
.book-wrap { display: flex; justify-content: center; }
.book {
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 1 / 1.5;
  background: linear-gradient(155deg, #1d1d1d 0%, #0b0b0b 55%, #171717 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  transform: perspective(1500px) rotateY(-15deg);
  box-shadow: -28px 30px 58px rgba(0, 0, 0, 0.75), 0 0 70px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.book:hover { transform: perspective(1500px) rotateY(-7deg) translateY(-6px); box-shadow: -22px 34px 72px rgba(0, 0, 0, 0.8), 0 0 90px rgba(255, 255, 255, 0.08); }
.book::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 16px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0.08) 60%, rgba(0, 0, 0, 0.45));
}
.book-inner {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: clamp(1rem, 3vw, 1.7rem) clamp(0.8rem, 2.5vw, 1.3rem);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.book-top { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.book-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.2rem, 0.6rem + 2.4vw, 1.85rem);
  line-height: 1.12;
  margin-bottom: 0.7rem;
}
.book-rule { width: 38px; height: 2px; background: var(--grad-silver); margin: 0 auto 0.7rem; }
.book-sub { font-size: 0.74rem; font-style: italic; color: var(--ink); line-height: 1.4; }
.book-author { margin-top: auto; font-family: var(--display); line-height: 1.2; }
.book-author strong { display: block; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em; }
.book-author span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.cover-sheen { position: absolute; inset: 0; pointer-events: none; z-index: 3; background: linear-gradient(125deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.05) 100%); }

/* ---------- Skeleton loaders ---------- */
.skeleton { display: none; }
.js .skeleton {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.10) 50%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(135deg, #171717 0%, #1f1f1f 50%, #151515 100%);
  background-size: 220% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -60% 0, 0 0;
  animation: skeleton-sweep 1.6s ease-in-out infinite;
  transition: opacity 0.55s ease;
}
.js .skeleton.hide { opacity: 0; pointer-events: none; }
.review-photo .skeleton { border-radius: 50%; }
@keyframes skeleton-sweep { to { background-position: 160% 0, 0 0; } }

.js .lazy-img { opacity: 0; transition: opacity 0.6s ease; }
.js .lazy-img.loaded { opacity: 1; }

/* ---------- Letter ---------- */
.letter {
  background: linear-gradient(160deg, #1e150d, #14100a);
  border-left: 4px solid var(--thread);
  padding: clamp(1.6rem, 5vw, 2.6rem);
  border-radius: 2px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}
.signature {
  margin-top: 1.4rem;
  text-align: right;
  font-family: 'Pinyon Script', var(--display), cursive;
  font-style: normal;
  font-size: 2.8rem;
  line-height: 1;
}
.name-ferentz { font-weight: 600; }

/* Editorial drop cap on the opening of any letter */
.letter > p:first-of-type::first-letter {
  float: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.7rem;
  line-height: 0.78;
  padding: 0.15rem 0.55rem 0 0;
  color: var(--ink);
}

/* ---------- Pull quote ---------- */
.pull-quote { text-align: center; padding-block: clamp(2.5rem, 7vw, 4.5rem); position: relative; z-index: 2; }
.pull-quote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.5rem);
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto;
}
.pull-quote blockquote::before {
  content: "\201C";
  display: block;
  font-size: 4rem;
  line-height: 0.1;
  margin-bottom: 1.6rem;
  color: rgba(201, 162, 74, 0.32);
  -webkit-text-fill-color: rgba(201, 162, 74, 0.32);
}
.pull-quote cite {
  display: block;
  margin-top: 1.3rem;
  font-style: normal;
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Inside list ---------- */
.inside-list { list-style: none; margin-top: 1.8rem; }
.inside-list li { position: relative; padding-left: 2.2rem; margin-bottom: 1.5rem; }
.inside-list li::before { content: "\2756"; position: absolute; left: 0; top: 0.1em; color: var(--silver); }
.inside-list strong { color: var(--white); font-weight: 600; }

/* ---------- "Is this book for you" (disadvantages, then value) ---------- */
.not-list { list-style: none; margin: 1.8rem auto 0; max-width: 640px; }
.not-list li { position: relative; padding-left: 2.1rem; margin-bottom: 1.15rem; color: var(--muted); }
.not-list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  top: 0.02em;
  color: var(--muted-2);
  font-weight: 700;
  font-size: 1.1rem;
}
.fit-turn {
  text-align: center;
  font-style: italic;
  color: var(--ink);
  margin: 2.3rem auto 0;
  max-width: 640px;
  font-size: 1.12rem;
}

/* ---------- "What you get" (the honest deliverables box) ---------- */
.get-list { list-style: none; max-width: 660px; margin: 1.8rem auto 0; }
.get-list li { position: relative; padding-left: 2.3rem; margin-bottom: 1.15rem; }
.get-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.02em;
  color: var(--thread);
  font-weight: 700;
  font-size: 1.1rem;
}
.get-list strong { color: var(--white); font-weight: 600; }
.get-note {
  max-width: 620px;
  margin: 2.1rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--muted);
}

/* ---------- By the numbers (animated stats) ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.6rem 1.2rem; margin-top: 2rem; }
.stat { text-align: center; padding: 1.3rem 0.8rem 0; border-top: 1px solid rgba(204, 143, 76, 0.4); }
.stat-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.3rem, 1.6rem + 3vw, 3.5rem);
  line-height: 1;
  background-image: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label { display: block; margin-top: 0.7rem; font-size: 0.92rem; color: var(--muted); line-height: 1.45; }

/* ---------- Striking facts ---------- */
.facts { list-style: none; max-width: 640px; margin: 1.9rem auto 0; }
.facts li { position: relative; padding-left: 2.1rem; margin-bottom: 1.25rem; }
.facts li::before { content: "\2756"; position: absolute; left: 0; top: 0.1em; color: var(--thread); }
.facts strong { color: var(--white); font-weight: 600; }

/* ---------- The ledger: full table of contents, staggered reveal ---------- */
.toc { max-width: 720px; margin: 2rem auto 0; }
.toc-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.2rem;
  align-items: baseline;
  padding: 1.05rem 0.2rem;
  border-top: 1px solid rgba(204, 143, 76, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.toc-row:last-child { border-bottom: 1px solid rgba(204, 143, 76, 0.35); }
[data-reveal].in .toc-row { opacity: 1; transform: none; }
.toc-row:nth-child(1) { transition-delay: 0.05s; }  .toc-row:nth-child(2) { transition-delay: 0.12s; }
.toc-row:nth-child(3) { transition-delay: 0.19s; }  .toc-row:nth-child(4) { transition-delay: 0.26s; }
.toc-row:nth-child(5) { transition-delay: 0.33s; }  .toc-row:nth-child(6) { transition-delay: 0.4s; }
.toc-row:nth-child(7) { transition-delay: 0.47s; }  .toc-row:nth-child(8) { transition-delay: 0.54s; }
.toc-row:nth-child(9) { transition-delay: 0.61s; }  .toc-row:nth-child(10) { transition-delay: 0.68s; }
.toc-row:nth-child(11) { transition-delay: 0.75s; } .toc-row:nth-child(12) { transition-delay: 0.82s; }
.toc-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  background-image: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  min-width: 4.6rem;
}
.toc-title { font-family: var(--display); font-size: 1.22rem; color: var(--ink); font-weight: 600; }
.toc-tease { grid-column: 2; font-size: 0.95rem; color: var(--muted); line-height: 1.55; }
.toc-tease .locked { color: var(--thread); font-style: italic; white-space: nowrap; }
.toc-tease .locked::before { content: "\1F512"; font-style: normal; font-size: 0.72em; margin-right: 0.3rem; }

/* ---------- Drawn-to-scale comparison bars ---------- */
.bars { max-width: 640px; margin: 2rem auto 0; }
.bar-row { margin-bottom: 1.7rem; }
.bar-label { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; margin-bottom: 0.5rem; }
.bar-label strong { color: var(--white); font-weight: 600; }
.bar-label .bar-val { font-family: var(--display); font-weight: 700; color: var(--gold-bright); white-space: nowrap; }
.bar-track { height: 14px; background: rgba(241, 232, 216, 0.07); border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.bar-fill {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, #8a5e2b, var(--thread), var(--gold-bright));
  transition: width 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s;
}
.bar-fill.thin { background: var(--muted-2); }
[data-reveal].in .bar-fill { width: var(--w); }
.bar-note { text-align: center; font-style: italic; color: var(--muted); font-size: 0.95rem; margin-top: 1.1rem; }

/* ---------- The named rules, locked ---------- */
.rules { list-style: none; max-width: 640px; margin: 1.9rem auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.9rem; }
.rules li {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1rem 1.1rem 1rem 2.6rem;
  font-family: var(--display);
  font-size: 1.12rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.rules li:hover { border-color: rgba(204, 143, 76, 0.6); }
.rules li::before { content: "\1F512"; position: absolute; left: 1rem; top: 1.05rem; font-size: 0.78rem; }
.rules li span { display: block; font-family: var(--body); font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }

/* ---------- Knowledge cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0 clamp(1.6rem, 4vw, 3.2rem);
  margin-top: 2rem;
  counter-reset: card;
}
.card {
  display: block;
  text-decoration: none;
  position: relative;
  counter-increment: card;
  padding: 1.5rem 0 1.6rem;
  border-top: 1px solid rgba(204, 143, 76, 0.4);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.25s ease;
}
[data-reveal].in .card { opacity: 1; transform: none; }
.card:nth-child(1) { transition-delay: 0.05s; }
.card:nth-child(2) { transition-delay: 0.15s; }
.card:nth-child(3) { transition-delay: 0.25s; }
.card:nth-child(4) { transition-delay: 0.35s; }
.card:nth-child(5) { transition-delay: 0.45s; }
.card:nth-child(6) { transition-delay: 0.55s; }
.card:hover { transform: translateY(-3px); }
.card::before {
  content: counter(card, decimal-leading-zero);
  position: absolute;
  top: 1.55rem;
  right: 0;
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--thread);
  transition: color 0.25s ease;
}
.card:hover { border-color: var(--thread); }
.card:hover::before { color: var(--white); }
.card h3 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 0.5rem; font-weight: 600; padding-right: 2.2rem; }
.card p { color: var(--muted); font-size: 0.96rem; margin: 0; line-height: 1.6; }
.card .go { display: inline-block; margin-top: 1rem; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--thread); }
.card .go::after { content: "\2192"; display: inline-block; margin-left: 0.35rem; transition: transform 0.22s ease; }
.card:hover .go::after { transform: translateX(5px); }

/* engraved hairline glyph on each card */
.card-glyph { display: block; margin-bottom: 0.7rem; color: var(--thread); opacity: 0.75; transition: opacity 0.25s ease, transform 0.3s ease; }
.card-glyph svg { width: 30px; height: 30px; display: block; }
.card:hover .card-glyph { opacity: 1; transform: scale(1.08); }

/* ---------- Tier grid / interactive chapters ---------- */
.tiers-title { text-align: center; font-family: var(--display); font-size: 1.5rem; color: var(--ink); margin-bottom: 1.8rem; }
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}
.tier {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  padding: 1.2rem 0.8rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.tier::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--grad-line);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.tier:hover { border-color: rgba(255, 255, 255, 0.55); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5); }
.tier:hover::before { opacity: 1; }
.tier .amount { font-family: var(--display); font-size: 1.8rem; font-weight: 700; line-height: 1; display: block; }
.tier .per { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0.35rem 0 0.6rem; display: block; }
.tier .chap { font-size: 0.9rem; font-style: italic; color: var(--ink); display: block; }

/* tiers as interactive buttons */
button.tier { width: 100%; font: inherit; color: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }
button.tier .amount { background-image: var(--grad-silver); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.tier.active { border-color: rgba(204, 143, 76, 0.75); box-shadow: 0 0 0 1px rgba(204, 143, 76, 0.4), 0 14px 34px rgba(0, 0, 0, 0.55); }
.tier.active::before { opacity: 1; }
.tier .open-mark { display: block; margin-top: 0.5rem; font-size: 1.1rem; line-height: 1; color: var(--thread); opacity: 0.55; transition: opacity 0.2s ease; }
.tier.active .open-mark { opacity: 1; }

/* wage finder: slide to your wage, the matching chapter opens */
.wage-finder { max-width: 520px; margin: 0 auto 2.2rem; text-align: center; }
.wage-finder label { display: block; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.wage-finder input[type="range"] { width: 100%; accent-color: var(--thread); cursor: pointer; height: 1.6rem; }
.wage-out {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 1.2rem + 1.5vw, 2.3rem);
  line-height: 1;
  margin-top: 0.5rem;
  background-image: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.wage-hint { font-size: 0.85rem; color: var(--muted-2); margin-top: 0.4rem; }

/* tick labels under the slider; the chosen one lights caramel */
.wage-ticks { display: flex; justify-content: space-between; margin-top: 0.3rem; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.wage-ticks span { transition: color 0.2s ease, transform 0.2s ease; }
.wage-ticks span.on { color: var(--gold-bright); transform: scale(1.2); }

/* the hidden parts of each chapter's split, shown as sealed question chips */
.stage-parts { font-size: 0.96rem; color: var(--ink); margin-bottom: 0.7rem; }
.parts { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.2rem; }
.part-chip {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(204, 143, 76, 0.65);
  background: rgba(204, 143, 76, 0.06);
  color: var(--thread);
  font-family: var(--display);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}
.chapter-stage.show .part-chip { animation: chip-pop 0.45s cubic-bezier(0.2, 0.7, 0.3, 1.4) both; animation-delay: calc(var(--i) * 70ms); }
@keyframes chip-pop { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .part-chip { opacity: 1; } }

/* the padlock breathes, quietly */
.stage-locked svg { animation: lock-breathe 2.8s ease-in-out infinite; transform-origin: center; }
@keyframes lock-breathe { 0%, 100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }

/* the revealed chapter panel */
.chapter-stage { margin-top: 1.6rem; }
.chapter-stage[hidden] { display: none; }
.chapter-stage .stage-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(160deg, #1e150d, #14100a);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.chapter-stage.show .stage-inner { animation: rise 0.5s ease both; }

.pie {
  width: clamp(180px, 40vw, 232px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1b130c;
  position: relative;
  flex-shrink: 0;
  border: 2px solid rgba(204, 143, 76, 0.85);
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.35), inset 0 0 44px rgba(0, 0, 0, 0.55);
  --pie-reveal: 360deg;
  -webkit-mask: conic-gradient(from -90deg, #000 var(--pie-reveal), #0000 var(--pie-reveal));
  mask: conic-gradient(from -90deg, #000 var(--pie-reveal), #0000 var(--pie-reveal));
}
@property --pie-reveal { syntax: "<angle>"; inherits: false; initial-value: 360deg; }
.chapter-stage.show .pie { animation: pie-sweep 0.7s ease-out; }
@keyframes pie-sweep { from { --pie-reveal: 0deg; } to { --pie-reveal: 360deg; } }
/* the salary sits in the middle, the way the book draws it; the slices carry no labels */
.pie-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 46%; height: 46%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #1d140c, #0b0704);
  border: 1.5px solid rgba(204, 143, 76, 0.85);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.65), 0 0 12px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 3.4vw, 1.35rem);
  color: var(--silver);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.stage-kicker { font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.stage-title { font-family: var(--display); font-size: clamp(1.4rem, 1rem + 1.6vw, 2rem); line-height: 1.2; margin-bottom: 0.8rem; font-weight: 600; }
.stage-body { color: var(--muted); margin-bottom: 1.1rem; }
.stage-locked {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.98rem;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-bottom: 1.3rem;
}
.stage-locked svg { width: 17px; height: 17px; flex-shrink: 0; fill: var(--thread); }
@media (max-width: 620px) {
  .chapter-stage .stage-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .stage-locked { justify-content: center; }
}

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--silver); flex-shrink: 0; transition: transform 0.25s ease, color 0.25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--gold-bright); }
.faq summary:hover::after { color: var(--gold-bright); }
.faq .faq-answer { padding-bottom: 1.25rem; color: var(--muted); }
.faq details[open] .faq-answer { animation: faq-in 0.35s ease both; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* questions arrive like ledger entries */
.faq details { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.2s ease; }
[data-reveal].in .faq details, .faq[data-reveal].in details { opacity: 1; transform: none; }
.faq details:nth-of-type(1) { transition-delay: 0.05s; }
.faq details:nth-of-type(2) { transition-delay: 0.13s; }
.faq details:nth-of-type(3) { transition-delay: 0.21s; }
.faq details:nth-of-type(4) { transition-delay: 0.29s; }
.faq details:nth-of-type(5) { transition-delay: 0.37s; }
.faq details:nth-of-type(6) { transition-delay: 0.45s; }

/* objection groups */
.faq-group-title { font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--thread); margin: 2.6rem 0 0.5rem; text-align: center; }
.faq-group-title:first-of-type { margin-top: 0; }

/* ---------- Buy ---------- */
.offer {
  border: 2px solid transparent;
  border-radius: 6px;
  background:
    linear-gradient(160deg, #20170d, #14100a) padding-box,
    var(--grad-silver) border-box;
  padding: clamp(2rem, 6vw, 3.2rem);
  text-align: center;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.6);
  margin-top: 2.2rem;
}
.offer .kicker { font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.offer .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.4rem, 2rem + 6vw, 5rem);
  line-height: 1;
  margin: 0.5rem 0 0.2rem;
  background-image: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.offer .price sup { font-size: 0.4em; top: -0.7em; }
.offer .price .cents { font-size: 0.42em; position: relative; top: -0.65em; letter-spacing: 0.02em; }

/* ---------- The launch ladder and the three-day countdown ---------- */
.launch-tag { font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--thread); margin-bottom: 0.2rem; }
.ladder { display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 0.2rem 0; font-family: var(--display); margin: 0.6rem 0 0.2rem; }
.ladder span { color: var(--muted-2); font-size: 0.95rem; transition: color 0.3s ease; }
.ladder span + span::before { content: "\2192"; margin: 0 0.55rem; color: var(--muted-2); opacity: 0.5; font-size: 0.85rem; }
.ladder .gone { text-decoration: line-through; opacity: 0.45; }
.ladder .now { color: var(--gold-bright); font-size: 1.2rem; font-weight: 700; text-decoration: none; opacity: 1; }
.count-block { margin: 1.3rem auto 0.3rem; }
.count-label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.7rem; }
.count-grid { display: flex; justify-content: center; gap: 0.7rem; font-variant-numeric: tabular-nums; }
.count-cell { text-align: center; }
.count-num {
  display: block; min-width: 3.1rem; padding: 0.3rem 0.5rem;
  font-family: var(--display); font-weight: 700; font-size: 1.85rem; line-height: 1.2;
  color: var(--ink); background: rgba(204, 143, 76, 0.07);
  border: 1px solid rgba(204, 143, 76, 0.4); border-radius: 3px;
}
.count-unit { display: block; font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }
.count-why { font-style: italic; color: var(--muted); font-size: 0.93rem; max-width: 470px; margin: 1rem auto 0; line-height: 1.65; }
#price-settled { font-style: italic; color: var(--muted); margin-top: 1rem; }
.price-note { font-size: 0.9rem; color: var(--muted); margin-top: 0.55rem; }
.offer .what { color: var(--muted); margin-bottom: 1.8rem; }
.offer .reassure { font-size: 0.92rem; color: var(--muted); margin-top: 1.2rem; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.4rem; margin-top: 1.4rem; padding: 0; list-style: none; }
.trust-row li { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }
.trust-row li::before { content: "\2713\00a0"; color: var(--thread); font-weight: 700; }

/* accessibility: jump past the header to the content */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--paper); color: var(--paper-ink); padding: 0.6rem 1rem; border-radius: 2px; text-decoration: none; }
.skip-link:focus { left: 0.6rem; top: 0.6rem; }

/* mobile sticky buy bar (desktop already has a sticky header CTA) */
.sticky-buy { display: none; }
@media (max-width: 760px) {
  .sticky-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(16, 11, 7, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    text-decoration: none;
    transform: translateY(115%);
    transition: transform 0.3s ease;
  }
  .sticky-buy.show { transform: translateY(0); }
  .sticky-buy .lab { font-family: var(--display); font-size: 1.05rem; color: var(--ink); line-height: 1.1; }
  .sticky-buy .cta {
    flex-shrink: 0;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    border-radius: 1px;
    background: var(--paper);
    color: var(--paper-ink);
    border: 1px solid var(--paper-edge);
    box-shadow: 0 3px 0 var(--paper-edge);
  }
}
.seal { display: block; width: 132px; height: auto; margin: 0 auto 1.2rem; opacity: 0.96; }
.hero-seal { position: absolute; width: clamp(96px, 11vw, 130px); height: auto; right: -6px; bottom: -10px; opacity: 0.96; pointer-events: none; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55)); }

/* ---------- Reviews ---------- */
.reviews { display: flex; flex-direction: column; gap: 1.4rem; max-width: 720px; margin: 0 auto; }
.review {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.review:last-child { border-bottom: none; }
.review-photo {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-photo::before {
  content: attr(data-initial);
  font-family: var(--display);
  font-size: 2rem;
  color: var(--silver);
  font-weight: 600;
}
.review-photo::after {
  content: "\2714";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-silver);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  border: 3px solid var(--bg);
  z-index: 3;
}
.review-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.review-text blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 0.7rem 0;
}
.review-text blockquote::before {
  content: "\201C";
  color: var(--silver);
  font-size: 1.7rem;
  line-height: 0;
  margin-right: 0.25rem;
  position: relative;
  top: 0.35rem;
}
.review-stars { color: var(--gold-bright); letter-spacing: 0.18em; font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1; }
.review-stars .half-star {
  background: linear-gradient(to right, var(--gold-bright) 50%, rgba(224, 169, 106, 0.22) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.review-name { font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; }
.review-role { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-top: 0.2rem; }
@media (max-width: 600px) {
  .review { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* ---------- Sub-page heading ---------- */
.page-head { text-align: center; padding: clamp(2.6rem, 7vw, 4.5rem) 0 0.5rem; position: relative; z-index: 2; }
.page-head h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.3rem, 1.6rem + 3vw, 3.6rem);
  line-height: 1.1;
  background-image: var(--grad-foil);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 10s ease-in-out infinite;
}
.page-head .page-kicker { font-size: 0.82rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.back-link { display: inline-block; margin-bottom: 1.3rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.back-link::before { content: "\2190\00a0"; }
.back-link:hover { color: var(--ink); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.5rem;
  background: #0c0c0c;
  position: relative;
  z-index: 2;
}
footer .f-name { font-family: var(--display); font-size: 1.5rem; }
footer .f-book { font-style: italic; color: var(--muted); margin: 0.3rem 0 1rem; }
footer .f-domain { letter-spacing: 0.08em; color: var(--ink); }
footer .f-links { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; justify-content: center; }
footer .f-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }
footer .f-links a:hover { color: var(--ink); }
footer .f-fine { font-size: 0.82rem; color: var(--muted-2); margin-top: 1.2rem; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-hook { text-align: left; }
  .hero-actions { justify-content: center; }
  .book { transform: perspective(1500px) rotateY(-8deg); margin-top: 0.5rem; }
  .book-wrap { order: -1; }
  .signature { text-align: center; }
  .brand span { display: none; }
}

/* ---------- Respect people who prefer less motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .toc-row, .card, .faq details, .part-chip { opacity: 1; transform: none; transition: none; }
  .bar-fill { transition: none; }
  * { animation: none !important; }
}

/* ---------- Feature ribbon (auto-scrolling marquee) ---------- */
.ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--ribbon-h, 3.25rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid rgba(204, 143, 76, 0.22);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
/* Homepage carries the fixed ribbon: make room for it and tuck the header under it. */
.has-ribbon { --ribbon-h: 3.25rem; padding-top: var(--ribbon-h); }
.has-ribbon header { top: var(--ribbon-h); }
.has-ribbon #progress { display: none; }
.ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ribbon-ltr 48s linear infinite;
  will-change: transform;
}
.ribbon:hover .ribbon-track,
.ribbon:focus-within .ribbon-track { animation-play-state: paused; }
.ribbon-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.015em;
  padding: 0 1.45rem;
  transition: color 0.25s ease, transform 0.25s ease;
}
.ribbon-item::before {
  content: "\25C6";
  color: var(--thread);
  font-size: 0.6em;
  margin-right: 1.45rem;
  opacity: 0.85;
  transform: translateY(-0.12em);
}
.ribbon-item:hover { color: var(--gold-bright); transform: scale(1.05); }
@keyframes ribbon-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .ribbon { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---------- 25% discount trigger + modal ---------- */
.discount-line {
  margin: 0.85rem 0 0;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 0.4rem 0.85rem;
}
.discount-link {
  background: none;
  border: 1px solid var(--thread);
  color: var(--gold-bright);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.02rem; letter-spacing: 0.04em;
  padding: 0.5rem 1.15rem; border-radius: 2px; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.discount-link:hover { background: var(--thread); color: #1a1208; }
.discount-note { color: var(--muted); font-size: 0.82rem; }

.promo-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  background: rgba(8, 5, 3, 0.74);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
.promo-overlay[hidden] { display: none; }
.promo-modal {
  position: relative;
  width: 100%; max-width: 440px;
  background: var(--surface);
  border: 1px solid rgba(204, 143, 76, 0.25);
  border-radius: 6px;
  padding: clamp(1.7rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: promo-in 0.25s ease;
}
@keyframes promo-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.promo-close {
  position: absolute; top: 0.4rem; right: 0.7rem;
  background: none; border: none; color: var(--muted);
  font-size: 1.7rem; line-height: 1; cursor: pointer; padding: 0.2rem 0.45rem;
}
.promo-close:hover { color: var(--ink); }
.promo-kicker {
  color: var(--thread); letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.7rem; margin: 0 0 0.5rem;
}
.promo-modal h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--gold-bright);
  font-size: clamp(1.5rem, 4vw, 2rem); line-height: 1.1; margin: 0 0 0.7rem;
}
.promo-text { color: var(--ink); font-size: 0.97rem; line-height: 1.55; margin: 0 0 1.2rem; }
.promo-form { display: flex; flex-direction: column; gap: 0.7rem; }
.promo-email {
  width: 100%; padding: 0.8rem 1rem; box-sizing: border-box;
  background: #120c07; border: 1px solid rgba(204, 143, 76, 0.3);
  border-radius: 3px; color: var(--ink); font-size: 1rem; font-family: inherit;
}
.promo-email::placeholder { color: var(--muted-2); }
.promo-email:focus { outline: none; border-color: var(--gold-bright); }
.promo-error { color: #e0a06a; font-size: 0.85rem; margin: 0.1rem 0 0; }
.promo-fine { color: var(--muted); font-size: 0.78rem; line-height: 1.5; margin: 0.9rem 0 0; }
.promo-fine a { color: var(--thread); }
.promo-decline {
  display: inline-block; margin-top: 1rem;
  background: none; border: none; cursor: pointer;
  color: var(--muted-2); font-size: 0.85rem;
  text-decoration: underline; text-underline-offset: 3px;
}
.promo-decline:hover { color: var(--ink); }
.promo-done p { color: var(--ink); margin: 0 0 1.3rem; }
.promo-done h3 { margin-top: 0.3rem; }
