/* ═══════════════════════════════════════════════════════════════════
   THE PATRIOT DOSSIER — Sales Page Stylesheet
   Editorial aesthetic: magazine long-form meets classified dossier.
   Mobile-first. Zero framework.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --cream: #F7F2E9;
  --cream-dark: #EEE7D6;
  --cream-darker: #E4DCC6;
  --cream-deeper: #D8CEB4;
  --oxblood: #6E1423;
  --oxblood-dark: #5A1018;
  --oxblood-darker: #4A0A16;
  --navy: #1E2A3A;
  --charcoal: #1C1C1C;
  --charcoal-soft: #2C2C2C;
  --neutral: #5A5A5A;
  --neutral-light: #8A8A8A;
  --gold: #B08B3A;

  --ff-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body: Georgia, "Times New Roman", serif;
  --ff-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --col: 720px;
  --col-narrow: 620px;
  --radius: 3px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-oxblood: 0 4px 14px rgba(110, 20, 35, 0.25), 0 2px 4px rgba(110, 20, 35, 0.15);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  font-feature-settings: "kern", "liga", "onum", "pnum";
  overflow-x: hidden;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--oxblood);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--oxblood-dark);
  text-decoration: underline;
}
:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
}
::selection {
  background: var(--oxblood);
  color: var(--cream);
}
.display { font-family: var(--ff-display); font-weight: 700; letter-spacing: -.01em; line-height: 1.15; }
.ui      { font-family: var(--ff-ui); }

/* ─── FONTS ──────────────────────────────────────────────────── */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/playfair-display-400.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/playfair-display-400i.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/playfair-display-700.woff2") format("woff2");
}

/* ═══════════════════════════════════════════════════════════════════
   SKIP-TO-CHECKOUT BAR (warm traffic direct-to-checkout)
   ═══════════════════════════════════════════════════════════════════ */
.skip-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--ff-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.skip-bar:hover {
  background: var(--oxblood);
  color: var(--cream);
  text-decoration: none !important;
}
.skip-bar__label {
  color: rgba(247, 242, 233, 0.7);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.skip-bar__action {
  color: var(--cream);
  font-weight: 700;
}
@media (max-width: 480px) {
  .skip-bar { font-size: 11px; padding: 9px 12px; flex-direction: column; gap: 2px; line-height: 1.3; }
}

/* ═══════════════════════════════════════════════════════════════════
   FTC DISCLOSURE STRIP
   ═══════════════════════════════════════════════════════════════════ */
.ftc {
  background: var(--cream-dark);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--ff-ui);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neutral);
  border-bottom: 1px solid var(--cream-darker);
}

/* ═══════════════════════════════════════════════════════════════════
   MASTHEAD
   ═══════════════════════════════════════════════════════════════════ */
.masthead {
  text-align: center;
  padding: 40px 20px 28px;
  border-bottom: 3px double var(--oxblood);
  background:
    linear-gradient(to bottom, var(--cream) 0%, var(--cream) 100%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(110,20,35,0.02) 20px 21px);
  position: relative;
}
.masthead::before,
.masthead::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--oxblood);
}
.masthead::before { top: 18px; }
.masthead::after  { bottom: 14px; }
.masthead__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(34px, 6.5vw, 60px);
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: 0.06em;
}
.masthead__tagline {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--neutral);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   ARTICLE CONTAINER
   ═══════════════════════════════════════════════════════════════════ */
.article {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Category + date ────────────────────────────────────────── */
.cat-strip {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neutral);
  text-align: center;
  padding: 36px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cat-strip::before,
.cat-strip::after {
  content: "";
  display: block;
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--cream-deeper);
}

/* ─── Headline ──────────────────────────────────────────────── */
.headline {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin: 12px 0 24px;
  text-align: left;
}

/* ─── Subdeck ───────────────────────────────────────────────── */
.subdeck {
  font-family: var(--ff-body);
  font-size: 20px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  font-style: italic;
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 3px solid var(--oxblood);
}

