/* ============================================================================
   SOUL SYNCIFY — main.css
   $10k-grade cinematic system. Dark, gold, cinematic; cream breathing rooms.
   Ported from the prototype's visual DNA (no Tailwind/React) to plain CSS.
   Sections:
     00 Tokens · 01 Reset · 02 Grain/base · 03 Type · 04 Buttons · 05 Utilities
     06 Announcement bar · 07 Nav · 08 Hero · 09 Event card · 10 Cream/empathy
     11 Method · 12 Proof ticker · 13 Programs carousel · 14 Journey · 15 Marquee
     16 Testimonials · 17 Founder · 18 Final CTA · 19 Footer · 20 Lead magnet
     21 WhatsApp + Sync Meter · 22 Pricing/Hub · 23 Compare table · 24 FAQ
     25 Forms · 26 Challenge/Corporate/About specifics · 27 Mascot
     28 Reduced motion · 29 Responsive
   ============================================================================ */

/* ---- 00 TOKENS ----------------------------------------------------------- */
:root {
  --bg:        #0C0A08;
  --bg-deep:   #080604;
  --panel:     #1C1814;
  --panel-2:   #100C0A;
  --gold:      #C9A456;
  --gold-lt:   #E2C97E;
  --terra-a:   #B5521E;
  --terra-b:   #C4622D;
  --terra-c:   #D4724D;
  --cream:     #F7F2E8;
  --cream-2:   #EDE7D8;
  --ink:       #182818;      /* text on cream */
  --text:      #F0EBE0;
  --text-dim:  rgba(240,235,224,0.62);
  --text-faint:rgba(240,235,224,0.4);

  /* accent-per-program */
  --acc-gold:  #C9A456;
  --acc-teal:  #4AABB8;
  --acc-purple:#8B6B9E;
  --acc-terra: #C4622D;

  --ease:      cubic-bezier(0.22,0.6,0.36,1);
  --ease-carousel: cubic-bezier(0.25,0.8,0.25,1);
  --hairline:  rgba(201,164,86,0.22);
  --maxw:      1200px;
  --radius:    14px;

  --grain-svg: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- 01 RESET ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }

/* Lenis smooth scroll — required CSS so native scroll-behavior doesn't fight Lenis.
   Without this, `html{scroll-behavior:smooth}` re-animates every frame Lenis writes,
   and the two deadlock → the page barely scrolls. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ---- 02 GRAIN + BASE ----------------------------------------------------- */
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  opacity: 0;                         /* page fade-in (main.js sets .loaded) */
  transition: opacity 0.4s ease;
}
body.loaded { opacity: 1; }

body::after {                          /* fixed grain overlay 2.2% */
  content: '';
  position: fixed; inset: 0;
  background-image: var(--grain-svg);
  opacity: 0.022; pointer-events: none; z-index: 9999;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--terra-a); border-radius: 3px; }
::selection { background: rgba(196,98,45,0.3); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---- 03 TYPOGRAPHY ------------------------------------------------------- */
.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-quote   { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-anton   { font-family: 'Anton', 'Playfair Display', sans-serif; }

h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.1; }

.eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before {                     /* thin gold divider before every eyebrow */
  content: ''; width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ''; width: 32px; height: 1px;
  background: linear-gradient(270deg, var(--gold), transparent);
}
.on-cream .eyebrow { color: #9a7a1e; }

.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.section-title { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.hero-title    { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; }
.lead { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--text-dim); max-width: 46ch; }

/* ---- 04 BUTTONS ---------------------------------------------------------- */
.btn {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; padding: 1.05rem 2.1rem; border-radius: 3px;
  display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, opacity 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-terra {
  background: linear-gradient(135deg, var(--terra-a) 0%, var(--terra-b) 40%, var(--terra-c) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(196,98,45,0.4); border: none;
}
.btn-terra:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,98,45,0.55); }
.btn-ghost {
  color: rgba(240,235,224,0.9); border: 1.5px solid rgba(240,235,224,0.4);
  background: rgba(240,235,224,0.04);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(240,235,224,0.85); background: rgba(240,235,224,0.09); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: #1a1207; border: none; box-shadow: 0 4px 20px rgba(201,164,86,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,164,86,0.5); }
.on-cream .btn-ghost { color: var(--ink); border-color: rgba(24,40,24,0.3); background: transparent; }
.on-cream .btn-ghost:hover { border-color: var(--ink); background: rgba(24,40,24,0.05); }
.btn-lg { padding: 1.2rem 2.6rem; font-size: 0.76rem; }
.arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow, a:hover .arrow { transform: translateX(3px); }

/* ---- 05 UTILITIES / LAYOUT ---------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.on-cream { background: var(--cream); color: var(--ink); }
.on-cream .lead, .on-cream .text-dim { color: rgba(24,40,24,0.7); }
.on-panel { background: var(--panel-2); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 1.4rem; }
.grid { display: grid; gap: 1.5rem; }
.hidden { display: none !important; }
.divider-line { width: 32px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 1.1rem; }
.text-dim { color: var(--text-dim); }
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.06em; padding: 0.45rem 0.85rem;
  border: 1px solid var(--hairline); border-radius: 999px; color: var(--text-dim);
}
.on-cream .chip { border-color: rgba(24,40,24,0.18); color: rgba(24,40,24,0.7); }

/* Reveal (progressive enhancement; visible if JS/motion off) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.from-left  { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.is-visible { opacity: 1; transform: none; }
.on-cream .reveal { filter: blur(6px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease); }
.on-cream .reveal.is-visible { filter: blur(0); }
.no-js .reveal { opacity: 1; transform: none; filter: none; }

/* ---- 06 ANNOUNCEMENT BAR ------------------------------------------------- */
.announce {
  background: linear-gradient(90deg, rgba(181,82,30,0.16), rgba(201,164,86,0.12));
  border-bottom: 1px solid var(--hairline);
  font-size: 0.72rem; letter-spacing: 0.05em; text-align: center;
  padding: 0.6rem 1rem; color: var(--text);
}
.announce a { color: var(--gold-lt); font-weight: 600; }
.announce a:hover { text-decoration: underline; }

/* ---- 07 NAV -------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 200; width: 100%;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,10,8,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.9rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo .wordmark { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-link {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,235,224,0.78); font-weight: 500; display: inline-flex; align-items: center; gap: 0.35rem;
  padding-block: 0.5rem; transition: color 0.15s;
}
.nav-link:hover { color: var(--gold); }
.nav-link .caret { font-size: 0.6rem; opacity: 0.7; }
.nav-gold { color: var(--gold) !important; }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-login {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 0.65rem 1.15rem; border: 1.5px solid rgba(240,235,224,0.35); border-radius: 3px;
  color: rgba(240,235,224,0.9); transition: all 0.2s;
}
.nav-login:hover { border-color: var(--gold); color: var(--gold); }
.nav-cta {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 0.7rem 1.3rem; border-radius: 3px; color: #fff;
  background: linear-gradient(135deg, var(--terra-a), var(--terra-c));
  box-shadow: 0 4px 16px rgba(196,98,45,0.35); transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,98,45,0.5); }

/* dropdowns */
.nav-has-dd { position: relative; }
.nav-dd {
  position: absolute; top: calc(100% + 6px); left: -1rem; min-width: 250px;
  background: rgba(12,10,8,0.98); border: 1px solid var(--hairline); border-radius: 6px;
  padding: 0.5rem 0; opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s; backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55); z-index: 210;
}
/* Invisible bridge across the 6px gap so the pointer can travel from the link
   into the menu without leaving the hover area (otherwise the dropdown closes
   before you can click an item). */
.nav-dd::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav-has-dd:hover .nav-dd, .nav-has-dd:focus-within .nav-dd { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dd a { display: block; padding: 0.6rem 1.2rem; font-size: 0.72rem; color: rgba(240,235,224,0.75); transition: color 0.15s, background 0.15s; }
.nav-dd a small { display: block; text-transform: none; letter-spacing: 0; font-size: 0.66rem; color: var(--text-faint); margin-top: 2px; }
.nav-dd a:hover { color: var(--gold); background: rgba(201,164,86,0.06); }
.nav-dd a.dd-gold { color: var(--gold); }

/* mobile menu */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 0.4rem; }
.nav-burger span { width: 24px; height: 2px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 190; background: rgba(12,10,8,0.98); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text); opacity: 0; transform: translateY(12px); }
.mobile-menu.open a { animation: mmFade 0.5s var(--ease) forwards; }
.mobile-menu .mm-sub { font-size: 0.95rem; color: var(--text-dim); font-family: 'DM Sans', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
@keyframes mmFade { to { opacity: 1; transform: none; } }
.mm-close { position: absolute; top: 1.4rem; right: 1.4rem; font-size: 2rem; color: var(--text); }

/* ---- 08 HERO ------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(8,6,4,0.3), rgba(8,6,4,0.82) 70%, var(--bg-deep) 100%),
    linear-gradient(180deg, rgba(8,6,4,0.6) 0%, rgba(8,6,4,0.2) 40%, var(--bg-deep) 100%);
}
.hero-glow {
  position: absolute; z-index: 1; left: 50%; top: 42%; transform: translate(-50%,-50%);
  width: min(70vw, 720px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,86,0.28), rgba(201,164,86,0) 62%);
  filter: blur(10px); animation: breathe 4.5s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { opacity: 0.12; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 0.24; transform: translate(-50%,-50%) scale(1.06); } }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow { margin-bottom: 1.6rem; }
.hero-eyebrow .divider-anim { display:inline-block; width:0; height:1px; background:var(--gold); vertical-align: middle; margin-right: 0.75rem; transition: width 0.6s var(--ease); }
.hero.animate .hero-eyebrow .divider-anim { width: 42px; }
.hero-title { margin-bottom: 1.4rem; }
.hero-sub { margin-bottom: 2.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-faint); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll .line { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); transform-origin: top; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: 0.6; } 50% { transform: scaleY(0.4); opacity: 0.2; } }
/* hero staged entrance */
.hero-stagger > * { opacity: 0; transform: translateY(24px); }
.hero.animate .hero-stagger > * { animation: heroUp 0.9s var(--ease) forwards; }
.hero.animate .hero-stagger > *:nth-child(1){animation-delay:.2s}
.hero.animate .hero-stagger > *:nth-child(2){animation-delay:.35s}
.hero.animate .hero-stagger > *:nth-child(3){animation-delay:.5s}
.hero.animate .hero-stagger > *:nth-child(4){animation-delay:.65s}
.hero.animate .hero-stagger > *:nth-child(5){animation-delay:.8s}
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* ambient gold-foil butterflies + particle trail (injected on every page) */
.bf-trail { position: fixed; inset: 0; z-index: 5; pointer-events: none; }
.butterfly { position: fixed; top: 0; left: 0; width: 36px; z-index: 6; pointer-events: none; perspective: 700px; opacity: 0.95; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4)) drop-shadow(0 0 8px rgba(226,201,126,0.3)); will-change: transform; }
.butterfly .bf-inner { display: block; transform-style: preserve-3d; animation: bflyFlutter 0.3s ease-in-out infinite alternate; }
.butterfly .bf-inner img { width: 100%; height: auto; display: block; }
.butterfly .bf-flip { animation-name: bflyFlutterFlip; }
.butterfly .bf-flip img { transform: scaleX(-1); }
.butterfly.bf-a { animation: bflyDriftA 33s ease-in-out infinite; }
.butterfly.bf-b { width: 28px; opacity: 0.88; animation: bflyDriftB 45s ease-in-out infinite; animation-delay: -7s; }
.butterfly.bf-c { width: 34px; opacity: 1; animation: bflyDriftC 39s ease-in-out infinite; animation-delay: -18s; }
/* solid pink butterfly — soft pink glow only (no recolour needed) */
.butterfly.bf-c .bf-inner img { filter: saturate(1.12) drop-shadow(0 0 6px rgba(255,120,200,0.85)) drop-shadow(0 0 13px rgba(255,140,210,0.45)); }
@keyframes bflyFlutter { from { transform: rotateY(-46deg) rotateZ(-4deg); } to { transform: rotateY(50deg) rotateZ(4deg); } }
@keyframes bflyFlutterFlip { from { transform: rotateY(46deg) rotateZ(4deg); } to { transform: rotateY(-50deg) rotateZ(-4deg); } }
@keyframes bflyDriftA {
  0%   { transform: translate(-8vw, 68vh) rotate(14deg) scale(0.8); }
  22%  { transform: translate(22vw, 28vh) rotate(-8deg) scale(0.95); }
  46%  { transform: translate(50vw, 56vh) rotate(15deg) scale(0.86); }
  70%  { transform: translate(76vw, 22vh) rotate(-6deg) scale(1.02); }
  100% { transform: translate(112vw, 40vh) rotate(12deg) scale(0.8); }
}
@keyframes bflyDriftB {
  0%   { transform: translate(108vw, 24vh) rotate(-12deg) scale(0.9); }
  25%  { transform: translate(70vw, 60vh) rotate(8deg) scale(0.8); }
  52%  { transform: translate(40vw, 20vh) rotate(-14deg) scale(0.95); }
  78%  { transform: translate(14vw, 54vh) rotate(6deg) scale(0.85); }
  100% { transform: translate(-12vw, 30vh) rotate(-10deg) scale(0.9); }
}
@keyframes bflyDriftC {
  0%   { transform: translate(40vw, -8vh) rotate(10deg) scale(0.85); }
  26%  { transform: translate(12vw, 34vh) rotate(-10deg) scale(0.95); }
  54%  { transform: translate(58vw, 66vh) rotate(12deg) scale(0.8); }
  80%  { transform: translate(88vw, 30vh) rotate(-8deg) scale(0.98); }
  100% { transform: translate(64vw, 108vh) rotate(9deg) scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .butterfly { animation: none !important; opacity: 0.55; }
  .butterfly.bf-a { top: 14vh; left: 80vw; } .butterfly.bf-b { top: 60vh; left: 12vw; } .butterfly.bf-c { top: 34vh; left: 46vw; }
  .butterfly .bf-inner { animation: none !important; transform: rotateY(18deg); }
}
@media (max-width: 640px) { .butterfly.bf-a { width: 30px; } .butterfly.bf-b { width: 24px; } .butterfly.bf-c { width: 26px; } }

/* ---- 09 EVENT CARD ------------------------------------------------------- */
.event-card {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--panel); border: 1px solid var(--hairline);
}
.event-card::before {                  /* slow gold border shimmer */
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px; pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(226,201,126,0.55) 50%, transparent 80%);
  background-size: 250% 250%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 250% 50%; } }
