/* ============================================================
   NOTEBOOK OF A COO — PREMIUM UPGRADE LAYER
   Loaded on top of noc.css. Pure additive. Safe to remove.
   Top-1% visual polish: motion, gradients, depth, micro-interactions.
   ============================================================ */

:root {
  /* — Core gold — */
  --gold:           #C9A84C;
  --gold-light:     #E6CB6C;
  --gold-deep:      #8A6F1F;
  --gold-glow:      0 0 32px rgba(201,168,76,0.22);
  --gold-glow-soft: 0 0 60px rgba(201,168,76,0.12);
  --gradient-gold:  linear-gradient(135deg, #E6CB6C 0%, #C9A84C 35%, #8A6F1F 100%);
  --gradient-text:  linear-gradient(180deg, #FFFFFF 0%, #E6CB6C 110%);

  /* — NEW Accent palette for "pop" — */
  --emerald:        #48BB78;       /* trust / guarantee */
  --emerald-dim:    rgba(72,187,120,0.10);
  --emerald-border: rgba(72,187,120,0.30);
  --ember:          #F39C5C;       /* premium tier accent */
  --ember-dim:      rgba(243,156,92,0.10);
  --ember-border:   rgba(243,156,92,0.30);
  --crimson:        #E45858;       /* urgency / warning */
  --crimson-dim:    rgba(228,88,88,0.10);
  --crimson-border: rgba(228,88,88,0.30);
  --azure:          #4F8FE0;       /* informational */
  --azure-dim:      rgba(79,143,224,0.10);

  /* — Deeper blacks for premium contrast — */
  --black-pure:     #000000;
  --black-deep:     #050505;
  --black-rich:     #0A0908;
  --ink:            #0E0D0C;

  /* — Gradients for cards — */
  --gradient-premium: linear-gradient(135deg, #1a1814 0%, #0E0D0C 100%);
  --gradient-emerald: linear-gradient(135deg, rgba(72,187,120,0.08) 0%, transparent 100%);
  --gradient-ember:   linear-gradient(135deg, rgba(243,156,92,0.10) 0%, transparent 100%);

  /* — Surfaces — */
  --noise-bg:       url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");

  /* — Easings — */
  --ease-out-soft:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  PROGRAM CARDS — the homepage centerpiece                ║
   ╚══════════════════════════════════════════════════════════╝ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .programs-grid { grid-template-columns: 1fr; }
}

.program-card {
  position: relative;
  background: linear-gradient(180deg, #161412 0%, #0C0B0A 100%);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 56px 26px 32px;     /* extra top padding for the chip */
  display: flex;
  flex-direction: column;
  overflow: visible;            /* let chip show outside card */
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.5s ease;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.program-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), transparent 40%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.28);
  box-shadow:
    0 20px 50px -20px rgba(0,0,0,0.8),
    0 0 40px rgba(201,168,76,0.12);
}
.program-card:hover::before { opacity: 1; }

.program-card__chip {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  background: #1F1A0E;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
  z-index: 5;
}
.program-card__chip--featured {
  color: #000;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201,168,76,0.40);
}
.program-card__chip--premium {
  color: var(--ember);
  background: var(--ember-dim);
  border-color: var(--ember-border);
}

.program-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.10rem;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}
.program-card:hover .program-card__icon {
  transform: rotate(-8deg) scale(1.08);
  background: rgba(201,168,76,0.18);
}

.program-card__title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.program-card__tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 18px;
  line-height: 1.5;
}

.program-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 18px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 20px;
}
.program-card__price-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.program-card__price-period {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
}

.program-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.program-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.program-card__list li i {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.program-card__fine {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.30);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* — Auto-fit CTA text inside narrow program cards — */
.program-card .btn--gold,
.program-card .btn--ghost {
  font-size: 0.70rem !important;
  letter-spacing: 0.06em !important;
  padding: 14px 12px !important;
  white-space: normal !important;
  text-align: center;
  line-height: 1.2;
}
.program-card .btn--gold .arrow-spin,
.program-card .btn--ghost .arrow-spin { margin-left: 4px; }

/* — Featured (Hub) variant: visually elevated — */
.program-card--featured {
  background: linear-gradient(180deg, #1F1A0E 0%, #0F0D08 100%);
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px -24px rgba(201,168,76,0.20),
    0 0 0 1px rgba(201,168,76,0.12) inset;
}
.program-card--featured::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  height: 3px;
}
.program-card--featured .program-card__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 28px rgba(201,168,76,0.40);
}
.program-card--featured:hover {
  transform: translateY(-14px);
}

