/* ============================================================
   eleva advisory — sistema visual
   Concepto: "la línea que se eleva"
   Identidad: Plataforma de Marca V05 + Recursos Gráficos 2026
   Tres estados: papel · sala (negro+luz azul) · azul pleno
   Construida por Non · Junio 2026
   ============================================================ */

/* ---------- Tipografía ---------- */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Italic-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/GeistMono-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --blue: #224AE8;
  --blue-lift: #3D63FF;
  --blue-glow: #5C7BFF;
  --blue-deep: #16308F;
  --blue-ink: #0B1430;

  --ink: #0B0B0D;
  --ink-80: #2A2A2E;
  --ink-55: #5C5C62;
  --ink-35: #9A9A9E;

  --paper: #FBFBF9;
  --paper-2: #F2F2EE;
  --line: #E3E3DE;
  --line-2: #D2D2CC;

  --void: #08080A;
  --void-2: #0E0E12;
  --line-dark: #232329;
  --line-dark-2: #34343C;

  --white-95: rgba(255,255,255,.95);
  --white-70: rgba(255,255,255,.70);
  --white-45: rgba(255,255,255,.45);
  --white-22: rgba(255,255,255,.22);

  --sans: "Archivo", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --w-max: 1440px;
  --gutter: clamp(22px, 5vw, 96px);

  --e-out: cubic-bezier(.16, 1, .3, 1);
  --e-io: cubic-bezier(.7, 0, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 420;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.theme-dark { background: var(--void); color: var(--white-95); }
::selection { background: var(--blue); color: #fff; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; }

.wrap {
  max-width: var(--w-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

/* grano global sutil — densidad, no ruido */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 1;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.theme-dark .grain { opacity: .07; mix-blend-mode: screen; }

/* barra de progreso de lectura (línea azul que se eleva) */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--blue-glow));
  z-index: 250;
  pointer-events: none;
}

/* ============================================================
   TIPOGRAFÍA — escala con tensión
   ============================================================ */
.display {
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variation-settings: "wght" 600, "wdth" 100;
}
.display.xl { font-size: clamp(3rem, 9vw, 8.2rem); letter-spacing: -0.045em; }
.display.md { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -0.035em; }
.h-section {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 560;
  letter-spacing: -0.032em;
}
.h-section.sm { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* énfasis tipográfico dentro de display */
.display em, .h-section em { font-style: italic; font-weight: 500; }
.tint { color: var(--blue); }
.theme-dark .tint, .on-dark .tint { color: var(--blue-glow); }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--ink-55);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.kicker::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(34,74,232,.5);
  animation: pulse 3.2s var(--e-io) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,74,232,.45); }
  50% { box-shadow: 0 0 0 5px rgba(34,74,232,0); }
}
.on-dark .kicker, .section.dark .kicker, .theme-dark .kicker { color: var(--white-45); }

/* compat: el viejo .eyebrow ahora hereda el lenguaje del kicker */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--ink-55);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--blue);
  display: inline-block;
}
.on-dark .eyebrow, .section.dark .eyebrow, .theme-dark .eyebrow { color: var(--white-45); }

.lede {
  color: var(--ink-55);
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  line-height: 1.5;
  max-width: 52ch;
  font-weight: 400;
  letter-spacing: -0.011em;
}
.on-dark .lede, .section.dark .lede, .theme-dark .lede { color: var(--white-70); }
.para { max-width: 60ch; margin-top: 20px; font-size: 1.05rem; line-height: 1.62; }
.para.muted { color: var(--ink-55); }
.on-dark .para.muted, .section.dark .para.muted, .theme-dark .para.muted { color: var(--white-70); }

.expanded { font-variation-settings: "wght" 580, "wdth" 125; }
.condensed { font-variation-settings: "wght" 600, "wdth" 78; }

/* ============================================================
   MOTION — primitivas de revelado
   ============================================================ */
/* revelado por línea (máscara) */
.lines { display: block; }
.line-mask { display: block; overflow: hidden; padding-bottom: .04em; }
.line-mask > span {
  display: block;
  transform: translateY(115%) rotate(2deg);
  opacity: 0;
  transition: transform 1.05s var(--e-out), opacity 1.05s var(--e-out);
  transition-delay: var(--d, 0s);
}
.revealed .line-mask > span,
.line-mask.in > span { transform: none; opacity: 1; }

/* revelado suave de bloque (reemplaza el fade plano) */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition: opacity 1s var(--e-out), transform 1.1s var(--e-out), filter 1s var(--e-out);
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: none; filter: none; }

/* aparición de pieza gráfica */
.rise {
  opacity: 0;
  transform: translateY(60px) scale(.97);
  transition: opacity 1.2s var(--e-out), transform 1.2s var(--e-out);
  transition-delay: var(--d, 0s);
}
.rise.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .rise { opacity: 1; transform: none; filter: none; transition: none; }
  .line-mask > span { transform: none; opacity: 1; transition: none; }
  html { scroll-behavior: auto; }
  .kicker::before { animation: none; }
}

/* ============================================================
   CTA / botones
   ============================================================ */
