:root {
  --doc-black: #050505;
  --doc-blue: #07111F;
  --doc-gold: #D6A94F;
  --doc-gold-light: #F2C76B;
  --doc-white: #F8F5EC;
  --doc-gray: #B9B9B9;
  --doc-violet: #1A1028;
  --doc-line: rgba(214, 169, 79, 0.26);
  --doc-panel: rgba(248, 245, 236, 0.055);
  --doc-panel-strong: rgba(248, 245, 236, 0.09);
  --doc-shadow: 0 18px 70px rgba(0, 0, 0, 0.52);
}

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

html {
  scroll-behavior: smooth;
}

body.doc-page {
  margin: 0;
  background:
    radial-gradient(circle at 24% 0%, rgba(214, 169, 79, 0.08), transparent 30rem),
    radial-gradient(circle at 80% 18%, rgba(96, 68, 130, 0.22), transparent 35rem),
    linear-gradient(180deg, var(--doc-black), #08101d 36%, var(--doc-black));
  color: var(--doc-white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0;
}

body.doc-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(248, 245, 236, 0.24) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(214, 169, 79, 0.2) 0 1px, transparent 1px);
  background-position: 0 0, 36px 44px;
  background-size: 110px 110px, 160px 160px;
  opacity: 0.17;
}

body.doc-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), transparent 18%, transparent 82%, rgba(5, 5, 5, 0.86)),
    linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.78));
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.doc-container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.doc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 28px;
  background: rgba(5, 5, 5, 0.66);
  border-bottom: 1px solid rgba(248, 245, 236, 0.08);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease;
}

.doc-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-color: rgba(214, 169, 79, 0.22);
}

.doc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.doc-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.doc-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(248, 245, 236, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.doc-nav a,
.doc-footer a {
  transition: color 180ms ease;
}

.doc-nav a:hover,
.doc-footer a:hover {
  color: var(--doc-gold-light);
}

.doc-header-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--doc-gold);
  color: var(--doc-black);
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 10px 34px rgba(214, 169, 79, 0.18);
}

.doc-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 92px;
}

.doc-hero-media,
.doc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.doc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: saturate(0.9) contrast(1.05);
}

.doc-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 38%, rgba(5, 5, 5, 0.36) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.16), rgba(5, 5, 5, 0.94));
}

.doc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  gap: 56px;
  align-items: center;
}

.doc-hero-copy {
  max-width: 720px;
  min-width: 0;
}

.doc-hero-grid > *,
.doc-two-col > *,
.doc-reveal-grid > *,
.doc-audience-grid > *,
.doc-offer-grid > *,
.doc-faq-grid > * {
  min-width: 0;
}

.doc-badge,
.doc-kicker,
.doc-price-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--doc-line);
  border-radius: 999px;
  color: var(--doc-gold-light);
  background: rgba(214, 169, 79, 0.08);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--doc-white);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.09;
}

h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: 64px;
}

.doc-title-line {
  display: block;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.doc-lead {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(248, 245, 236, 0.87);
  font-size: 21px;
  line-height: 1.65;
}

.doc-author {
  margin-top: 18px;
  color: var(--doc-gray);
}

.doc-author strong {
  color: var(--doc-white);
}

.doc-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 28px;
}

.doc-price-line span {
  color: rgba(248, 245, 236, 0.58);
  font-size: 19px;
  text-decoration: line-through;
}

