/* =============================================================
   BRAYAN JACKSON — Marca personal · Monetización de redes
   Archetype: Editorial Dark Warm (custom dual-accent: oro + rojo diamante)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }
@property --angle      { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  --bg:        #0b0908;
  --bg-2:      #121010;
  --bg-3:      #1c1815;
  --bg-4:      #241f1a;
  --cream:     #f3ead9;
  --cream-2:   #ddd0ba;
  --cream-3:   #948573;
  --gold:      #c9a15a;
  --gold-2:    #e9cd8f;
  --gold-dim:  #8a713f;
  --red:       #ad2318;
  --red-2:     #e14a3a;
  --line:      rgba(243,234,217,0.12);
  --line-2:    rgba(243,234,217,0.06);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", "Courier New", monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --nav-h: 84px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  background: var(--bg);
}
/* scroll-behavior:smooth intentionally omitted globally — it dampens wheel-driven
   scrolling and makes it feel slow. initSmoothAnchors() applies smooth scrolling
   only for anchor-link navigation instead. */

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; color: var(--cream); }
input, textarea { font-family: inherit; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--gold); color: var(--bg);
  border-radius: 6px; font-weight: 700; font-family: var(--sans);
}
.skip-link:focus { top: 1rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.4rem; }
@media (min-width: 720px)  { .container { padding-inline: 2.2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.6rem; } }

.eyebrow {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--gold);
  display: inline-block;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.section-head { max-width: 640px; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-style: italic; margin-top: .7rem; }
.section-head p { color: var(--cream-3); font-size: 1.05rem; margin-top: 1rem; max-width: 52ch; }
.section-head.is-center p { margin-inline: auto; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  border: 0; margin-block: 0;
}

.grain { position: fixed; inset: 0; z-index: 3; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.9rem;
  font-family: var(--sans); font-weight: 700; font-size: .92rem;
  letter-spacing: .01em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background-color .3s, color .3s, border-color .3s;
}
.btn:active { transition-duration: .12s; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171006;
  box-shadow: 0 10px 30px -8px rgba(201,161,90,0.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -10px rgba(201,161,90,0.7); }

.btn-outline {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(243,234,217,0.03);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); background: rgba(201,161,90,0.08); }

.btn-whatsapp {
  background: rgba(37,143,90,0.14);
  color: #7fd9a4;
  border: 1px solid rgba(127,217,164,0.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); background: rgba(37,143,90,0.24); }

.btn-red {
  background: linear-gradient(135deg, var(--red-2), var(--red));
  color: var(--cream);
  box-shadow: 0 10px 30px -8px rgba(173,35,24,0.55);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -10px rgba(173,35,24,0.7); }

