/* =========================================================
   CMF EVOLUTION 2026 — Editorial Ink
   Paleta y tipografía del brand book oficial
   ========================================================= */

:root {
  /* Editorial Ink palette */
  --bg:        #EAE5DE;   /* Bone light */
  --bg-warm:   #DDD3C2;   /* Stone warm */
  --bg-soft:   #F2D7B5;   /* Soft Sand */
  --bg-cream:  #FFF7E6;   /* Off white */
  --ink:       #14110F;   /* Text on light */
  --ink-soft:  #3A322A;
  --ink-mute:  rgba(20, 17, 15, 0.55);
  --ink-faint: rgba(20, 17, 15, 0.16);
  --ink-line:  rgba(20, 17, 15, 0.10);

  --bg-deep:   #0A0908;   /* Ink black */
  --bg-dark:   #1A1612;   /* Deep umber */
  --on-dark:        #EAE5DE;
  --on-dark-mute:   rgba(234, 229, 222, 0.62);
  --on-dark-faint:  rgba(234, 229, 222, 0.18);

  --orange:    #F36A2D;   /* Evolution Orange (leader) */
  --orange-2:  #D85B23;
  --coral:     #E64A2E;   /* Coral Heat */
  --terracotta:#B94B28;   /* Terracotta */
  --peach:     #F7B66D;   /* Peach skin */
  --amber:     #FFD36A;   /* Amber light */

  /* Type */
  --f-display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --f-body:    'Manrope', ui-sans-serif, system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Sizing */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01';
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

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

/* =========================================================
   UTILS
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mono {
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}
.kicker--light { color: var(--peach); }
.kicker--light::before { background: var(--peach); }

.section-head {
  max-width: 920px;
  margin-bottom: clamp(56px, 9vw, 112px);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 22px 0 28px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--orange);
  display: block;
}

.section-lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.55;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--orange);
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  margin-top: 28px;
  transition: gap 0.3s var(--ease), opacity 0.3s var(--ease);
  font-weight: 500;
}
.link-arrow:hover { gap: 18px; opacity: 0.85; }

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 0;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--accent {
  background: var(--orange);
  color: var(--bg-cream);
}
.btn--accent:hover { background: var(--orange-2); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-faint);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg-cream); }

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.btn--outline:hover { background: var(--orange); color: var(--bg-cream); }

.btn--small { padding: 12px 22px; font-size: 13px; }
.btn--full { width: 100%; }
.btn--xl { padding: 24px 42px; font-size: 17px; }

/* =========================================================
   LOADER
   ========================================================= */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  transition: opacity 0.6s var(--ease), transform 0.9s var(--ease);
}
.loader.is-done {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}
.loader__inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.loader__wordmark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.015em;
  color: var(--on-dark);
}
.loader__wordmark em { color: var(--orange); font-style: italic; font-weight: 800; }
.loader__bar {
  height: 1px;
  background: var(--on-dark-faint);
  position: relative;
  overflow: hidden;
}
.loader__bar-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--orange);
  transition: right 0.25s linear;
}
.loader__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}

/* =========================================================
   CURSOR
   ========================================================= */

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
  opacity: 0;
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hover { width: 56px; height: 56px; }
@media (hover: none) { .cursor { display: none; } }

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(234, 229, 222, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--ink-line);
}

.nav__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.nav__logo em { color: var(--orange); font-style: italic; font-weight: 800; }

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--orange);
  transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 9px 14px;
  border: 1px solid var(--ink-faint);
  transition: border-color 0.3s var(--ease);
}
.lang-toggle:hover { border-color: var(--ink); }
.lang-toggle__option { opacity: 0.45; transition: opacity 0.3s var(--ease); }
.lang-toggle__option.is-active { opacity: 1; color: var(--orange); }
.lang-toggle__sep { opacity: 0.3; }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  letter-spacing: -0.01em;
}
.mobile-menu__inner a { transition: color 0.3s var(--ease); }
.mobile-menu__inner a:hover { color: var(--orange); }
.mobile-menu__inner .btn { font-size: 16px; margin-top: 12px; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}