.event-card__media { position: relative; min-height: 320px; background: #111; }
.event-card__media img, .event-card__media video { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: clamp(1.6rem, 3vw, 2.6rem); }
.event-card__title { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin: 0.5rem 0 0.6rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }

/* flip countdown */
.countdown { display: flex; gap: 0.9rem; margin: 1.1rem 0 1.4rem; }
.cd-block { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.cd-num {
  font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.1rem); font-weight: 300; color: #F5F0E8;
  line-height: 1; min-width: 1.4ch; text-align: center; display: inline-block;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.cd-num.flip { animation: cdFlip 0.3s var(--ease); }
@keyframes cdFlip { 0% { transform: rotateX(-90deg); opacity: 0; } 100% { transform: rotateX(0); opacity: 1; } }
.cd-label { font-size: 0.5rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.cd-sep { color: rgba(201,164,86,0.5); font-size: 1.3rem; align-self: flex-start; }
.countdown.expired { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-lt); font-size: 1.2rem; }

/* ---- 10 EMPATHY / CREAM -------------------------------------------------- */
.empathy p { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(24,40,24,0.78); max-width: 60ch; }
.empathy .punch { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--ink); font-size: clamp(1.4rem,2.6vw,2rem); margin-top: 1.6rem; }

/* ---- 11 METHOD ----------------------------------------------------------- */
.method { position: relative; overflow: hidden; }
.method-mandala { position: absolute; left: 50%; top: 50%; width: min(90vw, 820px); aspect-ratio: 1; transform: translate(-50%,-50%); z-index: 0; opacity: 0.5; pointer-events: none; }
.method-mandala .spin { transform-origin: center; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseBars { 0%,100% { transform: scaleY(0.9); opacity: 0.7; } 50% { transform: scaleY(1.05); opacity: 1; } }
.method-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.method-card {
  background: rgba(28,24,20,0.72); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 2rem 1.7rem; backdrop-filter: blur(4px); transition: transform 0.25s var(--ease), border-color 0.25s;
  will-change: transform;
}
.method-card:hover { border-color: rgba(201,164,86,0.45); }
.method-card .m-icon { width: 46px; height: 46px; margin-bottom: 1.2rem; color: var(--gold); }
.method-card .m-icon path, .method-card .m-icon circle, .method-card .m-icon line { stroke-dasharray: 300; stroke-dashoffset: 300; }
.method-card.is-visible .m-icon path, .method-card.is-visible .m-icon circle, .method-card.is-visible .m-icon line { animation: draw 0.9s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.method-card h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.method-card .m-tag { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.method-card p { color: var(--text-dim); font-size: 0.95rem; }

/* ---- 12 PROOF TICKER ----------------------------------------------------- */
.proof {
  background: linear-gradient(90deg, rgba(201,164,86,0.1), rgba(181,82,30,0.08));
  border-block: 1px solid var(--hairline); padding-block: 1.6rem; overflow: hidden;
}
.proof-track { display: flex; gap: 3.5rem; width: max-content; animation: ticker 22s linear infinite; }
.proof:hover .proof-track { animation-play-state: paused; }
.proof-item { display: flex; align-items: center; gap: 0.9rem; white-space: nowrap; }
.proof-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold-lt); }
.proof-label { font-size: 0.85rem; color: var(--text-dim); max-width: 40ch; white-space: normal; }
.proof-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.5; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---- 13 PROGRAMS CAROUSEL ------------------------------------------------ */
.programs { position: relative; }
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.carousel-track { display: flex; gap: 1.5rem; transition: transform 0.5s var(--ease-carousel); will-change: transform; padding-block: 0.5rem; }
.prog-card {
  flex: 0 0 300px; aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; position: relative;
  background: var(--panel); border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s; cursor: pointer;
}
.prog-card:hover { transform: scale(1.03); box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
.prog-card .prog-world { position: absolute; inset: 0; z-index: 0; }
.prog-card .prog-world svg { width: 100%; height: 100%; }
.prog-card .prog-world .anim { animation-duration: 40s; }
.prog-card:hover .prog-world .anim { animation-duration: 20s; }  /* speed ×2 on hover (spec: ×1.5–2) */
.prog-card .prog-grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,6,4,0.1) 0%, rgba(8,6,4,0.35) 45%, rgba(8,6,4,0.92) 100%); }
.prog-card .prog-body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; }
.prog-card .prog-eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.prog-card .prog-title { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 1.5rem; line-height: 1.02; letter-spacing: 0.01em; color: #fff; }
.prog-card .prog-price { position: absolute; top: 1.1rem; right: 1.1rem; z-index: 3; font-size: 0.72rem; background: rgba(8,6,4,0.6); border: 1px solid var(--hairline); border-radius: 999px; padding: 0.3rem 0.7rem; color: var(--gold-lt); backdrop-filter: blur(4px); }
.prog-card .prog-badge { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 3; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: #1a1207; border-radius: 999px; padding: 0.32rem 0.7rem; }
.prog-card--feature { flex-basis: 340px; border: 1.5px solid rgba(201,164,86,0.55); box-shadow: 0 0 40px rgba(201,164,86,0.18); }
.prog-card[data-accent="teal"]   { --pc: var(--acc-teal); }
.prog-card[data-accent="gold"]   { --pc: var(--acc-gold); }
.prog-card[data-accent="purple"] { --pc: var(--acc-purple); }
.prog-card[data-accent="terra"]  { --pc: var(--acc-terra); }
.carousel-arrows { display: flex; gap: 0.6rem; }
.carousel-arrow {
  width: 46px; height: 46px; border: 1px solid var(--hairline); border-radius: 50%;
  display: grid; place-items: center; color: var(--text); transition: all 0.2s;
}
.carousel-arrow:hover { border-color: var(--gold); color: var(--gold); }
.carousel-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.6rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(240,235,224,0.25); transition: width 0.3s var(--ease), background 0.3s; }
.carousel-dot.active { width: 22px; background: var(--gold); }

/* ---- 14 JOURNEY (gamified) ---------------------------------------------- */
.journey { position: relative; }
.journey-stage { position: relative; min-height: 140vh; }
.journey-path { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.journey-path path { fill: none; stroke: url(#jgrad); stroke-width: 3; stroke-linecap: round; }
.journey-nodes { position: relative; z-index: 1; }
.journey-node {
  position: absolute; width: 50%; display: flex; align-items: center; gap: 1rem;
  opacity: 0; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.journey-node.left  { left: 0; transform: translateX(-18px); justify-content: flex-end; text-align: right; flex-direction: row-reverse; }
.journey-node.right { right: 0; transform: translateX(18px); }
.journey-node.ignited { opacity: 1; transform: none; }
.node-dot {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--panel);
  border: 2px solid var(--gold); position: relative; box-shadow: 0 0 0 0 rgba(201,164,86,0.5);
}
.journey-node.ignited .node-dot { animation: nodePulse 0.9s var(--ease); background: var(--gold); }
@keyframes nodePulse { 0% { box-shadow: 0 0 0 0 rgba(201,164,86,0.6); } 100% { box-shadow: 0 0 0 22px rgba(201,164,86,0); } }
.node-card { background: var(--panel); border: 1px solid var(--hairline); border-radius: 12px; padding: 1.1rem 1.3rem; max-width: 300px; }
.node-card .n-step { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.node-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin: 0.2rem 0; }
.node-card p { font-size: 0.85rem; color: var(--text-dim); }
.node-card a { font-size: 0.72rem; color: var(--gold-lt); display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.5rem; }
.journey-node.platinum .node-dot { border-color: rgba(226,201,126,0.5); background: transparent; width: 14px; height: 14px; }
.journey-node.platinum .node-card { background: transparent; border-style: dashed; border-color: rgba(226,201,126,0.35); }
.journey-node.platinum h4 { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-lt); }
.platinum-tip { position: relative; cursor: help; }

/* ---- 15 PHOTO MARQUEE ---------------------------------------------------- */
.photo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.photo-track { display: flex; gap: 1.25rem; width: max-content; animation: marquee 30s linear infinite; }
.photo-marquee:hover .photo-track { animation-play-state: paused; }
.photo-item { flex: 0 0 auto; width: 260px; border-radius: 12px; overflow: hidden; }
.photo-item img { width: 100%; height: 320px; object-fit: cover; filter: brightness(0.82); transition: filter 0.3s; }
.photo-item:hover img { filter: brightness(1); }
.photo-item .cap { padding: 0.6rem 0.2rem; font-size: 0.72rem; color: var(--text-dim); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- 16 TESTIMONIALS ----------------------------------------------------- */
.tabs { display: inline-flex; gap: 0.4rem; position: relative; border: 1px solid var(--hairline); border-radius: 999px; padding: 0.35rem; }
.tab { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); padding: 0.6rem 1.2rem; border-radius: 999px; position: relative; z-index: 1; transition: color 0.3s; }
.tab.active { color: var(--gold); }
.tab-underline { position: absolute; bottom: -1px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform 0.35s var(--ease), width 0.35s var(--ease); z-index: 0; }
.tab-panels { position: relative; margin-top: 2.5rem; }
.tab-panel { display: none; opacity: 0; transform: translateY(12px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.tab-panel.active { display: grid; }
.tab-panel.shown { opacity: 1; transform: none; }
.t-quote { background: var(--panel); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.8rem; }
.t-quote blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; color: var(--text); line-height: 1.4; }
.t-quote .t-who { margin-top: 1.1rem; font-size: 0.8rem; color: var(--gold); }
.t-quote .t-who span { color: var(--text-dim); }
.t-video { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; background: var(--panel); position: relative; }
.testimonials-empty { text-align: center; color: var(--text-faint); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; }

/* ---- 17 FOUNDER ---------------------------------------------------------- */
.founder { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.4rem,5vw,4.5rem); align-items: center; }
.founder-portrait { border-radius: var(--radius); position: relative; overflow: hidden;
  border: 1px solid rgba(201,164,86,0.55);
  box-shadow: 22px 22px 0 rgba(201,164,86,0.16), 0 28px 60px rgba(24,18,10,0.22); }
.founder-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.founder-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.5rem,3vw,2.2rem); color: var(--ink); line-height: 1.25; margin: 1.2rem 0; position: relative; padding-left: 1.2rem; }
.founder-quote::before { content: ''; position: absolute; left: 0; top: 0.35rem; bottom: 0.35rem; width: 3px; border-radius: 3px; background: linear-gradient(var(--gold), var(--gold-lt)); }
.founder-cred { color: rgba(24,40,24,0.74); }
.founder-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.3rem 0 0.4rem; }
.founder-chips span { font-size: 0.7rem; letter-spacing: 0.04em; padding: 0.4rem 0.8rem; border: 1px solid rgba(24,40,24,0.16); border-radius: 999px; color: rgba(24,40,24,0.72); background: rgba(255,255,255,0.5); }