/* ─── Byline ────────────────────────────────────────────────── */
.byline {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neutral);
  text-align: right;
  border-top: 1px solid var(--cream-darker);
  border-bottom: 1px solid var(--cream-darker);
  padding: 14px 0;
  margin-bottom: 48px;
}
.byline span {
  color: var(--charcoal);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURED IMAGE
   ═══════════════════════════════════════════════════════════════════ */
.featured {
  margin: 40px -20px 48px;
  background: var(--cream-dark);
  position: relative;
}
.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(28, 28, 28, 0.08);
  pointer-events: none;
}
.featured picture,
.featured img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
}
.featured figcaption {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-style: italic;
  color: var(--neutral);
  padding: 14px 20px;
  border-bottom: 1px solid var(--cream-darker);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   LEAD PARAGRAPH + DROP CAP
   ═══════════════════════════════════════════════════════════════════ */
.lead {
  margin-bottom: 48px;
}
.lead p {
  font-family: var(--ff-body);
  font-size: 20px;
  line-height: 1.7;
  color: var(--charcoal);
}
.dropcap {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 86px;
  line-height: 0.85;
  float: left;
  color: var(--oxblood);
  padding: 8px 14px 0 0;
  margin-top: 6px;
  text-shadow: 2px 2px 0 rgba(110, 20, 35, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════
   VSL EMBED
   ═══════════════════════════════════════════════════════════════════ */
.vsl {
  margin: 48px 0 40px;
}

/* ─── VSL CALLOUT (chamada editorial acima do video) ────────── */
.vsl__callout {
  background: linear-gradient(to right, var(--oxblood) 0%, var(--oxblood) 6px, var(--cream-dark) 6px);
  padding: 22px 24px 22px 34px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--cream-darker);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.vsl__callout::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--oxblood);
  border-radius: 50%;
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--oxblood);
}
.vsl__callout-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 8px;
}
.vsl__callout-text {
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
}
.vsl__callout-text strong {
  color: var(--oxblood);
  font-weight: 700;
}
@media (min-width: 768px) {
  .vsl__callout {
    padding: 26px 28px 26px 40px;
  }
  .vsl__callout-text {
    font-size: 19px;
  }
}
.vsl__shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #14161B;
  background-image:
    radial-gradient(ellipse at 50% 40%, #2E3440 0%, #14161B 70%),
    linear-gradient(135deg, rgba(110,20,35,0.12) 0%, transparent 40%);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.vsl__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.25) 90%);
  pointer-events: none;
  z-index: 1;
}
.vsl__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='2'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.82 0 0 0 0 0.75 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.vsl__thumb {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(ellipse at 50% 40%, #2E3440 0%, #14161B 70%);
}
.vsl__stamp {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(30px, 5.5vw, 58px);
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 2.5px solid rgba(247, 242, 233, 0.6);
  transform: rotate(-2.5deg);
  margin-bottom: 20px;
  opacity: 0.95;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.vsl__substamp {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.75);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.vsl__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background 0.3s ease;
}
.vsl__play:hover {
  background: rgba(0, 0, 0, 0.18);
}
.vsl__play-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 8px 30px rgba(110, 20, 35, 0.55)) drop-shadow(0 2px 10px rgba(0,0,0,0.4));
  width: 110px;
  height: 110px;
}
.vsl__play:hover .vsl__play-icon {
  transform: scale(1.08);
}
.vsl__play:active .vsl__play-icon {
  transform: scale(0.96);
}
/* Pulse rings concêntricos */
.vsl__play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  margin: -55px 0 0 -55px;
  border: 2.5px solid var(--oxblood);
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  animation: vsl-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
.vsl__play-ring--2 {
  animation-delay: 1.3s;
}
@keyframes vsl-pulse {
  0% { transform: scale(0.85); opacity: 0.75; }
  80% { opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
.vsl__play-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: rgba(110, 20, 35, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(247, 242, 233, 0.3);
  border-radius: 2px;
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  z-index: 3;
}
@media (min-width: 768px) {
  .vsl__play-icon { width: 130px; height: 130px; }
  .vsl__play-ring { width: 130px; height: 130px; margin: -65px 0 0 -65px; }
  .vsl__play-label { bottom: 36px; font-size: 13px; padding: 10px 20px; }
}
.vsl__caption {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--oxblood);
  text-align: center;
  margin-top: 16px;
}
.vsl__shell.is-playing .vsl__thumb,
.vsl__shell.is-playing .vsl__play,
.vsl__shell.is-playing::before,
.vsl__shell.is-playing::after { display: none; }
.vsl__shell video,
.vsl__shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── VSL OVERLAY (unmute cue + pause cue) ──────────────────── */
.vsl__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
  background: transparent;
}
.vsl__unmute {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(20, 22, 27, 0.85);
  color: var(--cream);
  border: 1.5px solid rgba(247, 242, 233, 0.3);
  border-radius: 3px;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  animation: vsl-unmute-pulse 2.4s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 11;
}
.vsl__unmute:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
}
.vsl__unmute svg { flex-shrink: 0; }
@keyframes vsl-unmute-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(110, 20, 35, 0.6); }
  50% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(110, 20, 35, 0); }
}
.vsl__overlay.is-unmuted .vsl__unmute {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.vsl__pause-cue {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 22, 27, 0.75);
  border: 2px solid rgba(247, 242, 233, 0.6);
  border-radius: 50%;
  color: var(--cream);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.vsl__pause-cue svg { margin-left: 4px; }
.vsl__overlay.is-paused .vsl__pause-cue {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 480px) {
  .vsl__unmute {
    bottom: 14px;
    left: 14px;
    padding: 10px 14px;
    font-size: 11px;
  }
  .vsl__pause-cue {
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
  }
  .vsl__pause-cue svg { width: 30px; height: 30px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════ */
.section {
  margin: 72px 0 64px;
  scroll-margin-top: 20px;
}
.section__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 4.8vw, 40px);
  line-height: 1.15;
  color: var(--oxblood);
  margin-bottom: 28px;
  padding-bottom: 18px;
  position: relative;
  letter-spacing: -0.005em;
}
.section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--oxblood);
}
.section__intro {
  font-size: 19px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.section p {
  margin-bottom: 20px;
}
.section p:last-child { margin-bottom: 0; }

/* Ornament divider entre seções */
.section + .section {
  position: relative;
  padding-top: 72px;
}
.section + .section::before {
  content: "❦";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--oxblood);
  opacity: 0.55;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   FRONTS (Body §1)
   ═══════════════════════════════════════════════════════════════════ */
.front {
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-darker);
  position: relative;
  transition: padding 0.3s ease;
}
.front:last-child {
  border-bottom: none;
}
.front__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  letter-spacing: -0.005em;
}
.front__num {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  background: var(--oxblood);
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: center;
  min-width: 42px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.front p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════════════
   COMPONENTS (Body §2 — 5 Ebooks)
   ═══════════════════════════════════════════════════════════════════ */
.component {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--cream-darker);
  align-items: flex-start;
}
.component:last-child {
  border-bottom: none;
}
.component__cover {
  margin: 0 auto;
  max-width: 200px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border-radius: 2px;
  overflow: hidden;
  background: var(--charcoal);
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.3s ease;
}
.component__cover:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-4px);
}
.component__cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.component__body {
  display: flex;
  flex-direction: column;
}
.component__label {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 600;
  margin-bottom: 8px;
}
.component__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.component__body p {
  font-size: 17px;
  line-height: 1.65;
}
.component__meta {
  font-size: 15px;
  color: var(--neutral);
  margin-top: 12px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   DOCUMENT EXCERPT (simulated leaked-document visual proof)
   ═══════════════════════════════════════════════════════════════════ */
.excerpt {
  margin: 40px 0;
  padding: 0;
}
.excerpt__doc {
  background: #FBF6EC;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(0,0,0,0.025) 27px 28px),
    linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 20%, transparent 85%, rgba(0,0,0,0.04) 100%);
  border: 1px solid #D4CBB3;
  border-radius: 2px;
  padding: 28px 24px 24px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, "Menlo", monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #2E2E2E;
  position: relative;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 14px rgba(0, 0, 0, 0.08),
    inset 0 0 60px rgba(120, 90, 30, 0.05);
}
.excerpt__doc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(0,0,0,0.08) 8px 9px);
}
.excerpt__stamp {
  position: absolute;
  top: 24px;
  right: 20px;
  transform: rotate(-8deg);
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--oxblood);
  border: 2px solid var(--oxblood);
  padding: 4px 10px;
  background: rgba(247, 242, 233, 0.5);
  opacity: 0.9;
}
.excerpt__stamp--amber {
  color: #8A6520;
  border-color: #8A6520;
}
.excerpt__header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #B8AC92;
  padding-right: 100px;
}
.excerpt__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.excerpt__page {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A7058;
}
.excerpt__h {
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.excerpt__doc p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.65;
}
.excerpt__list {
  list-style: none;
  counter-reset: excerpt;
  padding: 0;
  margin: 0 0 16px;
}
.excerpt__list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 14px;
  line-height: 1.65;
  border-bottom: 1px dotted rgba(180, 160, 120, 0.3);
}
.excerpt__list li:last-child { border-bottom: none; }
.excerpt__list:not(.excerpt__list--plain) li::before {
  counter-increment: excerpt;
  content: counter(excerpt) ".";
  position: absolute;
  left: 6px;
  color: var(--oxblood);
  font-weight: 700;
}
.excerpt__list--plain li {
  padding-left: 0;
}
.excerpt__pill {
  display: inline-block;
  padding: 2px 7px;
  margin-right: 10px;
  background: var(--oxblood);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  vertical-align: baseline;
}
.excerpt__redact {
  display: inline-block;
  background: #1A1A1A;
  width: 80px;
  height: 14px;
  vertical-align: middle;
  margin: 0 2px;
  border-radius: 1px;
}
.excerpt__redact--long { width: 140px; }
.excerpt__highlight {
  background: rgba(216, 167, 67, 0.35);
  padding: 1px 3px;
  border-bottom: 2px solid var(--oxblood);
  font-weight: 700;
}
.excerpt__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 13px;
}
.excerpt__table th,
.excerpt__table td {
  padding: 6px 10px;
  text-align: left;
  border-bottom: 1px dotted rgba(180, 160, 120, 0.4);
}
.excerpt__table th {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oxblood);
  border-bottom: 1.5px solid var(--oxblood);
}
.excerpt__table-more {
  text-align: center !important;
  font-style: italic;
  color: #7A7058;
  padding-top: 10px !important;
}
.excerpt__more {
  font-style: italic;
  color: #7A7058;
  padding-left: 0 !important;
  text-align: center;
}
.excerpt__footnote {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed #B8AC92;
  font-size: 12px;
  font-style: italic;
  color: #6A5F48;
}
.excerpt figcaption {
  margin-top: 10px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-style: italic;
  color: var(--neutral);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   WHO IS THIS FOR
   ═══════════════════════════════════════════════════════════════════ */
.who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
.who__card {
  background: var(--cream-dark);
  border-left: 4px solid var(--oxblood);
  padding: 22px 24px;
  border-radius: 2px;
}
.who__card h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.25;
}
.who__card p {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   READER REACTIONS (social proof)
   ═══════════════════════════════════════════════════════════════════ */
.reactions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}
.reaction {
  background: #FFF;
  border: 1px solid var(--cream-darker);
  border-left: 3px solid var(--oxblood);
  padding: 22px 24px;
  border-radius: 2px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.reaction::before {
  content: "\201C";
  position: absolute;
  top: -4px;
  left: 14px;
  font-family: var(--ff-display);
  font-size: 54px;
  line-height: 1;
  color: var(--oxblood);
  opacity: 0.25;
}
.reaction p {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-style: italic;
  position: relative;
}
.reaction cite {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   COUNTDOWN TO ELECTION DAY
   ═══════════════════════════════════════════════════════════════════ */
.countdown-section {
  margin: 56px 0;
}
.countdown {
  background: var(--charcoal);
  color: var(--cream);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(110,20,35,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.countdown__label {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.6);
  margin-bottom: 24px;
}
.countdown__timer {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  padding: 8px 12px;
  background: rgba(247, 242, 233, 0.05);
  border: 1px solid rgba(247, 242, 233, 0.12);
  border-radius: 2px;
}
.countdown__num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(32px, 7vw, 54px);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.countdown__word {
  font-family: var(--ff-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.6);
  margin-top: 6px;
}
.countdown__caption {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(247, 242, 233, 0.75);
  margin-bottom: 22px;
}
.countdown__body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247, 242, 233, 0.9);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.countdown__body em {
  color: var(--cream);
  font-style: italic;
  font-weight: 600;
}
@media (min-width: 768px) {
  .who__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reactions__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .countdown { padding: 48px 40px; }
  .countdown__timer { gap: 18px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PRICE JUSTIFY — Pull Quote
   ═══════════════════════════════════════════════════════════════════ */
.price-justify {
  background: var(--cream-dark);
  border-left: 4px solid var(--oxblood);
  padding: 36px 28px;
  margin: 16px 0 0;
  position: relative;
  font-style: normal;
}
.price-justify::before {
  content: "\201C";
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--ff-display);
  font-size: 120px;
  line-height: 1;
  color: var(--oxblood);
  opacity: 0.15;
}
.price-justify p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
}
.price-justify p:first-child {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
}
.price-justify p:last-child {
  margin-bottom: 0;
}
.price-justify strong {
  color: var(--oxblood);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   CTAs
   ═══════════════════════════════════════════════════════════════════ */
.cta {
  margin: 56px -20px;
  padding: 36px 28px;
  background: linear-gradient(to bottom, var(--cream-dark) 0%, var(--cream-darker) 100%);
  border-top: 1px solid var(--cream-darker);
  border-bottom: 1px solid var(--cream-darker);
  position: relative;
}
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--oxblood);
  opacity: 0.25;
}
.cta::before { top: 14px; }
.cta::after  { bottom: 14px; }

.cta--mini {
  text-align: center;
}
.cta__inner {
  max-width: 520px;
  margin: 0 auto;
}
.cta__kicker {
  font-family: var(--ff-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 12px;
  font-weight: 700;
}
.cta__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.2;
}
.cta__price {
  margin: 8px 0 4px;
  text-align: center;
}
.cta__price-main {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 64px;
  color: var(--oxblood);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 3px 3px 0 rgba(110, 20, 35, 0.08);
}
.cta__desc {
  font-family: var(--ff-ui);
  font-size: 13px;
  color: var(--neutral);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta__trust {
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--neutral);
  text-align: center;
  margin-top: 20px;
  line-height: 1.55;
}
.cta__bullets {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  text-align: left;
}
.cta__bullets li {
  font-family: var(--ff-body);
  font-size: 16px;
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(228, 220, 198, 0.4);
}
.cta__bullets li:last-child { border-bottom: none; }
.cta__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--oxblood);
  font-weight: 700;
  font-size: 18px;
}