.doc-price-line strong {
  color: var(--doc-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 34px;
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.doc-btn[aria-disabled="true"],
.doc-mobile-sticky[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.78;
}

.doc-btn-primary {
  background: var(--doc-gold);
  color: var(--doc-black);
  box-shadow: 0 14px 42px rgba(214, 169, 79, 0.22);
}

.doc-btn-primary:hover {
  background: var(--doc-gold-light);
  box-shadow: 0 18px 52px rgba(214, 169, 79, 0.3);
}

.doc-btn-secondary {
  color: var(--doc-white);
  border-color: rgba(248, 245, 236, 0.28);
  background: rgba(248, 245, 236, 0.06);
}

.doc-btn-secondary:hover {
  border-color: rgba(214, 169, 79, 0.55);
}

.doc-btn-wide {
  width: 100%;
}

.doc-microcopy {
  margin-top: 14px;
  color: rgba(248, 245, 236, 0.68);
  font-size: 14px;
}

.doc-poster {
  position: relative;
  justify-self: end;
  width: min(360px, 100%);
  aspect-ratio: 0.72;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 169, 79, 0.48);
  border-radius: 8px;
  box-shadow: var(--doc-shadow), 0 0 80px rgba(214, 169, 79, 0.18);
  transform: perspective(1000px) rotateY(-5deg);
}

.doc-poster::before,
.doc-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.doc-poster::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at 50% 40%, rgba(214, 169, 79, 0.02), rgba(5, 5, 5, 0.28));
}

.doc-poster::after {
  border: 10px solid rgba(5, 5, 5, 0.5);
  box-shadow: inset 0 0 0 1px rgba(214, 169, 79, 0.3);
}

.doc-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-poster figcaption {
  position: absolute;
  inset: auto 22px 26px;
  z-index: 2;
  display: grid;
  gap: 10px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.86);
}

.doc-poster figcaption span,
.doc-poster figcaption em {
  color: rgba(248, 245, 236, 0.76);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.doc-poster figcaption strong {
  color: var(--doc-white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 36px;
  line-height: 1.02;
}

.doc-product-mockup {
  position: relative;
  justify-self: end;
  width: min(500px, 100%);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(214, 169, 79, 0.42);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(214, 169, 79, 0.14), rgba(248, 245, 236, 0.035)),
    rgba(5, 5, 5, 0.52);
  box-shadow: var(--doc-shadow), 0 0 90px rgba(214, 169, 79, 0.2);
  transform: perspective(1000px) rotateY(-3deg);
}

.doc-product-mockup::before {
  content: "";
  position: absolute;
  inset: -32px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(214, 169, 79, 0.2), transparent 58%);
  filter: blur(12px);
}

.doc-product-mockup img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.doc-video-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(214, 169, 79, 0.13), transparent 30rem),
    radial-gradient(circle at 86% 36%, rgba(26, 16, 40, 0.62), transparent 34rem),
    linear-gradient(180deg, rgba(7, 17, 31, 0.88), rgba(5, 5, 5, 0.94));
}

.doc-video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.doc-video-copy {
  min-width: 0;
}

.doc-video-copy h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.doc-video-copy p:not(.doc-kicker) {
  margin: 22px 0 28px;
  color: rgba(248, 245, 236, 0.72);
  font-size: 18px;
}

.doc-video-frame {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(214, 169, 79, 0.32);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(214, 169, 79, 0.13), rgba(248, 245, 236, 0.035)),
    rgba(5, 5, 5, 0.58);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 86px rgba(214, 169, 79, 0.14);
}

.doc-video-frame::before {
  content: "";
  position: absolute;
  inset: -36px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 48%, rgba(214, 169, 79, 0.2), transparent 62%);
  filter: blur(14px);
}

.doc-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #050505;
  object-fit: cover;
}

.doc-video-frame figcaption {
  margin-top: 12px;
  color: rgba(248, 245, 236, 0.72);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.doc-section {
  position: relative;
  padding: 108px 0;
}

.doc-question,
.doc-contents,
.doc-bonus,
.doc-faq {
  background:
    linear-gradient(180deg, rgba(248, 245, 236, 0.02), rgba(248, 245, 236, 0)),
    rgba(5, 5, 5, 0.32);
}

.doc-two-col,
.doc-reveal-grid,
.doc-audience-grid,
.doc-offer-grid,
.doc-faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.doc-rich-copy {
  color: rgba(248, 245, 236, 0.76);
}

.doc-rich-copy p + p,
.doc-not-for p {
  margin-top: 18px;
}

.doc-question-list,
.doc-check-list,
.doc-not-for ul,
.doc-price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.doc-question-list li,
.doc-check-list li,
.doc-not-for li,
.doc-price-card li {
  position: relative;
  padding-left: 28px;
}

.doc-question-list li::before,
.doc-check-list li::before,
.doc-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--doc-gold);
  box-shadow: 0 0 18px rgba(214, 169, 79, 0.58);
}