/* ---- 18 FINAL CTA -------------------------------------------------------- */
.final-cta { position: relative; overflow: hidden; text-align: center; }
.final-cta__bg { position: absolute; inset: -12% 0; z-index: 0; }
.final-cta__bg img { width: 100%; height: 124%; object-fit: cover; filter: brightness(0.4) saturate(0.9); }
.final-cta__overlay { position: absolute; inset: 0; z-index: 1; background: radial-gradient(80% 80% at 50% 50%, rgba(8,6,4,0.55), var(--bg-deep) 92%); }
.final-cta .wrap { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(2rem,5vw,3.6rem); max-width: 18ch; margin-inline: auto; }

/* ---- 19 FOOTER ----------------------------------------------------------- */
.footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.06); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer h5 { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer a { display: block; color: var(--text-dim); font-size: 0.85rem; padding-block: 0.28rem; transition: color 0.15s; }
.footer a:hover { color: var(--gold); }
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; margin: 0.8rem 0; max-width: 30ch; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 0.6rem; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid var(--hairline); border-radius: 50%; display: grid; place-items: center; }
.footer-socials a:hover { border-color: var(--gold); }
.footer-disclaimer { margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.72rem; color: var(--text-faint); max-width: 80ch; }
.footer-copy { margin-top: 1rem; font-size: 0.72rem; color: var(--text-faint); }

/* ---- 20 LEAD MAGNET ------------------------------------------------------ */
.leadmagnet { background: linear-gradient(135deg, rgba(201,164,86,0.08), rgba(139,107,158,0.08)); border-block: 1px solid var(--hairline); }
.leadmagnet-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; }
.leadmagnet form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.leadmagnet input { flex: 1 1 200px; background: rgba(8,6,4,0.5); border: 1px solid var(--hairline); border-radius: 4px; padding: 0.9rem 1rem; color: var(--text); font-size: 0.9rem; }
.leadmagnet input:focus { outline: none; border-color: var(--gold); }

