/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --navy: #0B1929;
  --navy-mid: #122238;
  --navy-light: #1A3150;
  --gold: #C4973A;
  --gold-bright: #DDB054;
  --gold-pale: #F6EDD8;
  --gold-very-pale: #FBF6EC;
  --white: #F9F8F5;
  --warm-gray: #EFECE6;
  --gray-line: #E0DBCF;
  --gray-mid: #9A9280;
  --gray-dark: #5A5248;
  --text: #1C1612;
  --serif: 'Spectral', Georgia, serif;
  --sans: 'Barlow', system-ui, sans-serif;
  --max: 1280px;
  --pad: clamp(24px, 5vw, 96px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Typography foundation */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 { font-synthesis: none; }

/* Cormorant Garamond OpenType features — ligatures, kern, old-style figures in editorial text */
.hero-title, .section-title, .pain-title, .fundador-intro,
.pillar-title, .bootcamp-title, .module-title, .cgr-node-title,
.block-title, .testimonial-text, .pull-quote p, .tp-text {
  font-feature-settings: 'liga' 1, 'kern' 1, 'calt' 1;
  font-synthesis: none;
}

/* Tabular lining numerals for all metric/stat displays */
.metric-num, .trust-metric-num, .count,
.app-cell-val, .trust-metric-num span {
  font-variant-numeric: tabular-nums lining-nums;
}
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-kerning: normal;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Custom cursor */
body { cursor: none; }
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s, width .25s, height .25s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(196,151,58,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s ease-out, width .3s, height .3s, border-color .3s;
}
body:hover .cursor { opacity: 1; }

/* ═══════════════════════════════════════
   GRAIN TEXTURE
═══════════════════════════════════════ */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .45s; }
.delay-5 { transition-delay: .6s; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .25s, box-shadow .25s;
}
nav.scrolled {
  background: rgba(11,25,41,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196,151,58,0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.5px;
  transition: color .2s;
  position: relative;
  padding: 6px 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .35s cubic-bezier(.16,1,.3,1);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a[style*="var(--gold)"]::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  justify-content: flex-end;
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-bright); }
.btn-nav:active { transform: scale(0.97); transition: transform 80ms ease-out; }
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-menu-btn span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform .3s ease-out, opacity .3s ease;
}

/* ═══════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════ */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--navy-mid);
  z-index: 2000;
  padding: 80px 40px 40px;
  transition: right .4s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid rgba(196,151,58,0.2);
}
.nav-drawer.open { right: 0; }
.drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  cursor: pointer;
}
.drawer-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.drawer-links a {
  display: block;
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 24px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s, padding-left .2s;
}
.drawer-links a:hover { color: var(--gold-bright); padding-left: 8px; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Diagonal gold accent lines */
.hero-bg-lines::before {
  content: '';
  position: absolute;
  top: -10%; right: 15%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(196,151,58,0.25) 30%, rgba(196,151,58,0.12) 70%, transparent);
  transform: rotate(12deg);
}
.hero-bg-lines::after {
  content: '';
  position: absolute;
  top: -10%; right: 22%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(196,151,58,0.08) 40%, transparent);
  transform: rotate(12deg);
}
/* Gold geometric shape */
.hero-shape {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 500px; height: 500px;
  border: 1px solid rgba(196,151,58,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(196,151,58,0.06);
  border-radius: 50%;
}
.hero-shape::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(196,151,58,0.04);
  border-radius: 50%;
}
/* Large Z watermark */
.hero-watermark {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(280px, 28vw, 480px);
  font-weight: 700;
  color: rgba(196,151,58,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--pad);
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 60px;
}
.hero-content { display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-eyebrow-line {
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s .35s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .9s .5s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .9s .65s cubic-bezier(.16,1,.3,1) forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .25s, transform .16s ease-out;
  position: relative;
  overflow: hidden;
}
.btn-primary:active { transform: scale(0.97); transition: transform 80ms ease-out; }
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: translateX(-100%);
  transition: transform .3s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, transform .16s ease-out;
}
.btn-ghost:hover {
  border-color: rgba(196,151,58,0.5);
  color: var(--gold-bright);
}
.btn-ghost:active { transform: scale(0.97); transition: transform 80ms ease-out; }
/* Hero right: editorial visual */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeLeft .9s .5s cubic-bezier(.16,1,.3,1) forwards;
  display: flex;
  flex-direction: column;
}
.hero-card-main {
  background: rgba(13, 27, 50, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(196,151,58,0.25);
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--gold);
  z-index: 1;
}
.hero-card-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}
.hero-card-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.hero-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-mid) 0%, transparent 28%);
  pointer-events: none;
  z-index: 1;
}
.hero-photo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity .45s ease-out, transform .45s ease-out;
}
.hero-photo-layer--hidden {
  opacity: 0;
  transform: scale(1.04);
}
.hero-card-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-model-mini {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.hero-model-node {
  flex: 1;
  text-align: center;
  padding: 22px 12px;
  background: rgba(13, 27, 50, 0.4);
  border: 1px solid rgba(196,151,58,0.18);
}
.hero-model-node-num {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 8px;
}
.hero-model-node-title {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.3;
}
.hero-model-arrow {
  color: var(--gold);
  font-size: 16px;
  padding: 0 6px;
  flex-shrink: 0;
}
/* ── HERO PERSONA WIDGET */
.hero-persona-widget {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(196,151,58,0.12);
}
.hero-persona-pills {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero-persona-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(196,151,58,0.12);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.3);
  transition: opacity .5s ease, border-color .5s ease, color .5s ease, background .5s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(13, 27, 50, 0.3);
}
.hero-persona-pill.is-active {
  border-color: rgba(196,151,58,0.65);
  color: rgba(255,255,255,0.98);
  background: rgba(196,151,58,0.1);
}
.hero-persona-pill.is-secondary { opacity: 0.55; }
.hero-persona-pill.is-tertiary  { opacity: 0.25; }
.hero-persona-pill.is-faded     { opacity: 0.1;  }
.pdot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.35;
  transition: opacity .5s ease, transform .5s ease;
  position: relative;
}
.hero-persona-pill.is-active .pdot {
  opacity: 1;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,151,58,0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(196,151,58,0); }
}