.doc-not-for li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  background: rgba(248, 245, 236, 0.45);
}

.doc-threshold-visual {
  position: relative;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(214, 169, 79, 0.28);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.42);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.34);
}

.doc-threshold-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.68), transparent 58%);
}

.doc-threshold-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.doc-threshold-visual figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  color: rgba(248, 245, 236, 0.82);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.doc-section-head {
  max-width: 790px;
  margin-bottom: 44px;
}

.doc-section-head h2,
.doc-offer-copy h2,
.doc-faq-grid h2,
.doc-audience-grid h2,
.doc-rich-copy h2,
.doc-two-col h2 {
  margin-top: 18px;
}

.doc-section-head p:not(.doc-kicker),
.doc-offer-copy p:not(.doc-kicker),
.doc-faq-grid p:not(.doc-kicker) {
  margin-top: 18px;
  color: rgba(248, 245, 236, 0.72);
}

.doc-authority {
  background:
    radial-gradient(circle at 10% 20%, rgba(214, 169, 79, 0.12), transparent 25rem),
    radial-gradient(circle at 86% 30%, rgba(26, 16, 40, 0.72), transparent 34rem);
}

.doc-authority-grid,
.doc-content-grid,
.doc-bonus-grid,
.doc-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.doc-research-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 0;
  align-items: stretch;
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid rgba(214, 169, 79, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 245, 236, 0.07), rgba(214, 169, 79, 0.08)),
    rgba(5, 5, 5, 0.52);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.doc-research-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.doc-research-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(5, 5, 5, 0.32) 78%, rgba(5, 5, 5, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.42));
}

.doc-research-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.doc-research-dossier {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: 34px;
  border-left: 1px solid rgba(214, 169, 79, 0.2);
}

.doc-research-stamp {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(214, 169, 79, 0.34);
  color: var(--doc-gold-light);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.doc-research-dossier h3 {
  margin-top: 18px;
  font-size: 30px;
  line-height: 1.18;
}

.doc-research-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.doc-research-metrics span {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(248, 245, 236, 0.14);
  border-radius: 999px;
  color: rgba(248, 245, 236, 0.82);
  background: rgba(5, 5, 5, 0.35);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.doc-evidence,
.doc-content-card,
.doc-bonus-card,
.doc-testimonial,
.doc-price-card,
.doc-faq-item,
.doc-not-for {
  border: 1px solid rgba(248, 245, 236, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(248, 245, 236, 0.08), rgba(248, 245, 236, 0.035));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.doc-evidence,
.doc-content-card,
.doc-bonus-card,
.doc-testimonial,
.doc-not-for {
  padding: 26px;
}

.doc-evidence span,
.doc-content-card span {
  display: inline-flex;
  color: var(--doc-gold-light);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
}

.doc-evidence p,
.doc-content-card p,
.doc-bonus-card p,
.doc-testimonial figcaption,
.doc-not-for,
.doc-price-card li,
.doc-card-note {
  color: rgba(248, 245, 236, 0.72);
}

.doc-evidence p,
.doc-content-card p,
.doc-bonus-card p {
  margin-top: 14px;
}

.doc-content-card h3,
.doc-bonus-card h3 {
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.2;
}

.doc-quote-band {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 34px;
  align-items: center;
  margin: 28px 0;
  padding: 34px;
  border-top: 1px solid var(--doc-line);
  border-bottom: 1px solid var(--doc-line);
  background: rgba(214, 169, 79, 0.04);
}

.doc-quote-band blockquote {
  margin: 0;
  color: var(--doc-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.16;
}

.doc-quote-band p {
  color: rgba(248, 245, 236, 0.74);
}

.doc-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(214, 169, 79, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.doc-timeline-item {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(214, 169, 79, 0.18);
  background: rgba(5, 5, 5, 0.38);
}

.doc-timeline-item:last-child {
  border-right: 0;
}

.doc-timeline-item strong {
  display: block;
  color: var(--doc-white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.doc-timeline-item span {
  display: block;
  margin-top: 14px;
  color: rgba(248, 245, 236, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.doc-filmstrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.doc-filmstrip figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 245, 236, 0.12);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.38);
}

.doc-filmstrip figure::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(214, 169, 79, 0.18);
}

.doc-filmstrip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.76)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.36), transparent 55%);
}

.doc-filmstrip img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 220ms ease;
}

