/* ============================================================
   altruia — la IA del altruismo
   Sistema visual: negro · oro metálico · blanco hueso
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #060607;
  --bg-2: #0b0b0d;
  --panel: #101013;
  --ink: #f3f1ea;
  --ink-soft: #9b9ba2;
  --ink-dim: #6f6f76;
  --hair: rgba(255, 255, 255, 0.06);
  --hair-gold: rgba(214, 180, 92, 0.22);

  --gold: #e3c06a;
  --gold-deep: #b88a2d;
  --gold-light: #fff3c9;
  --gold-grad: linear-gradient(105deg, #b88a2d 0%, #e3c06a 28%, #fff3c9 50%, #e3c06a 72%, #9c7322 100%);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain overlay (texture) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--gold); text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* gold text */
.gold {
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.serif { font-family: "Fraunces", Georgia, serif; }

/* shimmer animation for hero word */
@keyframes shimmer { to { background-position: 200% center; } }
.shimmer {
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5.5s linear infinite;
}

/* scroll reveal — corto y solo vertical (los deslizamientos laterales daban tirones) */
.reveal { opacity: 0; transform: translate3d(0, 16px, 0); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------------- Header ---------------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  background: rgba(6, 6, 7, 0.72);
  border-bottom: 1px solid var(--hair);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 27px; letter-spacing: -0.5px;
  display: inline-flex; align-items: center; gap: 9px;
}
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-grad); box-shadow: 0 0 14px rgba(227,192,106,.7); }
.brand span { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.lnk { color: var(--ink-soft); font-size: 14.5px; position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a.lnk::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold-grad); transition: width .3s var(--ease); }
.nav-links a.lnk:hover { color: var(--ink); }
.nav-links a.lnk:hover::after { width: 100%; }
@media (max-width: 760px) { .nav-links { gap: 18px; } .nav-links a.lnk.hide-sm { display: none; } }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; border-radius: 100px;
  font-weight: 600; font-size: 14.5px; cursor: pointer; border: 0; letter-spacing: .2px;
  background: var(--gold-grad); background-size: 160% auto; color: #1c1505;
  transition: background-position .5s var(--ease), transform .15s var(--ease), box-shadow .3s;
  box-shadow: 0 8px 28px rgba(214, 180, 92, 0.20);
}
.btn:hover { background-position: right center; transform: translateY(-2px); color: #1c1505; box-shadow: 0 14px 40px rgba(214, 180, 92, 0.34); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--hair-gold); box-shadow: none; }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn.sm { padding: 11px 20px; font-size: 13.5px; }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: 150px 0 96px; text-align: center; isolation: isolate; }
.hero .aura {
  position: absolute; z-index: -1; top: -160px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(227, 192, 106, 0.18), rgba(184, 138, 45, 0.05) 55%, transparent 72%);
  filter: blur(10px); animation: floaty 12s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateX(-50%) translateY(0) scale(1); } 50% { transform: translateX(-50%) translateY(24px) scale(1.05); } }
.hero .grid-fade {
  position: absolute; inset: 0; z-index: -2; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--hair) 1px, transparent 1px), linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 30%, transparent 75%);
}
.kicker {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px 7px 12px; border-radius: 100px; margin-bottom: 30px;
  border: 1px solid var(--hair-gold); color: var(--gold-light); font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase;
  background: rgba(227, 192, 106, 0.04);
}
.kicker .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(227,192,106,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(227,192,106,.55); } 70% { box-shadow: 0 0 0 9px rgba(227,192,106,0); } 100% { box-shadow: 0 0 0 0 rgba(227,192,106,0); } }
.hero h1 {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(44px, 8vw, 92px); line-height: 1.0; letter-spacing: -2px;
  margin: 0 auto 24px; max-width: 14ch;
}
.hero p.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--ink-soft); max-width: 620px; margin: 0 auto 40px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .chips { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 56px; color: var(--ink-dim); font-size: 13px; letter-spacing: .3px; }
.hero .chips span { display: inline-flex; align-items: center; gap: 8px; }
.hero .chips .d { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .8; }

/* ---------------- Marquee ---------------- */
.marquee { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 22px 0; overflow: hidden; background: var(--bg-2); }
.marquee .track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: scroll 32s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee .item { font-family: "Fraunces", serif; font-size: 20px; color: var(--ink-dim); display: inline-flex; align-items: center; gap: 56px; }
.marquee .item::after { content: "✦"; color: var(--gold); font-size: 13px; }

/* ---------------- Sections ---------------- */
section { padding: 100px 0; }
.eyebrow { color: var(--gold); font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; font-size: 12px; }
h2 { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -1.2px; margin: 12px 0 18px; line-height: 1.08; }
.muted { color: var(--ink-soft); }
.sec-head { max-width: 640px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--hair-gold), transparent); border: 0; margin: 0; }

/* ---------------- Manifesto ---------------- */
.manifesto { text-align: center; }
.manifesto .big {
  font-family: "Fraunces", serif; font-weight: 400; font-size: clamp(26px, 4vw, 44px);
  line-height: 1.32; letter-spacing: -0.6px; max-width: 20ch; margin: 18px auto 0;
}
.manifesto .big em { font-style: italic; }

/* ---------------- Bento services ---------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 48px; }
.tile {
  position: relative; border-radius: 22px; padding: 30px; overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--bg-2)) padding-box,
              linear-gradient(160deg, var(--hair-gold), rgba(255,255,255,0.03) 40%) border-box;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tile::before { /* gold spotlight that follows the cursor */
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s var(--ease);
  background: radial-gradient(280px 280px at var(--mx, 50%) var(--my, 0%), rgba(227,192,106,0.16), transparent 65%);
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.tile:hover::before { opacity: 1; }
.tile.lg { grid-column: span 3; min-height: 280px; }
.tile.md { grid-column: span 2; min-height: 230px; }
.tile.feat {
  background: linear-gradient(170deg, rgba(227,192,106,0.10), var(--panel) 60%) padding-box,
              linear-gradient(160deg, var(--gold), rgba(255,255,255,0.04) 55%) border-box;
}
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .tile.lg, .tile.md { grid-column: span 1; } }
@media (max-width: 580px) { .bento { grid-template-columns: 1fr; } }

.tile .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  border: 1px solid var(--hair-gold); background: rgba(227,192,106,0.06); }
.tile .ic svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.tile h3 { font-family: "Fraunces", serif; font-weight: 600; font-size: 22px; margin: 0 0 10px; }
.tile p { color: var(--ink-soft); margin: 0; font-size: 14.5px; position: relative; }
.tile .tag { position: absolute; top: 26px; right: 26px; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--hair-gold); border-radius: 100px; padding: 4px 11px; }