/* ---- 21 WHATSAPP + SYNC METER ------------------------------------------- */
.wa-btn { position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 300; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,0.4); transition: transform 0.2s; }
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 30px; height: 30px; }
.sync-meter { position: fixed; right: 1.55rem; bottom: 5.4rem; z-index: 299; width: 48px; height: 48px; }
.sync-meter svg { width: 48px; height: 48px; transform: rotate(-90deg); }
.sync-ring-bg { fill: none; stroke: rgba(201,164,86,0.18); stroke-width: 3; }
.sync-ring { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; transition: stroke-dashoffset 0.1s linear; }
.sync-glyph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold-lt); }
.sync-glyph svg { width: 22px; height: 22px; transform: none; }
.sync-tip { position: absolute; right: 58px; bottom: 12px; background: var(--panel); border: 1px solid var(--hairline); border-radius: 6px; padding: 0.4rem 0.7rem; font-size: 0.7rem; color: var(--gold-lt); white-space: nowrap; opacity: 0; pointer-events: none; transform: translateX(6px); transition: opacity 0.3s, transform 0.3s; }
.sync-meter.full .sync-tip { opacity: 1; transform: none; }
.sync-meter.full .sync-glyph { animation: nodePulse 0.9s var(--ease); }

/* ---- 22 PRICING / HUB ---------------------------------------------------- */
.cur-toggle { display: inline-flex; border: 1px solid var(--hairline); border-radius: 999px; overflow: hidden; }
.cur-toggle button { padding: 0.5rem 1.1rem; font-size: 0.75rem; color: var(--text-dim); transition: background 0.2s, color 0.2s; }
.cur-toggle button.active { background: var(--gold); color: #1a1207; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.price-card { background: var(--panel); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 2rem 1.7rem; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; position: relative; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.price-card[data-tier="silver"]  { --tc: var(--acc-teal); }
.price-card[data-tier="gold"]    { --tc: var(--acc-gold); }
.price-card[data-tier="diamond"] { --tc: var(--acc-purple); }
.price-card.featured { border-color: var(--gold); box-shadow: 0 0 40px rgba(201,164,86,0.15); }
.price-rune { font-family: 'Playfair Display', serif; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--tc, var(--gold)); }
.price-tier { font-size: 1.6rem; margin: 0.3rem 0; color: var(--tc, var(--gold)); }
.price-name { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.price-amt { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin: 1.1rem 0 0.1rem; }
.price-amt .period { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.04em; }
.price-alt { font-size: 0.78rem; color: var(--text-faint); margin-bottom: 1.2rem; }
.price-promise { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--gold-lt); margin-bottom: 1.2rem; }
.price-unlocks { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--tc, var(--gold)); text-transform: uppercase; margin-bottom: 1rem; }
.price-feats { flex: 1; }
.price-feats li { font-size: 0.88rem; color: var(--text-dim); padding: 0.4rem 0 0.4rem 1.5rem; position: relative; }
.price-feats li::before { content: '✦'; position: absolute; left: 0; color: var(--tc, var(--gold)); font-size: 0.7rem; top: 0.55rem; }
.price-card .btn { margin-top: 1.4rem; justify-content: center; }
.price-badge { position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: #1a1207; border-radius: 999px; padding: 0.35rem 0.9rem; animation: badgePulse 2.4s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,164,86,0.5); } 50% { box-shadow: 0 0 0 10px rgba(201,164,86,0); } }
.platinum-line { text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: var(--gold-lt); max-width: 52ch; margin: 2.5rem auto 0; }

/* ---- 23 COMPARE TABLE ---------------------------------------------------- */
.compare-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare thead th { position: sticky; top: 60px; background: var(--panel-2); z-index: 5; }
.compare th, .compare td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.88rem; }
.compare th { color: var(--gold); font-weight: 600; }
.compare td.center, .compare th.center { text-align: center; }
.compare .yes { color: var(--gold-lt); }
.compare .no { color: var(--text-faint); }

/* ---- 24 FAQ -------------------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.3rem 0; font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.faq-icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.3s var(--ease), opacity 0.3s; }
.faq-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a { overflow: hidden; height: 0; }
.faq-a-inner { padding-bottom: 1.3rem; color: var(--text-dim); max-width: 70ch; }
.on-cream .faq-item { border-color: rgba(24,40,24,0.14); }
.on-cream .faq-a-inner { color: rgba(24,40,24,0.72); }

/* ---- 25 FORMS ------------------------------------------------------------ */
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-field label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.form-field input, .form-field select, .form-field textarea { background: rgba(8,6,4,0.5); border: 1px solid var(--hairline); border-radius: 5px; padding: 0.85rem 1rem; color: var(--text); font: inherit; font-size: 0.9rem; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.72rem; color: var(--text-faint); }

/* ---- 26 CHALLENGE / CORPORATE / ABOUT ----------------------------------- */
.who-grid, .benefit-grid, .format-grid, .cred-grid { display: grid; gap: 1.25rem; }
.who-grid { grid-template-columns: repeat(5,1fr); }
.benefit-grid { grid-template-columns: repeat(3,1fr); }
.format-grid { grid-template-columns: repeat(3,1fr); }
.cred-grid { grid-template-columns: repeat(3,1fr); }
.mini-card { background: var(--panel); border: 1px solid var(--hairline); border-radius: 12px; padding: 1.4rem; transition: border-color 0.25s, transform 0.25s var(--ease); }
.mini-card:hover { border-color: rgba(201,164,86,0.4); transform: translateY(-3px); }
.mini-card .mc-icon { color: var(--gold); width: 30px; height: 30px; margin-bottom: 0.9rem; }
.mini-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.4rem; }
.mini-card p { font-size: 0.85rem; color: var(--text-dim); }
/* cream sections: mini-cards need dark (ink) text, not the dark-theme light text */
.on-cream .mini-card { border-color: rgba(24,40,24,0.14); }
.on-cream .mini-card h4 { color: var(--ink); }
.on-cream .mini-card p { color: rgba(24,40,24,0.72); }

.agenda { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.agenda-day { background: var(--panel); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 2rem; position: relative; }
.agenda-day .day-tag { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 1.8rem; color: var(--gold); }
.agenda-day h3 { font-size: 1.3rem; margin: 0.3rem 0 1rem; }
.agenda-day ul li { padding: 0.4rem 0 0.4rem 1.4rem; position: relative; color: var(--text-dim); font-size: 0.9rem; }
.agenda-day ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.included-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.included-cols .inc-card { background: var(--panel); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.8rem; }
.included-cols .inc-card.vip { border-color: var(--gold); }
.included-cols li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; font-size: 0.9rem; color: var(--text-dim); }
.included-cols li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-lt); }

.compare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.two-col-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.two-col-compare .col { background: var(--panel); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 2rem; }
.two-col-compare .col.bad { opacity: 0.85; }
.two-col-compare .col.good { border-color: var(--gold); }