.btn-lg { padding: 1.15rem 2.4rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-conic { position: relative; isolation: isolate; border-radius: 999px; }
.btn-conic::before {
  content: ""; position: absolute; inset: -2px; z-index: -1; border-radius: inherit;
  background: conic-gradient(from var(--angle), var(--gold), transparent 25%, var(--red) 50%, transparent 75%, var(--gold));
  animation: rotateConic 5s linear infinite;
}
@keyframes rotateConic { to { --angle: 360deg; } }

/* =============================================================
   5. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  display: none; mix-blend-mode: difference; opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 6px; height: 6px; margin: -3px; background: var(--gold-2); border-radius: 50%; }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px; border: 1px solid var(--cream);
  border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 54px; height: 54px; margin: -27px; border-color: var(--gold-2); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash-inner { text-align: center; }
.splash-mark {
  font-family: var(--serif); font-style: italic; font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--cream); letter-spacing: .02em;
}
.splash-mark em { color: var(--gold); font-style: italic; }
.splash-line {
  display: block; margin: 1.1rem auto 0; width: 120px; height: 1px;
  background: var(--line);
  position: relative; overflow: hidden;
}
.splash-line::after {
  content: ""; position: absolute; inset: 0; width: 40%; background: var(--gold);
  animation: splashLoad 1.6s var(--ease-soft) infinite;
}
@keyframes splashLoad { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

/* =============================================================
   7. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11,9,8,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--cream); letter-spacing: .01em; }
.nav-logo em { color: var(--gold); }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .88rem; font-weight: 600; letter-spacing: .02em; color: var(--cream-2); padding: .3rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; align-items: center; gap: .8rem; }
@media (min-width: 720px) { .nav-cta { display: flex; } }
.nav-cta .btn { padding: .75rem 1.35rem; font-size: .82rem; }

.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--line);
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 18px; height: 1px; background: var(--cream); position: relative; }
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: var(--cream); transition: transform .3s;
}
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
.nav-burger.is-active span { background: transparent; }
.nav-burger.is-active span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-active span::after { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 400;
  background: var(--bg-2); color: var(--cream);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile-list a { font-family: var(--serif); font-style: italic; font-size: 2rem; }
.nav-mobile-list a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 1.6rem; }

/* =============================================================
   8. Hero (home) — split layout
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  isolation: isolate;
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: -2;
  background:
    radial-gradient(55% 50% at var(--mesh-x) var(--mesh-y), rgba(173,35,24,.28), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(201,161,90,.22), rgba(173,35,24,.14), rgba(201,161,90,.22));
  filter: blur(90px) saturate(130%);
  opacity: .8;
  animation: meshShift 24s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 26%; --mesh-y: 34%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 70%; --mesh-y: 58%; }
  100% { --mesh-angle: 360deg; --mesh-x: 26%; --mesh-y: 34%; }
}
.hero-grid {
  display: grid; gap: 3rem; width: 100%;
  padding-block: 3.5rem 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 2rem; } }

.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-top: 1.1rem;
  max-width: 14ch;
}
.hero-title em { color: var(--gold-2); font-style: italic; }
.hero-sub { font-size: 1.12rem; color: var(--cream-3); max-width: 46ch; margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.hero-stat-num { font-family: var(--mono); font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--gold-2); font-weight: 600; }
.hero-stat-label { font-size: .74rem; color: var(--cream-3); margin-top: .3rem; letter-spacing: .02em; }

.hero-figure { position: relative; z-index: 1; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; isolation: isolate; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,9,8,.75) 100%), linear-gradient(90deg, rgba(11,9,8,.35), transparent 40%);
}
.hero-figure::before {
  content: ""; position: absolute; inset: -2px; z-index: 2; border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--line);
  pointer-events: none;
}
.hero-figure-badge {
  position: absolute; left: 1.3rem; bottom: 1.3rem; z-index: 3;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-2);
  display: flex; align-items: center; gap: .5rem;
}
.hero-figure-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 10px var(--gold-2); }

.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-3);
}
.hero-scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollCue 2.2s ease-in-out infinite; }
@keyframes scrollCue { 0%,100% { transform: scaleY(1); opacity:.7; } 50% { transform: scaleY(.5); opacity: 1; } }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee { overflow: hidden; position: relative; border-block: 1px solid var(--line); background: var(--bg-2); }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top:0; bottom:0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee::before { left:0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right:0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; will-change: transform; padding-block: 1.3rem; }
.marquee-track span { font-family: var(--mono); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); }
.marquee-track span.is-accent { color: var(--gold); }

/* =============================================================
   10. Bio / Trayectoria
   ============================================================= */
.bio-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .bio-grid { grid-template-columns: .85fr 1.15fr; gap: 4.5rem; } }
.bio-figure { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; }
.bio-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-soft); }
.bio-figure:hover img { transform: scale(1.06); }
.bio-figure-caption { font-family: var(--mono); font-size: .7rem; color: var(--cream-3); margin-top: .8rem; letter-spacing: .04em; }

.bio-lede { font-size: 1.18rem; color: var(--cream); margin-top: 1.2rem; max-width: 60ch; }
.bio-text { color: var(--cream-3); margin-top: 1.1rem; max-width: 62ch; }
.bio-text + .bio-text { margin-top: .9rem; }

.pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2.4rem; }
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(4,1fr); } }
.pillar { padding: 1.3rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(243,234,217,0.02); transition: border-color .4s, transform .5s var(--ease-soft), background .4s; }
.pillar:hover { border-color: var(--gold-dim); transform: translateY(-4px); background: rgba(201,161,90,0.05); }
.pillar-num { font-family: var(--mono); font-size: .72rem; color: var(--gold); }
.pillar-title { font-family: var(--sans); font-weight: 700; font-size: .92rem; color: var(--cream); margin-top: .5rem; }

.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.6rem; }
.stat-item { text-align: left; }
.stat-num { font-family: var(--mono); font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--gold-2); font-weight: 700; }
.stat-label { font-size: .78rem; color: var(--cream-3); margin-top: .3rem; }

/* =============================================================
   11. Timeline (trayectoria)
   ============================================================= */
.timeline { position: relative; margin-top: 1rem; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 0; bottom: 0; width: 1px; background: var(--line); }
@media (min-width: 720px) { .timeline::before { left: 50%; } }
.timeline-item { position: relative; padding-left: 2.6rem; padding-block: 1.6rem; }
@media (min-width: 720px) {
  .timeline-item { width: 50%; padding-left: 3rem; padding-right: 0; }
  .timeline-item:nth-child(even) { margin-left: 50%; }
  .timeline-item:nth-child(odd) { text-align: right; padding-left: 0; padding-right: 3rem; }
  .timeline-item:nth-child(odd)::after { right: -6px; left: auto; }
}
.timeline-item::after {
  content: ""; position: absolute; left: 7px; top: 2rem; width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--gold);
}
.timeline-year { font-family: var(--mono); color: var(--gold); font-size: .85rem; letter-spacing: .06em; }
.timeline-title { font-size: 1.25rem; margin-top: .4rem; }
.timeline-desc { color: var(--cream-3); margin-top: .5rem; max-width: 42ch; }
@media (min-width: 720px) { .timeline-item:nth-child(odd) .timeline-desc { margin-left: auto; } }

/* =============================================================
   12. Product cards (home summary)
   ============================================================= */
.products-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .products-grid { grid-template-columns: repeat(3,1fr); } }

.product-card {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  display: flex; flex-direction: column;
  transition: transform .55s var(--ease-soft), border-color .4s, box-shadow .55s var(--ease-soft);
}
.product-card:hover { transform: translateY(-8px); border-color: var(--gold-dim); box-shadow: 0 40px 70px -30px rgba(0,0,0,.6); }
.product-card.is-featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,161,90,.08), var(--bg-3) 40%); }
.product-card-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: #171006; padding: .35rem .7rem; border-radius: 999px; font-weight: 700;
}
.product-card-media { aspect-ratio: 4/3; overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-soft); }
.product-card:hover .product-card-media img { transform: scale(1.08); }
.product-card-body { padding: 1.6rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.product-card-kicker { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.product-card-title { font-size: 1.5rem; }
.product-card-desc { color: var(--cream-3); font-size: .95rem; flex: 1; }
.product-card-cta { margin-top: .4rem; display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--cream); font-size: .9rem; }
.product-card-cta svg { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.product-card:hover .product-card-cta svg { transform: translateX(4px); }

/* =============================================================
   13. Spiritual pillar section
   ============================================================= */
.spirit-section { position: relative; overflow: hidden; }
.spirit-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .spirit-grid { grid-template-columns: 1fr .9fr; } }
.spirit-figure { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; }
.spirit-figure img { width: 100%; height: 100%; object-fit: cover; }
.spirit-figure::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 60%, rgba(11,9,8,.7)); }
.spirit-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--cream); line-height: 1.35; }
.spirit-quote span { color: var(--gold-2); }

/* =============================================================
   14. Final CTA banner
   ============================================================= */
