/* ═══════════════════════════════════════════════════════
   NEVER BEEN NORMAL · SHARED DESIGN SYSTEM
   ═══════════════════════════════════════════════════════ */

/* RESET + BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--oxblood); color: var(--cream); }

/* DESIGN TOKENS */
:root {
  --black:        #0A0A0A;
  --charcoal:     #141414;
  --coal:         #1C1C1C;
  --cream:        #F5F0E8;
  --white:        #FFFFFF;
  --gray:         #5A5A5A;
  --gray-light:   #888888;
  --gold:         #C8A94E;
  --gold-light:   #E2C97E;
  --gold-dark:    #8A7328;
  --oxblood:      #8B2E2E;
  --oxblood-deep: #6B1F1F;
  --oxblood-glow: rgba(139,46,46,0.35);
  --border:       rgba(200,169,78,0.18);
  --border-strong:rgba(200,169,78,0.45);
}

/* TYPOGRAPHY */
h1,h2,h3,h4 { font-family: 'Oswald', sans-serif; letter-spacing: 0.02em; font-weight: 500; }
.flip-n { display: inline-block; transform: scaleX(-1); font-style: normal; font-family: 'Oswald', sans-serif; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.section-title em, .accent-em {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  color: var(--oxblood);
  letter-spacing: 0;
}
.section-divider {
  width: 48px; height: 2px; background: var(--gold);
  margin-bottom: 2rem;
}

/* CUSTOM CURSOR */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cream);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(245,240,232,0.55);
  transition: width 0.25s ease, height 0.25s ease,
              border-color 0.25s ease, background 0.25s ease;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  border-color: var(--oxblood);
  background: var(--oxblood-glow);
}
.cursor-dot.is-hover { background: var(--oxblood); width: 0; height: 0; }
@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* PROGRESS BAR */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--oxblood) 0%, var(--gold) 100%);
  z-index: 500; pointer-events: none;
  transition: width 0.08s linear;
}

/* TOP NAV */
nav.top-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 150;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(6px);
  transition: padding 0.3s ease, background 0.3s ease;
  gap: 1rem;
}
nav.top-nav.scrolled { padding: 0.7rem 2.5rem; background: rgba(10,10,10,0.94); }
nav.top-nav .brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
nav.top-nav .brand .accent { color: var(--gold); }
nav.top-nav .nav-right { display: flex; align-items: center; gap: 1.6rem; }
nav.top-nav ul {
  list-style: none; display: flex; gap: 1.8rem;
}
/* Pinned Course CTA in nav */
nav.top-nav .nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--oxblood); color: var(--cream);
  padding: 0.65rem 1.1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 4px 16px -6px var(--oxblood-glow);
  transition: all 0.25s ease;
  cursor: none;
}
nav.top-nav .nav-cta:hover {
  background: var(--oxblood-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px var(--oxblood-glow);
}
nav.top-nav .nav-cta .price {
  background: rgba(0,0,0,0.25);
  padding: 0.15rem 0.4rem;
  letter-spacing: 0.12em;
}
@media (max-width: 780px) {
  nav.top-nav .nav-cta { padding: 0.55rem 0.8rem; font-size: 0.68rem; }
  nav.top-nav .nav-cta .label { display: none; }
}
nav.top-nav a.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); font-weight: 400;
  position: relative; padding: 0.3rem 0;
  transition: color 0.25s ease;
}
nav.top-nav a.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--oxblood);
  transition: width 0.3s ease;
}
nav.top-nav a.nav-link:hover { color: var(--gold); }
nav.top-nav a.nav-link:hover::after,
nav.top-nav a.nav-link.active::after { width: 100%; }
nav.top-nav a.nav-link.active { color: var(--oxblood); }
@media (max-width: 780px) {
  nav.top-nav ul { display: none; }
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 780px) { .nav-hamburger { display: flex; } }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 148;
  background: rgba(8,8,8,0.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  padding: 6rem 2rem 4rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.06);
  width: 100%; text-align: center;
  transition: color 0.2s ease;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--oxblood); }