.cta {
  --c: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: var(--c);
  font-weight: 530;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 7px;
}
.cta .label { position: relative; }
.cta .label::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform .5s var(--e-out);
}
.cta:hover .label::after { transform: scaleX(0); }
.cta .label::before {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 100%; height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--e-out) .06s;
}
.cta:hover .label::before { transform: scaleX(1); }
.cta:hover { color: var(--blue); }
.cta .arrow {
  display: inline-block;
  transition: transform .5s var(--e-out);
  font-style: normal;
}
.cta:hover .arrow { transform: translateX(8px); }
.cta.large { font-size: clamp(1.2rem, 1.9vw, 1.55rem); }
.cta.quiet { --c: var(--ink-55); font-weight: 460; }
.on-dark .cta, .section.dark .cta, .theme-dark .cta { --c: #fff; }
.on-dark .cta:hover, .section.dark .cta:hover, .theme-dark .cta:hover { color: var(--blue-glow); }
.on-dark .cta .label::before, .section.dark .cta .label::before, .theme-dark .cta .label::before { background: var(--blue-glow); }
.on-dark .cta.quiet, .section.dark .cta.quiet, .theme-dark .cta.quiet { --c: var(--white-70); }

/* botón sólido (pill, magnético) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 19px 36px;
  font-size: 1.02rem;
  font-weight: 540;
  letter-spacing: -0.005em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--e-out);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 140% at 50% 120%, var(--blue-lift), var(--blue) 60%);
  opacity: 0;
  transition: opacity .5s var(--e-out);
}
.btn:hover::before { opacity: 1; }
.btn .arrow { transition: transform .5s var(--e-out); }
.btn:hover .arrow { transform: translateX(6px); }

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: transform .55s var(--e-out), background .5s var(--e-out), border-color .5s var(--e-out), backdrop-filter .5s var(--e-out);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(251,251,249,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.site-nav.hide { transform: translateY(-100%); }
.theme-dark .site-nav.scrolled, .site-nav.on-dark.scrolled {
  background: rgba(8,8,10,.66);
  border-bottom-color: var(--line-dark);
}
.nav-inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
}
.brand-mark { height: 22px; width: auto; overflow: visible; }
.brand-mark .iso { fill: var(--blue); transition: transform .6s var(--e-out); transform-origin: 280px 190px; }
.brand:hover .brand-mark .iso { transform: translateY(-3px); }
.brand-mark .letter { fill: currentColor; }
.theme-dark .brand, .on-dark .brand { color: #fff; }
.brand-descriptor {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .36em;
  color: var(--ink-55);
  transform: translateY(-1px);
}
.theme-dark .brand-descriptor, .on-dark .brand-descriptor { color: var(--white-45); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: lowercase;
}
.nav-links a {
  color: var(--ink-55);
  position: relative;
  padding: 6px 0;
  transition: color .35s var(--e-out);
  overflow: hidden;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--e-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.theme-dark .nav-links a, .on-dark .nav-links a { color: var(--white-70); }
.theme-dark .nav-links a:hover, .theme-dark .nav-links a.active,
.on-dark .nav-links a:hover, .on-dark .nav-links a.active { color: #fff; }
.nav-links .lang {
  color: var(--ink-35);
  cursor: pointer;
  font-family: var(--mono);
  text-transform: uppercase;
}
.theme-dark .nav-links .lang, .on-dark .nav-links .lang { color: var(--white-45); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 320;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.6px;
  background: currentColor;
  margin: 6px auto;
  transition: transform .45s var(--e-out), opacity .3s var(--e-out);
  color: var(--ink);
}
.theme-dark .nav-toggle span, .on-dark .nav-toggle span { color: #fff; }
body.menu-open .nav-toggle span { color: #fff; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

body.menu-open .site-nav {
  z-index: 320;
  transform: none;
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}
body.menu-open .brand { color: #fff; }
body.menu-open .brand-descriptor { color: var(--white-45); }

/* Menú móvil */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--e-out);
  overflow: hidden;
}
.mobile-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 110% 110%, rgba(34,74,232,.3), transparent 60%);
  pointer-events: none;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: #fff;
  font-size: clamp(2.1rem, 9vw, 3rem);
  font-weight: 580;
  letter-spacing: -0.035em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--e-out), transform .6s var(--e-out), color .3s var(--e-out);
  position: relative; z-index: 1;
}
.mobile-menu a:hover { color: var(--blue-glow); }
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: .12s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: .18s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: .24s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: .3s; }
.mobile-menu .mm-foot {
  margin-top: 44px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--white-45);
  position: relative; z-index: 1;
}
.mobile-menu .mobile-language {
  margin-top: 28px;
  border: 0;
  color: var(--blue-glow);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ============================================================
   SECCIONES — ritmo cromático
   ============================================================ */
.section { padding: clamp(96px, 13vw, 184px) 0; position: relative; }
.section.tight { padding: clamp(60px, 8vw, 104px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section.no-line { border-top: none; }
.section.warm { background: var(--paper-2); border-top: none; }

/* SALA — negro con luz azul, grano, profundidad */
.section.dark {
  background: var(--void);
  color: var(--white-95);
  border-top: none;
  overflow: hidden;
}
.section.dark.glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 680px at 88% 128%, rgba(34,74,232,.42), transparent 60%),
    radial-gradient(720px 520px at -8% -25%, rgba(34,74,232,.16), transparent 58%);
  pointer-events: none;
}
.section.dark > .wrap { position: relative; z-index: 2; }

/* AZUL PLENO — puntuación de marca */
.section.blue {
  background: var(--blue);
  color: #fff;
  border-top: none;
  overflow: hidden;
}
.section.blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(255,255,255,.16), transparent 55%),
    radial-gradient(900px 700px at 0% 120%, rgba(11,20,48,.5), transparent 60%);
  pointer-events: none;
}
.section.blue > .wrap { position: relative; z-index: 2; }
.section.blue .kicker { color: rgba(255,255,255,.7); }
.section.blue .kicker::before { background: #fff; box-shadow: none; animation: none; }
.section.blue .cta { --c: #fff; }
.section.blue .cta .label::before { background: #fff; }

/* ============================================================
   HERO — pieza cinematográfica "la sala donde se decide"
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--void);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 0 110px;
}
.hero .wrap { position: relative; z-index: 3; }

/* campo de luz azul que sigue al cursor */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 52% at var(--mx, 64%) var(--my, 44%), rgba(61,99,255,.34), rgba(34,74,232,.10) 42%, transparent 72%),
    radial-gradient(1200px 900px at 80% 122%, rgba(34,74,232,.20), transparent 60%),
    radial-gradient(900px 720px at 6% -12%, rgba(34,74,232,.10), transparent 55%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(130% 130% at 50% 32%, transparent 52%, rgba(0,0,0,.6));
}
.hero-noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .12; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* monumento: el isotipo "l" completo, en segundo plano (calmo, sin resplandor) */
.hero-monument {
  position: absolute;
  top: 50%; right: clamp(2%, 4vw, 7%);
  height: min(76%, 660px);
  z-index: 1;
  transform: translate(var(--mpx, 0px), calc(-50% + var(--mpy, 0px)));
  pointer-events: none;
  will-change: transform;
  opacity: .3;
}
.hero-monument .mono-halo { display: none; }
.hero-monument .mono-scan { display: none; }
.hero-monument .mono-main {
  position: relative;
  height: 100%; width: auto;
  filter: none;
}
.hero-monument .mono-main path { fill: var(--blue-deep); }
.hero-monument .mono-scan {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), #fff, var(--blue-glow), transparent);
  filter: blur(2px);
  opacity: 0;
}
@keyframes breathe { 0%,100% { opacity:.5; transform:scale(1); } 50% { opacity:.72; transform:scale(1.05); } }
@keyframes scan { 0% { opacity:0; bottom:0; } 8% { opacity:1; } 92% { opacity:1; } 100% { opacity:0; bottom:100%; } }

/* secuencia de carga */
.hero.preload .mono-main { clip-path: inset(100% 0 0 0); }
.hero.preload .mono-halo { opacity: 0; }
.hero.lit .mono-main { clip-path: inset(0 0 0 0); transition: clip-path 1.3s var(--e-out) .15s; }
.hero.lit .mono-halo { opacity: .42; transition: opacity 1.6s var(--e-out) .9s; }
.hero.lit .mono-scan { animation: scan 1.35s var(--e-out) .15s forwards; }

/* contenido */
.hero h1 {
  font-size: clamp(2.05rem, 4.5vw, 4.7rem);
  line-height: .96;
  letter-spacing: -0.042em;
  font-weight: 600;
  max-width: 16ch;
  margin-bottom: 8px;
  text-shadow: 0 2px 60px rgba(0,0,0,.45);
}
/* titular del hero: letras que emergen de la oscuridad, encendidas por la luz */
.hero h1 .wd { display: inline-block; white-space: nowrap; }
.hero h1 .ch { display: inline-block; opacity: 0; will-change: opacity, filter, transform; }
.hero h1 .ch.sp { width: .26em; }
@keyframes ignite {
  0%   { opacity: 0; color: #0c0c12; filter: blur(13px); transform: translateY(11px); text-shadow: none; }
  52%  { opacity: 1; color: #cdd9ff; filter: blur(0); transform: none; text-shadow: 0 0 26px rgba(92,123,255,.95), 0 0 54px rgba(34,74,232,.6); }
  100% { opacity: 1; color: #fff; filter: none; transform: none; text-shadow: 0 2px 60px rgba(0,0,0,.45); }
}
.hero.lit h1 .ch { animation: ignite 1s var(--e-out) both; animation-delay: calc(.14s + var(--i) * .02s); }

/* linterna: capa de brillo que revela las letras bajo el cursor */
.fl-wrap { position: relative; display: block; }
.h-glow {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
  z-index: 1;
  color: #dbe4ff !important;
  text-shadow: 0 0 16px rgba(92,123,255,.95), 0 0 38px rgba(34,74,232,.7);
  -webkit-mask-image: radial-gradient(210px circle at var(--gx, -9999px) var(--gy, -9999px), #000, rgba(0,0,0,.32) 46%, transparent 72%);
  mask-image: radial-gradient(210px circle at var(--gx, -9999px) var(--gy, -9999px), #000, rgba(0,0,0,.32) 46%, transparent 72%);
}
.h-glow .ch, .h-glow .line-mask > span {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
  color: inherit !important;
  text-shadow: inherit;
}

/* foco de luz que sigue al cursor en zonas oscuras */
.spot {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(closest-side circle at var(--mx, 50%) var(--my, 50%), rgba(61,99,255,.17), rgba(34,74,232,.05) 46%, transparent 68%);
  transition: background .28s linear;
}
.page-head.on-dark > .wrap { position: relative; z-index: 2; }
.hero .kicker { color: rgba(255,255,255,.74); }
.hero .lede { margin-top: 10px; color: var(--white-70); max-width: 44ch; }
.hero-tagline {
  margin-top: 28px;
  font-style: italic;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 460;
  position: relative;
  padding-left: 26px;
}
.hero-tagline::before {
  content: "";
  position: absolute;
  left: 0; top: .15em; bottom: .15em;
  width: 2px;
  background: var(--blue-glow);
  box-shadow: 0 0 14px rgba(61,99,255,.9);
}
.hero-cta { margin-top: 42px; }
.hero .cta { --c: #fff; }
.hero .cta:hover { color: var(--blue-glow); }
.hero .cta .label::before { background: var(--blue-glow); }

/* consola inferior: los 4 pilares */
.hero-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  border-top: 1px solid var(--line-dark);
  background: linear-gradient(transparent, rgba(8,8,10,.4));
}
.hero-strip .strip-inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-strip a {
  padding: 22px 24px 24px;
  border-left: 1px solid var(--line-dark);
  color: var(--white-70);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--e-out), background .4s var(--e-out);
}
.hero-strip a:first-child { border-left: none; padding-left: 0; }
.hero-strip a .sn { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--blue-glow); }
.hero-strip a:hover { color: #fff; }
.hero-strip a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--blue-glow);
  transition: width .45s var(--e-out);
}
.hero-strip a:first-child::after { left: 0; }
.hero-strip a:hover::after { width: 100%; }

/* nav invertido sobre hero oscuro */
.site-nav.over-dark .brand { color: #fff; }
.site-nav.over-dark .brand-descriptor { color: var(--white-45); }
.site-nav.over-dark .nav-links a { color: var(--white-70); }
.site-nav.over-dark .nav-links a:hover,
.site-nav.over-dark .nav-links a.active { color: #fff; }
.site-nav.over-dark .nav-toggle span { color: #fff; }
.site-nav.over-dark.scrolled {
  background: rgba(8,8,10,.55);
  border-bottom-color: var(--line-dark);
}

@media (prefers-reduced-motion: reduce) {
  .hero.preload .mono-main { clip-path: none; }
  .hero.preload .mono-halo { opacity: .42; }
  .hero-monument .mono-halo { animation: none; }
  .hero-monument .mono-scan { display: none; }
  .hero h1 .ch { opacity: 1 !important; color: #fff; animation: none !important; }
  .spot, .h-glow { display: none; }
}

/* ============================================================
   PILARES (home)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 6vw, 80px);
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--paper);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--e-out);
  min-height: 340px;
}
.pillar::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(34,74,232,.04));
  opacity: 0;
  transition: opacity .5s var(--e-out);
}
.pillar:hover { background: var(--void); color: #fff; }
.pillar .pillar-n {
  font-variation-settings: "wght" 500, "wdth" 110;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
  transition: color .5s var(--e-out);
}
.pillar:hover .pillar-n { color: var(--blue-glow); }
.pillar .pillar-cat {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-35);
  margin-bottom: 26px;
  transition: color .5s var(--e-out);
}
.pillar:hover .pillar-cat { color: var(--white-45); }
.pillar h3 {
  font-size: 1.42rem;
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 14ch;
}
.pillar p {
  font-size: .95rem;
  color: var(--ink-55);
  line-height: 1.5;
  margin-bottom: 24px;
  transition: color .5s var(--e-out);
}
.pillar:hover p { color: var(--white-70); }
.pillar .pillar-go {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .5s var(--e-out), gap .4s var(--e-out);
}
.pillar:hover .pillar-go { color: #fff; gap: 14px; }

/* ============================================================
   BANDA EDITORIAL / manifiesto
   ============================================================ */
.editorial-band { position: relative; overflow: hidden; }
.editorial-band .display { max-width: 20ch; position: relative; z-index: 2; }
.band-iso {
  position: absolute;
  right: -4%;
  bottom: -30%;
  height: 175%;
  width: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.band-iso path { fill: rgba(34,74,232,.06); }
.section.warm .band-iso path { fill: rgba(34,74,232,.07); }

/* ============================================================
   GRID DOS COLUMNAS / firma
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(44px, 6vw, 120px);
  align-items: start;
}
.two-col.center { align-items: center; }

/* retrato institucional */
.portrait {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 100% at 80% 0%, #1A2566, transparent 55%),
    linear-gradient(155deg, #14141A 0%, #0C0C12 55%, #0A1030 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.portrait .p-iso {
  position: absolute;
  right: -14%; top: 10%;
  height: 84%;
  opacity: .22;
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: grayscale(1) contrast(1.03);
}
.portrait.has-photo .p-iso { opacity: .14; mix-blend-mode: screen; z-index: 1; }
.portrait .p-iso path { fill: var(--blue-glow); }
.portrait .p-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--white-45);
  padding: 18px 20px;
  position: relative; z-index: 1;
}
.portrait-mark { align-items: center; justify-content: center; }
.portrait-mark .p-mark { height: 100%; width: auto; }
.portrait-mark .p-mark path { fill: #000; }

.portrait-card { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 20px; }
.portrait-card .name { font-size: 1.15rem; font-weight: 580; letter-spacing: -0.02em; }
.portrait-card p { font-size: .95rem; color: var(--ink-55); margin-top: 8px; line-height: 1.55; }
.portrait-card .cta { margin-top: 16px; font-size: .92rem; }

/* ============================================================
   PRUEBA SOCIAL — marquee
   ============================================================ */
.marquee {
  margin-top: clamp(44px, 5vw, 68px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee .client {
  font-variation-settings: "wght" 560, "wdth" 110;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--ink-35);
  white-space: nowrap;
  transition: color .4s var(--e-out);
}
.marquee .client:hover { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; }
}

/* ============================================================
   OBSERVACIÓN destacada
   ============================================================ */
.observation { max-width: 24ch; }
.observation-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: end; }
.observation .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-55);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 26px;
}
.observation h3 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.06;
  font-weight: 560;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  max-width: 18ch;
}
.observation-side p { color: var(--ink-55); font-size: 1.05rem; line-height: 1.6; }
.cta-row { display: flex; gap: 48px; flex-wrap: wrap; align-items: baseline; }

/* cierre oscuro */
.closing .display { max-width: 17ch; }
.closing .cta-row { margin-top: clamp(34px, 4vw, 52px); }

/* ============================================================
   PÁGINAS INTERIORES
   ============================================================ */
.page-head {
  padding-top: clamp(160px, 20vh, 240px);
  padding-bottom: clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.page-head .display { max-width: 20ch; position: relative; z-index: 2; }
.page-head .lede { margin-top: 30px; position: relative; z-index: 2; }
.page-head .page-iso {
  position: absolute;
  right: -6%; top: 50%;
  height: 150%;
  transform: translateY(-50%);
  opacity: .045;
  z-index: 0;
  pointer-events: none;
}
.page-head .page-iso path { fill: var(--blue); }

/* filas-capítulo numeradas */
.chapter-rows { margin-top: clamp(28px, 4vw, 48px); }
.chapter-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(34px, 4.5vw, 58px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.chapter-row:last-child { border-bottom: 1px solid var(--line); }
.chapter-row::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width .7s var(--e-out);
}
.chapter-row.in::before { width: 100%; }
.chapter-row .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--blue);
  line-height: 1.7;
}
.chapter-row h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 26ch;
}
.chapter-row p { color: var(--ink-55); margin-top: 14px; max-width: 60ch; font-size: 1.05rem; line-height: 1.6; }
.chapter-row .cta { margin-top: 24px; font-size: .98rem; }

/* tres movimientos / pasos */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(44px, 5vw, 72px);
  counter-reset: step;
}
.step { position: relative; padding-top: 28px; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 2px;
  background: var(--blue);
}
.step .num {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--blue);
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.step h4 {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 18ch;
}
.step p { font-size: 1rem; color: var(--ink-55); line-height: 1.6; }
.section.dark .step p, .on-dark .step p { color: var(--white-70); }

/* lista de servicios */
.dash-list { margin-top: 16px; display: flex; flex-direction: column; }
.dash-list li {
  padding: 16px 0 16px 30px;
  position: relative;
  color: var(--ink-80);
  font-size: 1.05rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--e-out), color .35s var(--e-out);
}
.dash-list li:first-child { border-top: 1px solid var(--line); }
.dash-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 1.5px;
  background: var(--blue);
  transition: width .4s var(--e-out);
}
.dash-list li:hover { padding-left: 38px; color: var(--ink); }
.dash-list li:hover::before { width: 26px; }
.on-dark .dash-list li, .section.dark .dash-list li { color: var(--white-70); border-color: var(--line-dark); }
.on-dark .dash-list li:first-child, .section.dark .dash-list li:first-child { border-color: var(--line-dark); }
.dash-list li strong {
  display: block;
  color: var(--ink);
  font-variation-settings: 'wght' 600, 'wdth' 100;
  margin-bottom: 4px;
}
.on-dark .dash-list li strong, .section.dark .dash-list li strong { color: #fff; }

/* fuente / nota al pie en letra pequeña */
.micro-source {
  display: block;
  margin-top: 16px;
  font-size: .76rem;
  line-height: 1.5;
  letter-spacing: .01em;
  color: var(--ink-55);
  max-width: 58ch;
}
.on-dark .micro-source, .section.dark .micro-source, .theme-dark .micro-source { color: var(--white-45); }

/* caso editorial */
.case { max-width: 70ch; }
.case .stamp {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.case .stamp::before { content: ""; width: 28px; height: 1.5px; background: var(--blue); }
.case h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.case p { color: var(--ink-55); margin-top: 16px; max-width: 64ch; font-size: 1.08rem; line-height: 1.65; }

/* banda candidatos */
.candidates-band {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 36px;
  flex-wrap: wrap;
}
.candidates-band p { max-width: 46ch; margin-top: 10px; }
.candidates-band .cta { margin-top: 0; }

/* ============================================================
   OBSERVATORIO
   ============================================================ */
.cat-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.cat {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-55);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 9px 17px;
  cursor: pointer;
  background: none;
  transition: all .35s var(--e-out);
}
.cat:hover { border-color: var(--ink); color: var(--ink); }
.cat.on { color: #fff; background: var(--blue); border-color: var(--blue); }

.articles { max-width: 980px; }
.article-row {
  display: grid;
  grid-template-columns: 160px 1fr 40px;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(28px, 3.6vw, 44px) 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  align-items: baseline;
  position: relative;
}
.article-row:last-child { border-bottom: 1px solid var(--line); }
.article-row::before {
  content: "";
  position: absolute;
  left: -16px; right: -16px; top: 0; bottom: 0;
  background: var(--paper-2);
  opacity: 0;
  z-index: -1;
  border-radius: 6px;
  transition: opacity .4s var(--e-out);
}
.article-row:hover::before { opacity: 1; }
.article-row .date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-55);
  text-transform: lowercase;
  line-height: 1.6;
}
.article-row .cat-mini {
  display: block;
  font-size: 10px;
  color: var(--ink-35);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 8px;
}
.article-row h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 560;
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin-bottom: 10px;
  transition: color .35s var(--e-out);
}
.article-row:hover h3 { color: var(--blue); }
.article-row p { font-size: 1.02rem; color: var(--ink-55); max-width: 56ch; }
.article-row .ar-go {
  font-size: 20px; color: var(--ink-35);
  transition: transform .45s var(--e-out), color .35s var(--e-out);
  align-self: center;
}
.article-row:hover .ar-go { transform: translateX(8px); color: var(--blue); }
.article-row.hidden { display: none; }