/* ---------------- Cyber section ---------------- */
.cyber { background: linear-gradient(180deg, #08080a, var(--bg)); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.checklist { list-style: none; padding: 0; margin: 26px 0 0; }
.checklist li { position: relative; padding: 15px 0 15px 40px; color: var(--ink-soft); border-bottom: 1px solid var(--hair); font-size: 15px; }
.checklist li:last-child { border-bottom: 0; }
.checklist li svg { position: absolute; left: 4px; top: 16px; width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.checklist li strong { color: var(--ink); font-weight: 600; }

/* ---------------- Process ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; position: relative; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px; border-radius: 20px; border: 1px solid var(--hair); background: linear-gradient(180deg, var(--panel), var(--bg-2)); }
.step .num { font-family: "Fraunces", serif; font-size: 15px; font-weight: 600; color: #1c1505; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-grad); margin-bottom: 16px; }
.step h3 { font-family: "Fraunces", serif; font-weight: 600; font-size: 20px; margin: 0 0 8px; }
.step p { color: var(--ink-soft); margin: 0; font-size: 14.5px; }

/* ---------------- CTA band ---------------- */
.band { position: relative; overflow: hidden; text-align: center; border-radius: 30px; padding: 76px 40px;
  background: radial-gradient(700px 240px at 50% -10%, rgba(227,192,106,0.16), transparent 70%), linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--hair-gold); }
.band h2 { margin-top: 8px; }

/* ---------------- Footer ---------------- */
footer.site { border-top: 1px solid var(--hair); margin-top: 24px; padding: 60px 0 48px; color: var(--ink-soft); font-size: 14px; }
footer .cols { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
footer .cols p { margin: 6px 0; }
footer a { color: var(--ink-soft); transition: color .2s; }
footer a:hover { color: var(--gold); }
.legal { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--hair); font-size: 12.5px; line-height: 1.9; color: var(--ink-dim); }

/* ---------------- Stats strip ---------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { text-align: center; padding: 30px 16px; border-radius: 20px; border: 1px solid var(--hair); background: linear-gradient(180deg, var(--panel), var(--bg-2)); }
.stat .n { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(34px, 5vw, 50px); line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: var(--ink-soft); font-size: 13.5px; margin-top: 10px; letter-spacing: .2px; }

/* ---------------- Scroll progress ---------------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 100; background: var(--gold-grad); box-shadow: 0 0 12px rgba(227,192,106,.6); }

/* ---------------- Cursor glow ---------------- */
.cursor-glow { position: fixed; top: 0; left: 0; width: 440px; height: 440px; border-radius: 50%; z-index: 40; pointer-events: none;
  transform: translate(-50%, -50%); margin-left: -220px; margin-top: -220px;
  background: radial-gradient(closest-side, rgba(227,192,106,0.07), transparent 70%);
  transition: opacity .4s ease; opacity: 0; mix-blend-mode: screen; }
@media (hover: none) { .cursor-glow { display: none; } }

/* ---------------- Preloader ---------------- */
.preloader { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: var(--bg);
  transition: opacity .7s var(--ease), visibility .7s; }
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .pl { font-family: "Fraunces", serif; font-size: 34px; letter-spacing: -.5px; display: inline-flex; align-items: center; gap: 11px;
  background: var(--gold-grad); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 2.2s linear infinite; }
.preloader .pl .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--gold-grad); box-shadow: 0 0 18px rgba(227,192,106,.8); -webkit-text-fill-color: initial;
  animation: plpulse 1.3s var(--ease) infinite; }
@keyframes plpulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.55); opacity: .5; } }

/* ---------------- Legal / doc pages ---------------- */
.doc { max-width: 780px; margin: 0 auto; padding: 70px 24px; }
.doc h1 { font-family: "Fraunces", serif; font-weight: 600; font-size: 38px; letter-spacing: -0.6px; }
.doc h2 { font-family: "Fraunces", serif; font-size: 23px; margin-top: 38px; }
.doc p, .doc li { color: var(--ink-soft); }
.doc strong { color: var(--ink); }
.back { display: inline-block; margin-bottom: 28px; color: var(--gold); }