.doc-filmstrip figure:hover img {
  transform: scale(1.04);
}

.doc-filmstrip figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 3;
  color: rgba(248, 245, 236, 0.86);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.doc-content-card {
  min-height: 262px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.doc-content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 169, 79, 0.38);
  background: linear-gradient(180deg, rgba(214, 169, 79, 0.1), rgba(248, 245, 236, 0.04));
}

.doc-reveal-section {
  background:
    linear-gradient(90deg, rgba(26, 16, 40, 0.5), rgba(7, 17, 31, 0.72)),
    var(--doc-black);
}

.doc-reveal-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.doc-cinematic-frame {
  overflow: hidden;
  border: 1px solid rgba(214, 169, 79, 0.26);
  border-radius: 8px;
  box-shadow: var(--doc-shadow);
}

.doc-cinematic-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.doc-emphasis {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--doc-gold);
  color: var(--doc-white);
  background: rgba(214, 169, 79, 0.08);
  font-family: "Cinzel", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

.doc-audience {
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 169, 79, 0.1), transparent 28rem),
    rgba(5, 5, 5, 0.18);
}

.doc-not-for h2 {
  margin-top: 18px;
}

.doc-not-for p {
  color: var(--doc-white);
}

.doc-offer {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.85), rgba(5, 5, 5, 0.92)),
    radial-gradient(circle at 72% 20%, rgba(214, 169, 79, 0.14), transparent 24rem);
}

.doc-offer-grid {
  grid-template-columns: 1fr 430px;
  align-items: center;
}

.doc-countdown {
  display: inline-grid;
  gap: 4px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 169, 79, 0.24);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.38);
}