.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--hairline); transform: translateX(-50%); }
.timeline-item { position: relative; width: 50%; padding: 1.5rem 2rem; }
.timeline-item:nth-child(odd)  { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item .tl-dot { position: absolute; top: 1.9rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.timeline-item:nth-child(odd) .tl-dot  { right: -6px; }
.timeline-item:nth-child(even) .tl-dot { left: -6px; }
.timeline-item h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.timeline-item p { color: var(--text-dim); font-size: 0.88rem; }

.sticky-mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 250; display: none; background: rgba(12,10,8,0.96); backdrop-filter: blur(12px); border-top: 1px solid var(--hairline); padding: 0.7rem 1rem; }

.story-video { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 16/9; background: var(--panel); }
.story-video .poster-play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.play-btn { width: 74px; height: 74px; border-radius: 50%; background: rgba(201,164,86,0.9); display: grid; place-items: center; color: #1a1207; transition: transform 0.2s; }
.play-btn:hover { transform: scale(1.08); }

/* ---- 27 MASCOT (Synci — guide layer, cream/panel surfaces) --------------- */
.synci { display: inline-block; color: var(--acc-purple); }
.synci .flame { fill: url(#synciGrad); }
.synci-guide { display: flex; align-items: center; gap: 1rem; }
.synci-bubble { background: var(--cream-2); color: var(--ink); border-radius: 14px; padding: 0.9rem 1.2rem; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; position: relative; }
.on-cream .synci-bubble { background: #fff; }
/* real transparent mascot art slot (drop cutouts into assets/img/mascot/) */
.synci-img { width: clamp(90px, 14vw, 160px); height: auto; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(4,3,2,0.92); display: none; align-items: center; justify-content: center; padding: 5vw; }
.lightbox.open { display: flex; }
.lightbox video { width: auto; height: auto; max-width: 94vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); background: #000; }
.lightbox iframe { width: min(100%, 1000px); aspect-ratio: 16/9; border-radius: 8px; }
/* Vimeo / YouTube embed wrapper — responsive 16:9, capped to the viewport */
.lb-embed { position: relative; width: min(94vw, 1180px); aspect-ratio: 16 / 9; max-height: 86vh; box-shadow: 0 30px 80px rgba(0,0,0,0.6); border-radius: 10px; background: #000; }
.lb-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 10px; aspect-ratio: auto; }
.lightbox-close { position: absolute; top: 1.4rem; right: 1.6rem; color: #fff; font-size: 2rem; }

/* ---- 31 PREMIUM INTERACTION LAYER (21st.dev-inspired) -------------------- */
/* Card Spotlight — mouse-tracked radial glow (auto-attached in main.js) */
.spotlight-card { position: relative; }
.spotlight-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 1;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(226,201,126,0.14), rgba(201,164,86,0.05) 40%, transparent 65%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.spotlight-card:hover::after { opacity: 1; }
.on-cream .spotlight-card::after {
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(181,82,30,0.1), transparent 62%);
}

/* Button shine sweep (Shine Hover / Fey-style) */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease); pointer-events: none;
}
.btn-shine:hover::before { left: 130%; }

/* Shimmer gold text — slow living sheen on gradient words */
.gold-text { background-size: 220% auto; animation: goldShimmer 6.5s ease-in-out infinite; }
@keyframes goldShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Animated underline on nav + footer links */
.nav-link, .footer a { background-image: linear-gradient(90deg, var(--gold), var(--gold-lt)); background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 1px; transition: background-size 0.32s var(--ease), color 0.15s; }
.nav-link:hover, .footer a:hover { background-size: 100% 1px; }
.footer-socials a { background-image: none; }

@media (prefers-reduced-motion: reduce) {
  .gold-text { animation: none; }
  .spotlight-card::after { display: none; }
  .btn-shine::before { display: none; }
}

/* ---- 28 REDUCED MOTION --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-glow, .method-mandala .spin, .proof-track, .photo-track, .marquee-track { animation: none !important; }
  .journey-node { opacity: 1 !important; transform: none !important; }
}

/* ============================================================================
   30 REDESIGN LAYER — sticky header, split hero + 3D, tier cards,
   gamified mascot journey, split testimonials, logo/heart-blue accents
   ============================================================================ */
:root { --blue: #1e5fa0; --blue-lt: #4CA1E2; --heart: #E24A5A; }

/* sticky header stack (nav + event strip pin together) */
.site-header { position: sticky; top: 0; z-index: 200; }
.site-header .nav { position: static; }
.nav-mark { height: 42px; width: auto; filter: brightness(1.18) saturate(1.12) drop-shadow(0 0 5px rgba(226,201,126,0.55)) drop-shadow(0 0 1px rgba(255,255,255,0.6)); }

/* Event strip — Breakthrough Challenge pinned under nav */
.event-strip {
  background: linear-gradient(90deg, rgba(181,82,30,0.24), rgba(201,164,86,0.16));
  border-bottom: 1px solid var(--hairline); backdrop-filter: blur(14px);
}
.event-strip__inner { display: flex; align-items: center; gap: 1.2rem; padding: 0.55rem 0; }
.es-flash { font-size: 1.1rem; flex: 0 0 auto; }
.es-copy { display: flex; flex-direction: column; justify-content: center; gap: 2px; line-height: 1.2; margin-right: auto; min-width: 0; }
.es-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.es-meta { font-size: 0.72rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-strip .countdown { flex: 0 0 auto; }
.es-cta { flex: 0 0 auto; }
.event-strip .countdown { margin: 0; gap: 0.5rem; }
.event-strip .cd-num { font-size: 1.05rem; }
.event-strip .cd-label { display: none; }
.event-strip .cd-sep { font-size: 0.9rem; }
.event-strip .countdown.expired { font-size: 0.9rem; }
.es-cta { padding: 0.6rem 1.15rem; font-size: 0.64rem; }
.es-close { color: var(--text-faint); font-size: 1.4rem; line-height: 1; padding: 0 0.2rem; }
.es-close:hover { color: var(--text); }

/* Event strip pinned to the BOTTOM of the page (fixed bar) */
.event-strip--bottom {
  position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 210;
  border-top: 1px solid var(--gold); border-bottom: none;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.45);
}
body.has-bottombar { padding-bottom: 66px; }
body.has-bottombar .wa-btn { bottom: calc(1.3rem + 60px); }
body.has-bottombar .sync-meter { bottom: calc(5.4rem + 60px); }
@media (max-width: 720px) {
  .event-strip--bottom .es-cta { margin-left: auto; }
  body.has-bottombar { padding-bottom: 60px; }
}

/* Lead-magnet mascot in a circle */
.synci-circle {
  flex: 0 0 auto; width: 112px; height: 112px; border-radius: 50%;
  background: radial-gradient(circle, #1e1626, #0c0a10); border: 2px solid var(--gold);
  display: grid; place-items: center; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.synci-circle img { width: 112px; height: 112px; object-fit: cover; }

/* Split hero */
.hero-split { min-height: 94svh; }
.hero-3d { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.hero-split .hero-overlay { background: linear-gradient(90deg, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.55) 52%, rgba(8,6,4,0.72) 100%); }
.hero-split .hero-glow { left: 30%; top: 46%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center; width: 100%; }
.hero-trust { margin-top: 1.7rem; display: flex; gap: 0.8rem; align-items: center; font-size: 0.8rem; color: var(--text-dim); flex-wrap: wrap; }
.hero-trust b { color: var(--gold-lt); }
.hero-trust .dot { color: var(--text-faint); }

.hero-visual { position: relative; }
.hero-portrait-card {
  position: relative; margin-left: auto; max-width: 430px; aspect-ratio: 4/5;
  border-radius: 22px; overflow: hidden; border: 1px solid var(--hairline);
  background: radial-gradient(120% 90% at 50% 20%, #1a1420, #0a0708);
  box-shadow: 0 34px 90px rgba(0,0,0,0.65);
}
.hero-portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hpc-badge {
  position: absolute; right: 1rem; bottom: 1rem; display: flex; flex-direction: column;
  background: rgba(8,6,4,0.6); backdrop-filter: blur(10px); border: 1px solid var(--hairline);
  border-radius: 12px; padding: 0.55rem 0.85rem; text-align: right;
}
.hpc-badge b { font-family: 'Playfair Display', serif; font-size: 0.92rem; }
.hpc-badge small { color: var(--gold); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-video-card {
  position: absolute; left: -2.4rem; bottom: 2.2rem; width: 210px; aspect-ratio: 16/10;
  border-radius: 14px; overflow: hidden; border: 1.5px solid var(--gold);
  box-shadow: 0 22px 55px rgba(0,0,0,0.65); background: #111; cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.hero-video-card:hover { transform: translateY(-4px) scale(1.02); }
.hero-video-card video, .hero-video-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hvc-play { position: absolute; inset: 0; margin: auto; width: 44px; height: 44px; border-radius: 50%; background: rgba(201,164,86,0.92); color: #1a1207; display: grid; place-items: center; font-size: 0.9rem; }
.hvc-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.4rem 0.6rem; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.7)); }

/* Tier cards (Silver / Gold / Diamond) */
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; align-items: stretch; margin-top: 1rem; }
.cur-toggle-wrap { margin-bottom: 1.6rem; }
.tier-card {
  position: relative; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--hairline);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; will-change: transform;
}
.tier-card[data-tier="silver"]  { --tc: var(--acc-teal); }
.tier-card[data-tier="gold"]    { --tc: var(--acc-gold); }
.tier-card[data-tier="diamond"] { --tc: var(--acc-purple); }
.tier-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,0.55); border-color: var(--tc); }
.tier-card.featured { border-color: var(--gold); box-shadow: 0 0 50px rgba(201,164,86,0.2); }
.tier-badge { position: absolute; top: 0; right: 0; z-index: 3; background: linear-gradient(135deg, var(--terra-a), var(--terra-c)); color: #fff; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 0.42rem 0.9rem; border-bottom-left-radius: 12px; }
.tier-world { height: 148px; position: relative; }
.tier-world svg { width: 100%; height: 100%; }
.tier-world .anim { animation-duration: 40s; }
.tier-card:hover .tier-world .anim { animation-duration: 18s; }
.tier-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tier-head { display: flex; align-items: center; gap: 0.6rem; }
.tier-rune { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--tc); }
.tier-level { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.tier-name { font-size: 2.3rem; color: var(--tc); line-height: 1; margin-top: 0.3rem; }
.tier-sub { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.9rem; }
.tier-promise { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.12rem; color: var(--gold-lt); margin-bottom: 1.1rem; }
.tier-price { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.tp-amt { font-family: 'Playfair Display', serif; font-size: 2rem; background: linear-gradient(135deg, #D4724D, var(--gold), var(--gold-lt)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.tp-period { font-size: 0.8rem; color: var(--text-dim); }
.tp-alt { width: 100%; font-size: 0.78rem; color: var(--text-faint); }
.tier-unlocks { font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--tc); margin: 0.8rem 0 1.1rem; }
.tier-ctas { margin-top: auto; display: flex; align-items: center; gap: 1rem; }
.tier-enroll { flex: 1; justify-content: center; }
.tier-more { font-size: 0.72rem; color: var(--text-dim); white-space: nowrap; }
.tier-more:hover { color: var(--gold); }

/* Gamified mascot journey */
.journey2 { position: relative; }
.journey-track { position: relative; padding-top: 0.5rem; }
.journey-progress { position: absolute; left: 6%; right: 6%; top: 55px; height: 3px; background: rgba(201,164,86,0.15); border-radius: 2px; z-index: 0; }
.journey-progress-fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 2px; box-shadow: 0 0 12px rgba(201,164,86,0.6); transition: width 0.15s linear; }
.journey-levels { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; position: relative; z-index: 1; }
.jlevel { display: flex; flex-direction: column; align-items: center; text-align: center; opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.jlevel.is-visible { opacity: 1; transform: none; }
.jl-avatar { width: 108px; height: 108px; border-radius: 50%; background: radial-gradient(circle, #1e1626, #0c0a10); border: 2px solid var(--gold); display: grid; place-items: center; position: relative; }
.jlevel.is-visible .jl-avatar { animation: nodePulse 0.9s var(--ease); }
.jl-avatar img { width: 104px; height: 104px; object-fit: cover; border-radius: 50%; }
/* moving-dot: gold spark orbiting each level node */
.jl-avatar::after { content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: var(--gold-lt); box-shadow: 0 0 10px rgba(226,201,126,0.9); animation: jlOrbit 6.5s linear infinite; }
.jlevel:nth-child(2) .jl-avatar::after { animation-delay: -1.3s; }
.jlevel:nth-child(3) .jl-avatar::after { animation-delay: -2.6s; }
.jlevel:nth-child(4) .jl-avatar::after { animation-delay: -3.9s; }
.jlevel:nth-child(5) .jl-avatar::after { animation-delay: -5.2s; }
.jl-avatar.dim::after { display: none; }
@keyframes jlOrbit { from { transform: rotate(0deg) translateX(56px); } to { transform: rotate(360deg) translateX(56px); } }
@media (prefers-reduced-motion: reduce) { .jl-avatar::after { display: none; } }
.jl-avatar.dim { border-color: rgba(226,201,126,0.4); filter: grayscale(0.35) brightness(0.9); }
.jl-star { position: absolute; top: -4px; right: 2px; color: var(--gold-lt); font-size: 0.9rem; }
.jl-connector { display: none; }
.jl-card { margin-top: 1rem; max-width: 210px; }
.jl-tag { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.jl-card h4 { font-size: 1rem; margin: 0.3rem 0; }
.jl-card p { font-size: 0.8rem; color: var(--text-dim); }
.jl-card a { font-size: 0.72rem; color: var(--gold-lt); display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.5rem; }
.jl-card.locked h4 { font-style: italic; color: var(--gold-lt); }

/* Split testimonials */
.testimonials2 .tm-heading { font-size: 1.4rem; text-align: center; margin-bottom: 1.3rem; }
/* Testimonials — landscape video grid + premium Google review cards, on speaking bg */
.testimonials2 { position: relative; overflow: hidden; }
.testimonials2::before { content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(rgba(8,6,4,0.8), rgba(8,6,4,0.94)), url('../img/testimonial-bg.webp') center/cover no-repeat; }
.testimonials2 > .wrap { position: relative; z-index: 1; }

/* Video reviews — uniform 16:9 framed thumbnails, click → full size */
.tm-vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.tm-vtile { position: relative; display: block; width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; cursor: pointer; padding: 0;
  border: 1px solid rgba(226,201,126,0.5); background: #14100c center/cover no-repeat;
  box-shadow: 0 14px 34px rgba(0,0,0,0.45); transition: transform 0.28s var(--ease), box-shadow 0.28s, border-color 0.28s; }
.tm-vtile:hover { transform: translateY(-5px); box-shadow: 0 26px 54px rgba(0,0,0,0.6); border-color: var(--gold); }
.tm-vtile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,4,0.02) 45%, rgba(8,6,4,0.85) 100%); }
.tm-vtile .pp-icon { position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; border-radius: 50%; background: rgba(201,164,86,0.95); color: #1a1207; display: grid; place-items: center; font-size: 1.05rem; z-index: 2; box-shadow: 0 8px 22px rgba(0,0,0,0.35); transition: transform 0.22s var(--ease); }
.tm-vtile:hover .pp-icon { transform: scale(1.14); }
.tm-vtile .tm-who { position: absolute; left: 1rem; right: 1rem; bottom: 0.85rem; z-index: 2; text-align: left; color: #fff; }
.tm-vtile .tm-who b { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.15; }
.tm-vtile .tm-who small { color: var(--gold-lt); font-size: 0.72rem; }

/* "In their words" heading + Google badge */
.tm-words-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.tm-google-badge { display: inline-flex; align-items: center; gap: 0.6rem; border: 1px solid var(--hairline); border-radius: 999px; padding: 0.5rem 1rem; background: rgba(255,255,255,0.04); }
.tm-g-ico { width: 20px; height: 20px; flex: 0 0 auto; }
.tm-g-txt { font-size: 0.82rem; color: var(--text-dim); }
.tm-g-txt b { color: var(--gold-lt); }

/* Premium review cards */
.tm-text-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.tm-review { background: rgba(20,16,12,0.72); backdrop-filter: blur(6px); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; transition: transform 0.25s var(--ease), border-color 0.25s; }
.tm-review:hover { transform: translateY(-4px); border-color: rgba(201,164,86,0.4); }
.tm-rv-head { display: flex; align-items: center; gap: 0.8rem; }
.tm-rv-av { width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto; object-fit: cover; }
.tm-rv-initials { display: grid; place-items: center; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem; color: #1a1207; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
.tm-rv-id { flex: 1; min-width: 0; }
.tm-rv-id b { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text); }
.tm-rv-id small { color: var(--text-dim); font-size: 0.75rem; }
.tm-rv-g { width: 22px; height: 22px; flex: 0 0 auto; }
.tm-rv-stars { color: #FBBC05; letter-spacing: 0.12em; font-size: 0.95rem; }
.tm-review blockquote { color: var(--text-dim); font-size: 0.92rem; line-height: 1.55; }

/* Horizontal rail + overlay arrows (testimonials video & text) */
.rail-wrap { position: relative; }
.h-rail { display: flex !important; overflow-x: auto; scroll-snap-type: x proximity; gap: 1.25rem; padding: 0.3rem 0.2rem 0.8rem; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; }
.h-rail::-webkit-scrollbar { display: none; }
.h-rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.h-rail.dragging * { pointer-events: none; }
.h-rail > * { scroll-snap-align: start; flex: 0 0 auto; }
.tm-vgrid.h-rail .tm-vtile { width: min(72vw, 360px); }
.tm-text-grid.h-rail .tm-review { width: min(82vw, 380px); }
.rail-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--hairline); background: rgba(12,10,8,0.88); backdrop-filter: blur(8px); color: var(--text); display: grid; place-items: center; font-size: 1rem; z-index: 5; box-shadow: 0 8px 22px rgba(0,0,0,0.45); transition: border-color 0.2s, color 0.2s, opacity 0.2s; }
.rail-arrow:hover { border-color: var(--gold); color: var(--gold); }
.rail-arrow:disabled { opacity: 0.22; cursor: default; }
.rail-prev { left: -12px; }
.rail-next { right: -12px; }
.rail-wrap.no-scroll .rail-arrow { display: none; }

.tm-empty { text-align: center; color: var(--text-faint); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; border: 1px dashed var(--hairline); border-radius: 14px; padding: 2.4rem; grid-column: 1 / -1; }
.tm-proof-card { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center;
  border: 1px solid var(--hairline); border-radius: var(--radius); padding: 2.4rem 2rem; background: linear-gradient(rgba(201,164,86,0.06), rgba(8,6,4,0.2)); }
.tm-proof-stars { color: #FBBC05; letter-spacing: 0.25em; font-size: 1.1rem; }
.tm-proof-score { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem,6vw,3.6rem); line-height: 1; color: #fff; }
.tm-proof-label { color: var(--text-dim); font-size: 0.95rem; }
.tm-proof-label b { color: var(--gold-lt); }
.tm-proof-note { color: var(--text-faint); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; margin-top: 0.4rem; }
@media (max-width: 1000px) { .tm-text-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
  .tm-text-grid { grid-template-columns: 1fr; }
  .tm-vgrid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
}
@media (max-width: 480px) { .tm-vgrid { grid-template-columns: 1fr; } }

.footer-logo { height: 56px; width: auto; margin-bottom: 0.5rem; }

/* Podcast / Live Decode cards (About) */
.podcast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.podcast-card { display: flex; gap: 1.2rem; align-items: flex-start; background: var(--panel); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.8rem; transition: transform 0.25s var(--ease), border-color 0.25s; }
.podcast-card:hover { transform: translateY(-4px); border-color: rgba(201,164,86,0.45); }
.podcast-card .pc-icon { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: #1a1207; display: grid; place-items: center; font-size: 1.1rem; }
.podcast-card .pc-tag { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.podcast-card h3 { font-size: 1.25rem; margin: 0.3rem 0 0.5rem; }
.podcast-card p { color: var(--text-dim); font-size: 0.9rem; }
.podcast-card .pc-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; color: var(--gold-lt); font-size: 0.8rem; }
@media (max-width: 800px) { .podcast-grid { grid-template-columns: 1fr; } }

.corp-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.corp-photo img { width: 100%; display: block; }
.corp-photo figcaption { padding: 0.9rem 1rem; font-size: 0.82rem; color: var(--text-dim); text-align: center; background: var(--panel); }

/* Divine ambient sound toggle (floating, above WhatsApp button) */
.sound-toggle { position: fixed; right: 24px; bottom: 210px; z-index: 190; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; color: var(--gold-lt); background: rgba(12,10,8,0.78); border: 1px solid rgba(226,201,126,0.4); backdrop-filter: blur(8px); box-shadow: 0 8px 22px rgba(0,0,0,0.45); transition: color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.3s; }
.sound-toggle:hover { color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.sound-toggle svg { width: 21px; height: 21px; }
.sound-toggle .snd-on { display: none; }
.sound-toggle .snd-off { display: block; }
.sound-toggle.is-on .snd-on { display: block; }
.sound-toggle.is-on .snd-off { display: none; }
.sound-toggle.is-on { color: #fff; border-color: var(--gold); box-shadow: 0 0 0 0 rgba(226,201,126,0.5); animation: sndPulse 2.6s ease-out infinite; }
@keyframes sndPulse { 0% { box-shadow: 0 0 0 0 rgba(226,201,126,0.45); } 70% { box-shadow: 0 0 0 12px rgba(226,201,126,0); } 100% { box-shadow: 0 0 0 0 rgba(226,201,126,0); } }
@media (prefers-reduced-motion: reduce) { .sound-toggle.is-on { animation: none; } }
@media (max-width: 640px) { .sound-toggle { width: 42px; height: 42px; bottom: 196px; right: 18px; } }

/* ============ TIER SERVICE PAGES (silver / gold / diamond) ============== */
.tier-detail-hero { position: relative; }
.tier-breadcrumb { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1rem; }
.tier-breadcrumb a { color: var(--gold-lt); }
.tier-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.tier-price-block { margin-top: 0.6rem; }
.tier-price-amt { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; color: var(--text); line-height: 1; }
.tier-price-amt .period { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 400; color: var(--text-dim); letter-spacing: 0.02em; }
.tier-price-alt { color: var(--text-faint); font-size: 0.95rem; margin-top: 0.3rem; }
.tier-price-note { color: var(--text-dim); font-size: 0.85rem; margin-top: 0.5rem; }
.tier-pop-tag { display: inline-block; background: var(--terra); color: #fff; font-size: 0.62rem; letter-spacing: 0.08em; padding: 0.15rem 0.5rem; border-radius: 20px; vertical-align: middle; margin-left: 0.4rem; }

.tier-hero-card { background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)); border: 1px solid var(--hairline); border-radius: 20px; padding: 1.8rem 1.7rem; position: relative; overflow: hidden; }
.tier-hero-card.featured { border-color: rgba(226,201,126,0.5); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.tier-hero-card .thc-rune { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: rgba(226,201,126,0.35); line-height: 1; margin-bottom: 0.2rem; }
.tier-hero-card h2 { font-size: 1.35rem; margin-bottom: 1rem; }
.thc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.thc-list li { position: relative; padding-left: 1.5rem; color: var(--text-dim); font-size: 0.95rem; line-height: 1.45; }
.thc-list li::before { content: '✦'; position: absolute; left: 0; top: 0.05rem; color: var(--gold); font-size: 0.85rem; }
.thc-foot { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--hairline); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--gold-lt); }

.signal-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; max-width: 640px; margin-inline: auto; }
.signal-list li { position: relative; padding: 0.9rem 1.1rem 0.9rem 3rem; background: rgba(255,255,255,0.03); border: 1px solid var(--hairline); border-radius: 12px; color: var(--text-dim); line-height: 1.5; }
.signal-list li::before { content: '✓'; position: absolute; left: 1.1rem; top: 0.9rem; color: var(--acc-teal); font-weight: 700; }

.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.step-card { position: relative; background: rgba(255,255,255,0.03); border: 1px solid var(--hairline); border-radius: 14px; padding: 1.6rem 1.2rem 1.2rem; }
.step-num { position: absolute; top: -0.8rem; left: 1.2rem; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: #1a1207; font-weight: 700; font-size: 0.95rem; box-shadow: 0 6px 16px rgba(201,164,86,0.3); }
.step-card h4 { margin: 0.4rem 0 0.4rem; }
.step-card p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.5; }

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.path-card { background: linear-gradient(165deg, rgba(139,107,158,0.12), rgba(255,255,255,0.015)); border: 1px solid rgba(181,145,204,0.35); border-radius: 18px; padding: 1.8rem; }
.path-card h3 { font-size: 1.3rem; margin: 0.5rem 0 0.7rem; }
.path-card > p { color: var(--text-dim); line-height: 1.55; margin-bottom: 1rem; }
.path-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #c8a6e0; border: 1px solid rgba(181,145,204,0.5); padding: 0.2rem 0.7rem; border-radius: 20px; }

.tier-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; max-width: 820px; margin-inline: auto; }
.tier-link-card { display: block; text-align: center; background: rgba(255,255,255,0.03); border: 1px solid var(--hairline); border-radius: 16px; padding: 1.5rem 1rem; transition: transform 0.25s var(--ease), border-color 0.25s; text-decoration: none; }
.tier-link-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.tier-link-card.is-current { border-color: rgba(226,201,126,0.6); background: rgba(226,201,126,0.06); }
.tier-link-card .tlc-rune { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: rgba(226,201,126,0.5); display: block; }
.tier-link-card h4 { font-size: 1.25rem; margin: 0.2rem 0 0.1rem; }
.tier-link-card p { color: var(--text-faint); font-size: 0.85rem; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.tlc-price { display: block; color: var(--gold-lt); font-weight: 600; margin: 0.5rem 0 0.3rem; }
.tlc-tag { display: block; font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.02em; }
.tier-link-card.is-current .tlc-tag { color: var(--gold); }

.cta-band { background: radial-gradient(120% 100% at 50% 0%, rgba(201,164,86,0.1), transparent 60%); }
.price-details-link { display: block; text-align: center; margin-top: 0.8rem; font-size: 0.85rem; color: var(--gold-lt); letter-spacing: 0.02em; transition: color 0.2s; }
.price-details-link:hover { color: var(--gold); }
.link-gold { color: var(--gold-lt); border-bottom: 1px solid rgba(226,201,126,0.4); }
.link-gold:hover { color: var(--gold); }

@media (max-width: 860px) {
  .tier-hero-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.1rem; }
  .path-grid { grid-template-columns: 1fr; }
  .tier-links-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .step-grid { grid-template-columns: 1fr; } }

/* About — 3-part (Story / System / Science) tabs + hub cards */
.about3-tabs { display: inline-flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--hairline); border-radius: 50px; padding: 0.35rem; }
.about3-tab { padding: 0.55rem 1.4rem; border-radius: 40px; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--text-dim); transition: color 0.2s, background 0.25s; white-space: nowrap; }
.about3-tab:hover { color: var(--text); }
.about3-tab.is-active { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: #1a1207; font-weight: 600; }
.about3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.about3-card { position: relative; display: block; background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)); border: 1px solid var(--hairline); border-radius: 18px; padding: 2rem 1.7rem; transition: transform 0.28s var(--ease), border-color 0.28s; overflow: hidden; }
.about3-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.about3-card .a3-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: rgba(226,201,126,0.35); line-height: 1; display: block; }
.about3-card h3 { font-size: 1.5rem; margin: 0.4rem 0 0.6rem; }
.about3-card p { color: var(--text-dim); line-height: 1.55; font-size: 0.96rem; }
.about3-card .a3-go { display: inline-block; margin-top: 1.1rem; color: var(--gold-lt); font-size: 0.9rem; letter-spacing: 0.02em; }
.about3-card:hover .a3-go { color: var(--gold); }
@media (max-width: 860px) { .about3-grid { grid-template-columns: 1fr; } }

/* Science integration wheel */
.sci-wheel { max-width: 680px; margin-inline: auto; }
.sci-wheel svg { width: 100%; height: auto; display: block; overflow: visible; }
.sci-spin { animation: spin 80s linear infinite; }
.sci-corecircle { animation: dhBreathe 5s ease-in-out infinite; transform-origin: 400px 400px; }
@media (prefers-reduced-motion: reduce) { .sci-spin, .sci-corecircle { animation: none; } }

/* DHARMA six-step vertical blocks (The System) */
.dharma-steps { display: grid; gap: 1rem; }
.dharma-step { display: flex; gap: 1.3rem; align-items: flex-start; background: rgba(255,255,255,0.03); border: 1px solid var(--hairline); border-radius: 16px; padding: 1.5rem 1.7rem; transition: transform 0.25s var(--ease), border-color 0.25s; }
.dharma-step:hover { transform: translateX(6px); border-color: rgba(226,201,126,0.4); }
.dharma-step .ds-letter { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%; border: 2px solid; display: grid; place-items: center; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; }
.dharma-step .ds-kicker { font-family: 'Anton', sans-serif; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 0.15rem; }
.dharma-step .ds-body h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.dharma-step .ds-body > p { color: var(--text-dim); line-height: 1.55; }
.dharma-step .ds-principle { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.08rem; color: var(--gold-lt); margin-top: 0.6rem; }
@media (max-width: 560px) { .dharma-step { flex-direction: column; gap: 0.8rem; } }

/* Membership "everything included" checklist (2-col) */
.inc-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1.8rem; }
.inc-list li { position: relative; padding-left: 1.7rem; color: var(--text-dim); line-height: 1.5; }
.inc-list li::before { content: '✓'; position: absolute; left: 0; top: 0.05rem; color: var(--gold); font-weight: 700; }
.inc-list li b { color: var(--text); }
@media (max-width: 640px) { .inc-list { grid-template-columns: 1fr; } }

/* Program level cards (The System) */
.level-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.level-card { background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)); border: 1px solid var(--hairline); border-radius: 18px; padding: 1.9rem 1.7rem; }
.level-card.featured { border-color: rgba(226,201,126,0.5); box-shadow: 0 22px 55px rgba(0,0,0,0.4); }
.level-card .lc-tier { font-family: 'Anton', sans-serif; letter-spacing: 1.5px; font-size: 0.9rem; text-transform: uppercase; }
.level-card h3 { font-size: 1.6rem; margin: 0.25rem 0 0.7rem; }
.level-card > p { color: var(--text-dim); line-height: 1.55; font-size: 0.95rem; }
.level-card .lc-transform { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--gold-lt); margin: 1rem 0 1.2rem; }
.level-card .btn { width: 100%; justify-content: center; }
@media (max-width: 860px) { .level-grid { grid-template-columns: 1fr; } }