.hero__chrome {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.chrome-tl { top: 100px; left: var(--gutter); }
.chrome-tr { top: 100px; right: var(--gutter); }

.hero__bars {
  position: absolute;
  top: 130px;
  right: var(--gutter);
  display: flex;
  gap: 8px;
  pointer-events: none;
}
.hero__bars span {
  display: block;
  width: 3px;
  background: var(--orange);
  opacity: 0;
}
.hero__bars span:nth-child(1) { height: 48px; }
.hero__bars span:nth-child(2) { height: 72px; }
.hero__bars span:nth-child(3) { height: 56px; }
.hero__bars span:nth-child(4) { height: 96px; }
.hero__bars span:nth-child(5) { height: 64px; }

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 40px;
  padding: 10px 16px;
  border: 1px solid var(--ink-faint);
  width: max-content;
  background: var(--bg-cream);
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(243, 106, 45, 0.55); }
  100% { box-shadow: 0 0 0 16px rgba(243, 106, 45, 0); }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 9.4vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 48px;
  color: var(--ink);
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}
.hero__title em {
  font-style: italic;
  font-weight: 800;
  color: var(--orange);
}
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(110%); }

.hero__lead {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin-bottom: 110px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid var(--ink-faint);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 24px;
  border-right: 1px solid var(--ink-faint);
}
.stat:last-child { border-right: 0; padding-right: 0; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(44px, 4.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
  font-feature-settings: 'tnum';
}
.stat__lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__scroll svg { width: 18px; height: 18px; animation: bounce 2.2s var(--ease) infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee {
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  overflow: hidden;
  padding: 32px 0;
  background: var(--bg-warm);
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1;
}
.marquee__track em { color: var(--orange); font-style: normal; }
.marquee__track > span { display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   CONCEPTO (3 pillars)
   ========================================================= */

.concepto {
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-faint);
}
.pillar {
  padding: 48px 36px 32px 0;
  border-right: 1px solid var(--ink-faint);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-height: 360px;
}
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.6s var(--ease);
}
.pillar:hover::before { width: 60px; }

.pillar__num {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 8px;
}
.pillar__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pillar p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 36ch;
}

/* =========================================================
   ENFOQUES (5 days sticky)
   ========================================================= */

.enfoques {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}

.enfoques__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  margin-top: 48px;
}

.enfoque-card {
  position: sticky;
  top: calc(80px + (var(--i) * 18px));
  background: var(--bg-cream);
  border: 1px solid var(--ink-faint);
  overflow: hidden;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.enfoque-card:nth-child(even) { background: var(--bg); }

.enfoque-card__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  padding: clamp(36px, 5vw, 64px);
  align-items: stretch;
  min-height: clamp(320px, 38vh, 420px);
}

.enfoque-card__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid var(--ink-faint);
  padding-right: 40px;
}
.enfoque-card__date {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.enfoque-card__num {
  font-family: var(--f-display);
  font-size: clamp(96px, 11vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: var(--ink);
  font-feature-settings: 'tnum';
}
.enfoque-card__num em {
  font-style: italic;
  font-weight: 800;
  color: var(--orange);
}

.enfoque-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.enfoque-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.enfoque-card__desc {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.55;
}
.enfoque-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.enfoque-card__tags li {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--ink-faint);
  color: var(--ink-soft);
}

/* =========================================================
   PROGRAMA (agenda con tabs)
   ========================================================= */

.programa {
  padding: clamp(96px, 14vw, 180px) 0;
}

.programa__tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 64px;
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}
.programa__tab {
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-soft);
  border-right: 1px solid var(--ink-faint);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  position: relative;
}
.programa__tab:last-child { border-right: 0; }
.programa__tab::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.programa__tab:hover::after { transform: scaleX(0.4); }
.programa__tab.is-active::after { transform: scaleX(1); }
.programa__tab.is-active { color: var(--ink); }
.programa__tab-num {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum';
}
.programa__tab-num em { font-style: italic; font-weight: 800; color: var(--orange); }
.programa__tab-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programa__panel { display: none; }
.programa__panel.is-active { display: block; animation: fadeUp 0.5s var(--ease) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.schedule { display: flex; flex-direction: column; }
.session {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 36px;
  padding: 22px 0;
  border-top: 1px solid var(--ink-faint);
  align-items: baseline;
  transition: padding-left 0.4s var(--ease);
}
.session:hover { padding-left: 12px; }
.session:last-child { border-bottom: 1px solid var(--ink-faint); }

.session .time {
  font-size: 15px;
  color: var(--orange);
  font-weight: 500;
  font-feature-settings: 'tnum';
}
.session h4 {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
}
.session p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.session .flag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 6px;
}