.doc-countdown span {
  color: rgba(248, 245, 236, 0.62);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.doc-countdown strong {
  color: var(--doc-gold-light);
  font-size: 22px;
}

.doc-access-visual {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 520px;
  margin: 30px 0 0;
  padding: 16px;
  border: 1px solid rgba(214, 169, 79, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 169, 79, 0.12), rgba(248, 245, 236, 0.04)),
    rgba(5, 5, 5, 0.42);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.doc-access-visual img {
  width: 104px;
  aspect-ratio: 0.72;
  object-fit: cover;
  border: 1px solid rgba(214, 169, 79, 0.36);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.doc-access-visual figcaption {
  display: grid;
  gap: 8px;
}

.doc-access-visual span {
  color: var(--doc-gold-light);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.doc-access-visual strong {
  color: var(--doc-white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 28px;
  line-height: 1.12;
}

.doc-offer-mockup {
  position: relative;
  max-width: 520px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(214, 169, 79, 0.28);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.48);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.doc-offer-mockup img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.doc-offer-mockup figcaption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 9px 12px;
  border: 1px solid rgba(214, 169, 79, 0.26);
  border-radius: 999px;
  color: rgba(248, 245, 236, 0.84);
  background: rgba(5, 5, 5, 0.66);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.doc-price-card {
  padding: 30px;
  border-color: rgba(214, 169, 79, 0.45);
  background:
    linear-gradient(180deg, rgba(214, 169, 79, 0.13), rgba(248, 245, 236, 0.055)),
    rgba(5, 5, 5, 0.68);
}

.doc-price-card h3 {
  margin-top: 16px;
  font-size: 34px;
}

.doc-price-box {
  display: grid;
  gap: 6px;
  margin: 28px 0 22px;
  padding: 18px;
  border: 1px solid rgba(214, 169, 79, 0.24);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.38);
}

.doc-price-box span {
  color: rgba(248, 245, 236, 0.64);
}

.doc-price-box strong {
  color: var(--doc-gold-light);
  font-size: 26px;
  line-height: 1.25;
}

.doc-card-note {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

.doc-checkout-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: rgba(248, 245, 236, 0.7);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.doc-checkout-status:empty {
  display: none;
}

.doc-checkout-status[data-state="error"] {
  color: #f2a98f;
}

.doc-bonus-card {
  min-height: 172px;
}

.doc-social {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), rgba(7, 17, 31, 0.46)),
    radial-gradient(circle at 18% 30%, rgba(214, 169, 79, 0.08), transparent 26rem);
}

.doc-placeholder-note {
  font-size: 14px;
  color: rgba(248, 245, 236, 0.56) !important;
}

.doc-testimonial {
  margin: 0;
}

.doc-testimonial blockquote {
  margin: 0;
  color: rgba(248, 245, 236, 0.88);
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
}

.doc-testimonial figcaption {
  margin-top: 20px;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.doc-faq-grid {
  grid-template-columns: 0.72fr 1.28fr;
}

.doc-accordion {
  display: grid;
  gap: 12px;
}

.doc-faq-item {
  overflow: hidden;
}

.doc-faq-item button {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 18px 56px 18px 20px;
  border: 0;
  background: transparent;
  color: var(--doc-white);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.doc-faq-item button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  color: var(--doc-gold-light);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.doc-faq-item.is-open button::after {
  content: "−";
}

.doc-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.doc-faq-panel p {
  min-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: rgba(248, 245, 236, 0.72);
}

.doc-faq-item.is-open .doc-faq-panel {
  grid-template-rows: 1fr;
}

.doc-faq-item.is-open .doc-faq-panel p {
  padding-bottom: 20px;
}

.doc-closing {
  position: relative;
  padding: 118px 0 132px;
  text-align: center;
  overflow: hidden;
  background: var(--doc-black);
}

.doc-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.92)),
    url("images/documentario/vita-oltre-la-morte-hero-poster.png") center 52% / cover;
  opacity: 0.72;
}

.doc-closing .doc-container {
  position: relative;
  max-width: 820px;
}

.doc-closing h2 {
  margin-top: 18px;
}

.doc-closing p:not(.doc-kicker) {
  margin: 20px auto 28px;
  max-width: 680px;
  color: rgba(248, 245, 236, 0.78);
  font-size: 20px;
}

.doc-closing .doc-kicker {
  margin-inline: auto;
}

.doc-footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(248, 245, 236, 0.09);
  color: rgba(248, 245, 236, 0.58);
  background: #030303;
  font-size: 14px;
}

.doc-footer .doc-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.doc-mobile-sticky {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 12px;
  background: var(--doc-gold);
  color: var(--doc-black);
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48), 0 0 34px rgba(214, 169, 79, 0.22);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  body.doc-page {
    font-size: 16px;
  }

  .doc-header {
    grid-template-columns: 1fr auto;
  }

  .doc-nav {
    display: none;
  }

  .doc-hero-grid,
  .doc-video-layout,
  .doc-two-col,
  .doc-reveal-grid,
  .doc-audience-grid,
  .doc-offer-grid,
  .doc-faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .doc-hero {
    min-height: auto;
    padding: 56px 0 76px;
  }

  .doc-hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.92)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.42));
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .doc-lead {
    font-size: 19px;
  }

  .doc-poster {
    justify-self: start;
    width: min(320px, 100%);
    transform: none;
  }

  .doc-product-mockup {
    justify-self: start;
    width: min(520px, 100%);
    transform: none;
  }

  .doc-authority-grid,
  .doc-content-grid,
  .doc-bonus-grid,
  .doc-testimonial-grid,
  .doc-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .doc-quote-band {
    grid-template-columns: 1fr;
  }

  .doc-research-visual {
    grid-template-columns: 1fr;
  }

  .doc-research-dossier {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(214, 169, 79, 0.2);
  }

  .doc-research-image::after {
    background:
      linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.62) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.16), transparent 58%);
  }

  .doc-timeline-item:nth-child(2) {
    border-right: 0;
  }

  .doc-timeline-item:nth-child(1),
  .doc-timeline-item:nth-child(2) {
    border-bottom: 1px solid rgba(214, 169, 79, 0.18);
  }
}