.mobile-menu .mobile-cta {
  margin-top: 1.8rem;
  background: var(--oxblood);
  color: var(--cream) !important;
  padding: 1rem 2.5rem;
  border: none !important;
  font-size: 1rem; letter-spacing: 0.2em;
  box-shadow: 0 8px 28px -8px var(--oxblood-glow);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  padding: 1.1rem 2.2rem;
  border-radius: 2px;
  cursor: none;
  transition: all 0.25s ease;
  position: relative; overflow: hidden;
  will-change: transform;
}
.btn-primary {
  background: var(--oxblood); color: var(--cream);
  border: 1px solid var(--oxblood);
  box-shadow: 0 6px 22px -8px var(--oxblood-glow);
}
.btn-primary:hover {
  background: var(--oxblood-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px var(--oxblood-glow);
}
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* SECTION BASE */
section {
  position: relative;
  padding: 8rem 2.5rem;
  max-width: 1300px; margin: 0 auto;
}
section.full-bleed { max-width: 100%; padding: 0; }

/* REVEAL */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.2,0.8,0.2,1),
              transform 1.1s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal   { transform: translateY(40px); }
.reveal-l { transform: translateX(-48px); }
.reveal-r { transform: translateX(48px); }
.reveal.is-visible,
.reveal-l.is-visible,
.reveal-r.is-visible { opacity: 1; transform: none; }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.18s; }
.stagger-3 { transition-delay: 0.28s; }
.stagger-4 { transition-delay: 0.38s; }
.stagger-5 { transition-delay: 0.48s; }

/* MARQUEE */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marqueeScroll 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream); opacity: 0.85;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-item .dot {
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--oxblood);
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SHARED FOOTER STRIP */
.site-footer {
  padding: 3rem 2.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-light);
  max-width: 1300px;
  margin: 0 auto;
}
.site-footer a { transition: color 0.25s ease; }
.site-footer a:hover { color: var(--oxblood); }
.site-footer .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* UTILITY */
.magnetic { display: inline-flex; }
[data-hover] { cursor: none; }

/* CHIPS */
.chip {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  color: var(--gray-light);
  background: transparent;
}
.spec-chip {
  display: inline-flex; align-items: center;
  padding: 0.5rem 0.95rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--coal);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.spec-chip:hover { border-color: var(--gold); color: var(--gold); }
.spec-chip.accent {
  background: linear-gradient(135deg, rgba(139,46,46,0.25) 0%, transparent 100%);
  border-color: var(--oxblood);
  color: var(--cream);
  box-shadow: 0 0 0 1px rgba(139,46,46,0.3), 0 6px 18px -6px var(--oxblood-glow);
}
.spec-chip.accent:hover { background: var(--oxblood); color: var(--cream); }

/* ═══════════════════════════════════════════════════════
   STICKY FREE-PDF CAPTURE BAR (every page)
   ═══════════════════════════════════════════════════════ */
.sticky-pdf {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 140;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold);
  padding: 0.85rem 2rem;
  display: flex; justify-content: center; align-items: center;
  gap: 1.2rem; flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.sticky-pdf.is-visible { transform: translateY(0); }
.sticky-pdf .label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream);
}
.sticky-pdf .label .gold { color: var(--gold); }
.sticky-pdf .cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: all 0.25s ease;
}
.sticky-pdf .cta:hover { color: var(--cream); border-color: var(--cream); gap: 1rem; }
.sticky-pdf .close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  font-size: 0.8rem; color: var(--gray-light);
  cursor: none; transition: all 0.2s ease;
}
.sticky-pdf .close:hover { border-color: var(--oxblood); color: var(--oxblood); }
@media (max-width: 600px) {
  .sticky-pdf { padding: 0.7rem 1rem 0.7rem 1rem; }
  .sticky-pdf .label { font-size: 0.72rem; }
  .sticky-pdf .close { right: 0.5rem; }
}
/* push footer up when sticky bar visible */
body.has-sticky-bar { padding-bottom: 60px; }

/* ═══════════════════════════════════════════════════════
   FUNNEL HOME PAGE — components
   ═══════════════════════════════════════════════════════ */

/* TRUST STRIP */
.trust-strip {
  padding: 1.5rem 2.5rem;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream);
}
@media (max-width: 780px) {
  .trust-strip {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1.1rem 1.5rem;
    gap: 2rem;
  }
  .trust-strip::-webkit-scrollbar { display: none; }
  /* hide the standalone dot separators on mobile — they orphan badly */
  .trust-strip > span.dot { display: none; }
}
.trust-strip .item {
  display: flex; align-items: center; gap: 0.6rem;
  white-space: nowrap;
}
.trust-strip .item .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--oxblood);
}
.trust-strip .item strong {
  color: var(--gold); font-weight: 500;
}