/* artículo */
.article-body { max-width: 64ch; margin: 0 auto; }
.article-body .marker { margin-bottom: 40px; }
.article-body .marker svg { height: 58px; width: auto; }
.article-body .marker path { fill: var(--blue); }
.article-body h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.article-body .meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-55);
  text-transform: lowercase;
  margin-bottom: clamp(44px, 5vw, 68px);
  padding-bottom: clamp(44px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
}
.article-body p { margin-bottom: 28px; font-size: 1.22rem; line-height: 1.68; color: var(--ink-80); }
.article-body p strong { color: var(--ink); font-weight: 580; }
.article-body .pull {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  font-weight: 560;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding-left: 32px;
  margin: 52px 0;
  position: relative;
}
.article-body .pull::before {
  content: "";
  position: absolute;
  left: 0; top: .1em; bottom: .1em;
  width: 3px;
  background: var(--blue);
}
.article-body .article-subhead {
  margin: 52px 0 18px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 580;
  line-height: 1.12;
  color: var(--ink);
}

/* ============================================================
   CONVERSEMOS (oscuro)
   ============================================================ */
.conv-direct {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(44px, 6vw, 104px);
  margin-top: clamp(52px, 6vw, 88px);
  align-items: start;
}
.conv-person { border-right: 1px solid var(--line-dark); padding-right: clamp(32px, 4vw, 64px); }
.conv-person .portrait { margin-bottom: 28px; }
.conv-person .conv-note { margin-top: clamp(36px, 5vw, 56px); }
.conv-person .name { font-size: 1.35rem; font-weight: 580; letter-spacing: -0.025em; color: #fff; }
.conv-person .role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-45);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 8px 0 20px;
}
.conv-person p { font-size: .98rem; color: var(--white-70); line-height: 1.6; }
.conv-person .cta { font-size: .92rem; margin-top: 20px; }

