:root {
  --bg: #050a14;
  --bg-soft: #0b1526;
  --panel: rgba(9, 20, 38, 0.82);
  --panel-strong: rgba(8, 17, 31, 0.94);
  --line: rgba(214, 198, 160, 0.18);
  --line-strong: rgba(214, 198, 160, 0.38);
  --text: #eef3ff;
  --muted: #afbacf;
  --accent: #d8c389;
  --accent-2: #c64747;
  --glow: rgba(216, 195, 137, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(30, 56, 100, 0.22), transparent 34%),
    linear-gradient(180deg, #08111f 0%, #040912 100%);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0));
}

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

figure {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
}

.section {
  padding: 5.5rem 0;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 19, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.doc-meta,
.doc-status {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero {
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-tag,
.card-kicker,
.timeline-stage {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.85rem);
  max-width: 13ch;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead,
.hero-subhead {
  font-size: 1.1rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0;
}

.proof-pill {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text);
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #d8c389 0%, #b89955 100%);
  color: #09101d;
  box-shadow: 0 16px 40px rgba(184, 153, 85, 0.28);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.btn-wide {
  min-width: min(100%, 340px);
}

.microcopy,
.checkout-note,
.final-note {
  font-size: 0.92rem;
}

.cover-card,
.info-card,
.chapter-card,
.audience-card,
.bonus-panel,
.pricing-card,
.final-panel,
.protocol-note {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 21, 38, 0.95), rgba(6, 12, 23, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cover-card {
  padding: 1rem;
  border-radius: 28px;
  overflow: hidden;
}

.cover-card::before,
.pricing-card::before,
.final-panel::before {
  content: "DECLASSIFIED";
  position: absolute;
  top: 1.35rem;
  right: -2.7rem;
  transform: rotate(18deg);
  color: rgba(198, 71, 71, 0.88);
  border: 2px solid rgba(198, 71, 71, 0.72);
  padding: 0.2rem 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.cover-card img {
  width: 100%;
  border-radius: 20px;
}

.cover-badge {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  background: rgba(5, 10, 20, 0.88);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-grid,
.chapter-grid,
.audience-grid,
.section-media-grid {
  display: grid;
  gap: 1.2rem;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.chapter-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.chapter-card,
.audience-card,
.bonus-panel {
  padding: 1.4rem;
  border-radius: var(--radius-sm);
}

.card-kicker {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.split-heading,
.two-col,
.bonus-grid {
  display: grid;
  gap: 1.8rem;
  align-items: start;
}

.split-heading {
  grid-template-columns: 1.2fr 0.8fr;
}

.two-col,
.bonus-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.highlight-card {
  background:
    radial-gradient(circle at top left, rgba(216, 195, 137, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(15, 27, 46, 0.96), rgba(9, 17, 30, 0.96));
}

.chapter-card ul,
.bonus-panel ul,
.pricing-points ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.part-card {
  overflow: hidden;
}

.section-banner {
  width: calc(100% + 2.8rem);
  margin: -1.4rem -1.4rem 1.1rem;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.section-media-grid {
  margin-top: 2rem;
}

.evidence-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.science-grid {
  grid-template-columns: minmax(0, 720px);
  margin-top: 0;
  margin-bottom: 2rem;
}

.training-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 2rem;
}

.media-card {
  position: relative;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 21, 38, 0.95), rgba(6, 12, 23, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  border-radius: 16px;
}

.media-card figcaption {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.infographic-card img {
  background: rgba(255, 255, 255, 0.02);
}

.document-card {
  background:
    radial-gradient(circle at top left, rgba(198, 71, 71, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(15, 23, 35, 0.96), rgba(8, 14, 24, 0.96));
}

.document-card img {
  border: 1px solid rgba(216, 195, 137, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.success-card {
  margin-top: 1.5rem;
}

.chapter-card li,
.bonus-panel li,
.pricing-points li {
  margin-bottom: 0.65rem;
}

.timeline {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.timeline-stage {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
}

.protocol-note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
  overflow: hidden;
}

.pricing-copy,
.pricing-points {
  position: relative;
  z-index: 1;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  margin: 1.2rem 0 1.4rem;
}

.price {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  color: var(--text);
}

.price-note {
  color: var(--muted);
}

.checkout-box {
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 0.75rem;
}

.final-panel {
  padding: 2rem;
  border-radius: 28px;
  text-align: center;
}

@media (max-width: 1024px) {
  .hero-grid,
  .proof-grid,
  .chapter-grid,
  .two-col,
  .bonus-grid,
  .split-heading,
  .pricing-card,
  .evidence-grid,
  .training-grid,
  .science-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .topbar-inner {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  h1 {
    max-width: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-cta-row {
    flex-direction: column;
  }

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

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .final-panel,
  .cover-card,
  .media-card {
    border-radius: 22px;
  }

  .section-banner {
    width: calc(100% + 2.8rem);
    margin-bottom: 1rem;
  }
}