.cta-banner { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.cta-banner::before {
  content: ""; position: absolute; inset: -20% -10%; z-index: -1;
  background: radial-gradient(50% 60% at 50% 40%, rgba(201,161,90,.22), transparent 65%);
  filter: blur(60px);
}
.cta-banner h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 18ch; margin-inline: auto; }
.cta-banner p { color: var(--cream-3); max-width: 50ch; margin: 1.2rem auto 0; font-size: 1.05rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; background: var(--bg-2); }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr .7fr .7fr .8fr; } }
.footer-brand { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--cream); }
.footer-brand em { color: var(--gold); }
.footer-tagline { color: var(--cream-3); font-size: .92rem; margin-top: .8rem; max-width: 34ch; }
.footer-col-title { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { color: var(--cream-3); font-size: .92rem; transition: color .3s; }
.footer-links a:hover { color: var(--gold-2); }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; color: var(--cream-3); font-size: .78rem; }

/* =============================================================
   16. Sub-page hero (fuego-espiritual / club / servicios)
   ============================================================= */
.page-hero {
  position: relative; min-height: 78svh; display: flex; align-items: flex-end;
  padding-top: var(--nav-h); overflow: hidden; isolation: isolate;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,9,8,.35) 0%, rgba(11,9,8,.55) 50%, var(--bg) 100%);
}
.page-hero-inner { position: relative; z-index: 1; padding-block: 3rem 4rem; width: 100%; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2);
  border: 1px solid var(--gold-dim); border-radius: 999px; padding: .5rem 1rem; margin-bottom: 1.2rem;
  background: rgba(201,161,90,0.08);
}
.page-hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 16ch; }
.page-hero-title em { color: var(--gold-2); font-style: italic; }
.page-hero-sub { color: var(--cream-2); font-size: 1.1rem; max-width: 54ch; margin-top: 1.2rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.page-hero-price {
  display: inline-flex; align-items: baseline; gap: .5rem; margin-top: 1.6rem;
  font-family: var(--mono);
}
.page-hero-price .old { color: var(--cream-3); text-decoration: line-through; font-size: 1rem; }
.page-hero-price .now { color: var(--gold-2); font-size: 2.2rem; font-weight: 700; }
.page-hero-price .cur { color: var(--cream-3); font-size: .8rem; }

/* =============================================================
   17. Bento / feature grid (ebook & servicios "qué incluye")
   ============================================================= */
.feature-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .feature-grid { grid-template-columns: repeat(4,1fr); } }
.feature-card {
  padding: 1.8rem 1.5rem; border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg-3);
  transition: transform .5s var(--ease-soft), border-color .4s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--gold-dim); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,161,90,.12); color: var(--gold-2); margin-bottom: 1rem; }
.feature-title { font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--cream); }
.feature-desc { color: var(--cream-3); font-size: .9rem; margin-top: .5rem; }

/* =============================================================
   18. Outcomes list (checkmarks)
   ============================================================= */
.outcomes { display: grid; gap: .9rem; grid-template-columns: 1fr; margin-top: 1.6rem; }
@media (min-width: 720px) { .outcomes { grid-template-columns: 1fr 1fr; } }
.outcome-item { display: flex; align-items: flex-start; gap: .8rem; }
.outcome-item svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold-2); margin-top: .15rem; }
.outcome-item p { color: var(--cream-2); font-size: .98rem; }

/* =============================================================
   20. VSL video section
   ============================================================= */
.vsl-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 16/9; border: 1px solid var(--line);
  background: var(--bg-3);
}
.vsl-wrap video { width: 100%; height: 100%; object-fit: cover; }
.vsl-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(11,9,8,.35);
  transition: opacity .5s var(--ease-out);
}
.vsl-play-btn {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(243,234,217,.12); backdrop-filter: blur(6px);
  display: grid; place-items: center;
  border: 1px solid rgba(243,234,217,.4);
  transition: transform .4s var(--ease-out), background .4s;
}
.vsl-play-btn svg { width: 30px; height: 30px; color: var(--cream); margin-left: 4px; }
.vsl-play:hover .vsl-play-btn { transform: scale(1.08); background: rgba(201,161,90,.28); }
.vsl-wrap.is-playing .vsl-play { opacity: 0; pointer-events: none; }