/* PITCH SECTION (story → product hook) */
.pitch {
  padding: 7rem 2.5rem;
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .pitch { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2.5rem; } }
.pitch h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1.02; margin-bottom: 1.6rem;
}
.pitch h2 em {
  font-family: 'DM Sans', sans-serif;
  font-style: italic; font-weight: 300;
  color: var(--oxblood); text-transform: none;
}
.pitch p {
  color: rgba(245,240,232,0.78);
  line-height: 1.85; margin-bottom: 1.2rem; font-size: 1.02rem;
}
.pitch .pitch-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.pitch-image {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}
.pitch-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.pitch-image .badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--oxblood);
  color: var(--cream);
  padding: 0.45rem 0.9rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
}

/* PRODUCT GRID (home page) */
.products {
  padding: 6rem 2.5rem;
  max-width: 1400px; margin: 0 auto;
}
.products-header {
  text-align: center; margin-bottom: 3rem;
}
.products-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  text-transform: uppercase; margin-bottom: 1rem;
}
.products-header h2 em {
  font-family: 'DM Sans', sans-serif;
  font-style: italic; font-weight: 300;
  color: var(--oxblood); text-transform: none;
}
.products-header p {
  color: var(--gray-light);
  max-width: 560px; margin: 0 auto;
  font-size: 1rem; line-height: 1.7;
}
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem; margin-top: 2.5rem;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }
.product-card {
  position: relative; padding: 2.2rem 2rem 2rem;
  border: 1px solid var(--border);
  background: var(--charcoal);
  display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
  cursor: none;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.product-card.live {
  border-color: var(--oxblood);
  background:
    linear-gradient(160deg, rgba(139,46,46,0.12) 0%, transparent 55%),
    var(--charcoal);
  box-shadow: 0 14px 36px -12px var(--oxblood-glow);
}
.product-card.live:hover { box-shadow: 0 22px 52px -10px var(--oxblood-glow); border-color: var(--oxblood); }
.product-status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Oswald', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gray-light); margin-bottom: 1rem;
}
.product-card.live .product-status { color: var(--oxblood); }
.product-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.product-card.live .product-status::before { animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,46,46,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(139,46,46,0); }
}
.product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem; line-height: 1.1;
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.product-tagline {
  font-family: 'DM Sans', sans-serif;
  font-style: italic; color: var(--gold);
  font-size: 0.92rem; margin-bottom: 1.2rem;
}
.product-desc {
  color: rgba(245,240,232,0.7);
  line-height: 1.65; font-size: 0.92rem;
  margin-bottom: 1.5rem; flex-grow: 1;
}
.product-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.4rem;
  line-height: 1;
}
.product-price-note {
  font-size: 0.78rem; color: var(--gray-light);
  font-style: italic; margin-bottom: 1.2rem;
}
.product-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.95rem 1.2rem;
  font-family: 'Oswald', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s ease; cursor: none;
}
.product-cta.primary {
  background: var(--oxblood); color: var(--cream);
}
.product-cta.primary:hover { background: var(--oxblood-deep); }
.product-cta.ghost {
  border: 1px solid var(--border-strong); color: var(--cream);
}
.product-cta.ghost:hover { border-color: var(--gold); color: var(--gold); }

/* TESTIMONIALS */
.testimonials {
  padding: 7rem 2.5rem;
  background:
    radial-gradient(ellipse at center top, rgba(200,169,78,0.08) 0%, transparent 50%),
    var(--coal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-inner { max-width: 1300px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.testimonials-header h2 em {
  font-family: 'DM Sans', sans-serif;
  font-style: italic; font-weight: 300;
  color: var(--oxblood); text-transform: none;
}
.testimonials-header p { color: var(--gray-light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  position: relative;
  border: 1px solid var(--border);
  background: var(--charcoal);
  overflow: hidden;
  transition: all 0.4s ease;
  aspect-ratio: 4/5;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.testimonial:hover { border-color: var(--gold); transform: translateY(-4px); }
.testimonial .photo-placeholder {
  position: absolute; inset: 0;
  background: var(--coal);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px dashed var(--border);
  opacity: 0.4;
}
.testimonial img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15);
}
.testimonial .meta {
  position: relative; z-index: 2;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.92) 50%);
}
.testimonial .name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem; letter-spacing: 0.05em;
  color: var(--cream); margin-bottom: 0.2rem;
}
.testimonial .what {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-style: italic;
  color: var(--gold);
}