/* ---------------- Form ---------------- */
.field { display: block; margin: 18px 0; }
.field label { display: block; margin-bottom: 8px; font-size: 14px; color: var(--ink); }
.field input { width: 100%; padding: 14px 15px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--hair); color: var(--ink); font-size: 15px; }
.field input:focus { outline: none; border-color: var(--gold); }
.note { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   ▌ SISTEMA VISUAL v2 — refinamiento "best of the best"
   Profundidad cromática, oro vivo, vidrio, halos y micro-física
   ============================================================ */
:root {
  /* fondos con un punto de temperatura, no negro plano */
  --bg: #060508;
  --bg-2: #0a090d;
  --panel: #110f15;
  --panel-2: #15131b;

  /* oro recalibrado: más luz en el centro, más cobre en las puntas */
  --gold: #ecc873;
  --gold-deep: #b5832a;
  --gold-light: #fff6d6;
  --gold-grad: linear-gradient(105deg, #a9761f 0%, #e3c06a 26%, #fff6d6 50%, #e3c06a 74%, #936c1d 100%);
  --gold-soft: rgba(236, 200, 115, 0.14);
  --hair-gold: rgba(236, 200, 115, 0.20);

  /* sombras premium, multicapa */
  --sh-1: 0 1px 0 rgba(255,255,255,.04) inset, 0 18px 50px rgba(0,0,0,.42);
  --sh-2: 0 1px 0 rgba(255,255,255,.05) inset, 0 30px 80px rgba(0,0,0,.55);
  --glow-gold: 0 10px 36px rgba(214,180,92,.22);
}

/* fondo global vivo: auroras tenues en una capa fija compositada (sin repintar al scrollear) */
body { background: var(--bg); }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -10; pointer-events: none;
  background:
    radial-gradient(60% 42% at 82% 6%, rgba(236,200,115,.05), transparent 60%),
    radial-gradient(48% 38% at 8% 88%, rgba(184,138,45,.045), transparent 62%);
}

/* selección con color de marca */
::selection { background: rgba(236,200,115,.26); color: #fff7e0; }

/* foco accesible y elegante en todo lo interactivo */
a:focus-visible, .btn:focus-visible, summary:focus-visible, .burger:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px;
}

/* ---- Header: vidrio más fino + filo dorado al hacer scroll ---- */
header.site { transition: background .3s, border-color .3s, box-shadow .3s; }
header.site.scrolled {
  background: rgba(8, 7, 11, 0.72);
  border-bottom-color: var(--hair-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.brand { -webkit-tap-highlight-color: transparent; }

/* ---- Botón: brillo que recorre al pasar el cursor ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.55) 50%, transparent 75%);
  background-size: 220% 100%; background-position: 180% 0; opacity: .0;
  transition: background-position .7s var(--ease), opacity .3s;
}
.btn:hover::after { background-position: -40% 0; opacity: .9; }
.btn.ghost { backdrop-filter: blur(6px); background: rgba(255,255,255,.015); }

/* ---- Burger / menú móvil ---- */
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 11px; }
.burger span { display: block; height: 2px; border-radius: 2px; background: var(--ink); margin: 4px 0; transition: transform .3s var(--ease), opacity .25s; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: grid; gap: 4px; padding: 0 24px;
  max-height: 0; overflow: hidden; opacity: 0;
  background: rgba(8,7,11,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair); transition: max-height .4s var(--ease), opacity .3s, padding .4s var(--ease);
}
body.menu-open .mobile-nav { max-height: 70vh; opacity: 1; padding: 14px 24px 22px; }
.mobile-nav a { color: var(--ink-soft); padding: 13px 4px; border-bottom: 1px solid var(--hair); font-size: 16px; }
.mobile-nav a:last-of-type { border: 0; }
.mobile-nav a.btn { color: #1c1505; justify-content: center; margin-top: 10px; }
@media (max-width: 860px) { .burger { display: block; } .nav-links .lnk { display: none; } }
@media (max-width: 860px) { .nav-links { gap: 14px; } }

/* ---- Hero: orbe vidrio que respira (premium focal point) ---- */
.hero { padding-top: 168px; }
.hero .orb { position: absolute; z-index: -1; top: 4%; left: 50%; transform: translateX(-50%); width: min(560px, 80vw); height: min(560px, 80vw); pointer-events: none; }
.hero .orb span { position: absolute; inset: 0; border-radius: 50%; }
.hero .orb span:nth-child(1) {
  background: conic-gradient(from 120deg, rgba(236,200,115,.0), rgba(236,200,115,.22), rgba(255,246,214,.32), rgba(184,138,45,.15), rgba(236,200,115,.0));
  filter: blur(28px); opacity: .5; animation: spin 26s linear infinite;
}
.hero .orb span:nth-child(2) {
  inset: 22%; border: 1px solid var(--hair-gold); border-radius: 50%;
  box-shadow: 0 0 60px rgba(236,200,115,.12) inset; animation: spin 40s linear infinite reverse;
  -webkit-mask-image: linear-gradient(#000, transparent 70%); mask-image: linear-gradient(#000, transparent 70%);
}
.hero .orb span:nth-child(3) {
  inset: 40%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,246,214,.35), rgba(236,200,115,.08) 60%, transparent 72%);
  filter: blur(6px); animation: floaty 9s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero .orb span { animation: none !important; } }

.hero h1 { letter-spacing: -2.4px; }
.hero h1 .shimmer { padding: 0 .04em; }
.kicker { background: rgba(236,200,115,.05); box-shadow: 0 1px 0 rgba(255,255,255,.04) inset; }

/* tiles & cards reaccionan suavemente al tilt (data-tilt) */
[data-tilt] { transition: transform .35s var(--ease), box-shadow .4s var(--ease); transform-style: preserve-3d; will-change: transform; }

/* enlace dentro de tile */
.tile-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--gold); font-size: 13.5px; font-weight: 600; position: relative; }
.tile-link .arr { transition: transform .25s var(--ease); }
.tile:hover .tile-link .arr { transform: translateX(4px); }

/* el borde de las tiles ahora "vive" un poco más */
.tile { box-shadow: var(--sh-1); }
.tile:hover { box-shadow: var(--sh-2), var(--glow-gold); }

/* eyebrow con índice numerado dorado */
.eyebrow .idx {
  font-family: "Fraunces", serif; font-style: italic; margin-right: 8px; opacity: .65;
  -webkit-text-fill-color: var(--gold);
}

/* mejor ritmo entre secciones con filo dorado tenue */
section + section { position: relative; }

/* ============================================================
   ▌ PILLAR — secciones profundas alternas
   ============================================================ */
.pillar .split { gap: 64px; }
.pillar.alt { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.pillar h2 { margin-top: 10px; }
.order-first { order: -1; }
@media (max-width: 880px) { .order-first { order: 0; } }

/* lista de características con check dorado */
.feature-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 13px; }
.feature-list li { position: relative; padding-left: 32px; color: var(--ink-soft); font-size: 15.5px; }
.feature-list li strong { color: var(--ink); font-weight: 600; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c1505' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4.5 4.5L19 7'/%3E%3C/svg%3E") center/12px no-repeat,
    var(--gold-grad);
  box-shadow: 0 3px 10px rgba(214,180,92,.3);
}

/* panel de vidrio (visual lateral de cada pilar) */
.panel {
  position: relative; border-radius: 24px; padding: 26px;
  background: linear-gradient(180deg, var(--panel-2), var(--bg-2)) padding-box,
              linear-gradient(150deg, var(--hair-gold), rgba(255,255,255,.04) 45%) border-box;
  border: 1px solid transparent; box-shadow: var(--sh-2);
  overflow: hidden;
}
.panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 200px at 80% -10%, rgba(236,200,115,.12), transparent 60%); pointer-events: none; }
.panel-head { display: flex; align-items: center; gap: 10px; font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 22px; }
.panel-head .led { width: 8px; height: 8px; border-radius: 50%; background: #67e08a; box-shadow: 0 0 0 0 rgba(103,224,138,.6); animation: pulse 2.4s infinite; }

/* flujo de automatización (mini-diagrama) */
.flow { display: grid; gap: 0; }
.flow-row { display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: 14px; background: rgba(255,255,255,.02); border: 1px solid var(--hair); }
.flow-row b { display: block; font-size: 15px; color: var(--ink); }
.flow-row small { color: var(--ink-dim); font-size: 12.5px; }
.flow-row .fdot { flex: 0 0 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--gold); border: 1px solid var(--hair-gold); background: rgba(236,200,115,.06); }
.flow-row.done { border-color: var(--hair-gold); background: linear-gradient(120deg, rgba(236,200,115,.10), rgba(255,255,255,.02)); }
.flow-row.done .fdot { color: #1c1505; background: var(--gold-grad); border-color: transparent; }
.flow-line { width: 2px; height: 16px; margin-left: 28px; background: linear-gradient(var(--hair-gold), transparent); }

/* grid de tipos de contenido (pilar Crear) */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cg { display: flex; align-items: center; gap: 11px; padding: 16px; border-radius: 14px; border: 1px solid var(--hair); background: rgba(255,255,255,.02); color: var(--ink); font-size: 14.5px; font-weight: 600; transition: transform .3s var(--ease), border-color .3s; }
.cg:hover { transform: translateY(-3px); border-color: var(--hair-gold); }
.cg svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.avatar-tag { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding: 16px; border-radius: 16px; border: 1px solid var(--hair-gold); background: linear-gradient(120deg, rgba(236,200,115,.10), rgba(255,255,255,.02)); }
.avatar-tag b { display: block; color: var(--ink); }
.avatar-tag small { color: var(--ink-dim); font-size: 12.5px; }
.avatar-tag .halo { flex: 0 0 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff6d6, var(--gold) 45%, var(--gold-deep)); box-shadow: 0 0 24px rgba(236,200,115,.5); position: relative; }
.avatar-tag .halo::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--hair-gold); animation: spin 12s linear infinite; }

