/* ============================================================
   STAGE4 — Landing
   Dirección: editorial monumental.
   Tokens y reglas del design.md / colors_and_type.css:
   - SegmentA = wordmark only. Poppins everywhere else.
   - Cyan = single accent per view.
   - Sentence case en headlines.
   - Motion sobria: fades + traslaciones cortas. Sin parallax/bounce.
   ============================================================ */

/* -------- Fonts -------- */
@font-face { font-family: "SegmentA"; src: url("fonts/SegmentAKey-Bold.otf")  format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "SegmentA"; src: url("fonts/SegmentAKey-Black.otf") format("opentype"); font-weight: 900; font-style: normal; font-display: swap; }

@font-face { font-family: "Poppins"; src: url("fonts/Poppins-ExtraLight.ttf") format("truetype"); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Light.ttf")      format("truetype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Regular.ttf")    format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Medium.ttf")     format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-SemiBold.ttf")   format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Bold.ttf")       format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-ExtraBold.ttf")  format("truetype"); font-weight: 800; font-style: normal; font-display: swap; }

/* -------- Tokens -------- */
:root {
  --s4-ink:        #040011;
  --s4-ink-2:      #0a0820;
  --s4-paper:      #f8f9f9;
  --s4-paper-2:    #eef0f1;
  --s4-paper-3:    #e2e5e7;
  --s4-cyan:       #69ceea;
  --s4-cyan-deep:  #2a9fc2;
  --s4-cyan-glow:  rgba(105, 206, 234, 0.30);
  --s4-deep:       #103746;

  --fg-1: var(--s4-ink);
  --fg-2: rgba(4, 0, 17, 0.72);
  --fg-3: rgba(4, 0, 17, 0.52);
  --fg-on-dark-1: var(--s4-paper);
  --fg-on-dark-2: rgba(248, 249, 249, 0.74);
  --fg-on-dark-3: rgba(248, 249, 249, 0.50);

  --border-light: rgba(4, 0, 17, 0.10);
  --border-dark:  rgba(248, 249, 249, 0.10);

  --font-display: "SegmentA", "Archivo Black", system-ui, sans-serif;
  --font-body:    "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1280px;
  --gutter: clamp(24px, 5vw, 64px);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 160ms;
  --dur-base: 280ms;
  --dur-slow: 600ms;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--s4-paper);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--s4-cyan); color: var(--s4-ink); }

/* -------- Logo (real SVG wordmark — viewBox 1183x708, ratio ~1.671) -------- */
.logo { display: block; height: auto; }
.logo--nav   { height: clamp(44px, 5.2vw, 64px); width: auto; }
.logo--mid   { width: clamp(220px, 32vw, 460px); height: auto; }
.logo--hero-wm { width: clamp(420px, 70vw, 1100px); height: auto; }
.logo--foot  { width: clamp(360px, 78vw, 880px); height: auto; }

/* -------- Eyebrow -------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--s4-cyan-deep);
  margin: 0;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: var(--s4-cyan); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn .arr {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--s4-cyan); color: var(--s4-ink); }
.btn-primary:hover { background: var(--s4-cyan-deep); color: var(--s4-paper); }

.btn-ink { background: var(--s4-ink); color: var(--s4-paper); }
.btn-ink:hover { background: var(--s4-deep); }

.btn-outline-light {
  background: transparent; color: var(--s4-paper);
  border: 1.5px solid rgba(248,249,249,0.32);
}
.btn-outline-light:hover { border-color: var(--s4-paper); color: var(--s4-paper); }

.btn-outline-dark {
  background: transparent; color: var(--s4-ink);
  border: 1.5px solid var(--s4-ink);
}
.btn-outline-dark:hover { background: var(--s4-ink); color: var(--s4-paper); }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--s4-ink);
  position: relative;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
}
.btn-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--s4-ink);
  transition: transform var(--dur-base) var(--ease-out);
  transform-origin: right;
}
.btn-link:hover::after { transform: scaleX(0); transform-origin: left; }
.btn-link .arr { transition: transform var(--dur-base) var(--ease-out); }
.btn-link:hover .arr { transform: translateX(4px); }
.btn-link.on-dark { color: var(--s4-paper); }
.btn-link.on-dark::after { background: var(--s4-paper); }

/* -------- NAV — logo centrado, links left, CTA right -------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(4, 0, 17, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border-dark);
  color: var(--s4-paper);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  justify-self: center;
  color: var(--s4-paper);
  transition: opacity var(--dur-base) var(--ease-out);
}
.nav__brand:hover { opacity: 0.78; }
.nav__cta { justify-self: end; }
.nav__links {
  justify-self: start;
  display: flex; gap: 32px;
}
.nav__links a {
  position: relative;
  color: var(--fg-on-dark-2);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 0;
  transition: color var(--dur-base) var(--ease-out);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--s4-cyan);
  transition: width var(--dur-base) var(--ease-out);
}
.nav__links a:hover { color: var(--s4-paper); }
.nav__links a:hover::after { width: 100%; }

@media (max-width: 1080px) {
  .nav__inner { grid-template-columns: auto 1fr auto; padding: 20px var(--gutter); }
  .nav__brand { justify-self: start; }
  .nav__links { display: none; }
}
@media (max-width: 540px) {
  .nav__cta { display: none; }
  .nav__inner { grid-template-columns: 1fr; justify-items: center; }
}

/* -------- HERO — split: copy left, brand console right -------- */
.hero {
  position: relative;
  background: var(--s4-ink);
  color: var(--s4-paper);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(720px, 96vh, 1080px);
  display: flex;
  align-items: center;
}
.hero__inner {
  position: relative; z-index: 3;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 128px) var(--gutter);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero__copy { min-width: 0; }