/* Mission — DHARMA framework mandala (About) */
.dharma-viz { margin-inline: auto; max-width: 1150px; }
.dharma-viz svg { width: 100%; height: auto; display: block; overflow: visible; }
.dh-spin-slow { animation: spin 70s linear infinite; }
.dh-spin-rev  { animation: spin 52s linear infinite reverse; }
.dh-spin-geo  { animation: spin 120s linear infinite; }
.dh-core { animation: dhBreathe 5s ease-in-out infinite; transform-origin: 700px 350px; }
.dh-stars { animation: dhTwinkle 6s ease-in-out infinite; }
.dh-node { transition: transform 0.3s var(--ease); transform-origin: 700px 350px; }
/* THE ORBIT — the six gates revolve slowly around a fixed SWADHARMA centre.
   Each planet counter-rotates at exactly the same speed in the opposite
   direction, so it travels the orbit while its letter + label stay upright
   and perfectly readable. Both durations MUST match or the text will drift. */
.dh-orbit  { animation: spin var(--dh-orbit-time, 150s) linear infinite; transform-origin: 600px 400px; }
.dh-planet { animation: spin var(--dh-orbit-time, 150s) linear infinite reverse; }
.dh-planet-1 { transform-origin: 600px 130px; }
.dh-planet-2 { transform-origin: 834px 265px; }
.dh-planet-3 { transform-origin: 834px 535px; }
.dh-planet-4 { transform-origin: 600px 670px; }
.dh-planet-5 { transform-origin: 366px 535px; }
.dh-planet-6 { transform-origin: 366px 265px; }
/* rotating outline rings + orbiting satellite around every orb — this is the
   motion you actually see; the sphere spin alone reads as static */