/* =============================================================
   21. Pricing card (club)
   ============================================================= */
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
  max-width: 480px; width: 100%;
  border-radius: 22px; padding: 2.6rem;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.pricing-card-eyebrow { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.pricing-card-title { font-size: 1.9rem; margin-top: .6rem; }
.pricing-card-price { display: flex; align-items: baseline; justify-content: center; gap: .4rem; margin-top: 1.4rem; }
.pricing-card-price .cur { font-family: var(--mono); color: var(--cream-3); font-size: 1.1rem; }
.pricing-card-price .num { font-family: var(--mono); font-size: 4rem; font-weight: 700; color: var(--gold-2); }
.pricing-card-price .per { color: var(--cream-3); font-size: .9rem; }
.pricing-card-list { text-align: left; margin-top: 1.8rem; display: flex; flex-direction: column; gap: .8rem; }
.pricing-card-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--cream-2); font-size: .94rem; }
.pricing-card-list svg { width: 18px; height: 18px; color: var(--gold-2); flex-shrink: 0; margin-top: .15rem; }
.pricing-card-actions { display: flex; flex-direction: column; gap: .8rem; margin-top: 2.2rem; }
.pricing-card-note { font-size: .76rem; color: var(--cream-3); margin-top: 1.2rem; }

/* =============================================================
   22. FAQ accordion
   ============================================================= */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: var(--bg-3); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem; font-weight: 700; color: var(--cream); font-size: .98rem; text-align: left;
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content:""; position: absolute; background: var(--gold-2); transition: transform .4s var(--ease-out); }
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-soft); }
.faq-a p { padding: 0 1.5rem 1.3rem; color: var(--cream-3); font-size: .92rem; max-width: 66ch; }
.faq-item.is-open .faq-a { max-height: 320px; }

/* =============================================================
   23. Services tiers (servicios.html)
   ============================================================= */
.tiers-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .tiers-grid { grid-template-columns: repeat(3,1fr); } }
.tier-card {
  border: 1px solid var(--line); border-radius: 20px; padding: 2rem 1.7rem;
  background: var(--bg-3); display: flex; flex-direction: column;
  transition: transform .5s var(--ease-soft), border-color .4s;
}
.tier-card:hover { transform: translateY(-6px); }
.tier-card.is-popular { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,161,90,.09), var(--bg-3) 45%); position: relative; }
.tier-card.is-popular::before {
  content: "MÁS ELEGIDO"; position: absolute; top: -1px; right: 1.4rem;
  transform: translateY(-50%);
  font-family: var(--mono); font-size: .62rem; letter-spacing: .1em;
  background: var(--gold); color: #171006; padding: .3rem .6rem; border-radius: 999px; font-weight: 700;
}
.tier-name { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.tier-title { font-size: 1.7rem; margin-top: .5rem; }
.tier-desc { color: var(--cream-3); font-size: .9rem; margin-top: .6rem; }
.tier-list { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.6rem; flex: 1; }
.tier-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--cream-2); }
.tier-list svg { width: 16px; height: 16px; color: var(--gold-2); flex-shrink: 0; margin-top: .2rem; }
.tier-card .btn { margin-top: 1.8rem; }

/* =============================================================
   24. Process steps (servicios)
   ============================================================= */
.process-list { display: grid; gap: 1.4rem; grid-template-columns: 1fr; margin-top: 1rem; }
@media (min-width: 720px) { .process-list { grid-template-columns: repeat(4,1fr); } }
.process-step { position: relative; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.process-num { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--gold); }
.process-title { font-size: 1.1rem; margin-top: .5rem; }
.process-desc { color: var(--cream-3); font-size: .88rem; margin-top: .5rem; }