@media (max-width: 700px) {
  body.doc-page {
    padding-bottom: 78px;
  }

  .doc-container {
    width: min(100% - 28px, 1160px);
  }

  .doc-header {
    min-height: 62px;
    padding: 10px 14px;
  }

  .doc-brand span {
    font-size: 13px;
  }

  .doc-brand img {
    width: 34px;
    height: 34px;
  }

  .doc-header-cta {
    display: none;
  }

  .doc-hero {
    padding: 42px 0 36px;
  }

  h1 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: 22px;
  }

  .doc-lead {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .doc-price-line strong {
    font-size: 28px;
  }

  .doc-badge,
  .doc-kicker,
  .doc-price-eyebrow {
    width: auto;
    max-width: 100%;
    font-size: 11px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .doc-hero-copy,
  .doc-video-copy,
  .doc-rich-copy,
  .doc-section-head,
  .doc-video-layout > *,
  .doc-two-col > *,
  .doc-reveal-grid > *,
  .doc-audience-grid > *,
  .doc-offer-grid > *,
  .doc-faq-grid > * {
    max-width: 100%;
    min-width: 0;
  }

  .doc-actions,
  .doc-footer .doc-container {
    flex-direction: column;
  }

  .doc-btn,
  .doc-actions .doc-btn {
    width: 100%;
  }

  .doc-section {
    padding: 72px 0;
  }

  .doc-authority-grid,
  .doc-content-grid,
  .doc-bonus-grid,
  .doc-testimonial-grid,
  .doc-timeline {
    grid-template-columns: 1fr;
  }

  .doc-timeline-item,
  .doc-timeline-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(214, 169, 79, 0.18);
  }

  .doc-timeline-item:last-child {
    border-bottom: 0;
  }

  .doc-threshold-visual figcaption,
  .doc-filmstrip figcaption {
    inset: auto 14px 14px;
    font-size: 11px;
  }

  .doc-research-image {
    min-height: 240px;
  }

  .doc-research-dossier {
    padding: 24px;
  }

  .doc-research-dossier h3 {
    font-size: 25px;
  }

  .doc-filmstrip {
    grid-template-columns: 1fr;
  }

  .doc-filmstrip figure,
  .doc-filmstrip img {
    min-height: 230px;
  }

  .doc-access-visual {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .doc-access-visual img {
    width: 82px;
  }

  .doc-access-visual strong {
    font-size: 22px;
  }

  .doc-product-mockup {
    padding: 6px;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .doc-product-mockup,
  .doc-video-frame,
  .doc-offer-mockup,
  .doc-threshold-visual,
  .doc-research-visual,
  .doc-filmstrip {
    max-width: 100%;
    min-width: 0;
  }

  .doc-product-mockup img,
  .doc-video-frame video,
  .doc-offer-mockup img {
    max-width: 100%;
  }

  .doc-offer-mockup figcaption {
    position: static;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .doc-quote-band,
  .doc-price-card,
  .doc-evidence,
  .doc-content-card,
  .doc-bonus-card,
  .doc-testimonial,
  .doc-not-for {
    padding: 22px;
  }

  .doc-quote-band blockquote {
    font-size: 28px;
  }

  .doc-poster {
    display: none;
  }

  .doc-poster figcaption strong {
    font-size: 31px;
  }

  .doc-emphasis {
    font-size: 21px;
  }

  .doc-closing {
    padding: 86px 0 112px;
  }

  .doc-mobile-sticky {
    display: flex;
  }
}