/* ============================================================
   ▌ ESCALAR — 3 cards
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  position: relative; border-radius: 22px; padding: 30px; overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--bg-2)) padding-box,
              linear-gradient(160deg, var(--hair-gold), rgba(255,255,255,.03) 42%) border-box;
  border: 1px solid transparent; box-shadow: var(--sh-1);
}
.card:hover { box-shadow: var(--sh-2), var(--glow-gold); }
.card .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid var(--hair-gold); background: rgba(236,200,115,.06); }
.card .ic svg { width: 25px; height: 25px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.card h3 { font-family: "Fraunces", serif; font-weight: 600; font-size: 21px; margin: 0 0 10px; }
.card > p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 16px; }
.mini { list-style: none; padding: 16px 0 0; margin: 0; border-top: 1px solid var(--hair); display: grid; gap: 9px; }
.mini li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 13.5px; }
.mini li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 2px; }

/* ============================================================
   ▌ SECTORES
   ============================================================ */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 900px) { .sector-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .sector-grid { grid-template-columns: 1fr; } }
.sector {
  padding: 24px 22px; border-radius: 18px; border: 1px solid var(--hair);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.sector:hover { transform: translateY(-4px); border-color: var(--hair-gold); box-shadow: var(--glow-gold); }
.sector .sic { font-size: 26px; display: block; margin-bottom: 12px; filter: saturate(1.1); }
.sector b { display: block; font-family: "Fraunces", serif; font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.sector small { color: var(--ink-dim); font-size: 13px; line-height: 1.5; display: block; }

/* ============================================================
   ▌ POR QUÉ ALTRUIA
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why { position: relative; padding: 30px 24px; border-radius: 20px; border: 1px solid var(--hair); background: linear-gradient(180deg, var(--panel), var(--bg-2)); transition: transform .35s var(--ease), border-color .35s; }
.why:hover { transform: translateY(-4px); border-color: var(--hair-gold); }
.why .wn { font-family: "Fraunces", serif; font-style: italic; font-size: 30px; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 14px; }
.why h3 { font-family: "Fraunces", serif; font-weight: 600; font-size: 19px; margin: 0 0 10px; line-height: 1.2; }
.why p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ============================================================
   ▌ FAQ acordeón
   ============================================================ */
.faq { max-width: 800px; margin: 44px auto 0; display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--hair); border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--bg-2)); transition: border-color .3s, box-shadow .3s;
}
.faq details[open] { border-color: var(--hair-gold); box-shadow: var(--glow-gold); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 24px; font-family: "Fraunces", serif; font-size: 18px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: 0 0 22px; height: 22px; position: relative; transition: transform .35s var(--ease); }
.faq summary .chev::before, .faq summary .chev::after { content: ""; position: absolute; top: 10px; width: 11px; height: 2px; border-radius: 2px; background: var(--gold); transition: transform .35s var(--ease); }
.faq summary .chev::before { left: 0; transform: rotate(45deg); }
.faq summary .chev::after { right: 0; transform: rotate(-45deg); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { color: var(--ink-soft); margin: 0; padding: 0 24px 24px; font-size: 15px; max-width: 70ch; }

/* ============================================================
   ▌ CTA band — más profundidad
   ============================================================ */
.band { box-shadow: var(--sh-2); }
.band::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  background: conic-gradient(from 0deg, transparent, rgba(236,200,115,.18), transparent 30%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; padding: 1px; opacity: .7; animation: spin 14s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .band::after { animation: none; } }

/* ============================================================
   ▌ FOOTER — columnas con cabecera
   ============================================================ */
.fhead { color: var(--ink); font-weight: 600; font-size: 13px; letter-spacing: .4px; margin-bottom: 12px !important; }
footer.site .cols { gap: 40px; }

/* utilidades */
.center { text-align: center; }
.small { font-size: 14px; }

/* ============================================================
   ▌ Tipografía cinética — palabra rotativa del hero
   ============================================================ */
.rotator { display: inline-block; transition: opacity .36s var(--ease), transform .36s var(--ease); }
.rotator.swap { opacity: 0; transform: translateY(-0.32em) rotateX(40deg); }

/* ============================================================
   ▌ INTEGRACIONES — strip de herramientas
   ============================================================ */
.integra .logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 880px; margin: 0 auto; }
.integra .logos span {
  font-family: "Fraunces", serif; font-size: 16px; color: var(--ink-soft);
  padding: 11px 20px; border-radius: 100px; border: 1px solid var(--hair);
  background: rgba(255,255,255,.015); transition: color .3s, border-color .3s, transform .3s var(--ease), background .3s;
}
.integra .logos span:hover { color: var(--gold-light); border-color: var(--hair-gold); transform: translateY(-3px); background: rgba(236,200,115,.06); }

/* ============================================================
   ▌ ANTES / DESPUÉS
   ============================================================ */
.vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; margin-top: 44px; }
@media (max-width: 820px) { .vs { grid-template-columns: 1fr; } }
.vs-col { border-radius: 22px; padding: 30px; border: 1px solid var(--hair); }
.vs-col.before { background: linear-gradient(180deg, #0e0d10, #0a090c); }
.vs-col.after {
  background: linear-gradient(170deg, rgba(236,200,115,.08), var(--panel) 60%) padding-box,
              linear-gradient(160deg, var(--gold), rgba(255,255,255,.04) 55%) border-box;
  border: 1px solid transparent; box-shadow: var(--glow-gold);
}
.vs-tag { display: inline-block; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-dim); border: 1px solid var(--hair); border-radius: 100px; padding: 6px 14px; margin-bottom: 20px; }
.vs-tag.gold-tag { color: #1c1505; background: var(--gold-grad); border-color: transparent; font-weight: 600; }
.vs-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.vs-col li { position: relative; padding-left: 30px; font-size: 15px; }
.vs-col.before li { color: var(--ink-dim); }
.vs-col.after li { color: var(--ink-soft); }
.vs-col.before li::before, .vs-col.after li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background-position: center; background-repeat: no-repeat; background-size: 11px; }
.vs-col.before li::before { border: 1px solid rgba(255,120,120,.3); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d98a8a' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E"); }
.vs-col.after li::before { background-color: rgba(236,200,115,.12); border: 1px solid var(--hair-gold); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ecc873' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4.5 4.5L19 7'/%3E%3C/svg%3E"); }
.vs-arrow { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--hair-gold); background: rgba(236,200,115,.05); margin: 0 auto; }
.vs-arrow svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 820px) { .vs-arrow { transform: rotate(90deg); } }

/* ============================================================
   ▌ CALCULADORA DE TIEMPO
   ============================================================ */
.calc-split { gap: 56px; align-items: center; }
.calc-field { margin: 22px 0; }
.calc-field label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 12px; }
.calc-field label b { font-family: "Fraunces", serif; font-size: 19px; color: var(--gold-light); }
.calc-field input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 100px; outline: none;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold)) no-repeat, var(--hair);
  background-size: 50% 100%, 100% 100%;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6d6, var(--gold) 55%); cursor: pointer;
  border: 2px solid #1c1505; box-shadow: 0 4px 14px rgba(214,180,92,.45); transition: transform .15s;
}
.calc-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc-field input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 2px solid #1c1505; box-shadow: 0 4px 14px rgba(214,180,92,.45); }
.calc-panel { border-radius: 24px; padding: 30px; display: grid; gap: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--bg-2)) padding-box,
              linear-gradient(150deg, var(--hair-gold), rgba(255,255,255,.04) 45%) border-box;
  border: 1px solid transparent; box-shadow: var(--sh-2); }