/* =============================================================
   25. Reveal / split-text / tilt / count-up (universal effects)
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive: never let split+reveal combo vanish */

.split-word, .split-char { display: inline-block; will-change: transform, opacity; }

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   26. Sticky bottom mobile CTA bar (club page)
   ============================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
  background: rgba(11,9,8,.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: flex; gap: .7rem;
  transform: translateY(110%);
  transition: transform .5s var(--ease-soft);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: .85rem 1rem; font-size: .82rem; }
@media (min-width: 960px) { .sticky-cta { display: none; } }

/* =============================================================
   27. Responsive base type scale
   ============================================================= */
@media (min-width: 540px)  { body { font-size: 16.5px; } }
@media (min-width: 960px)  { body { font-size: 17px; } }
@media (min-width: 1600px) { .container { max-width: 1360px; } }

/* =============================================================
   29. Logo (nav + footer)
   ============================================================= */
.nav-logo-img { height: 36px; width: auto; display: block; }
.footer-brand-img { height: 42px; width: auto; display: block; }
.nav-mobile-logo-img { height: 40px; width: auto; display: block; margin-bottom: .6rem; }

/* =============================================================
   30. Book cover premium presentation
   ============================================================= */
.book-cover-figure {
  position: relative; max-width: 380px; margin-inline: auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55)) drop-shadow(0 10px 20px rgba(201,161,90,.15));
}
.book-cover-figure img { border-radius: 8px; }

/* =============================================================
   31. Niveles / roadmap (currículo real del Club)
   ============================================================= */
.niveles-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .niveles-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px) { .niveles-grid { grid-template-columns: repeat(4,1fr); } }
.nivel-card {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--bg-3);
  transition: transform .5s var(--ease-soft), border-color .4s, box-shadow .5s var(--ease-soft);
}
.nivel-card:hover { transform: translateY(-8px); border-color: var(--gold-dim); box-shadow: 0 30px 60px -24px rgba(0,0,0,.6); }
.nivel-card-media { aspect-ratio: 16/9; overflow: hidden; }
.nivel-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.nivel-card:hover .nivel-card-media img { transform: scale(1.06); }
.nivel-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.nivel-card-tag { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.nivel-card-title { font-size: 1.2rem; margin-top: .4rem; }

/* =============================================================
   32. Resultado real (100% verificado)
   ============================================================= */
.real-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: #7fd9a4; background: rgba(37,143,90,.14); border: 1px solid rgba(127,217,164,.35);
  padding: .4rem .85rem; border-radius: 999px;
}
.real-badge .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #7fd9a4;
  box-shadow: 0 0 0 0 rgba(127,217,164,.6); animation: realPulse 1.8s infinite;
}
@keyframes realPulse {
  0% { box-shadow: 0 0 0 0 rgba(127,217,164,.55); }
  70% { box-shadow: 0 0 0 9px rgba(127,217,164,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,217,164,0); }
}
.result-real-wrap { display: grid; gap: 2.4rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .result-real-wrap { grid-template-columns: 1fr 1fr; } }
.result-real-figure {
  position: relative; border-radius: 18px; padding: 1.6rem;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-dim);
  isolation: isolate;
}
.result-real-figure::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: conic-gradient(from var(--angle), var(--gold), transparent 30%, transparent 70%, var(--gold));
  animation: rotateConic 6s linear infinite;
  opacity: .6;
}
.result-real-figure img { border-radius: 10px; width: 100%; }
.result-real-figure figcaption { margin-top: 1rem; font-family: var(--mono); font-size: .74rem; color: var(--cream-3); text-align: center; }

/* =============================================================
   33. Testimonials carousel (dinámico)
   ============================================================= */