.conv-channels { display: flex; flex-direction: column; }
.conv-channel {
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: clamp(20px, 3vw, 44px);
  align-items: baseline;
  transition: padding-left .45s var(--e-out);
  position: relative;
}
.conv-channel::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--blue-glow);
  transition: width .5s var(--e-out);
}
.conv-channel:first-child { padding-top: 0; }
.conv-channel:hover { padding-left: 16px; }
.conv-channel:hover::after { width: 100%; }
.conv-channel .ch-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-45);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.conv-channel .ch-target {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 540;
  color: #fff;
  letter-spacing: -0.03em;
  transition: color .35s var(--e-out);
  word-break: break-word;
}
.conv-channel:hover .ch-target { color: var(--blue-glow); }
.conv-channel .ch-arrow {
  font-size: 20px;
  color: var(--white-45);
  transition: transform .45s var(--e-out), color .35s var(--e-out);
}
.conv-channel:hover .ch-arrow { color: var(--blue-glow); transform: translateX(8px); }

.conv-letter {
  margin-top: clamp(64px, 9vw, 116px);
  padding-top: clamp(48px, 6vw, 76px);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(44px, 6vw, 104px);
}
.conv-letter .intro h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #fff;
  max-width: 15ch;
  margin-bottom: 20px;
}
.conv-letter .intro p { color: var(--white-70); max-width: 36ch; font-size: 1.05rem; }
.conv-form { display: flex; flex-direction: column; gap: 30px; }
.conv-field { display: flex; flex-direction: column; gap: 10px; }
.conv-field label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-45);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.conv-field input,
.conv-field select,
.conv-field textarea {
  border: none;
  border-bottom: 1px solid var(--line-dark-2);
  background: transparent;
  color: #fff;
  font-size: 1.08rem;
  font-family: inherit;
  padding: 10px 0 14px;
  border-radius: 0;
  outline: none;
  transition: border-color .35s var(--e-out);
  appearance: none;
  -webkit-appearance: none;
}
.conv-field select { cursor: pointer; }
.conv-field select option { background: var(--void); color: #fff; }
.conv-field textarea {
  border: 1px solid var(--line-dark-2);
  border-radius: 6px;
  padding: 18px;
  min-height: 140px;
  font-size: 1.05rem;
  line-height: 1.6;
  resize: vertical;
}
.conv-field input:focus, .conv-field select:focus, .conv-field textarea:focus { border-color: var(--blue-glow); }
.conv-field input::placeholder, .conv-field textarea::placeholder { color: #4A4A52; font-style: italic; }
.conv-form .btn { align-self: flex-start; margin-top: 4px; }
.conv-send-note { font-size: 13px; color: var(--white-45); font-style: italic; }

.conv-note {
  max-width: 56ch;
  padding: 24px 30px;
  border-left: 2px solid var(--blue-glow);
  font-size: 1.02rem;
  color: var(--white-70);
  font-style: italic;
  margin-top: clamp(60px, 8vw, 96px);
}
.conv-baseline {
  margin-top: clamp(44px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-45);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.conv-baseline a { transition: color .35s var(--e-out); }
.conv-baseline a:hover { color: var(--blue-glow); }

/* ============================================================
   TRAMA — campo texturado
   ============================================================ */
.trama {
  position: relative;
  height: clamp(220px, 30vw, 380px);
  background: linear-gradient(115deg, #060608 0%, #0B1430 36%, var(--blue-deep) 70%, var(--blue) 100%);
  overflow: hidden;
}
.trama svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .16;
}
.trama svg path { fill: #fff; }
.trama .trama-label {
  position: absolute;
  left: var(--gutter); bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--white-45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--void);
  color: var(--white-95);
  padding: clamp(80px, 10vw, 132px) 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 100% 135%, rgba(34,74,232,.28), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  position: relative;
  z-index: 2;
}
.footer-brand img { height: 70px; width: auto; }
.footer-brand .footer-manifesto {
  margin-top: 30px;
  font-size: 1.3rem;
  color: #fff;
  max-width: 16ch;
  line-height: 1.18;
  font-weight: 520;
  letter-spacing: -0.025em;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--white-45);
  font-weight: 500;
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  color: var(--white-70);
  font-size: .98rem;
  transition: color .35s var(--e-out), padding-left .4s var(--e-out);
}
.footer-col a:hover { color: #fff; padding-left: 6px; }
.footer-memberships {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(52px, 6vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  position: relative;
  z-index: 2;
}
.fm-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-45);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.fm-items {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
}
.fm-logo-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  opacity: .72;
  transition: opacity .3s var(--e-out);
}
.fm-logo-link:hover { opacity: 1; }
.fm-logo-link img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 132px;
  filter: grayscale(1) brightness(0) invert(1);
}
.fm-logo-link img[alt="CBA Board"] {
  height: 42px;
  max-width: 140px;
  filter: none;
}
.footer-base {
  margin-top: clamp(60px, 7vw, 96px);
  border-top: 1px solid var(--line-dark);
  padding: 28px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-45);
  text-transform: lowercase;
  letter-spacing: .05em;
  position: relative;
  z-index: 2;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-monument { right: clamp(1%, 3vw, 5%); height: min(64%, 520px); opacity: .92; }
  .hero-strip .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-strip a { border-top: 1px solid var(--line-dark); }
  .hero-strip a:nth-child(2) { border-left: 1px solid var(--line-dark); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding-bottom: 110px; }
  .hero-monument { right: 50%; transform: translate(50%, -50%); opacity: .42; height: min(54%, 460px); }
  .hero-strip { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .observation-wrap { grid-template-columns: 1fr; align-items: start; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .chapter-row { grid-template-columns: 1fr; gap: 14px; }
  .conv-direct { grid-template-columns: 1fr; }
  .conv-person { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line-dark); padding-bottom: 44px; }
  .conv-person .portrait { max-width: 360px; }
  .conv-letter { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 1fr; gap: 12px; }
  .article-row .ar-go { display: none; }
  .candidate-connect { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .conv-channel { grid-template-columns: 1fr; gap: 8px; }
  .conv-channel .ch-arrow { display: none; }
  .hero { min-height: auto; padding-top: 130px; }
  .footer-memberships { align-items: flex-start; flex-direction: column; }
}

/* ============================================================
   ACCESIBILIDAD
   ============================================================ */
.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 400;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 540;
  transform: translateY(-160%);
  transition: transform .35s var(--e-out);
}
.skip-link:focus { transform: none; outline: 2px solid #fff; outline-offset: 2px; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}
.theme-dark :focus-visible, .section.dark :focus-visible, .hero :focus-visible { outline-color: var(--blue-glow); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   WHATSAPP flotante
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 180;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #1F2A44, #0F1830);
  border: 1px solid rgba(92,123,255,.4);
  box-shadow: 0 10px 30px rgba(0,0,0,.32), 0 0 0 0 rgba(34,74,232,.5);
  color: #fff;
  transition: transform .4s var(--e-out), box-shadow .4s var(--e-out), background .4s var(--e-out);
  animation: waPulse 4s var(--e-io) infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 40px rgba(34,74,232,.4);
}
.wa-float::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--void);
  color: #fff;
  font-size: 13px;
  font-weight: 480;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--e-out), transform .35s var(--e-out);
}
.wa-float:hover::after { opacity: 1; transform: translateY(-50%); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,.32), 0 0 0 0 rgba(34,74,232,.4); }
  50% { box-shadow: 0 10px 30px rgba(0,0,0,.32), 0 0 0 12px rgba(34,74,232,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* Cleby: slot reservado (carga asíncrona futura, sin afectar layout) */
.cleby-slot {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: calc(clamp(18px, 3vw, 34px) + 74px);
  z-index: 170;
  width: 0; height: 0;
  pointer-events: none;
}

/* ============================================================
   FORMULARIO — estados accesibles + honeypot
   ============================================================ */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.conv-field.invalid input,
.conv-field.invalid select,
.conv-field.invalid textarea { border-color: #FF6B6B; }
.conv-field .field-error {
  font-size: 12px;
  color: #FF8585;
  font-style: italic;
  min-height: 0;
}
.form-status {
  font-size: 14px;
  margin-top: 4px;
  color: var(--blue-glow);
}

/* ============================================================
   NIVELACIÓN WOW — vida calibrada en cada sección
   ============================================================ */

/* Banda azul: luz que deriva + foco blanco al cursor */
.section.blue::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(38% 46% at 22% 30%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(40% 50% at 80% 70%, rgba(11,20,48,.45), transparent 62%);
  animation: drift 18s var(--e-io) infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(3%, -3%, 0) scale(1.08); }
}
.section.blue .spot {
  background: radial-gradient(closest-side circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.18), rgba(255,255,255,.05) 45%, transparent 66%);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) { .section.blue::after { animation: none; } }

/* Retrato institucional: reacciona al cursor (tilt 3D sutil) */
.portrait-tilt { perspective: 1100px; }
.portrait-tilt .portrait {
  transform: rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg));
  transition: transform .5s var(--e-out);
  transform-style: preserve-3d;
}
.portrait-tilt .portrait .p-iso { transform: translateZ(40px); }