.calc-out { text-align: center; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.02); border: 1px solid var(--hair); }
.calc-out .big-num { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(38px, 6vw, 56px); line-height: 1; color: var(--ink); }
.calc-out .big-num.gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc-out .calc-lbl { display: block; margin-top: 10px; color: var(--ink-soft); font-size: 13.5px; letter-spacing: .2px; }

/* ============================================================
   ▌ Botón volver arriba
   ============================================================ */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 60; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; background: var(--gold-grad); box-shadow: var(--glow-gold);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.85); transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; stroke: #1c1505; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 640px) { .to-top { right: 16px; bottom: 16px; } }

/* ============================================================
   ▌ MICROINTERACCIONES v3 — scroll-driven
   ============================================================ */

/* subrayado dorado que se dibuja bajo los títulos centrados */
.sec-head.center h2.reveal { position: relative; }
.sec-head.center h2.reveal::after {
  content: ""; position: absolute; left: 50%; bottom: -16px; height: 2px; width: 0;
  transform: translateX(-50%); border-radius: 2px;
  background: var(--gold-grad); box-shadow: 0 0 14px rgba(236,200,115,.55);
  transition: width 1s var(--ease) .25s;
}
.sec-head.center h2.reveal.in::after { width: 66px; }
@media (prefers-reduced-motion: reduce) { .sec-head.center h2.reveal::after { transition: none; width: 66px; } }

/* conector que se dibuja entre los pasos del proceso */
.steps { position: relative; }
.steps .conn {
  position: absolute; top: 50px; left: 10%; right: 10%; height: 2px; z-index: 0; opacity: .55;
  background: linear-gradient(90deg, transparent, var(--hair-gold) 12%, var(--gold) 50%, var(--hair-gold) 88%, transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease);
}
.steps.drawn .conn { transform: scaleX(1); }
.steps .step { position: relative; z-index: 1; }
@media (max-width: 880px) { .steps .conn { display: none; } }
@media (prefers-reduced-motion: reduce) { .steps .conn { transition: none; transform: scaleX(1); } }

/* (Las entradas direccionales laterales se retiraron: deslizar bloques grandes en X
   provocaba repintados y sensación de tirón al bajar. Ahora todo entra con un sutil
   fundido vertical, heredado de .reveal.) */

/* el orbe del hero no debe tener transición (lo mueve el parallax por frame) */
.hero .orb { transition: none; }

/* ============================================================
   ▌ NIVEL AWWWARDS v4 — partículas, cursor, nav de puntos
   ============================================================ */

/* cursor personalizado (solo desktop, se activa por JS) */
.cur-dot, .cur-ring { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
  border-radius: 50%; mix-blend-mode: screen; margin-left: -4px; margin-top: -4px; will-change: transform; }
.cur-dot { width: 8px; height: 8px; background: var(--gold-light); box-shadow: 0 0 12px rgba(236,200,115,.9); }
.cur-ring { width: 38px; height: 38px; margin-left: -19px; margin-top: -19px; border: 1.5px solid rgba(236,200,115,.6);
  transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background .25s, border-color .25s; }
.cur-ring.big { width: 64px; height: 64px; margin-left: -32px; margin-top: -32px; border-color: rgba(236,200,115,.9); background: rgba(236,200,115,.06); }
.cur-ring.down { width: 28px; height: 28px; margin-left: -14px; margin-top: -14px; }
html.has-cursor, html.has-cursor * { cursor: none !important; }
@media (hover: none) { .cur-dot, .cur-ring { display: none; } }

/* navegación lateral por puntos */
.dot-nav { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 55;
  display: flex; flex-direction: column; gap: 16px; }
.dot-nav a { position: relative; width: 11px; height: 11px; display: grid; place-items: center; }
.dot-nav a span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-dim);
  transition: background .3s, transform .3s var(--ease), box-shadow .3s; }
.dot-nav a:hover span { background: var(--gold); transform: scale(1.25); }
.dot-nav a.active span { background: var(--gold); transform: scale(1.35); box-shadow: 0 0 0 4px rgba(236,200,115,.16), 0 0 12px rgba(236,200,115,.6); }
.dot-nav a::after {
  content: attr(data-label); position: absolute; right: 22px; top: 50%; transform: translateY(-50%) translateX(6px);
  white-space: nowrap; font-size: 12px; letter-spacing: .3px; color: var(--ink); padding: 6px 12px; border-radius: 100px;
  background: rgba(8,7,11,.9); border: 1px solid var(--hair-gold); opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease); backdrop-filter: blur(8px); }
.dot-nav a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 1180px) { .dot-nav { display: none; } }