/* — Entry variant ($19) — */
.program-card--entry .program-card__icon {
  background: var(--emerald-dim);
  border-color: var(--emerald-border);
  color: var(--emerald);
}
.program-card--entry .program-card__price-num {
  background: linear-gradient(135deg, var(--emerald), #2D7A4D);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* — Premium (COO on Demand) variant — */
.program-card--premium .program-card__icon {
  background: var(--ember-dim);
  border-color: var(--ember-border);
  color: var(--ember);
}
.program-card--premium .program-card__price-num {
  background: linear-gradient(135deg, var(--ember), #B85F22);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  ENHANCED BUTTONS — for the "pop"                        ║
   ╚══════════════════════════════════════════════════════════╝ */
.btn--gold {
  background: var(--gradient-gold) !important;
  color: #000 !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(201,168,76,0.25);
}
.btn--gold:hover {
  box-shadow: 0 10px 30px rgba(201,168,76,0.45) !important;
}
.btn--ghost {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  color: var(--gold) !important;
}
.btn--ghost:hover {
  background: rgba(201,168,76,0.08) !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  Premium section divider                                  ║
   ╚══════════════════════════════════════════════════════════╝ */
.section-divider-fancy {
  text-align: center;
  margin: 80px 0;
  position: relative;
}
.section-divider-fancy::before,
.section-divider-fancy::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35));
}
.section-divider-fancy::before { left: 5%;  }
.section-divider-fancy::after  { right: 5%; background: linear-gradient(-90deg, transparent, rgba(201,168,76,0.35)); }
.section-divider-fancy span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--gold);
  margin: 0 6px;
  animation: pulse-dot 2s ease-in-out infinite;
}
.section-divider-fancy span:nth-child(2) { animation-delay: 0.3s; }
.section-divider-fancy span:nth-child(3) { animation-delay: 0.6s; }
@keyframes pulse-dot {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%      { transform: scale(1.4); opacity: 1; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  Stat counters on hero                                    ║
   ╚══════════════════════════════════════════════════════════╝ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
}
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr 1fr; } }
.stat-cell {
  background: #0A0908;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.stat-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(201,168,76,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-cell:hover::before { opacity: 1; }
.stat-cell__num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-cell__label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

/* ── Global background noise ── */
body { position: relative; }
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--noise-bg);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gradient-gold);
  z-index: 10000;
  box-shadow: 0 0 12px rgba(201,168,76,0.45);
  transition: width 0.05s linear;
}

/* ── Aurora / gradient hero glow ── */
.aurora {
  position: absolute;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
}
.aurora--gold {
  background: radial-gradient(circle, rgba(201,168,76,0.45) 0%, rgba(201,168,76,0) 70%);
}
.aurora--warm {
  background: radial-gradient(circle, rgba(255,180,80,0.20) 0%, rgba(255,180,80,0) 70%);
}
.aurora--top-left   { top: -200px; left: -200px;  width: 600px; height: 600px; }
.aurora--top-right  { top: -180px; right: -200px; width: 540px; height: 540px; }
.aurora--mid-right  { top: 40%;    right: -260px; width: 480px; height: 480px; }
.aurora--bottom-left{ bottom: -200px; left: -180px; width: 520px; height: 520px; }

@keyframes aurora-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.06); }
}
.aurora { animation: aurora-drift 14s ease-in-out infinite; }
.aurora--top-right { animation-delay: -7s; }
.aurora--bottom-left { animation-delay: -10s; }

/* ── Animated grid mesh background ── */
.grid-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* ── Section content sits above effects ── */
.section, .webinar-hero, .qs-hero, .hero, .page-hero {
  position: relative;
  z-index: 2;
}
.section > .wrap, .webinar-hero > .wrap, .qs-hero > .wrap, .hero > .wrap, .page-hero > .wrap {
  position: relative;
  z-index: 2;
}

/* ── Gold gradient text accent ── */
.text-gold-gradient,
.text-gold-grad,
h1 em, h2 em, h3 em {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  font-style: italic;
  background-size: 200% 200%;
  animation: gold-shimmer 6s ease-in-out infinite;
}
@keyframes gold-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ── Section divider: animated SVG line ── */
.svg-divider {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  height: 1px;
  position: relative;
  overflow: hidden;
}
.svg-divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.6) 50%, transparent 100%);
  animation: divider-sweep 7s ease-in-out infinite;
}
@keyframes divider-sweep {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}