.hero__top {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-on-dark-2);
}
.hero__pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--s4-cyan);
  box-shadow: 0 0 0 4px rgba(105,206,234,0.18);
  animation: pulse-dot 2.4s var(--ease-in-out) infinite;
}
.hero__caption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--fg-on-dark-3);
  margin-left: auto;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(105,206,234,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(105,206,234,0.0);  }
}

.hero__bg-wm {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(620px circle at var(--gx, 25%) var(--gy, 30%),
      rgba(105,206,234,0.28),
      rgba(105,206,234,0.08) 35%,
      transparent 60%),
    radial-gradient(900px circle at -10% -10%,
      rgba(105,206,234,0.18),
      transparent 55%);
  filter: blur(20px);
  transition: background 320ms var(--ease-out);
}

.hero__title {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.032em;
  color: var(--s4-paper);
  margin: 28px 0 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero__title b { font-weight: 700; }
.hero__title .accent { color: var(--s4-cyan); font-weight: 700; }

.hero__sub {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--fg-on-dark-2);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 40px;
  align-items: center;
}

/* -------- Brand Console — visual derecho del hero -------- */
.brand-console {
  position: relative;
  background: linear-gradient(180deg, rgba(248,249,249,0.04) 0%, rgba(248,249,249,0.01) 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5),
              inset 0 0 0 1px rgba(248,249,249,0.04);
}
.brand-console::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(105,206,234,0.12), transparent 60%);
  pointer-events: none;
}
.brand-console__top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}
.brand-console__corner {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--s4-paper);
}
.brand-console__corner .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--s4-cyan);
}
.brand-console__caption {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-on-dark-3);
}

.brand-console__stage {
  position: relative; z-index: 2;
  aspect-ratio: 1.15 / 1;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(4,0,17,0.6);
  border: 1px solid var(--border-dark);
}
.brand-console__grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.35;
  object-fit: cover;
}
.brand-console__radiate {
  position: absolute;
  width: 110%; height: 110%;
  opacity: 0.55;
}
.brand-console__mark {
  position: relative; z-index: 2;
  width: clamp(120px, 26%, 200px);
  border-radius: 12px;
  box-shadow: 0 24px 60px -10px rgba(105,206,234,0.55),
              0 0 0 1px rgba(248,249,249,0.10);
}
.brand-console__chip {
  position: absolute;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(4,0,17,0.85);
  border: 1px solid var(--border-dark-2, rgba(248,249,249,0.18));
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand-console__chip .num {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--s4-cyan);
}
.brand-console__chip .lbl {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--s4-paper);
}
.brand-console__chip--01 { top: 10%; left: -8%; }
.brand-console__chip--04 { bottom: 10%; right: -6%; }
.brand-console__chip--status {
  top: 8%; right: -2%;
  background: rgba(105,206,234,0.16);
  border-color: rgba(105,206,234,0.32);
}
.brand-console__chip--status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--s4-cyan);
  box-shadow: 0 0 8px var(--s4-cyan);
}