/* Pasos: la marca azul crece al pasar */
.step { transition: transform .4s var(--e-out); }
.step:hover { transform: translateY(-4px); }
.step:hover::before { width: 72px; transition: width .45s var(--e-out); }

/* Filas-capítulo: realce vivo al pasar */
.chapter-row { transition: padding-left .45s var(--e-out); }
.chapter-row:hover { padding-left: 10px; }
.chapter-row:hover .num { color: var(--blue-lift); }

/* Observación destacada: acento vertical que dibuja + realce */
.observation { position: relative; padding-left: 30px; }
.observation::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 2px; height: 0;
  background: linear-gradient(var(--blue), transparent);
  transition: height 1s var(--e-out) .1s;
}
.observation.in::before, .reveal.in .observation::before { height: calc(100% - 4px); }
.observation-wrap.in .observation::before { height: calc(100% - 4px); }

/* Marca de cita en la observación */
.observation .meta { position: relative; }

/* Tarjetas de pilar: sombra de profundidad al pasar (además del invert) */
.pillar { transition: background .5s var(--e-out), transform .5s var(--e-out), box-shadow .5s var(--e-out); }
.pillar:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -28px rgba(8,8,12,.55); }

/* Cliente del marquee: realce azul al pasar */
.marquee .client:hover { color: var(--blue); }