/* Pill text rotation animation */
.pill-text {
  display: inline-block;
  will-change: opacity, transform;
  transition: opacity .28s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.pill-text.pill-anim-out {
  opacity: 0;
  transform: translateY(-10px);
}
.pill-text.pill-anim-in {
  animation: pillTextIn .45s cubic-bezier(.16,1,.3,1) both;
}
@keyframes pillTextIn {
  0%   { opacity: 0; transform: translateY(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */

/* ═══════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   METRICS BAR
═══════════════════════════════════════ */
#metrics {
  padding: 72px var(--pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#metrics::before {
  content: '';
  position: absolute;
  bottom: 0; left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: rgba(196,151,58,0.15);
}
.metrics-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(196,151,58,0.15);
}
.metric-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-num .plus { font-size: 0.6em; vertical-align: super; }
.metric-label {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════ */
.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
}
.section-wrap.narrow { max-width: 880px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow-line { width: 24px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); line-height: 1.2; }
.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.85;
  max-width: 560px;
}
.section-body.light { color: rgba(255,255,255,0.6); line-height: 1.9; }

/* ═══════════════════════════════════════
   PAIN SECTION
═══════════════════════════════════════ */
#pain {
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
.pain-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.pain-left { padding-top: 0; }
.pain-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-right-visual {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pain-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.pain-body {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 62ch;
}
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--gray-line);
  background: var(--white);
  font-size: 14px;
  color: var(--gray-dark);
  transition: border-color .2s, box-shadow .2s;
}
.pain-list li:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196,151,58,0.08);
}
.pain-icon {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
/* Quote pulled from pain */
.pull-quote {
  padding: 32px 32px 32px 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-very-pale);
  margin-top: 36px;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}