.brand-console__bottom {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-dark);
  padding-top: 18px;
}
.brand-console__stat {
  display: flex; flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border-dark);
  padding: 0 14px;
}
.brand-console__stat:first-child { padding-left: 0; }
.brand-console__stat:last-child  { border-right: 0; padding-right: 0; }
.brand-console__stat .num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  color: var(--s4-paper);
  line-height: 1;
}
.brand-console__stat .lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--fg-on-dark-3);
}

@media (max-width: 540px) {
  .brand-console__chip--01 { left: 0; }
  .brand-console__chip--04 { right: 0; }
}

/* -------- PROOF STRIP — banda de números monumentales -------- */
.proof {
  position: relative;
  background: var(--s4-paper);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.proof__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 800px) { .proof__inner { grid-template-columns: 1fr; gap: 32px; } }

.proof__col {
  display: flex; align-items: center; gap: clamp(20px, 2.4vw, 32px);
  padding: 0 clamp(20px, 3vw, 48px);
  border-right: 1px solid var(--border-light);
}
.proof__col:first-child { padding-left: 0; }
.proof__col:last-child  { border-right: 0; padding-right: 0; }
@media (max-width: 800px) {
  .proof__col { border-right: 0; border-bottom: 1px solid var(--border-light); padding: 0 0 28px; }
  .proof__col:last-child { border-bottom: 0; padding-bottom: 0; }
}

.proof__num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--s4-ink);
  flex: none;
}
.proof__col:nth-child(2) .proof__num { color: var(--s4-cyan-deep); }
.proof__meta { display: flex; flex-direction: column; gap: 4px; }
.proof__lbl {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}
.proof__sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* -------- Sections -------- */
.section {
  position: relative;
  padding: clamp(96px, 12vw, 176px) 0;
  overflow: hidden;
}
.section--ink {
  background: var(--s4-ink);
  color: var(--s4-paper);
}
.section--paper-2 { background: var(--s4-paper-2); }
.section__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section__head {
  display: flex; flex-direction: column; gap: 28px;
  margin-bottom: clamp(56px, 7vw, 96px);
  max-width: 1100px;
}
.section__index {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--s4-cyan-deep);
  display: inline-flex; align-items: center; gap: 14px;
}
.section--ink .section__index { color: var(--s4-cyan); }
.section__index::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
}

.s4-h1 {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: balance;
}
.s4-h1 b { font-weight: 700; }
.s4-h1 .accent { color: var(--s4-cyan-deep); font-weight: 700; }
.section--ink .s4-h1 .accent { color: var(--s4-cyan); }
.section--ink .s4-h1 { color: var(--s4-paper); }

.s4-h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}
.section--ink .s4-h2 { color: var(--s4-paper); }

/* -------- ¿Por qué existimos? -------- */
.why { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.why__copy { display: flex; flex-direction: column; gap: 24px; }
.why__copy p {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  color: var(--fg-1);
  max-width: 56ch;
}
.why__copy p b { font-weight: 700; }
.why__copy p .accent { color: var(--s4-cyan-deep); font-weight: 700; }

/* -------- Qué hacemos — manifesto + lista -------- */
.what {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .what { grid-template-columns: 1fr; } }

.pullquote {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--s4-paper);
  margin: 0;
  text-wrap: balance;
}
.pullquote b { font-weight: 700; }
.pullquote .accent { color: var(--s4-cyan); font-weight: 700; }

.what__list-head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--s4-cyan);
  margin: 0 0 28px;
}
.what__list { display: flex; flex-direction: column; }
.what__list-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: start;
}
.what__list-item:last-child { border-bottom: 0; }
.what__list-item .num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--s4-cyan);
  letter-spacing: 0.10em;
  padding-top: 4px;
}
.what__list-item-title {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--s4-paper);
  margin-bottom: 6px;
}
.what__list-item-body {
  display: block;
  font-size: 14px;
  color: var(--fg-on-dark-2);
  line-height: 1.55;
}

.what__result {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: baseline;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-on-dark-2);
}
.what__result b {
  font-weight: 600;
  color: var(--s4-cyan);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-size: 11px;
}
.what__result em { font-style: normal; color: var(--s4-paper); font-weight: 500; }