/* ─── Button ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--oxblood);
  color: var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 0 var(--oxblood-darker),
    0 8px 20px rgba(110, 20, 35, 0.3);
}
.btn--primary:hover {
  background: var(--oxblood-dark);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 5px 0 var(--oxblood-darker),
    0 10px 24px rgba(110, 20, 35, 0.35);
}
.btn--primary:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 2px 0 var(--oxblood-darker),
    0 4px 10px rgba(110, 20, 35, 0.25);
}
.btn--checkout {
  font-size: 17px;
  padding: 22px 24px;
  margin-top: 12px;
}
.btn:disabled,
.btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.btn__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(247, 242, 233, 0.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading .btn__label { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════════
   CHECKOUT FORM (CTA principal)
   ═══════════════════════════════════════════════════════════════════ */
.checkout-section {
  margin: 72px 0;
}
.cta--main {
  background: #FFFFFF;
  border: 2px solid var(--oxblood);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow-oxblood), var(--shadow-lg);
  margin: 16px 0;
  position: relative;
}
.cta--main::before,
.cta--main::after { display: none; }
.checkout-form {
  margin-top: 24px;
  text-align: left;
}
.field {
  display: block;
  margin-bottom: 18px;
}
.field__label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--ff-ui);
  font-size: 16px;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus {
  outline: none;
  border-color: var(--oxblood);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(110, 20, 35, 0.1);
}
.field input::placeholder { color: #AAA; }

/* ─── Express Checkout (Apple Pay + Google Pay prominent) ────── */
.express-checkout {
  margin-bottom: 0;
  transition: opacity 0.3s ease;
}
.express-checkout:not(.is-ready) .stripe-express-mount {
  min-height: 60px;
}
.stripe-express-mount {
  padding: 0;
  border: none;
  background: transparent;
  min-height: 54px;
}
.stripe-express-mount .stripe-placeholder {
  padding: 14px;
  text-align: center;
  background: var(--cream);
  border: 1.5px dashed var(--cream-darker);
  border-radius: var(--radius);
  font-style: italic;
}
.checkout__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 20px;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neutral);
}
.checkout__divider::before,
.checkout__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--cream-darker);
}
.checkout__divider span {
  flex-shrink: 0;
}