/* FREE PDF CAPTURE BAND */
.pdf-band {
  padding: 7rem 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(139,46,46,0.18) 0%, transparent 60%),
    var(--black);
  position: relative;
}
.pdf-band-inner { max-width: 720px; margin: 0 auto; }
.pdf-band h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1.05; margin-bottom: 1.3rem;
}
.pdf-band h2 em {
  font-family: 'DM Sans', sans-serif;
  font-style: italic; font-weight: 300;
  color: var(--oxblood); text-transform: none;
}
.pdf-band p {
  color: rgba(245,240,232,0.78);
  line-height: 1.7; font-size: 1.02rem;
  margin-bottom: 2rem;
}
.pdf-band .small {
  font-size: 0.8rem; color: var(--gray-light);
  margin-top: 1rem; font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   COURSE PAGE — sales components
   ═══════════════════════════════════════════════════════ */

/* HERO BUY BOX */
.buy-box {
  max-width: 980px; margin: 0 auto 6rem;
  padding: 0 2.5rem;
}
.buy-box-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  border: 1px solid var(--oxblood);
  background:
    linear-gradient(160deg, rgba(139,46,46,0.16) 0%, transparent 55%),
    var(--charcoal);
  box-shadow: 0 22px 52px -14px var(--oxblood-glow);
  align-items: center;
}
@media (max-width: 780px) { .buy-box-inner { grid-template-columns: 1fr; padding: 1.8rem; gap: 1.8rem; } }
.buy-box .tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Oswald', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--oxblood); margin-bottom: 0.8rem;
  font-weight: 500;
}
.buy-box .tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--oxblood);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.buy-box h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-transform: uppercase; line-height: 1.1;
  margin-bottom: 0.8rem;
}
.buy-box .summary {
  color: rgba(245,240,232,0.78);
  font-size: 0.96rem; line-height: 1.65; margin-bottom: 1.2rem;
}
.buy-box .includes {
  list-style: none; padding: 0;
  margin-bottom: 0;
}
.buy-box .includes li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.88rem; color: var(--cream);
}
.buy-box .includes li::before {
  content: '✓'; color: var(--gold); font-weight: 600;
}
.buy-box-side { text-align: center; }
.buy-box-price {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem; font-weight: 600;
  color: var(--cream); line-height: 1;
  margin-bottom: 0.3rem;
}
.buy-box-price-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.6rem;
}
.buy-box-cta {
  display: block; width: 100%;
  padding: 1.1rem 1.5rem;
  background: var(--oxblood); color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transition: all 0.25s ease;
  cursor: none;
  margin-bottom: 0.8rem;
}
.buy-box-cta:hover { background: var(--oxblood-deep); transform: translateY(-2px); box-shadow: 0 10px 28px -8px var(--oxblood-glow); }
.buy-box-guarantee {
  font-size: 0.78rem; font-style: italic;
  color: var(--gray-light); line-height: 1.5;
}

/* WHAT'S INSIDE */
.whats-inside {
  padding: 6rem 2.5rem;
  max-width: 1300px; margin: 0 auto;
  border-top: 1px solid var(--border);
}
.whats-inside h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.whats-inside h2 em {
  font-family: 'DM Sans', sans-serif; font-style: italic;
  font-weight: 300; color: var(--oxblood); text-transform: none;
}
.whats-inside .intro {
  color: var(--gray-light); max-width: 580px;
  line-height: 1.7; margin-bottom: 3rem;
}
.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 780px) { .inside-grid { grid-template-columns: 1fr; } }
.inside-item {
  padding: 1.6rem 1.4rem;
  background: var(--charcoal);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.inside-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.inside-item .num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.74rem; letter-spacing: 0.24em;
  color: var(--oxblood); margin-bottom: 0.5rem;
}
.inside-item .name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.inside-item .desc {
  color: rgba(245,240,232,0.7);
  font-size: 0.88rem; line-height: 1.6;
}

/* WHO FOR / NOT FOR */
.for-who {
  padding: 6rem 2.5rem;
  max-width: 1300px; margin: 0 auto;
}
.for-who h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  text-transform: uppercase; margin-bottom: 2.5rem;
  text-align: center;
}
.for-who h2 em {
  font-family: 'DM Sans', sans-serif; font-style: italic;
  font-weight: 300; color: var(--oxblood); text-transform: none;
}
.for-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 780px) { .for-cols { grid-template-columns: 1fr; } }
.for-col {
  padding: 2.2rem 2rem;
  background: var(--charcoal);
  border: 1px solid var(--border);
}
.for-col.yes { border-left: 3px solid var(--gold); }
.for-col.no  { border-left: 3px solid var(--oxblood); }
.for-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.for-col.yes h3 { color: var(--gold); }
.for-col.no  h3 { color: var(--oxblood); }
.for-col ul { list-style: none; padding: 0; }
.for-col li {
  display: flex; gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.06);
  font-size: 0.95rem; line-height: 1.55;
}
.for-col.yes li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; }
.for-col.no  li::before { content: '✗'; color: var(--oxblood); font-weight: 600; flex-shrink: 0; }