/* CTA del footer y enlaces: subrayado vivo ya cubierto; reforzar foco */
.footer-col a:focus-visible { outline-offset: 4px; }

/* Teamtailor */
.content-slab {
  padding: clamp(72px, 10vw, 132px) 0;
  background: var(--void);
}
.content-slab.on-dark {
  color: var(--white-95);
}
.section-kicker {
  color: var(--blue-glow);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 5.7rem);
  line-height: .92;
  font-weight: 620;
  font-stretch: 96%;
}
.teamtailor-board {
  border-top: 1px solid var(--line-dark-2);
  padding-top: clamp(24px, 4vw, 44px);
}
.teamtailor-board a {
  color: inherit;
}
.teamtailor-board :is(input, select, button) {
  font-family: inherit;
}
.teamtailor-empty {
  color: var(--white-70);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.45;
  max-width: 760px;
  padding: 28px 0 4px;
}
.teamtailor-empty[hidden] {
  display: none;
}
.candidate-connect {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(40px, 6vw, 68px);
  border-bottom: 1px solid var(--line-dark-2);
}
.candidate-connect h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 600;
}
.candidate-connect p {
  max-width: 62ch;
  color: var(--white-70);
  font-size: 1.08rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .candidate-connect { grid-template-columns: 1fr; align-items: start; }
}