/* ── Animated counters ── */
.counter {
  font-family: var(--display);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── Reveal animations (richer than the default .reveal) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease-out-soft),
    transform 0.9s var(--ease-out-soft);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"].in-view { transition-delay: 0.10s; }
[data-reveal-delay="2"].in-view { transition-delay: 0.22s; }
[data-reveal-delay="3"].in-view { transition-delay: 0.34s; }
[data-reveal-delay="4"].in-view { transition-delay: 0.46s; }

[data-reveal="left"]   { transform: translateX(-44px); }
[data-reveal="right"]  { transform: translateX(44px);  }
[data-reveal="scale"]  { transform: scale(0.94); }
[data-reveal="left"].in-view,
[data-reveal="right"].in-view,
[data-reveal="scale"].in-view { transform: none; }

/* ── Letter-by-letter headline reveal ── */
.split-letters .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.5s var(--ease-out-soft), transform 0.6s var(--ease-out-soft);
}
.split-letters.in-view .letter {
  opacity: 1;
  transform: none;
}

/* ── Magnetic / premium buttons ── */
.btn--gold, .btn--ghost {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s var(--ease-spring),
    box-shadow 0.3s ease,
    background 0.3s ease;
  will-change: transform;
}
.btn--gold::after, .btn--ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn--gold:hover, .btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}
.btn--gold:hover::after, .btn--ghost:hover::after { opacity: 1; }

/* ── Card lift & glow ── */
.card-lift, .tcard, .inside-cell, .type-box, .gap-item, .fit-panel, .step-box {
  transition:
    transform 0.4s var(--ease-out-soft),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.3s ease;
}
.card-lift:hover, .tcard:hover, .inside-cell:hover, .type-box:hover, .step-box:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.28) !important;
  box-shadow: var(--gold-glow-soft);
}

/* ── Animated CTA glow border ── */
.btn--cta-pulse {
  position: relative;
}
.btn--cta-pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-gold);
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
  animation: cta-pulse 2.4s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.75; }
}

/* ── Marquee strip (credibility / press) ── */
.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
  padding: 22px 0;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--surface), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }
.marquee__track {
  display: flex;
  gap: 80px;
  animation: marquee-scroll 38s linear infinite;
  padding-right: 80px;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee__item {
  font-family: var(--display);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.40);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 14px;
}
.marquee__item .star {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Number ticker for stats ── */
.stat-tile {
  position: relative;
  background: var(--card);
  padding: 36px 28px;
  overflow: hidden;
  border-right: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}
.stat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-tile:hover::before { opacity: 1; }

/* ── Animated chevron ── */
.btn--gold .arrow-spin {
  display: inline-block;
  transition: transform 0.3s var(--ease-spring);
}
.btn--gold:hover .arrow-spin { transform: translateX(4px); }

/* ── Premium nav refinement ── */
.nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
}

/* ── Premium logo glow ── */
.nav__logo img {
  transition: filter 0.3s ease;
}
.nav__logo:hover img {
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.5));
}

/* ── Hero floating shapes ── */
.float-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
  animation: float-y 11s ease-in-out infinite;
}
.float-shape svg { display: block; }
.float-shape--1 { top: 18%;  right: 6%; animation-delay: 0s; }
.float-shape--2 { top: 62%;  left:  4%; animation-delay: -4s; }
.float-shape--3 { bottom: 14%; right: 14%; animation-delay: -8s; }
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-22px) rotate(8deg); }
}

/* ── Glassmorphism opt-in card ── */
.optin-card {
  background: rgba(17,17,17,0.85) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.04) inset,
    0 24px 60px -20px rgba(0,0,0,0.6),
    var(--gold-glow-soft) !important;
}

/* ── Animated focus ring on form fields ── */
.optin-form input:focus {
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 24px rgba(201,168,76,0.25) !important;
}

/* ── Guarantee badge enhancement ── */
.guarantee-card {
  position: relative;
  overflow: hidden;
}
.guarantee-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(201,168,76,0.06) 25%, transparent 50%);
  animation: rotate-slow 20s linear infinite;
  pointer-events: none;
}
@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}
.guarantee-card > * { position: relative; z-index: 2; }

/* ── Smooth scroll behavior for in-page links ── */
html { scroll-behavior: smooth; }