/* -------- Brand mark band — ÚNICO interstitial, sutil -------- */
.brand-band {
  position: relative;
  background: var(--s4-paper);
  padding: clamp(64px, 10vw, 144px) 0;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.brand-band .logo--mid {
  margin: 0 auto;
}
.brand-band__line {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 28px 0 0;
}

/* -------- Cómo lo hacemos — BENTO grid asimétrico -------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.bento__card {
  position: relative;
  background: var(--s4-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  grid-column: span 6;
}
.bento__card--lg { grid-column: span 7; }
.bento__card--lg + .bento__card { grid-column: span 5; }
.bento__card + .bento__card--lg { grid-column: span 7; }

.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(4,0,17,0.20);
}
.bento__card--ink    { background: var(--s4-ink);  border-color: var(--s4-ink);  color: var(--s4-paper); }
.bento__card--deep   { background: var(--s4-deep); border-color: var(--s4-deep); color: var(--s4-paper); }
.bento__card--accent { background: var(--s4-cyan); border-color: var(--s4-cyan); color: var(--s4-ink); }
.bento__card--accent:hover { box-shadow: 0 24px 60px -16px rgba(105,206,234,0.55); }

.bento__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.bento__num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(64px, 7vw, 100px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--fg-1);
}
.bento__card--ink   .bento__num,
.bento__card--deep  .bento__num { color: var(--s4-cyan); }
.bento__card--accent .bento__num { color: var(--s4-ink); }

.bento__icon {
  width: 36px; height: 36px;
  color: var(--s4-cyan-deep);
  flex: none;
}
.bento__card--ink   .bento__icon,
.bento__card--deep  .bento__icon { color: var(--s4-cyan); }
.bento__card--accent .bento__icon { color: var(--s4-ink); }

.bento__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0;
}
.bento__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 56ch;
}
.bento__card--ink   .bento__body,
.bento__card--deep  .bento__body { color: rgba(248,249,249,0.78); }
.bento__card--accent .bento__body { color: rgba(4,0,17,0.78); }

.bento__rule {
  margin-top: auto;
  height: 1px;
  background: var(--border-light);
}
.bento__card--ink   .bento__rule { background: rgba(248,249,249,0.16); }
.bento__card--deep  .bento__rule { background: rgba(248,249,249,0.20); }
.bento__card--accent .bento__rule { background: rgba(4,0,17,0.18); }

.bento__meta {
  display: flex; justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.bento__card--ink   .bento__meta,
.bento__card--deep  .bento__meta { color: rgba(248,249,249,0.6); }
.bento__card--accent .bento__meta { color: rgba(4,0,17,0.6); }

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card,
  .bento__card--lg,
  .bento__card--lg + .bento__card,
  .bento__card + .bento__card--lg { grid-column: span 1; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
}

/* -------- Servicios — card grid 3x2 -------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  background: var(--s4-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 280px;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(105,206,234,0.10), transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--s4-cyan-deep);
  box-shadow: 0 20px 48px -16px rgba(4,0,17,0.18);
}
.svc-card:hover::after { opacity: 1; }

.svc-card--accent {
  background: var(--s4-ink);
  border-color: var(--s4-ink);
  color: var(--s4-paper);
}
.svc-card--accent:hover {
  border-color: var(--s4-cyan);
  box-shadow: 0 24px 60px -16px rgba(105,206,234,0.45);
}

.svc-card__top {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}
.svc-card__num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--fg-3);
}
.svc-card--accent .svc-card__num { color: rgba(248,249,249,0.5); }
.svc-card__tag {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--s4-cyan-deep);
}
.svc-card--accent .svc-card__tag {
  border-color: rgba(248,249,249,0.18);
  color: var(--s4-cyan);
}

.svc-card__icon {
  position: relative; z-index: 2;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--s4-paper-2);
  color: var(--s4-cyan-deep);
  border: 1px solid var(--border-light);
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card:hover .svc-card__icon {
  background: var(--s4-cyan);
  color: var(--s4-ink);
  border-color: var(--s4-cyan);
}
.svc-card--accent .svc-card__icon {
  background: rgba(105,206,234,0.12);
  border-color: rgba(105,206,234,0.32);
  color: var(--s4-cyan);
}

.svc-card__title {
  position: relative; z-index: 2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.014em;
  margin: 0;
  color: inherit;
}
.svc-card__body {
  position: relative; z-index: 2;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 50ch;
}
.svc-card--accent .svc-card__body { color: rgba(248,249,249,0.74); }

.svc-card__cta {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--s4-cyan-deep);
  border-top: 1px solid var(--border-light);
}
.svc-card--accent .svc-card__cta {
  color: var(--s4-cyan);
  border-top-color: rgba(248,249,249,0.18);
}
.svc-card__cta .arr { transition: transform var(--dur-base) var(--ease-out); }
.svc-card:hover .svc-card__cta .arr { transform: translateX(4px); }

/* -------- Audience — sección dedicada con grid de chips numerados -------- */
.audience {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .audience { grid-template-columns: 1fr; } }

.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 600px) { .audience__grid { grid-template-columns: 1fr; } }