.testimonials-carousel { position: relative; max-width: 760px; margin-inline: auto; }
.testimonial-viewport { overflow: hidden; border-radius: 16px; }
.testimonial-track { display: flex; transition: transform .6s var(--ease-soft); will-change: transform; }
.testimonial-slide { flex: 0 0 100%; padding: .3rem; }
.testimonial-slide img {
  width: 100%; border-radius: 14px; border: 1px solid var(--line);
}
.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 1.6rem; }
.testimonials-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; transition: border-color .3s, transform .3s var(--ease-out);
}
.testimonials-arrow:hover { border-color: var(--gold); transform: scale(1.08); }
.testimonials-arrow svg { width: 18px; height: 18px; color: var(--cream); }
.testimonials-dots { display: flex; gap: .5rem; }
.testimonials-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line);
  transition: background .3s, width .3s;
}
.testimonials-dots button.is-active { background: var(--gold); width: 22px; border-radius: 4px; }

/* =============================================================
   34. VSL end-of-video CTA overlay
   ============================================================= */
.vsl-end-cta {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(11,9,8,.92); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem;
  padding: 1.5rem; text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity .6s var(--ease-out);
}
.vsl-wrap.is-ended .vsl-end-cta { opacity: 1; pointer-events: auto; }
.vsl-end-cta h3 { font-size: 1.5rem; font-style: italic; }
.vsl-end-cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.vsl-end-cta .btn { padding: .8rem 1.3rem; font-size: .82rem; }

/* =============================================================
   35. Reduced-motion (ONLY intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue span { animation: none; }
  .splash-line::after { animation: none; }
}

/* =============================================================
   36. WordPress hardening — the live site loads Astra + Elementor +
   several page-builder plugins AFTER this stylesheet. Their generic
   selectors (body{background:#fff}, global purple accent, etc.) win
   the cascade by load order. These rules force our design back with
   !important, scoped only to our own components.
   ============================================================= */
html, body {
  background: var(--bg) !important;
  color: var(--cream-2) !important;
}

/* Astra redefines h1-h6 color via its own global-color system, loaded after
   ours — force all headings back to our palette, then re-affirm the gold
   accent spans that must stay gold. */
h1, h2, h3, h4, h5, h6 { color: var(--cream) !important; }
.hero-title em, .page-hero-title em, .footer-brand em, .nav-logo em,
.splash-mark em, .product-card-title em { color: var(--gold-2) !important; }

/* Logo — was nearly invisible at the old size */
.nav-logo-img { height: 54px !important; }
.nav-mobile-logo-img { height: 58px !important; }
.footer-brand-img { height: 62px !important; }

/* Astra's native "scroll to top" button — restyle to match, was default blue */
#ast-scroll-top, .ast-scroll-top-icon {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
#ast-scroll-top svg, #ast-scroll-top i, .ast-scroll-top-icon svg, .ast-scroll-top-icon i {
  color: #171006 !important; fill: #171006 !important;
}