/* aurora viva detrás del manifiesto */
.manifesto { position: relative; isolation: isolate; }
.manifesto::before {
  content: ""; position: absolute; z-index: -1; inset: -10% 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(40% 60% at 25% 40%, rgba(236,200,115,.10), transparent 60%),
    radial-gradient(40% 60% at 75% 55%, rgba(184,138,45,.09), transparent 62%);
  filter: blur(20px); animation: auroraDrift 16s ease-in-out infinite alternate;
}
@keyframes auroraDrift { 0% { transform: translate3d(-3%, 0, 0) scale(1); } 100% { transform: translate3d(3%, 2%, 0) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .manifesto::before { animation: none; } }

/* el grano de la textura deriva muy lentamente (vida) */
/* grano estático (sin animación: un overlay fijo a pantalla completa animado repinta demasiado) */

/* ============================================================
   ▌ ULTRA TECH v5 — shader WebGL, decode, glare, profundidad 3D
   ============================================================ */

/* lienzo del shader de oro líquido */
.hero-gl { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .85;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 38%, #000 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 38%, #000 35%, transparent 78%); }

/* titular "focus-in": entra ligeramente desenfocado y se enfoca nítido (sin texto raro) */
.reveal.wipe { filter: blur(9px); transition: opacity .6s var(--ease), transform .6s var(--ease), filter .75s var(--ease); }
.reveal.wipe.in { filter: blur(0); }
@media (prefers-reduced-motion: reduce) { .reveal.wipe { filter: none; } }

/* reflejo de cristal (glare) que sigue al cursor en las tarjetas con tilt */
[data-tilt] { position: relative; }
[data-tilt]::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 3;
  background: radial-gradient(220px 220px at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.12), transparent 60%);
  opacity: 0; transition: opacity .3s var(--ease);
}
[data-tilt]:hover::after { opacity: 1; mix-blend-mode: screen; }

/* profundidad: iconos, títulos y etiquetas flotan sobre la tarjeta al inclinarla */
[data-tilt] { transform-style: preserve-3d; }
[data-tilt] .ic { transform: translateZ(38px); transition: transform .35s var(--ease); }
[data-tilt] h3 { transform: translateZ(24px); transition: transform .35s var(--ease); }
[data-tilt] .tag { transform: translateZ(46px); }
[data-tilt] .big-num { transform: translateZ(30px); }
[data-tilt] p, [data-tilt] .mini, [data-tilt] .tile-link { transform: translateZ(12px); }

/* ============================================================
   ▌ EFECTOS v6 — flujo vivo, marquesina cinética, aurora footer
   ============================================================ */

/* el flujo de automatización se "enciende" paso a paso */
.flow-row { transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease); }
.flow-row.live {
  border-color: var(--hair-gold); transform: translateX(4px); box-shadow: 0 8px 26px rgba(0,0,0,.35), 0 0 0 1px var(--hair-gold) inset;
  background: linear-gradient(120deg, rgba(236,200,115,.12), rgba(255,255,255,.02));
}
.flow-row.live .fdot { color: #1c1505; background: var(--gold-grad); border-color: transparent; box-shadow: 0 0 16px rgba(236,200,115,.5); }

/* marquesina: los items se inclinan con la velocidad del scroll (motion lean) */
.marquee .item { transform: skewX(var(--vel, 0deg)); transition: transform .1s linear; }

/* aurora viva tras el footer */
footer.site { position: relative; overflow: hidden; }
footer.site::before {
  content: ""; position: absolute; z-index: -1; left: 50%; bottom: -40%; transform: translateX(-50%);
  width: 120%; height: 130%; pointer-events: none; opacity: .5;
  background: radial-gradient(closest-side, rgba(236,200,115,.10), rgba(184,138,45,.04) 50%, transparent 72%);
  filter: blur(30px); animation: auroraDrift 18s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) { footer.site::before { animation: none; } }

/* glitch sutil del logotipo al pasar el cursor */
@keyframes glitch { 0%,100% { text-shadow: none; } 20% { text-shadow: -1.5px 0 rgba(255,120,120,.7), 1.5px 0 rgba(120,200,255,.7); } 40% { text-shadow: 1.5px 0 rgba(255,120,120,.6), -1.5px 0 rgba(120,200,255,.6); } 60% { text-shadow: -1px 0 rgba(236,200,115,.8); } }
.brand:hover span { animation: glitch .4s steps(2) 1; }
@media (prefers-reduced-motion: reduce) { .brand:hover span { animation: none; } }

/* ============================================================
   ▌ PULIDO PROFESIONAL v7 — tipografía fina, micro-detalles
   ============================================================ */

/* anclas que no quedan ocultas bajo el header fijo */
html { scroll-padding-top: 92px; }

/* legibilidad óptima del texto */
body { text-rendering: optimizeLegibility; }

/* sin huérfanas en titulares; párrafos sin viudas feas */
h1, h2, h3, .big, .hero h1, .tile h3, .card h3, .why h3, .step h3, .faq summary { text-wrap: balance; }
p, .lead, .muted, li, .sector small, .calc-lbl { text-wrap: pretty; }

/* cifras tabulares: no "saltan" de ancho al animar contadores/calculadora */
.stat .n, .calc-out .big-num, .calc-field label b, .why .wn, .step .num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* controles de formulario con color de marca */
:root { accent-color: var(--gold); }

/* foco accesible coherente en toda la web */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* barra de desplazamiento fina y dorada (detalle premium) */
* { scrollbar-width: thin; scrollbar-color: rgba(236,200,115,.4) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-deep), var(--gold)); border-radius: 100px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::-webkit-scrollbar-track { background: transparent; }

/* marquesina con bordes difuminados en vez de corte seco */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* iconos con profundidad sutil (gradiente + brillo interior) */
.tile .ic, .card .ic, .cg { box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.tile .ic, .card .ic { background: linear-gradient(160deg, rgba(236,200,115,.15), rgba(236,200,115,.03)); }

/* botones: brillo interior superior para sensación de relieve */
.btn:not(.ghost) { box-shadow: 0 8px 28px rgba(214,180,92,.20), inset 0 1px 0 rgba(255,255,255,.45); }

/* indicador de scroll al pie del hero */
.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); display: grid; place-items: center; gap: 9px; z-index: 1;
  color: var(--ink-dim); font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase; }
.scroll-cue .mouse { width: 23px; height: 36px; border: 1.5px solid var(--hair-gold); border-radius: 100px; position: relative; }
.scroll-cue .mouse::before { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: cue 1.9s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translate(-50%, 0); } 25% { opacity: 1; } 70% { opacity: 1; transform: translate(-50%, 10px); } 100% { opacity: 0; transform: translate(-50%, 10px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue .mouse::before { animation: none; } }
@media (max-height: 720px), (max-width: 640px) { .scroll-cue { display: none; } }

/* ============================================================
   ▌ REFINAMIENTO ESTÉTICO v8 — consistencia y remates finos
   ============================================================ */

/* eyebrows centrados con filete dorado a los lados (editorial) */
.sec-head.center .eyebrow, .band .eyebrow, .manifesto .eyebrow {
  position: relative; display: inline-block; padding: 0 38px;
}
.sec-head.center .eyebrow::before, .sec-head.center .eyebrow::after,
.band .eyebrow::before, .band .eyebrow::after,
.manifesto .eyebrow::before, .manifesto .eyebrow::after {
  content: ""; position: absolute; top: 50%; width: 26px; height: 1px;
}
.sec-head.center .eyebrow::before, .band .eyebrow::before, .manifesto .eyebrow::before { left: 0; background: linear-gradient(90deg, transparent, var(--gold)); }
.sec-head.center .eyebrow::after, .band .eyebrow::after, .manifesto .eyebrow::after { right: 0; background: linear-gradient(90deg, var(--gold), transparent); }

/* borde superior "iluminado" en tarjetas que no lo tenían */
.step, .why, .sector, .vs-col, .faq details { box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }

/* los pasos del proceso ahora reaccionan al cursor (antes estáticos) */
.step { transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.step:hover { transform: translateY(-5px); border-color: var(--hair-gold); box-shadow: 0 18px 44px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06); }

/* FAQ: la cabecera se ilumina al pasar el cursor */
.faq summary { transition: color .25s; }
.faq summary:hover { color: var(--gold-light); }

/* enlaces del pie con subrayado dorado animado (coherente con la nav) */
footer.site a { position: relative; }
footer.site a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--gold-grad); transition: width .3s var(--ease); }
footer.site a:hover::after { width: 100%; }