.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.pull-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.pull-quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid rgba(196,151,58,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.pull-quote-avatar span {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--gold-bright);
  font-style: normal;
}
.pull-quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pull-quote-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pull-quote-meta strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
  font-family: var(--sans);
}
.pull-quote-meta span {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}
.pain-right-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  z-index: 0;
}
.pain-right-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,10,30,0.97) 0%,
    rgba(2,10,30,0.88) 35%,
    rgba(2,10,30,0.25) 60%,
    rgba(2,10,30,0.0) 100%
  );
  z-index: 1;
}
.pain-right-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.pain-right-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
}
.pain-right .pain-list {
  gap: 6px;
}
.pain-right .pain-list li {
  padding: 10px 14px;
  font-size: 13px;
  background: rgba(2,10,30,0.45);
  border-color: rgba(196,151,58,0.18);
  color: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pain-right .pain-list li:hover {
  border-color: rgba(196,151,58,0.55);
  background: rgba(2,10,30,0.65);
  box-shadow: 0 4px 20px rgba(2,10,30,0.4);
}

/* ═══════════════════════════════════════
   WHAT IS ZENDERO (dark)
═══════════════════════════════════════ */
#about {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'Z';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 500px;
  font-weight: 700;
  color: rgba(196,151,58,0.03);
  line-height: 1;
  pointer-events: none;
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left {}
.about-right {}
.about-diff {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(196,151,58,0.1);
}
.diff-item {
  padding: 24px 20px;
  background: var(--navy-mid);
  text-align: center;
}
.diff-x {
  font-size: 20px;
  margin-bottom: 6px;
}
.diff-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.diff-item.highlight { background: rgba(196,151,58,0.08); }
.diff-item.highlight .diff-x { color: var(--gold-bright); }
.diff-item.highlight .diff-label { color: rgba(255,255,255,0.7); }
/* vertical list */
.about-principles { display: flex; flex-direction: column; gap: 0; }
.principle {
  padding: 20px 0;
  border-bottom: 1px solid rgba(196,151,58,0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.principle:first-child { padding-top: 0; }
.principle-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: rgba(196,151,58,0.3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.principle-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.principle-content p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ═══════════════════════════════════════
   MODEL CGR
═══════════════════════════════════════ */
#model {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#model::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.model-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
}
.model-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.model-intro { font-size: 15px; color: var(--gray-dark); line-height: 1.85; }
/* CGR flow */
.cgr-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--gray-line);
}
.cgr-node {
  padding: 48px 32px;
  position: relative;
  background: var(--white);
  transition: background .3s;
}
.cgr-node:hover { background: var(--gold-very-pale); }
.cgr-node-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: -16px;
  position: relative;
  z-index: 0;
}
.cgr-node-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.cgr-node-body {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cgr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cgr-tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--gray-line);
  font-size: 10px;
  color: var(--gray-mid);
  letter-spacing: 0.5px;
  transition: border-color .2s ease, color .2s ease;
}
.cgr-node:hover .cgr-tag {
  border-color: var(--gold);
  color: var(--gold);
}
/* Top accent per node */
.cgr-node::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background .3s;
}
.cgr-node:hover::before { background: var(--gold); }
/* Arrow connector */
.cgr-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  background: var(--warm-gray);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.cgr-arrow-svg {
  width: 32px;
  color: var(--gold);
  animation: pulse-arrow 2s ease-in-out infinite;
}
/* CGR Labels below */
.cgr-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin-top: 24px;
  gap: 0;
}
.cgr-label-item {
  text-align: center;
  padding: 4px;
}
.cgr-label-item span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.cgr-label-spacer { }

/* ═══════════════════════════════════════
   PROGRAMA SECTION
═══════════════════════════════════════ */
#programa {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.programa-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
}
.programa-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.programa-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(196,151,58,0.1);
}
.block-card {
  background: var(--navy-mid);
  padding: 36px 28px;
  position: relative;
  transition: background .3s;
  border-top: 2px solid transparent;
}
.block-card:hover {
  background: var(--navy-light);
  border-top-color: var(--gold);
}
.block-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(196,151,58,0.15);
  line-height: 1;
  margin-bottom: -8px;
}
.block-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.block-subtitle {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.block-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.block-item {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
}
.block-card:hover .block-item { color: rgba(255,255,255,0.7); }
.block-item-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
}
.block-card:hover .block-item-dot { opacity: 1; }
.block-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: gap .2s;
}
.block-cta:hover { gap: 14px; }
/* App integration badge in block 2 */
.app-badge {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(196,151,58,0.08);
  border: 1px solid rgba(196,151,58,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-badge-icon { font-size: 16px; }
.app-badge-text {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.app-badge-text strong {
  display: block;
  color: var(--gold-bright);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   HERRAMIENTAS DIGITALES
═══════════════════════════════════════ */
#herramientas {
  background: var(--warm-gray);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.herramientas-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.herramientas-left {}
.herramientas-right {}
/* App mockup */
.app-mockup {
  border: 1px solid var(--gray-line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  position: sticky;
  top: 90px;
}
.app-bar {
  background: var(--navy);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-dots { display: flex; gap: 5px; }
.app-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.app-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.07);
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}
.app-screen {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 340px;
}
.app-sidebar {
  background: var(--navy-mid);
  padding: 16px 0;
  border-right: 1px solid rgba(196,151,58,0.1);
}
.app-sidebar-section {
  padding: 8px 16px 4px;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(196,151,58,0.6);
  font-weight: 500;
}
.app-sidebar-item {
  padding: 7px 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 2px solid transparent;
  transition: color .2s ease, border-left-color .2s ease, background .2s ease;
  cursor: default;
}
.app-sidebar-item:hover, .app-sidebar-item.active {
  color: var(--gold-bright);
  border-left-color: var(--gold);
  background: rgba(196,151,58,0.06);
}
.app-content { padding: 20px; background: var(--white); }
.app-content-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 500;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.app-cell {
  background: var(--warm-gray);
  border: 1px solid var(--gray-line);
  padding: 10px;
  border-radius: 2px;
}
.app-cell-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
  margin-bottom: 4px;
}
.app-cell-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}
.app-cell-status {
  font-size: 9px;
  color: #2e7d32;
  font-weight: 500;
}
.app-progress-bar {
  height: 4px;
  background: var(--gray-line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 12px;
}
.app-progress-fill {
  height: 100%;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: left;
  animation: grow-bar 2s 1.5s cubic-bezier(.16,1,.3,1) both;
}
/* Tool cards */
.tool-cards { display: flex; flex-direction: column; gap: 14px; }
.tool-card {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.tool-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196,151,58,0.08);
}
.tool-card.active {
  border-color: var(--gold);
  background: var(--gold-very-pale);
  box-shadow: 0 4px 20px rgba(196,151,58,0.12);
}
.tool-card.active .tool-arrow {
  color: var(--gold);
  transform: translateX(4px);
}
.tool-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.tool-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.tool-info p { font-size: 12px; color: var(--gray-mid); line-height: 1.4; }
.tool-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 16px;
  transition: transform .2s;
  flex-shrink: 0;
}
.tool-card:hover .tool-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════
   BOOTCAMPS
═══════════════════════════════════════ */
#bootcamps {
  background: var(--white);
}
.bootcamps-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
}
.bootcamps-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}
.bootcamp-scroller {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--gray-line);
}
.bootcamp-card {
  background: var(--white);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-top-color .2s ease;
  border-top: 2px solid transparent;
}
.bootcamp-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  z-index: 1;
  background: var(--white);
}
.bootcamp-num {
  position: absolute;
  right: 24px; top: 20px;
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
}
.bootcamp-category {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.bootcamp-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 180px;
}
.bootcamp-desc {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}
.bootcamp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.bootcamp-pill {
  padding: 3px 10px;
  background: var(--gold-very-pale);
  border: 1px solid var(--gold-pale);
  font-size: 10px;
  color: var(--gold);
  font-weight: 500;
}
.bootcamp-deliverable {
  padding: 10px 14px;
  background: var(--warm-gray);
  border-left: 2px solid var(--gold);
  font-size: 11px;
  color: var(--gray-dark);
  line-height: 1.5;
}
.bootcamp-deliverable strong {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
  font-weight: 500;
}
.bootcamps-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  background: var(--navy);
  gap: 40px;
  flex-wrap: wrap;
}
.bootcamps-cta-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
}
.bootcamps-cta-text em { font-style: italic; color: var(--gold-bright); }