/* ── Custom cursor accent (desktop only) ── */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out-soft), opacity 0.2s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.30s var(--ease-out-soft), width 0.25s ease, height 0.25s ease, opacity 0.2s ease;
  }
  .cursor-ring.hovering {
    width: 64px;
    height: 64px;
    border-color: var(--gold);
  }
}

/* ── Spotlight cards ── */
.spotlight-card {
  position: relative;
  overflow: hidden;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  top: var(--my, 50%); left: var(--mx, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.spotlight-card:hover::before { opacity: 1; }

/* ── Section heading micro-line ── */
.label {
  position: relative;
  display: inline-block;
}
.label::before {
  content: '';
  position: absolute;
  left: -22px; top: 50%;
  width: 14px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Reduce motion for accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Mobile premium tweaks ── */
@media (max-width: 768px) {
  .aurora { opacity: 0.35; filter: blur(50px); }
  .float-shape { display: none; }
  body::before { opacity: 0.3; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  GLOBAL TYPOGRAPHY TIGHTENING                            ║
   ║  Smaller headings + tighter section padding              ║
   ║  = less scrolling, less friction, better conversions     ║
   ╚══════════════════════════════════════════════════════════╝ */
h1 {
  font-size: clamp(2rem, 4.6vw, 4rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem) !important;
  line-height: 1.12 !important;
}
h3 {
  font-size: clamp(1.1rem, 1.9vw, 1.55rem) !important;
  line-height: 1.18 !important;
}
h4 {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem) !important;
  line-height: 1.25 !important;
}

/* Tighter section padding */
.section,
.section--lg,
.section--md {
  padding-top: clamp(56px, 7vw, 88px) !important;
  padding-bottom: clamp(56px, 7vw, 88px) !important;
}

/* Hero gets slightly tighter so it feels denser above the fold */
.hero,
.webinar-hero,
.qs-hero,
.page-hero {
  padding-top: clamp(72px, 8vw, 110px) !important;
  padding-bottom: clamp(56px, 7vw, 84px) !important;
}

/* Tighter hero subtext */
.hero__sub, .webinar-hero p, .qs-hero p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem) !important;
  line-height: 1.65 !important;
}

/* Smaller program-card title for tighter scan */
.program-card__title { font-size: 1.20rem !important; }
.program-card__tag   { font-size: 0.76rem !important; margin-bottom: 14px !important; }
.program-card__price-num { font-size: 2.1rem !important; }
.program-card__list li { font-size: 0.80rem !important; }

/* Programs section heading specifically tighter */
.programs-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem) !important;
}

/* Final CTA padding tighter */
.final-cta { padding: 72px 0 !important; }

/* Marquee a touch tighter */
.marquee { padding: 16px 0; }
.marquee__item { font-size: 1.05rem; }

/* ── Apply premium program-card treatment to COO on Demand price-cards ── */
.price-card {
  position: relative !important;
  background: linear-gradient(180deg, #161412 0%, #0C0B0A 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  padding: 56px 26px 32px !important;
  overflow: visible !important;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.5s ease;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.28) !important;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8), 0 0 40px rgba(201,168,76,0.12);
}
.price-card:hover::before { opacity: 1; }
.price-card--featured {
  background: linear-gradient(180deg, #1F1A0E 0%, #0F0D08 100%) !important;
  border-color: rgba(201,168,76,0.28) !important;
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px -24px rgba(201,168,76,0.20),
    0 0 0 1px rgba(201,168,76,0.12) inset !important;
}
.price-card--featured::before {
  opacity: 1 !important;
  background: linear-gradient(90deg, transparent, var(--gold), transparent) !important;
}
.price-card--featured:hover { transform: translateY(-14px); }

.price-card__badge {
  position: absolute !important;
  top: 16px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  background: #1F1A0E !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.30) !important;
  padding: 6px 12px !important;
  border-radius: 2px !important;
  font-size: 0.56rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  z-index: 5;
}
.price-card--featured .price-card__badge {
  background: var(--gold) !important;
  color: #000 !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 18px rgba(201,168,76,0.40);
}
.price-card__name {
  font-size: 0.62rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 6px !important;
}
.price-row__amount {
  background: var(--gradient-gold) !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-family: var(--display);
  font-weight: 700;
}

/* ── Sub-page hero treatment: add aurora-ready container ── */
.page-hero, .qs-hero, .webinar-hero { position: relative; overflow: hidden; }
.page-hero > .wrap, .qs-hero > .wrap, .webinar-hero > .wrap {
  position: relative; z-index: 3;
}