.stripe-mount {
  padding: 14px 16px;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius);
  background: var(--cream);
  min-height: 48px;
  transition: all 0.2s ease;
}
.stripe-mount.is-focused {
  border-color: var(--oxblood);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(110, 20, 35, 0.1);
}
.stripe-placeholder {
  font-family: var(--ff-ui);
  font-size: 14px;
  color: var(--neutral);
  font-style: italic;
}
.payment-message {
  margin-top: 14px;
  font-family: var(--ff-ui);
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: var(--radius);
  display: none;
}
.payment-message.is-error {
  display: block;
  background: #FBE9EC;
  color: var(--oxblood-darker);
  border-left: 3px solid var(--oxblood);
}
.payment-message.is-success {
  display: block;
  background: #E6F4E6;
  color: #1E4620;
  border-left: 3px solid #2E7D32;
}

/* ═══════════════════════════════════════════════════════════════════
   GUARANTEE BOX
   ═══════════════════════════════════════════════════════════════════ */
.guarantee {
  margin: 40px 0 0;
  padding: 32px 28px;
  border: 2px solid var(--oxblood);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.guarantee::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--oxblood);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M12 2L4 6v6c0 5.5 3.5 10.4 8 12 4.5-1.6 8-6.5 8-12V6l-8-4z' fill='%23F7F2E9'/></svg>");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-md);
}
.guarantee__title {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--oxblood);
  margin-bottom: 18px;
  margin-top: 4px;
}
.guarantee p {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.guarantee em {
  font-style: italic;
  color: var(--oxblood);
  font-weight: 600;
}
.guarantee__punch {
  font-family: var(--ff-display) !important;
  font-weight: 700;
  font-size: 34px !important;
  color: var(--oxblood);
  margin-top: 22px !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.02em;
  font-style: italic !important;
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════ */
.qa {
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-darker);
}
.qa:last-child { border-bottom: none; }
.qa h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--oxblood);
  margin-bottom: 14px;
  font-style: italic;
  letter-spacing: -0.005em;
}
.qa p {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════════════
   CLOSE SECTION
   ═══════════════════════════════════════════════════════════════════ */
.close p {
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.close__img {
  margin: 48px -20px;
  background: var(--cream-dark);
  position: relative;
}
.close__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ps {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 2px solid var(--cream-darker);
  position: relative;
}
.ps::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--oxblood);
}
.ps p {
  font-family: var(--ff-body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--charcoal);
}
.ps strong {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--oxblood);
  letter-spacing: 0.02em;
  margin-right: 4px;
}
.ps__punch {
  font-family: var(--ff-display) !important;
  font-weight: 700;
  font-size: 34px !important;
  color: var(--oxblood);
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */
.cta-final {
  margin-top: 72px;
}
.cta-final__img {
  margin: 0 -20px 40px;
  background: var(--cream-dark);
}
.cta-final__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.cta--hero {
  background: linear-gradient(145deg, var(--charcoal) 0%, #111 100%);
  color: var(--cream);
  border: none;
  padding: 48px 28px;
  border-radius: var(--radius);
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta--hero::before,
.cta--hero::after { display: none; }
.cta--hero::after {
  display: block;
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(110,20,35,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta--hero .cta__inner { position: relative; z-index: 1; }
.cta--hero .cta__kicker { color: rgba(247, 242, 233, 0.8); }
.cta--hero .cta__price-main {
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(110, 20, 35, 0.4);
}
.cta--hero .cta__bullets li {
  color: var(--cream);
  text-align: left;
  border-bottom-color: rgba(247, 242, 233, 0.1);
}
.cta--hero .cta__trust { color: rgba(247, 242, 233, 0.7); }
.cta--hero .btn--primary {
  background: var(--oxblood);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 0 var(--oxblood-darker),
    0 8px 24px rgba(110, 20, 35, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(247, 242, 233, 0.85);
  padding: 64px 20px 48px;
  margin-top: 96px;
  text-align: center;
  border-top: 4px double var(--oxblood);
}
.footer__inner {
  max-width: 720px;
  margin: 0 auto;
}
.footer__title {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.footer__tagline {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(247, 242, 233, 0.6);
  margin-bottom: 36px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-bottom: 36px;
  font-family: var(--ff-ui);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__nav a {
  color: rgba(247, 242, 233, 0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__nav a:hover {
  color: var(--cream);
}
.footer__disclosures {
  border-top: 1px solid rgba(247, 242, 233, 0.15);
  padding-top: 32px;
  font-family: var(--ff-ui);
  font-size: 11px;
  line-height: 1.7;
  color: rgba(247, 242, 233, 0.55);
  text-align: left;
}
.footer__disclosures p { margin-bottom: 14px; }
.footer__disclosures strong {
  color: rgba(247, 242, 233, 0.85);
  letter-spacing: 0.04em;
}
.footer__copyright {
  text-align: center;
  margin-top: 24px !important;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--oxblood);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 24px;
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow:
    0 -2px 0 var(--oxblood-darker),
    0 -6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta:hover { color: #FFF; text-decoration: none !important; }
.floating-cta__price {
  background: rgba(247, 242, 233, 0.2);
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.floating-cta__arrow { transition: transform 0.2s ease; }
.floating-cta:hover .floating-cta__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   TABLET — 768px+
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  body { font-size: 19px; }

  .masthead { padding: 48px 24px 32px; }
  .article { padding: 0 28px; }

  .featured {
    margin: 48px 0 56px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .close__img {
    margin: 56px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .cta-final__img {
    margin: 0 0 44px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .cta {
    margin: 64px 0;
    padding: 44px 36px;
    border-radius: var(--radius);
    border-left: 1px solid var(--cream-darker);
    border-right: 1px solid var(--cream-darker);
  }
  .cta--main { padding: 44px 36px; }
  .cta--hero { padding: 56px 44px; }

  /* Component: cover ao lado do texto */
  .component {
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 48px 0;
    align-items: center;
  }
  .component--reverse {
    grid-template-columns: 1fr 220px;
  }
  .component--reverse .component__cover {
    order: 2;
    margin: 0 0 0 auto;
  }
  .component__cover {
    margin: 0;
    max-width: 220px;
    position: sticky;
    top: 24px;
  }

  .front { padding: 36px 0; }
  .front__title { font-size: 26px; }

  /* Floating CTA vira botão flutuante no canto em desktop */
  .floating-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: auto;
    min-width: 260px;
    padding: 16px 22px;
    padding-bottom: 16px;
    border-radius: var(--radius);
    font-size: 14px;
    box-shadow:
      0 3px 0 var(--oxblood-darker),
      0 10px 30px rgba(0, 0, 0, 0.2);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   DESKTOP — 1024px+
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  body { font-size: 20px; }
  .article { padding: 0 24px; }
  .masthead__title { font-size: 68px; }
  .headline { font-size: 56px; }
  .subdeck { font-size: 22px; }
  .lead p { font-size: 22px; }

  .section { margin: 96px 0 80px; }
  .section + .section { padding-top: 96px; }
  .section__title { font-size: 42px; margin-bottom: 36px; padding-bottom: 22px; }

  .cta { padding: 52px 44px; }
  .cta--hero { padding: 64px 52px; }

  .component__cover { max-width: 240px; }
  .component__title { font-size: 30px; }

  .dropcap { font-size: 108px; padding: 12px 18px 0 0; }

  .price-justify { padding: 44px 44px 44px 52px; }
  .price-justify p:first-child { font-size: 22px; }

  .btn--checkout { font-size: 18px; padding: 24px 28px; }

  .qa h4 { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ACESSIBILIDADE & MOTION
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  .floating-cta, .vsl, .cta, .btn, .footer { display: none; }
  body { color: #000; background: #FFF; }
}