/* ═══════════════════════════════════════
   RESULTADOS
═══════════════════════════════════════ */
#resultados {
  background: var(--gold-very-pale);
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
}
.resultados-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
}
.valor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gold-pale);
  margin-top: 56px;
  margin-bottom: 64px;
}
.valor-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.valor-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.valor-card:hover::after { transform: scaleX(1); }
.valor-type {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.valor-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}
.valor-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.valor-items li {
  font-size: 13px;
  color: var(--gray-dark);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.valor-items li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
  font-size: 11px;
  margin-top: 2px;
}
/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gold-pale);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.author-info {}
.author-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.author-role { font-size: 11px; color: var(--gray-mid); }

/* ═══════════════════════════════════════
   FUNDADOR
═══════════════════════════════════════ */
#fundador {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.fundador-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.fundador-portrait {
  position: relative;
}
.portrait-box {
  background: var(--navy-mid);
  border: 1px solid rgba(196,151,58,0.15);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portrait-placeholder {
  font-family: var(--serif);
  font-size: 100px;
  font-weight: 300;
  color: rgba(196,151,58,0.15);
}
.portrait-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,25,41,0.9), transparent);
  padding: 32px 24px 20px;
}
.portrait-label-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.portrait-label-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.fundador-gold-line {
  position: absolute;
  top: 20px; right: -12px;
  width: 3px; height: 80%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.fundador-content {}
.fundador-intro {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 28px;
}
.fundador-intro em { font-style: italic; color: var(--gold-bright); }
.fundador-bio {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 64ch;
}
.fundador-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.credential {
  padding: 6px 14px;
  border: 1px solid rgba(196,151,58,0.25);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}
.fundador-diffs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.fundador-diff {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,58,0.15);
  border-radius: 8px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.fundador-diff:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(196,151,58,0.35);
  transform: translateX(2px);
}
.fundador-diff-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(196,151,58,0.12);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fundador-diff-content { flex: 1; }
.fundador-diff-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.fundador-diff-body {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   EQUIPO
═══════════════════════════════════════ */
#equipo {
  background: var(--warm-gray);
}
.equipo-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
}
.equipo-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.equipo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.equipo-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  cursor: default;
}
.equipo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  z-index: 2;
}
.equipo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11,25,41,0.13);
  z-index: 1;
}
.equipo-card:hover::before { transform: scaleX(1); }
.equipo-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
}
.equipo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .3s ease-out;
  display: block;
}
.equipo-card:hover .equipo-photo img {
  transform: scale(1.06);
}
.equipo-card.director .equipo-photo img {
  object-position: center 20%;
}
.equipo-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,25,41,0.55) 0%, transparent 50%);
  pointer-events: none;
}
.equipo-info {
  padding: 18px 20px 22px;
  background: var(--white);
  border-top: 1px solid var(--gray-line);
}
.equipo-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.2;
}
.equipo-role {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.equipo-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--gray-mid);
  transition: color .2s;
  letter-spacing: 0.3px;
}
.equipo-linkedin:hover { color: #0077B5; }
.equipo-desc {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-top: 8px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s ease, max-height .3s ease;
}
.equipo-card:hover .equipo-desc { opacity: 1; max-height: 80px; }
/* Director card destacado */
.equipo-card.director {
  grid-column: span 2;
}
.equipo-card.director .equipo-photo {
  aspect-ratio: 16/9;
}
.equipo-card.director .equipo-name { font-size: 24px; }

/* ═══════════════════════════════════════
   VALORES
═══════════════════════════════════════ */
#valores {
  background: var(--white);
}
.valores-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--gray-line);
  margin-top: 56px;
}
.valor-item {
  padding: 32px 24px;
  border-right: 1px solid var(--gray-line);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.valor-item:last-child { border-right: none; }
.valor-item:hover { background: var(--gold-very-pale); }
.valor-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s;
}
.valor-item:hover::before { transform: scaleX(1); }
.valor-word {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.valor-def { font-size: 13px; color: var(--gray-dark); line-height: 1.7; }
.valor-num {
  position: absolute;
  bottom: 12px; right: 16px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
}

/* ═══════════════════════════════════════
   RECURSOS
═══════════════════════════════════════ */
#recursos {
  background: var(--warm-gray);
}
.recursos-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad);
}
.recursos-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}
.recursos-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  background: var(--gray-line);
}
.recurso-card {
  background: var(--white);
  padding: 28px;
  transition: box-shadow .2s;
  cursor: default;
}
.recurso-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 1;
  position: relative;
}
.recurso-type {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.recurso-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.recurso-desc { font-size: 13px; color: var(--gray-dark); line-height: 1.6; }
.podcast-card {
  border-left: 3px solid var(--gold);
  background: var(--navy-mid);
  padding: 32px;
  grid-row: span 2;
}
.podcast-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.podcast-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.3;
}
.podcast-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.podcast-episodes { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.podcast-ep {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,58,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .2s;
}
.podcast-ep:hover { background: rgba(196,151,58,0.06); }
.podcast-ep-play {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(196,151,58,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
#cta-final {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
}
.cta-final-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--pad);
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.cta-final-line { width: 40px; height: 1px; background: rgba(196,151,58,0.4); }
.cta-final-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.cta-final-title {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-title em { font-style: italic; color: var(--gold-bright); }
.cta-final-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-weight: 300;
}
.cta-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .25s, transform .16s ease-out;
}
.btn-primary-light:hover { background: var(--gold-bright); }
.btn-primary-light:active { transform: scale(0.97); transition: transform 80ms ease-out; }
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, transform .16s ease-out;
}
.btn-ghost-light:hover { border-color: rgba(196,151,58,0.5); color: var(--gold-bright); }
.btn-ghost-light:active { transform: scale(0.97); transition: transform 80ms ease-out; }
.cta-contact-strip {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(196,151,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-icon { font-size: 18px; }
.contact-label { font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; }
.contact-val { font-size: 13px; color: rgba(255,255,255,0.6); transition: color .2s; }
.contact-item:hover .contact-val { color: var(--gold-bright); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(196,151,58,0.1);
  padding: 48px var(--pad) 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.footer-logo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 220px;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-copy a { color: rgba(196,151,58,0.5); transition: color .2s; }
.footer-copy a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; }
.social-link {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: border-color .2s ease, color .2s ease;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.wa-btn svg { width: 28px; }
.wa-label {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease-out;
  pointer-events: none;
}
.whatsapp-float:hover .wa-label { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse-arrow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes grow-bar {
  from { transform: scaleX(0); }
  to { transform: scaleX(0.72); }
}
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.25rem; }
  .pain-inner,
  .about-inner,
  .herramientas-inner,
  .fundador-inner { grid-template-columns: 1fr; }
  .model-header,
  .programa-header,
  .bootcamps-header,
  .recursos-header { grid-template-columns: 1fr; gap: 24px; }
  .cgr-flow { grid-template-columns: 1fr; }
  .cgr-arrow { display: none; }
  .cgr-labels { display: none; }
  .cgr-node { border-bottom: 1px solid var(--gray-line); }
  .programa-blocks { grid-template-columns: 1fr; }
  .bootcamp-scroller { grid-template-columns: 1fr 1fr; }
  .valor-grid { grid-template-columns: 1fr 1fr; }
  .valores-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .recursos-grid { grid-template-columns: 1fr 1fr; }
  .podcast-card { grid-row: span 1; }
  .testimonials { grid-template-columns: 1fr; }
  .equipo-grid { grid-template-columns: repeat(3, 1fr); }
  .equipo-card.director { grid-column: span 3; }
  .equipo-card.director .equipo-photo { aspect-ratio: 21/9; }
  .equipo-header { grid-template-columns: 1fr; }
  /* Trust metrics */
  .trust-metrics { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-metric { padding: 24px 20px; border-right: none; border-bottom: 1px solid var(--gray-line); }
  .trust-metric:nth-child(odd) { border-right: 1px solid var(--gray-line); }
  .trust-metric:last-child { border-bottom: none; }
  .trust-metric:nth-child(3) { border-bottom: none; }
  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .pillar-card:nth-child(3) { border-top: none; border-left: 3px solid var(--gold); }
  .pillar-card { padding: 40px 32px; }
  /* Modules */
  .modules-header { grid-template-columns: 1fr; gap: 16px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  /* About diff */
  .about-diff { grid-template-columns: repeat(3, 1fr); }
  /* CTA strip */
  .cta-contact-strip { flex-direction: column; gap: 32px; text-align: center; }
  .cta-contact-strip .btn-primary { align-self: center; }
  /* Nav */
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-login { display: none; }
  .nav-menu-btn { display: flex; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  .nav-menu-btn { display: flex; }
  .hero-title { font-size: 1.875rem; letter-spacing: -0.02em; }
  .hero-eyebrow-text { font-size: 0.5625rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn-ghost { display: none; }
  .hero-inner { padding-top: 100px; padding-bottom: 48px; gap: 32px; }
  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  /* Pain section */
  .pain-right-photo { height: 260px; }
  /* Trust metrics */
  .trust-metrics { grid-template-columns: repeat(2, 1fr); }
  .trust-metric-num { font-size: 40px; }
  .trust-inner { padding: 40px var(--pad); }
  /* Pillars */
  .pillar-card { padding: 32px 24px; }
  .pillars-inner { padding: 64px var(--pad); }
  /* Modules */
  .modules-grid { grid-template-columns: 1fr; }
  .module-card { padding: 32px 24px; }
  /* Bootcamp */
  .bootcamp-scroller { grid-template-columns: 1fr; }
  .bootcamps-cta { flex-direction: column; gap: 20px; }
  /* Valor */
  .valor-grid { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  /* About diff */
  .about-diff { grid-template-columns: 1fr 1fr; }
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col { border-left: none; padding-left: 0; }
  /* Metrics */
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2)::after { display: none; }
  /* Recursos */
  .recursos-grid { grid-template-columns: 1fr; }
  /* Equipo */
  .equipo-grid { grid-template-columns: repeat(2, 1fr); }
  .equipo-card.director { grid-column: span 2; }
  .equipo-card.director .equipo-photo { aspect-ratio: 16/7; }
  /* Utils */
  .whatsapp-float { bottom: 16px; right: 16px; }
  .wa-label { display: none; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  /* CTA final */
  .cta-final-btns { flex-direction: column; align-items: center; }
  .cta-contact-strip { flex-direction: column; gap: 24px; }
  /* Marquee slower on mobile */
  .marquee-track { animation-duration: 30s; }
  /* Clientes logo strip */
  .logo-track { animation-duration: 25s; }
  /* Nav login */
  .nav-login { display: none; }
}
/* ═══════════════════════════════════════
   HERO WORD ROTATION
═══════════════════════════════════════ */
.hero-title em {
  display: inline-block;
  transition: opacity .3s cubic-bezier(.16,1,.3,1), transform .3s cubic-bezier(.16,1,.3,1);
}

/* ═══════════════════════════════════════
   TRUST STRIP (reemplaza metrics)
═══════════════════════════════════════ */
.trust-section { background: var(--warm-gray); border-bottom: 1px solid var(--gray-line); }
.trust-inner { max-width: var(--max); margin: 0 auto; padding: 64px var(--pad); }
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-bottom: 48px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray-line);
}
.trust-metric { padding: 0 40px; border-right: 1px solid var(--gray-line); }
.trust-metric:first-child { padding-left: 0; }
.trust-metric:last-child { border-right: none; }
.trust-metric-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-metric-num span { font-size: 32px; vertical-align: super; color: var(--gold); }
.trust-metric-result {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--navy);
  margin-bottom: 4px;
}
.trust-metric-label {
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 0.5px;
}
.trust-sectors-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-sectors-label {
  flex-basis: 100%;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  margin-bottom: 4px;
}
.trust-sector-tag {
  font-size: 11px;
  color: var(--gray-dark);
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 5px 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.trust-sector-tag:hover { border-color: var(--gold); color: var(--navy); }

/* ═══════════════════════════════════════
   THREE CGR PILLARS
═══════════════════════════════════════ */
.pillars-section { background: var(--white); }
.pillars-inner { max-width: var(--max); margin: 0 auto; padding: 100px var(--pad); }
.pillars-header { text-align: center; margin-bottom: 64px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pillar-card {
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.pillar-card:nth-child(1) { background: var(--navy); }
.pillar-card:nth-child(2) { background: var(--navy-mid); }
.pillar-card:nth-child(3) { background: var(--navy-light); border-top: 3px solid var(--gold); }
.pillar-card:hover { transform: translateY(-4px); }
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(196,151,58,0.1);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(196,151,58,0.22);
  transition: background .3s ease, border-color .3s ease;
}
.pillar-card:hover .pillar-icon {
  background: rgba(196,151,58,0.16);
  border-color: rgba(196,151,58,0.4);
}
.pillar-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillar-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.pillar-title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.pillar-title em { font-style: italic; color: var(--gold-bright); }
.pillar-body {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 28px;
}
.pillar-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(196,151,58,0.15);
}
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.pillar-item::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}
.pillar-cta:hover { gap: 10px; color: var(--gold-bright); }

/* ═══════════════════════════════════════
   SERVICE MODULES
═══════════════════════════════════════ */
.modules-section { background: var(--warm-gray); border-top: 1px solid var(--gray-line); }
.modules-inner { max-width: var(--max); margin: 0 auto; padding: 100px var(--pad); }
.modules-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.module-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.module-card:hover { background: var(--gold-very-pale); transform: translateY(-3px); }
.module-card:hover::before { transform: scaleX(1); }
.module-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.module-icon { font-size: 28px; margin-bottom: 16px; }
.module-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.module-body {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 24px;
}
.module-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s;
}
.module-card:hover .module-cta { color: var(--navy); }

/* RESPONSIVE nuevas secciones */
@media (max-width: 1024px) {
  .trust-metrics { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-metric { padding: 0; border-right: none; border-bottom: 1px solid var(--gray-line); padding-bottom: 24px; }
  .trust-metric:last-child { border-bottom: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card:nth-child(3) { border-top: none; border-left: 3px solid var(--gold); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-header { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .trust-metrics { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .modules-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   CLIENTES LOGO STRIP
═══════════════════════════════════════ */
.clientes-strip { background: var(--white); border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); padding: 56px 0 48px; overflow: hidden; }
.clientes-strip-label {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 36px;
}
.logo-track-wrap {
  overflow: hidden;
  position: relative;
}
.logo-track-wrap::before,
.logo-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-track-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logo-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.logo-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: logo-scroll 40s linear infinite;
  width: max-content;
}
.logo-track:hover { animation-play-state: paused; }
.logo-item {
  padding: 0 36px;
  border-right: 1px solid var(--gray-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-item img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter .3s;
}
.logo-item img:hover { filter: grayscale(0%) opacity(1); }

@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   MEGA MENU
═══════════════════════════════════════ */
.nav-links { gap: 4px; }
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 2px;
  transition: color .2s, background .2s;
}
.nav-links > li > a::after { display: none; }
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--white); }
.nav-links > li.active > a { color: var(--gold); }

.nav-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0;
}
.nav-chevron::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform .2s;
}
.has-dropdown:hover .nav-chevron::before {
  transform: translate(-50%, -30%) rotate(-135deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 64px rgba(11,25,41,0.14);
  min-width: 230px;
  padding: 6px 0 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s cubic-bezier(.16,1,.3,1), transform .22s cubic-bezier(.16,1,.3,1), visibility .22s;
  z-index: 200;
  pointer-events: none;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--gold);
}
.nav-dropdown-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding: 10px 18px 8px;
  display: block;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  transition: background .15s, color .15s, padding-left .15s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.3;
}
.nav-dropdown-item::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(196,151,58,0.4);
  flex-shrink: 0;
  transition: background .15s;
}
.nav-dropdown-item:hover {
  background: var(--gold-very-pale);
  color: var(--navy);
  padding-left: 22px;
}
.nav-dropdown-item:hover::before { background: var(--gold); }

/* Nav login link */
.nav-login {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-login:hover { color: var(--white); }
.nav-login::before {
  content: '→';
  font-size: 11px;
}

/* Responsive: hide dropdown on mobile, already handled by drawer */
@media (max-width: 1024px) {
  .nav-dropdown { display: none; }
}

/* Fix especificidad dropdown items — sobreescribe .nav-links a */
.nav-dropdown .nav-dropdown-item {
  color: var(--navy) !important;
  padding: 9px 18px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: background .15s, padding-left .15s !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}
.nav-dropdown .nav-dropdown-item::after { display: none !important; }
.nav-dropdown .nav-dropdown-item::before {
  content: '' !important;
  display: block !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: rgba(196,151,58,0.4) !important;
  flex-shrink: 0 !important;
  transition: background .15s !important;
}
.nav-dropdown .nav-dropdown-item:hover {
  background: var(--gold-very-pale) !important;
  color: var(--navy) !important;
  padding-left: 22px !important;
}
.nav-dropdown .nav-dropdown-item:hover::before {
  background: var(--gold) !important;
}

/* ── CLIENTES TEASER SECTION ── */
.clientes-teaser-section {
  padding: 100px 0;
  background: #fff;
}
.clientes-teaser-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.clientes-teaser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.clientes-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.testimonial-preview {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 40px 40px;
  position: relative;
  overflow: hidden;
}
.tp-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  position: relative;
}
.tp-text::before {
  content: '\201C';
  color: var(--gold);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 2px;
}
.tp-text::after {
  content: '\201D';
  color: var(--gold);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-left: 2px;
}
.tp-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.tp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  flex-shrink: 0;
}
.tp-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.tp-role {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  letter-spacing: 0.5px;
}
.tp-more {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.tp-more:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .clientes-teaser-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .clientes-teaser-section { padding: 64px 0; }
}