.dh-ring  { animation: spin 9s linear infinite; }
.dh-ring2 { animation: spin 14s linear infinite reverse; }
.dh-ring-1 { animation-duration: 8s; }
.dh-ring-2 { animation-duration: 11s; animation-direction: reverse; }
.dh-ring-3 { animation-duration: 9.5s; }
.dh-ring-4 { animation-duration: 12s; animation-direction: reverse; }
.dh-ring-5 { animation-duration: 10s; }
.dh-ring-6 { animation-duration: 7.5s; animation-direction: reverse; }
@keyframes dhBreathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes dhTwinkle { 0%,100% { opacity: 0.75; } 50% { opacity: 1; } }
/* labels get tight on small screens — scale the whole board down gracefully */
@media (max-width: 720px) { .dharma-viz { max-width: 140%; margin-left: -20%; } }
@media (prefers-reduced-motion: reduce) {
  .dh-spin-slow, .dh-spin-rev, .dh-spin-geo, .dh-core, .dh-stars,
  .dh-orbit, .dh-planet, .dh-ring, .dh-ring2 { animation: none; }
}

/* Corporate hero photo overlay */
.corp-hero { position: relative; overflow: hidden; }
.corp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.corp-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.34) saturate(0.92); }
.corp-hero::after { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(80% 80% at 50% 40%, rgba(8,6,4,0.35), rgba(8,6,4,0.82) 88%); }