/* CTA principal: aro de luz al pasar */
.band { transition: box-shadow .4s var(--ease); }
.band:hover { box-shadow: var(--sh-2), 0 0 64px rgba(236,200,115,.10); }

/* chips del hero un poco más vivas al pasar */
.hero .chips span { transition: color .3s; }
.hero .chips span:hover { color: var(--ink-soft); }
.hero .chips span:hover .d { opacity: 1; box-shadow: 0 0 10px rgba(236,200,115,.7); }

/* manifiesto: el texto dorado con un leve brillo */
.manifesto .big em.gold { text-shadow: 0 0 26px rgba(236,200,115,.18); }

/* ---- refinamiento móvil ---- */
@media (max-width: 600px) {
  section { padding: 66px 0; }
  .wrap { padding: 0 20px; }
  .hero { padding-top: 132px; padding-bottom: 74px; }
  .hero p.lead { font-size: 16.5px; }
  .hero .chips { gap: 14px 22px; margin-top: 40px; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .bento { gap: 14px; }
  .sec-head.center .eyebrow, .band .eyebrow, .manifesto .eyebrow { padding: 0 30px; }
  .vs-col { padding: 24px; }
  .calc-panel { padding: 24px; }
}

/* ============================================================
   ▌ EFECTOS v9 — bordes holográficos + oro vivo
   (lo más vistoso solo se activa al hover → coste cero en reposo)
   ============================================================ */
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes spinAng { to { --ang: 360deg; } }

/* borde holográfico que fluye alrededor de la tarjeta al pasar el cursor */
.card, .sector, .why { position: relative; }
.card::before, .sector::before, .why::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.3px; z-index: 2;
  background: conic-gradient(from var(--ang), transparent 0%, var(--gold) 8%, var(--gold-light) 13%, transparent 26%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.card:hover::before, .sector:hover::before, .why:hover::before { opacity: 1; animation: spinAng 3.2s linear infinite; }
@media (prefers-reduced-motion: reduce) { .card:hover::before, .sector:hover::before, .why:hover::before { animation: none; } }

/* números de las stats con oro "vivo" (shimmer lento) */
.stat .n { background-size: 200% auto; animation: shimmer 7s linear infinite; }

/* iconos con un guiño al pasar el cursor (manteniendo su profundidad 3D) */
.tile:hover .ic { transform: translateZ(40px) scale(1.06) rotate(-3deg); }
.card:hover .ic { transform: translateZ(38px) scale(1.06) rotate(-3deg); }

/* la etiqueta "Estrella" del servicio destacado destella */
.tile.feat .tag { background: linear-gradient(90deg, rgba(236,200,115,0) 10%, rgba(236,200,115,.22) 50%, rgba(236,200,115,0) 90%); background-size: 220% 100%; animation: shimmer 4.5s linear infinite; }

/* la tile "Estrella" gana un marco de oro que gira vivo al pasar el cursor */
.tile.feat:hover {
  background:
    linear-gradient(170deg, rgba(227,192,106,.12), var(--panel) 62%) padding-box,
    conic-gradient(from var(--ang), var(--gold-deep), var(--gold), var(--gold-light), var(--gold), var(--gold-deep)) border-box;
  animation: spinAng 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .stat .n, .tile.feat .tag, .tile.feat:hover { animation: none; } }

/* el resto de tiles del bento también ganan el marco de oro fluido al hover */
.tile:not(.feat):hover {
  background:
    linear-gradient(180deg, var(--panel), var(--bg-2)) padding-box,
    conic-gradient(from var(--ang), var(--hair-gold), var(--gold) 11%, var(--gold-light) 16%, var(--hair-gold) 30%, var(--hair-gold)) border-box;
  animation: spinAng 3.4s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .tile:not(.feat):hover { animation: none; } }

/* los pasos del proceso también: borde holográfico al pasar el cursor */
.step::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.3px; z-index: 2;
  background: conic-gradient(from var(--ang), transparent 0%, var(--gold) 8%, var(--gold-light) 13%, transparent 26%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.step:hover::before { opacity: 1; animation: spinAng 3.2s linear infinite; }
.step > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .step:hover::before { animation: none; } }

/* ============================================================
   ▌ AVANZADO v10 — animación nativa guiada por scroll
   (animation-timeline: va en el compositor, sin JS → fluida)
   ============================================================ */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {

    /* el hero se "despide" al bajar: sube, se aleja y se desvanece, ligado al scroll.
       Longhands a propósito (el atajo 'animation' resetearía la duración a 0s y rompería el timeline). */
    .hero .wrap {
      animation-name: heroExit;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: scroll(root);
      animation-range: 0 80vh;
    }
    @keyframes heroExit {
      to { opacity: 0; transform: translateY(-46px) scale(.96); }
    }

    /* el contador de scroll desaparece en cuanto arrancas a bajar */
    .scroll-cue {
      animation-name: cueFade;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: scroll(root);
      animation-range: 0 18vh;
    }
    @keyframes cueFade { to { opacity: 0; } }
  }
}

/* ============================================================
   ▌ MARCA v11 — logotipo propio animado + preloader premium
   ============================================================ */

/* logomark: anillo de oro con un nodo en órbita (eco del orbe del hero) */
.mark { color: var(--gold); flex: none; filter: drop-shadow(0 0 6px rgba(236,200,115,.55)); }
.mark .ring { opacity: .9; }
.mark .orbit { transform-box: view-box; transform-origin: 16px 16px; animation: orbit 6s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .mark .orbit { animation: none; } }

.brand .mark { width: 23px; height: 23px; }
.brand:hover .mark { color: var(--gold-light); }
footer .brand .mark { width: 21px; height: 21px; }

/* preloader premium: marca + palabra + porcentaje + barra */
.preloader .pl-inner { display: inline-flex; align-items: center; gap: 13px; }
.preloader .mark { width: 34px; height: 34px; }
.preloader .pl-word { font-family: "Fraunces", serif; font-size: 34px; letter-spacing: -.5px;
  background: var(--gold-grad); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 2.4s linear infinite; }
.preloader .pl-pct { font-family: "Inter", sans-serif; font-variant-numeric: tabular-nums; font-size: 13px; color: var(--ink-dim); letter-spacing: 1px; align-self: flex-start; margin-top: 4px; }
.preloader .pl-track { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--hair); }
.preloader .pl-track span { display: block; height: 100%; width: 0; background: var(--gold-grad); box-shadow: 0 0 12px rgba(236,200,115,.6); }