.session--break .time { color: var(--ink-mute); }
.session--break h4 { font-style: italic; font-weight: 400; color: var(--ink-mute); }
.session--lecture h4 { color: var(--terracotta); }

/* =========================================================
   HIGHLIGHT (dark — presidential lecture)
   ========================================================= */

.highlight {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--bg-deep);
  color: var(--on-dark);
}
.highlight__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.highlight__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  padding-right: 40px;
}
.highlight__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-top: 14px;
}
.highlight__title em {
  font-style: italic;
  font-weight: 800;
  color: var(--orange);
}
.highlight__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.015em;
  color: var(--orange);
}
.highlight__role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-top: -22px;
}
.highlight__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  max-width: 30ch;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
  color: var(--on-dark);
}
.highlight__when {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  border-top: 1px solid var(--on-dark-faint);
  padding-top: 22px;
}

.highlight__right { display: flex; align-items: stretch; }

.portrait {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--orange) 50%, var(--peach) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  margin: 0;
}
.portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 247, 230, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(75, 36, 27, 0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.portrait__initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(140px, 16vw, 240px);
  line-height: 1;
  color: rgba(255, 247, 230, 0.85);
  font-style: italic;
  letter-spacing: -0.05em;
}
.portrait__caption {
  position: relative;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-cream);
  font-weight: 500;
}

/* When a real photo is present, replace the gradient placeholder */
.portrait--photo { background: var(--bg-dark); }
.portrait--photo::before {
  background: linear-gradient(
    180deg,
    rgba(10, 9, 8, 0) 50%,
    rgba(10, 9, 8, 0.35) 80%,
    rgba(10, 9, 8, 0.7) 100%
  );
  z-index: 2;
}
.portrait--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92) contrast(1.02);
}
.portrait--photo:hover img { transform: scale(1.03); }
.portrait--photo .portrait__initials { display: none; }
/* Subtle orange editorial accent — vertical tick from brand book */
.portrait--photo::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  width: 3px;
  height: 56px;
  background: var(--orange);
  z-index: 3;
}

/* =========================================================
   SPEAKERS
   ========================================================= */

.speakers {
  padding: clamp(96px, 14vw, 180px) 0;
}

.speakers__group { margin-bottom: 64px; }
.speakers__label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-faint);
  min-width: 220px;
}

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-faint);
}
.speaker {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--ink-faint);
  border-right: 1px solid var(--ink-faint);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease);
  min-height: 140px;
}
.speakers__grid > .speaker:nth-child(4n) { border-right: 0; }
.speaker:hover {
  background: var(--bg-cream);
  padding-left: 16px;
  padding-right: 8px;
}
.speaker__flag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.speaker h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.2;
}
.speaker p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.speaker--director { background: var(--orange); }
.speaker--director:hover { background: var(--orange-2); padding-left: 24px; }
.speaker--director .speaker__flag { color: var(--bg-cream); opacity: 0.8; }
.speaker--director h3 { color: var(--bg-cream); }
.speaker--director p { color: var(--bg-cream); opacity: 0.85; }

.speakers__note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-mute);
  font-style: italic;
}

/* =========================================================
   LIDERAZGO
   ========================================================= */

.leadership {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}

.leadership__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.leadership-card {
  padding: 48px 40px;
  background: var(--bg-cream);
  border: 1px solid var(--ink-faint);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.5s var(--ease);
}
.leadership-card:hover { transform: translateY(-6px); }

.leadership-card--alt { background: var(--bg-deep); color: var(--on-dark); border-color: transparent; }
.leadership-card--alt h3, .leadership-card--alt p { color: var(--on-dark); }

.leadership-card__when {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.leadership-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.leadership-card--alt .leadership-card__title { color: var(--on-dark); }
.leadership-card__title em {
  font-style: italic;
  font-weight: 800;
  color: var(--orange);
}
.leadership-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.leadership-card--alt p { color: var(--on-dark); opacity: 0.85; }

.leadership-card__hosts {
  margin-top: auto;
  border-top: 1px solid var(--ink-faint);
  padding-top: 18px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.leadership-card--alt .leadership-card__hosts { border-top-color: var(--on-dark-faint); }
.leadership-card__hosts > span:first-child {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.leadership-card--alt .leadership-card__hosts > span:first-child { color: var(--on-dark-mute); }
.leadership-card__hosts p {
  font-size: 14px;
  font-family: var(--f-body);
  letter-spacing: normal;
  color: var(--ink);
  font-weight: 500;
}
.leadership-card--alt .leadership-card__hosts p { color: var(--on-dark); }
.leadership-card__hosts .flag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 4px;
}
.leadership-card--alt .leadership-card__hosts .flag { color: var(--on-dark-mute); }

/* =========================================================
   INSCRIPCIÓN — pasos
   ========================================================= */

.inscripcion {
  padding: clamp(96px, 14vw, 180px) 0;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-faint);
}
.step {
  padding: 40px 32px 32px 0;
  border-right: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-height: 280px;
}
.step:last-child { border-right: 0; }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.6s var(--ease);
}
.step:hover::before { width: 72px; }