.audience__card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px 24px;
  background: rgba(248,249,249,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  min-height: 160px;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.audience__card:hover {
  background: rgba(105,206,234,0.06);
  border-color: rgba(105,206,234,0.32);
  transform: translateY(-2px);
}
.audience__num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.20em;
  color: var(--s4-cyan);
}
.audience__lbl {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--s4-paper);
  margin-top: auto;
}

/* -------- Servicios + Para quién es -------- */
.duo {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(48px, 6vw, 96px);
}
@media (max-width: 900px) { .duo { grid-template-columns: 1fr; } }

.linelist { display: flex; flex-direction: column; }
.linelist li {
  display: grid;
  grid-template-columns: 44px 28px 1fr 24px;
  gap: 20px; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--fg-1);
  transition: color var(--dur-base) var(--ease-out);
}
.linelist li:first-child { border-top: 1px solid var(--border-light); }
.linelist li:hover { color: var(--s4-cyan-deep); }
.linelist li .n {
  font-weight: 700;
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.20em;
  transition: color var(--dur-base) var(--ease-out);
}
.linelist li:hover .n { color: var(--s4-cyan-deep); }
.linelist li .svc-icon {
  width: 24px; height: 24px;
  color: var(--s4-cyan-deep);
  flex: none;
  transition: transform var(--dur-base) var(--ease-out);
}
.linelist li:hover .svc-icon { transform: scale(1.06) rotate(-3deg); }
.linelist li .arr {
  font-size: 16px;
  color: var(--fg-3);
  transition: transform var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.linelist li:hover .arr { color: var(--s4-cyan-deep); transform: translateX(4px); }

@media (max-width: 600px) {
  .linelist li { grid-template-columns: 36px 24px 1fr 20px; gap: 14px; }
}

.bullets {
  display: flex; flex-direction: column; gap: 18px;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  color: var(--fg-1);
  margin-top: 8px;
}
.bullets li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 14px; height: 1px;
  background: var(--s4-cyan-deep);
}
.bullets li b { font-weight: 700; }

/* -------- Equipo -------- */
.team {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .team { grid-template-columns: 1fr; } }
.team__copy p {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 18px;
  max-width: 50ch;
}
.team__copy p b { font-weight: 700; }

/* -------- Final CTA -------- */
.final {
  position: relative;
  background: var(--s4-ink);
  color: var(--s4-paper);
  padding: clamp(120px, 14vw, 200px) 0 clamp(96px, 12vw, 160px);
  overflow: hidden;
  isolation: isolate;
}
.final__glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(105,206,234,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}
.final__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.final__title {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(44px, 7.6vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.034em;
  margin: 32px 0 44px;
  max-width: 16ch;
  text-wrap: balance;
}
.final__title b { font-weight: 700; }
.final__title .accent { color: var(--s4-cyan); font-weight: 700; }
.final__cta {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center;
}

/* -------- Footer -------- */
.footer {
  background: var(--s4-deep);
  color: var(--fg-on-dark-2);
  padding: clamp(72px, 9vw, 112px) 0 32px;
  position: relative;
  overflow: hidden;
}
.footer__wm {
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
}

.footer__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; } }

.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--s4-cyan);
  margin: 0 0 18px;
}
.footer__tagline {
  font-size: 14px;
  color: var(--fg-on-dark-2);
  max-width: 36ch;
  margin: 18px 0 0;
  line-height: 1.6;
}
.footer__list { display: flex; flex-direction: column; gap: 12px; }
.footer__list a {
  color: var(--s4-paper);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--dur-base) var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer__list a:hover { color: var(--s4-cyan); }
.footer__list a .arr { transition: transform var(--dur-base) var(--ease-out); }
.footer__list a:hover .arr { transform: translateX(3px); }

.footer__bottom {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: clamp(96px, 12vw, 168px) auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(248,249,249,0.18);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-on-dark-3);
}

/* -------- Reveal animation — sutil, sin scroll-jacking -------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