/* ============================================================
   ▌ AVANZADO v12 — espina de progreso en la nav lateral
   (línea dorada que se rellena con el scroll, scroll-driven)
   ============================================================ */
.dot-nav::before, .dot-nav::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 2px; border-radius: 2px; z-index: -1;
}
.dot-nav::before { top: -16px; bottom: -16px; background: var(--hair); }
.dot-nav::after { top: -16px; height: 0; background: var(--gold-grad); box-shadow: 0 0 10px rgba(236,200,115,.5); }
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .dot-nav::after {
      animation-name: dnFill; animation-fill-mode: both; animation-timing-function: linear;
      animation-timeline: scroll(root); animation-range: 0 100%;
    }
    @keyframes dnFill { to { height: calc(100% + 32px); } }
  }
}

/* badge del hero: un arco de luz dorada recorre su borde (vivo y sutil) */
.kicker { position: relative; isolation: isolate; }
.kicker::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; z-index: -1;
  background: conic-gradient(from var(--ang), transparent 0 68%, rgba(236,200,115,.9) 84%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spinAng 5s linear infinite; opacity: .85; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .kicker::after { animation: none; opacity: .4; } }

/* ============================================================
   ▌ COMPARATIVA v13 — altruia frente a las alternativas
   ============================================================ */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; align-items: start; }
@media (max-width: 940px) { .compare { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.cmp {
  position: relative; border-radius: 22px; padding: 30px 28px; border: 1px solid var(--hair);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.cmp:hover { transform: translateY(-4px); border-color: var(--hair-gold); box-shadow: var(--glow-gold), inset 0 1px 0 rgba(255,255,255,.05); }
.cmp-head { padding-bottom: 18px; border-bottom: 1px solid var(--hair); margin-bottom: 20px; }
.cmp-name { display: block; font-family: "Fraunces", serif; font-weight: 600; font-size: 21px; color: var(--ink); line-height: 1.1; }
.cmp-sub { color: var(--ink-dim); font-size: 12.5px; margin-top: 4px; display: block; }
.cmp ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.cmp li { display: grid; gap: 4px; }
.cmp .dim { color: var(--ink-dim); font-size: 11px; letter-spacing: .6px; text-transform: uppercase; }
.cmp .v { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.3; }
.cmp .v::before { content: ""; width: 19px; height: 19px; flex: none; border-radius: 50%; background-position: center; background-repeat: no-repeat; background-size: 11px; }
.cmp .v.good { color: var(--ink); }
.cmp .v.good::before { background-color: rgba(236,200,115,.13); border: 1px solid var(--hair-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ecc873' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4.5 4.5L19 7'/%3E%3C/svg%3E"); }
.cmp .v.bad::before { border: 1px solid rgba(214,138,138,.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cf8f8f' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E"); }
.cmp .v.mid::before { border: 1px solid var(--hair);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f8f97' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E"); }

/* columna destacada de altruia */
.cmp.cmp-feat {
  border: 1px solid transparent;
  background: linear-gradient(170deg, rgba(236,200,115,.09), var(--panel) 58%) padding-box,
              linear-gradient(160deg, var(--gold), rgba(255,255,255,.05) 55%) border-box;
  box-shadow: var(--glow-gold), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (min-width: 941px) { .cmp.cmp-feat { transform: translateY(-12px); } .cmp.cmp-feat:hover { transform: translateY(-16px); } }
.cmp-feat .cmp-name { color: var(--gold-light); }
.cmp-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--gold-grad); color: #1c1505; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 15px; border-radius: 100px; box-shadow: 0 6px 18px rgba(214,180,92,.35); }

/* ============================================================
   ▌ v14 — confianza en el hero + páginas legales a la altura
   ============================================================ */

/* línea de confianza bajo el CTA del hero */
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 22px; margin: 26px auto 0; padding: 0; color: var(--ink-dim); font-size: 13px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: ""; width: 16px; height: 16px; flex: none; border-radius: 50%; border: 1px solid var(--hair-gold);
  background: rgba(236,200,115,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ecc873' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4.5 4.5L19 7'/%3E%3C/svg%3E") center/10px no-repeat;
}
.hero .chips { margin-top: 34px; }

/* ---- páginas legales elevadas al nivel del sitio ---- */
.doc-nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(9px); background: rgba(8,7,11,.72); border-bottom: 1px solid var(--hair); }
.doc-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.doc-nav .back { margin: 0; color: var(--ink-soft); font-size: 14px; display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.doc-nav .back:hover { color: var(--gold); }

.doc { max-width: 760px; margin: 0 auto; padding: 64px 24px 40px; }
.doc .eyebrow { display: inline-block; margin-bottom: 14px; }
.doc h1 { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(34px, 6vw, 52px); letter-spacing: -1.2px; line-height: 1.05; margin: 0 0 14px; }
.doc .doc-lead { color: var(--ink-soft); font-size: 17px; max-width: 60ch; margin: 0 0 8px; }
.doc h2 { font-family: "Fraunces", serif; font-weight: 600; font-size: 22px; letter-spacing: -.3px; margin-top: 44px; padding-top: 6px; }
.doc h2::before { content: ""; display: block; width: 34px; height: 2px; border-radius: 2px; background: var(--gold-grad); margin-bottom: 16px; opacity: .8; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.75; }
.doc ul { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.doc ul li { position: relative; padding-left: 22px; }
.doc ul li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--gold); font-size: 11px; }
.doc strong { color: var(--ink); }
.doc a:not(.back) { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--hair-gold); transition: text-decoration-color .2s; }
.doc a:not(.back):hover { text-decoration-color: var(--gold); }

/* pie compartido en legales */
.doc-foot { border-top: 1px solid var(--hair); margin-top: 48px; }
.doc-foot .wrap { max-width: 760px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 28px 24px 44px; color: var(--ink-dim); font-size: 13px; }
.doc-foot .links { display: flex; gap: 18px; flex-wrap: wrap; }
.doc-foot a { color: var(--ink-soft); transition: color .2s; }
.doc-foot a:hover { color: var(--gold); }

/* ---- afinado responsive de las secciones nuevas ---- */
@media (max-width: 700px) {
  section { padding: 76px 0; }
  .pillar .split { gap: 36px; }
}