.step__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--orange);
  font-feature-settings: 'tnum';
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* =========================================================
   PRECIOS (dark section)
   ========================================================= */

.precios {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--bg-deep);
  color: var(--on-dark);
}
.precios .section-title { color: var(--on-dark); }
.precios .section-lead { color: var(--on-dark-mute); }

.tier-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(243, 106, 45, 0.08);
  border: 1px solid rgba(243, 106, 45, 0.35);
  color: var(--orange);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.tier-banner__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.2s infinite;
}

.precios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--on-dark-faint);
}

.precio {
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--on-dark-faint);
  position: relative;
  transition: background 0.5s var(--ease);
}
.precio:last-child { border-right: 0; }
.precio:hover { background: rgba(234, 229, 222, 0.03); }

.precio--active { background: rgba(243, 106, 45, 0.06); }
.precio--active:hover { background: rgba(243, 106, 45, 0.1); }

.precio__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--on-dark-faint);
}
.precio__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
  font-weight: 500;
}
.precio--active .precio__label { color: var(--orange); }
.precio__badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 100px;
  white-space: nowrap;
}
.precio__badge--soft { color: var(--on-dark-mute); border-color: var(--on-dark-faint); }
.precio__badge--final { color: var(--coral); border-color: var(--coral); }

.precio__amount {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.precio__currency {
  font-size: 14px;
  color: var(--on-dark-mute);
  padding-top: 18px;
  letter-spacing: 0.06em;
}
.precio__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--on-dark);
  font-feature-settings: 'tnum';
}
.precio--active .precio__num { color: var(--orange); }

.precio__dates {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark);
  border-top: 1px solid var(--on-dark-faint);
  padding-top: 20px;
}

.precio__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.precio__feats li {
  font-size: 14px;
  color: var(--on-dark);
  opacity: 0.85;
  padding-left: 28px;
  position: relative;
  line-height: 1.4;
}
.precio__feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 1px;
  background: var(--orange);
}

.precios__note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--on-dark-mute);
  line-height: 1.5;
  border-top: 1px solid var(--on-dark-faint);
  padding-top: 24px;
  max-width: 720px;
}

/* =========================================================
   SPONSORS
   ========================================================= */

.sponsors {
  padding: clamp(96px, 14vw, 180px) 0;
}

.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.sponsor-card {
  padding: 40px 36px 32px;
  border: 1px solid var(--ink-faint);
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.sponsor-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
}
.sponsor-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.6s var(--ease);
}
.sponsor-card:hover::after { width: 80px; }

.sponsor-card--hero {
  background: var(--ink);
  color: var(--on-dark);
  border-color: var(--ink);
}
.sponsor-card--hero:hover { background: var(--bg-deep); border-color: var(--bg-deep); }

.sponsor-card__tier {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.sponsor-card--hero .sponsor-card__tier { color: var(--peach); }

.sponsor-card__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.sponsor-card--hero .sponsor-card__name { color: var(--on-dark); }

.sponsor-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 44ch;
}
.sponsor-card--hero p { color: var(--on-dark); opacity: 0.85; }

/* =========================================================
   DIRECTOR
   ========================================================= */

.director {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--ink-faint);
}

.director__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: stretch;
}

.director__portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--orange) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.director__portrait .portrait__initials {
  color: rgba(255, 247, 230, 0.8);
}
.director__portrait .portrait__caption {
  position: relative;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-cream);
  font-weight: 500;
}

.director__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.director__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 12px;
}
.director__name em {
  font-style: italic;
  font-weight: 800;
  color: var(--orange);
}
.director__bio {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
  border-top: 1px solid var(--ink-faint);
  padding-top: 24px;
}
.director__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.director__contact span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 6px;
}
.director__contact p {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.cta-final {
  padding: clamp(120px, 18vw, 220px) 0;
  text-align: center;
  background: var(--bg-deep);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-final .container { position: relative; z-index: 3; }
.cta-final .kicker { margin-bottom: 32px; }
.cta-final__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--on-dark);
  margin-bottom: 48px;
}
.cta-final__title em {
  font-style: italic;
  font-weight: 800;
  color: var(--orange);
  display: block;
}