/* ══════════════════════════════════════════════════════════
   UI/UX FIXES — Accesibilidad, Performance, Interacción
   ══════════════════════════════════════════════════════════ */

/* Skip link — accesibilidad teclado */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; outline: 2px solid var(--navy); }

/* SVG icons — override font-size containers */
.module-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  line-height: 1;
}
.tool-icon { color: var(--gold); }
.platform-icon { color: var(--gold); display: flex; align-items: center; justify-content: flex-start; }
.metodologia-icon { color: var(--gold); display: flex; align-items: center; justify-content: center; }
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.podcast-label { display: flex; align-items: center; gap: 6px; }
.podcast-ep-play { display: flex; align-items: center; justify-content: center; }

/* touch-action: manipulation — elimina delay 300ms en móvil */
.btn-primary, .btn-ghost, .btn-nav, .btn-primary-light, .btn-ghost-light,
.module-card, .tool-card, .bootcamp-card, .pillar-cta,
button, a { touch-action: manipulation; }

/* prefers-reduced-motion — accesibilidad vestibular */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .logo-track { animation: none; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Solo eliminar animaciones de movimiento — mantener opacity/color que ayudan a la comprensión */
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  /* Desactivar transitions de transform en elementos interactivos */
  .btn-primary, .btn-ghost, .btn-nav, .btn-primary-light, .btn-ghost-light,
  .bootcamp-card, .module-card, .equipo-card, .pillar-card,
  .equipo-photo img, .hero-badge, .app-progress-fill,
  .block-card, .cgr-node {
    transform: none !important;
    transition: color .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease !important;
  }
}