/* Servicios — tier ("nivel de acompañamiento") cards: richer premium selection feel */
.tier-card {
  position: relative; isolation: isolate;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s;
}
.tier-card:hover { box-shadow: 0 34px 64px -30px rgba(0,0,0,.55); border-color: var(--gold-dim) !important; }
.tier-card.is-popular { box-shadow: 0 30px 70px -28px rgba(201,161,90,.3); }
.tier-card.is-popular:hover { box-shadow: 0 40px 84px -26px rgba(201,161,90,.4); }
.tier-name {
  display: inline-flex; align-items: center; gap: .5rem;
}
.tier-name::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.tier-card .btn { transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.tier-card:hover .btn { transform: translateY(-2px); }

/* Footer — drop the secondary tagline, copyright line only */
.footer-bottom span:last-child { display: none; }
.footer-bottom { justify-content: center; }

/* Nav: larger, clearly visible links + gold hamburger (was inheriting a purple accent) */
.nav-link { font-size: 1rem !important; letter-spacing: .02em !important; }
.nav-logo, .nav-logo-img { filter: none !important; }
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after { background: var(--gold) !important; }
.nav-burger.is-active span { background: transparent !important; }
.nav-mobile-list a { color: var(--cream) !important; }
.nav-mobile-list a:hover { color: var(--gold) !important; }

/* Hero: guarantee text contrast regardless of mesh animation phase or photo tones */
.hero-content { position: relative; z-index: 3; }
.hero-content::before {
  content: ""; position: absolute; z-index: -1;
  inset: -2rem -1.5rem -2rem -6rem;
  background: radial-gradient(60% 100% at 30% 40%, rgba(11,9,8,.72), transparent 75%);
  filter: blur(6px);
  pointer-events: none;
}
@media (max-width: 959px) { .hero-content::before { inset: -1.5rem -1rem -1.5rem -1rem; } }

/* FAQ — full redesign, forced against the site-wide purple accent */
.faq-item {
  background: var(--bg-3) !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 40px -28px rgba(0,0,0,.6);
  transition: border-color .4s, box-shadow .4s, transform .35s var(--ease-soft);
}
.faq-item:hover { border-color: var(--gold-dim) !important; transform: translateY(-2px); }
.faq-item.is-open { border-color: var(--gold) !important; box-shadow: 0 26px 54px -22px rgba(201,161,90,.28); }
.faq-q {
  background: transparent !important;
  color: var(--cream) !important;
}
.faq-q .plus::before, .faq-q .plus::after { background: var(--gold-2) !important; }
.faq-a, .faq-a p { background: transparent !important; color: var(--cream-3) !important; }

/* Testimonials — dark card look + visible progress on the active dot */
.testimonial-viewport { background: var(--bg-3) !important; }
.testimonial-slide img { background: var(--bg-3) !important; }
.testimonials-arrow { background: var(--bg-3) !important; border-color: var(--line) !important; }
.testimonials-arrow:hover { border-color: var(--gold) !important; }
.testimonials-arrow svg { color: var(--cream) !important; }
.testimonials-dots button { background: var(--line) !important; overflow: hidden; position: relative; }
.testimonials-dots button.is-active { background: var(--gold-dim) !important; }
.testimonials-dots button.is-active::after {
  content: ""; position: absolute; inset: 0; left: 0;
  background: var(--gold-2);
  transform-origin: left; transform: scaleX(0);
  animation: testimonialProgress 4.5s linear forwards;
}
@keyframes testimonialProgress { to { transform: scaleX(1); } }

/* Feature cards / outcomes — force gold icons, add gentle glow on hover */
.feature-icon, .outcome-item svg, .pricing-card-list svg, .tier-list svg { color: var(--gold-2) !important; }
.feature-icon { background: rgba(201,161,90,.14) !important; }
.feature-card { background: var(--bg-3) !important; border-color: var(--line) !important; }
.feature-card:hover { box-shadow: 0 30px 60px -30px rgba(201,161,90,.22); }
.nivel-card, .tier-card, .pricing-card, .result-real-figure { background: var(--bg-3) !important; }

/* "Cómo trabajamos" — animated interactive background */
.process-section { position: relative; overflow: hidden; isolation: isolate; }
.process-section::before {
  content: ""; position: absolute; inset: -20% -10%; z-index: -1;
  background:
    radial-gradient(45% 40% at 20% 30%, rgba(201,161,90,.16), transparent 65%),
    radial-gradient(50% 45% at 80% 70%, rgba(173,35,24,.14), transparent 65%);
  filter: blur(70px);
  animation: processDrift 18s ease-in-out infinite;
}
@keyframes processDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(2%, -3%) scale(1.08); }
}
.process-list { position: relative; }
.process-list::before {
  content: ""; position: absolute; top: 1.9rem; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 15%, var(--gold-dim) 85%, transparent);
  opacity: .55; display: none;
}
@media (min-width: 720px) { .process-list::before { display: block; } }
.process-step { background: transparent; transition: transform .4s var(--ease-soft); }
.process-step:hover { transform: translateY(-4px); }
.process-num { position: relative; z-index: 1; background: var(--bg-2); display: inline-block; padding-right: .6rem; }