/* INSTRUCTOR BLOCK */
.instructor {
  padding: 7rem 2.5rem;
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  border-top: 1px solid var(--border);
}
@media (max-width: 780px) { .instructor { grid-template-columns: 1fr; gap: 2.5rem; } }
.instructor-photo {
  border: 1px solid var(--border);
  overflow: hidden;
}
.instructor-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(0.1) contrast(1.02);
}
.instructor-text h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  text-transform: uppercase; margin-bottom: 0.6rem; line-height: 1.05;
}
.instructor-text h2 em {
  font-family: 'DM Sans', sans-serif; font-style: italic;
  font-weight: 300; color: var(--oxblood); text-transform: none;
}
.instructor-text .credentials {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.instructor-text .credentials .chip {
  background: var(--charcoal);
}
.instructor-text p {
  color: rgba(245,240,232,0.78);
  line-height: 1.8; margin-bottom: 1rem;
  font-size: 0.98rem;
}

/* FAQ */
.faq {
  padding: 6rem 2.5rem;
  max-width: 880px; margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  text-transform: uppercase; margin-bottom: 0.6rem; text-align: center;
}
.faq h2 em {
  font-family: 'DM Sans', sans-serif; font-style: italic;
  font-weight: 300; color: var(--oxblood); text-transform: none;
}
.faq-intro {
  color: var(--gray-light); margin-bottom: 3rem;
  text-align: center;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  transition: background 0.3s ease;
}
.faq-item.open { background: rgba(139,46,46,0.04); }
.faq-q {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  cursor: none;
  display: flex; align-items: center;
  gap: 0.9rem;
  padding: 0 1rem;
  transition: color 0.25s ease;
}
.faq-q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--oxblood);
  color: var(--cream);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0;
  flex-shrink: 0;
}
.faq-q::after {
  content: '+'; color: var(--gold); font-weight: 300;
  font-size: 1.5rem; transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}
.faq-item.open .faq-q { color: var(--cream); }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--oxblood); }
.faq-q .q-text { flex: 1; }
.faq-a {
  color: var(--cream);
  line-height: 1.85; font-size: 0.96rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem 0 calc(1rem + 28px + 0.9rem);
  position: relative;
}
.faq-a::before {
  content: 'A';
  position: absolute;
  top: 0.9rem; left: 1rem;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.faq-item.open .faq-a { padding-top: 1rem; padding-bottom: 0.5rem; max-height: 600px; }
.faq-item.open .faq-a::before { opacity: 1; }
.faq-a strong {
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}
.faq-a em {
  color: var(--oxblood);
  font-style: italic;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   INLINE TEXT EMPHASIS UTILITIES
   ═══════════════════════════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-oxblood { color: var(--oxblood); }
.text-cream { color: var(--cream); }
.text-em-gold { color: var(--gold); font-style: italic; font-family: 'DM Sans', sans-serif; font-weight: 400; }
.text-em-oxblood { color: var(--oxblood); font-style: italic; font-family: 'DM Sans', sans-serif; font-weight: 400; }
.text-bold-cream { color: var(--cream); font-weight: 500; font-style: normal; }

/* CALLOUT BLOCK — for emphasis pulls within body text */
.callout {
  display: block;
  padding: 1.2rem 1.5rem;
  margin: 1.6rem 0;
  background: var(--coal);
  border-left: 3px solid var(--oxblood);
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.6;
}
.callout strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.callout.gold-accent { border-left-color: var(--gold); }

/* IDENTITY TAGLINE (under page H1) */
.identity-tagline {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-strong);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,78,0.04);
}

/* FEATURED-IN STRIP */
.featured-in {
  max-width: 1300px; margin: 0 auto 4rem;
  padding: 1.5rem 2.5rem;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-right: 0.5rem;
}
.featured-item {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.featured-item em {
  color: var(--gold);
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0;
  margin-left: 0.2rem;
}
.featured-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--oxblood);
}

/* ═══════════════════════════════════════════════════════
   GEAR PAGE — affiliate cards
   ═══════════════════════════════════════════════════════ */