/* Corporate partner review */
.corp-review { position: relative; background: var(--panel); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 2.8rem 2.4rem 2rem; }
.cr-mark { position: absolute; top: 0.3rem; left: 1.4rem; font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(201,164,86,0.22); line-height: 1; }
.corp-review blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.65rem); line-height: 1.5; color: var(--text); position: relative; z-index: 1; }
.corp-review blockquote b, .corp-review blockquote em { font-style: normal; color: var(--gold-lt); }
.cr-by { display: flex; align-items: center; gap: 1rem; margin-top: 1.7rem; }
.cr-av { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex: 0 0 auto; }
.cr-initials { display: grid; place-items: center; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.5rem; color: #1a1207; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
.cr-id b { display: block; font-family: 'Playfair Display', serif; font-size: 1.08rem; }
.cr-id small { color: var(--text-dim); font-size: 0.8rem; }

/* Lead-capture popup (Daily Sync) */
.lead-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 5vw; background: rgba(4,3,2,0.72); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.lead-modal.open { opacity: 1; pointer-events: auto; }
.lead-box { position: relative; width: min(440px, 100%); background: linear-gradient(160deg, #1c1712, #120d0a); border: 1px solid var(--gold); border-radius: 18px; padding: 2.4rem 2rem 1.8rem; text-align: center; box-shadow: 0 40px 90px rgba(0,0,0,0.6); transform: translateY(22px) scale(0.97); transition: transform 0.4s var(--ease); }
.lead-modal.open .lead-box { transform: none; }
.lead-close { position: absolute; top: 0.8rem; right: 1.1rem; font-size: 1.7rem; line-height: 1; color: var(--text-faint); }
.lead-close:hover { color: var(--text); }
.lead-mascot { width: 84px; height: 84px; border-radius: 50%; background: radial-gradient(circle, #1e1626, #0c0a10); border: 2px solid var(--gold); display: grid; place-items: center; overflow: hidden; margin: -3.8rem auto 0.8rem; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.lead-mascot img { width: 84px; height: 84px; object-fit: cover; }
.lead-box h3 { font-size: 1.6rem; margin: 0.3rem 0 0.6rem; color: var(--text); line-height: 1.15; }
.lead-sub { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1.3rem; }
.lead-form { display: flex; flex-direction: column; gap: 0.6rem; }
.lead-form input { background: rgba(8,6,4,0.6); border: 1px solid var(--hairline); border-radius: 6px; padding: 0.85rem 1rem; color: var(--text); font: inherit; font-size: 0.9rem; }
.lead-form input:focus { outline: none; border-color: var(--gold); }
.lead-form .btn { justify-content: center; margin-top: 0.3rem; }
.lead-fine { font-size: 0.72rem; color: var(--text-faint); margin-top: 0.9rem; }

/* Blue/heart accents from the new logo */
.nav-cta, .es-cta { position: relative; }
.heart-accent { color: var(--heart); }

/* ---- 29 RESPONSIVE ------------------------------------------------------- */
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions .nav-login, .nav-actions .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .event-card { grid-template-columns: 1fr; }
  .method-grid, .benefit-grid, .format-grid, .cred-grid, .price-grid { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .agenda, .included-cols, .compare-cards, .two-col-compare, .leadmagnet-inner { grid-template-columns: 1fr; }
  .leadmagnet-inner { text-align: center; }
  .timeline::before { left: 8px; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 2.2rem; }
  .timeline-item .tl-dot { left: 2px !important; right: auto !important; }
  /* Journey: straight left-aligned line on mobile */
  .journey-node { width: 100%; left: 0 !important; right: auto !important; padding-left: 2.5rem; justify-content: flex-start !important; text-align: left !important; flex-direction: row !important; transform: translateY(14px); }
  .journey-node.ignited { transform: none; }
  .sticky-mobile-cta { display: block; }
}
@media (max-width: 560px) {
  .who-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .prog-card { flex-basis: 78vw; }
  .cd-num { font-size: 1.4rem; }
}

/* ---- REDESIGN RESPONSIVE ---- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .hero-portrait-card { margin-inline: auto; }
  .tier-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .journey-progress { display: none; }
  .journey-levels { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
  .tm-video-grid, .tm-text-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .es-copy { margin-right: 0.5rem; }
  .es-title { font-size: 0.82rem; }
  .es-meta, .event-strip .countdown { display: none; }
  .es-cta { margin-left: auto; }
  .hero-video-card { left: 0; width: 170px; }
}
@media (max-width: 560px) {
  .journey-levels { grid-template-columns: 1fr; }
  .tm-video-grid, .tm-text-grid { grid-template-columns: 1fr; }
  .jl-card { max-width: 280px; }
}