/* ═══════════════════════════════════════
   HOVER GUARD — touch devices
   En móvil el :hover se activa al tocar, causando que
   los cards se muevan en el primer tap en lugar de navegar.
═══════════════════════════════════════ */
@media (hover: none), (pointer: coarse) {
  .bootcamp-card:hover { transform: none; box-shadow: none; }
  .module-card:hover { transform: none; }
  .equipo-card:hover { transform: none; box-shadow: none; }
  .pillar-card:hover { transform: none; }
  .btn-primary:hover,
  .btn-primary-light:hover { transform: none; }
}



/* ── HERO BACKGROUND PHOTO (atmospheric, full-width) ─────── */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  opacity: 0.38;
}
.hero-bg-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,18,35,0.45) 0%,
      rgba(10,18,35,0.35) 40%,
      rgba(10,18,35,0.6) 75%,
      rgba(10,18,35,0.85) 100%),
    radial-gradient(ellipse 80% 90% at 40% 50%,
      transparent 0%,
      rgba(10,18,35,0.3) 70%,
      rgba(10,18,35,0.65) 100%);
  pointer-events: none;
}
.hero-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,18,35,0.65) 0%,
    transparent 25%,
    transparent 65%,
    rgba(10,18,35,0.95) 100%);
  pointer-events: none;
}
#hero .hero-inner { position: relative; z-index: 2; }
#hero .hero-watermark { z-index: 1; opacity: 0.5; }

@media (max-width: 960px) {
  .hero-bg-photo img { opacity: 0.22; }
  .hero-bg-photo::before {
    background:
      linear-gradient(180deg,
        rgba(10,18,35,0.65) 0%,
        rgba(10,18,35,0.78) 60%,
        rgba(10,18,35,0.95) 100%);
  }
}