/* YouTube background — iframe centered + cover via aspect scaling */
.cta-final__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.cta-final__video.is-ready { opacity: 0.22; }
.cta-final__video #ctaVideoPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 cover — use the larger of 100vw or 56.25vh (= 100vw * 9/16) */
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.08);
  filter: grayscale(0.2) contrast(1.05);
  pointer-events: none;
}
.cta-final__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.cta-final__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.85) 70%, rgba(10, 9, 8, 0.95) 100%);
  pointer-events: none;
}

/* =========================================================
   WHATSAPP FAB
   ========================================================= */

.wa-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.35),
    0 2px 6px rgba(20, 17, 15, 0.18);
  z-index: 200;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  pointer-events: none;
  animation: wa-enter 0.6s var(--ease) 1.6s forwards;
}
@keyframes wa-enter {
  to { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
}
.wa-fab:hover {
  background: #1ebd5b;
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 14px 32px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(20, 17, 15, 0.22);
}
.wa-fab__icon {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 2;
}
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 1;
  animation: wa-pulse 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0;    }
  100% { transform: scale(1.6); opacity: 0;    }
}
.wa-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: var(--bg-cream);
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.wa-fab__tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--ink);
}
.wa-fab:hover .wa-fab__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 640px) {
  .wa-fab { bottom: 18px; right: 18px; width: 56px; height: 56px; }
  .wa-fab__icon { width: 26px; height: 26px; }
  .wa-fab__tooltip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab__pulse { animation: none; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 72px 0 36px;
  background: var(--bg);
  border-top: 1px solid var(--ink-faint);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-faint);
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.footer__brand em { color: var(--orange); font-style: italic; font-weight: 800; }
.footer__nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.footer__nav a:hover { color: var(--orange); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom a:hover { color: var(--orange); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--ink-faint); padding-bottom: 24px; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--ink-faint); padding-right: 0; min-height: auto; padding-bottom: 32px; }
  .pillar:last-child { border-bottom: 0; }

  .enfoque-card__inner { grid-template-columns: 1fr; gap: 32px; }
  .enfoque-card__head { flex-direction: row; border-right: 0; border-bottom: 1px solid var(--ink-faint); padding-right: 0; padding-bottom: 24px; justify-content: space-between; align-items: center; }

  .programa__tabs { grid-template-columns: repeat(5, 1fr); }
  .programa__tab-lbl { display: none; }
  .programa__tab { padding: 18px 12px; align-items: center; }

  .highlight__grid { grid-template-columns: 1fr; gap: 48px; }
  .highlight__left { padding-right: 0; }

  .speakers__grid { grid-template-columns: repeat(2, 1fr); }
  .speakers__grid > .speaker:nth-child(4n) { border-right: 1px solid var(--ink-faint); }
  .speakers__grid > .speaker:nth-child(2n) { border-right: 0; }

  .leadership__grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; }
  .step:nth-child(odd) { border-right: 1px solid var(--ink-faint); }

  .precios__grid { grid-template-columns: 1fr; }
  .precio { border-right: 0; border-bottom: 1px solid var(--on-dark-faint); }
  .precio:last-child { border-bottom: 0; }

  .sponsors__grid { grid-template-columns: 1fr; }

  .director__grid { grid-template-columns: 1fr; }
  .director__portrait { max-width: 480px; }
}

@media (max-width: 640px) {
  .nav__actions .btn--small { display: none; }
  .hero { padding-top: 120px; }
  .chrome-tl, .chrome-tr, .hero__bars { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }

  .marquee__track { font-size: 32px; gap: 32px; }

  .enfoque-card__num { font-size: 88px; }
  .enfoque-card__title { font-size: 36px; }

  .session { grid-template-columns: 80px 1fr; gap: 16px; padding: 18px 0; }
  .session .time { font-size: 13px; }

  .speakers__grid { grid-template-columns: 1fr; }
  .speakers__grid > .speaker { border-right: 0 !important; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0 !important; }

  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; }
  .footer__nav { flex-wrap: wrap; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal-line > span { transform: none !important; }
  .hero__bars span { opacity: 0.7 !important; }
}