.gear-section {
  padding: 4rem 2.5rem 6rem;
  max-width: 1300px; margin: 0 auto;
}
.gear-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.gear-section .gear-intro {
  color: var(--gray-light);
  margin-bottom: 2rem; max-width: 620px;
  font-size: 0.95rem; line-height: 1.7;
}
.gear-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 780px) { .gear-grid { grid-template-columns: 1fr; } }
.gear-card {
  position: relative;
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  background: var(--charcoal);
  display: flex; flex-direction: column;
  transition: all 0.4s ease;
  cursor: none;
}
.gear-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.gear-card.feature {
  border-color: var(--oxblood);
  background:
    linear-gradient(160deg, rgba(139,46,46,0.1) 0%, transparent 60%),
    var(--charcoal);
}
.gear-card .tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.gear-card.feature .tag { color: var(--oxblood); }
.gear-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem; text-transform: uppercase;
  margin-bottom: 0.5rem; line-height: 1.1;
}
.gear-card .what-it-is {
  font-family: 'DM Sans', sans-serif;
  font-style: italic; color: var(--gray-light);
  font-size: 0.88rem; margin-bottom: 1rem;
}
.gear-card p {
  color: rgba(245,240,232,0.75);
  line-height: 1.65; font-size: 0.92rem;
  margin-bottom: 1.4rem; flex-grow: 1;
}
.gear-card .code-row {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: var(--coal);
  border: 1px solid var(--gold-dark);
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.18em;
  color: var(--gold);
}
.gear-card .code-row .code {
  padding: 0.2rem 0.5rem;
  background: var(--black); letter-spacing: 0.15em;
}
.gear-card-cta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--border-strong);
  color: var(--cream);
  transition: all 0.3s ease; cursor: none;
}
.gear-card-cta:hover { border-color: var(--gold); color: var(--gold); }
.gear-card.feature .gear-card-cta {
  background: var(--oxblood); border-color: var(--oxblood); color: var(--cream);
}
.gear-card.feature .gear-card-cta:hover { background: var(--oxblood-deep); }
.disclosure {
  margin-top: 4rem;
  padding: 1.2rem 1.5rem;
  background: var(--coal);
  border-left: 3px solid var(--gold);
  font-size: 0.82rem; color: var(--gray-light);
  font-style: italic; line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   FREE RESOURCES PAGE
   ═══════════════════════════════════════════════════════ */
.resources-section {
  padding: 4rem 2.5rem 6rem;
  max-width: 1100px; margin: 0 auto;
}
.resource-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  padding: 2.2rem;
  border: 1px solid var(--border);
  background: var(--charcoal);
  margin-bottom: 1.5rem;
  align-items: center;
  transition: all 0.4s ease;
}
.resource-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.resource-card.live {
  border-color: var(--oxblood);
  background:
    linear-gradient(135deg, rgba(139,46,46,0.1) 0%, transparent 60%),
    var(--charcoal);
}
@media (max-width: 780px) { .resource-card { grid-template-columns: 1fr; } }
.resource-thumb {
  aspect-ratio: 8.5/11;
  background: var(--coal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  text-align: center; padding: 1rem;
}
.resource-card .body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem; text-transform: uppercase;
  margin-bottom: 0.5rem; line-height: 1.2;
}
.resource-card .body .status {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.resource-card.live .body .status { color: var(--oxblood); }
.resource-card .body .status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.resource-card.live .body .status::before { animation: pulseDot 1.8s ease-in-out infinite; }
.resource-card .body p {
  color: rgba(245,240,232,0.78);
  line-height: 1.7; margin-bottom: 1.2rem; font-size: 0.95rem;
}
.resource-card .body .what {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 0.84rem; color: var(--cream);
}
.resource-card .body .what div::before {
  content: '✓'; color: var(--gold);
  margin-right: 0.5rem; font-weight: 600;
}

/* PAGE HEADER (used by subpages) */
.page-header {
  padding: 14rem 2.5rem 4rem;
  max-width: 1300px; margin: 0 auto;
}
.page-header .eyebrow { display: block; margin-bottom: 1.2rem; }
.page-header h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.page-header h1 em {
  font-family: 'DM Sans', sans-serif;
  font-style: italic; font-weight: 300;
  color: var(--oxblood);
  text-transform: none;
}
.page-header .lede {
  max-width: 620px;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.75;
}
@media (max-width: 780px) { .resource-card { grid-template-columns: 1fr; } }
