:root {
  --night: #0b0f10;
  --night-2: #121718;
  --night-3: #1a2021;
  --paper: #f3f0e8;
  --paper-2: #e8e4da;
  --paper-3: #ddd8cc;
  --white: #fbfaf6;
  --ink: #0b0f10;
  --ink-soft: #353b3c;
  --steel: #8b9495;
  --steel-dark: #626a6b;
  --red: #ff5636; /* rojo señal ipcore / rojo coral */
  --red-dark: #df3d30;
  --green: #72cf8b;
  --line: rgba(11, 15, 16, .18);
  --line-soft: rgba(11, 15, 16, .1);
  --line-dark: rgba(251, 250, 246, .16);
  --line-dark-soft: rgba(251, 250, 246, .08);
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --container: 1540px;
  --gutter: clamp(22px, 4.2vw, 72px);
  --header-h: 82px;
  --radius: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--red); color: var(--night); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--white);
  color: var(--night);
}
.skip-link:focus { top: 16px; }

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.narrow { width: min(100%, 1120px); margin-inline: auto; }
.reading { width: min(100%, 780px); }

h1, h2, h3, h4, p, ul, ol, blockquote, figure { margin-top: 0; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

.eyebrow,
.kicker,
.meta,
.section-no,
.breadcrumb,
.fact dt,
.mini-label,
.article-meta,
.footer-label,
.form-label,
.button,
.text-link,
.logo-note {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .105em;
}
.eyebrow, .kicker {
  margin-bottom: 20px;
  font-size: 11px;
  line-height: 1.4;
}
.eyebrow { color: var(--red); }
.kicker { color: var(--steel-dark); }
.section-dark .kicker,
.hero-home .kicker,
.connectivity-hero .kicker { color: rgba(251,250,246,.52); }
.meta { font-size: 10px; color: var(--steel-dark); }

.display-xl {
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.074em;
}
.display-lg {
  margin-bottom: 0;
  font-size: 58px;
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.066em;
}
.display-md {
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.058em;
}
.heading-xl {
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.055em;
}
.heading-lg {
  margin-bottom: 0;
  font-size: clamp(31px, 3vw, 50px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.045em;
}
.heading-md {
  margin-bottom: 0;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.heading-sm {
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(251,250,246,.56);
  text-stroke: 1px rgba(251,250,246,.56);
}
.thin { font-weight: 380; }
.red { color: var(--red); }
.muted { color: var(--steel-dark); }
.lede {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.48;
  letter-spacing: -.018em;
}
.section-dark .lede,
.hero-home .lede,
.connectivity-hero .lede { color: rgba(251,250,246,.7); }
.body-lg {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.58;
}
.section-dark .body-lg { color: rgba(251,250,246,.68); }
.body-md {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.62;
}
.section-dark .body-md { color: rgba(251,250,246,.66); }
.small { color: var(--steel-dark); font-size: 13px; line-height: 1.55; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px 0 20px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button::after { content: "↗"; font-size: 16px; }
.button:hover { transform: translateY(-2px); }
.button-red { border-color: var(--red); background: var(--red); color: var(--night); }
.button-red:hover { border-color: var(--white); background: var(--white); }
.button-dark { border-color: var(--night); color: var(--night); }
.button-dark:hover { background: var(--night); color: var(--white); }
.button-light { border-color: rgba(251,250,246,.74); color: var(--white); }
.button-light:hover { background: var(--white); color: var(--night); }
.button-ghost { border-color: var(--line); color: var(--ink); }
.button-ghost:hover { border-color: var(--ink); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 10px;
  line-height: 1.4;
}
.text-link::after { content: "→"; font-size: 17px; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(11,15,16,.97);
  color: var(--white);
  backdrop-filter: none;
}
.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  backdrop-filter: none;
}
.home-page .site-header.is-sticky {
  position: fixed;
  background: rgba(11,15,16,.96);
  backdrop-filter: none;
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  /* columnas laterales iguales: el menú queda centrado respecto a la página, no respecto al hueco entre logo y botones */
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}
.brand-dot { width: 8px; height: 8px; margin: 4px 0 0 7px; border-radius: 50%; background: var(--red); }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(251,250,246,.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.012em;
  text-rendering: auto;
  transition: color .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--white); }
.desktop-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--red);
}
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.header-actions .button { font-size: 11px; font-weight: 600; }
.header-actions .visit-link {
  color: rgba(251,250,246,.72);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle i,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle i { margin: 5px 0; }
.menu-toggle[aria-expanded="true"] i { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 70;
  display: none;
  padding: 28px var(--gutter) 48px;
  background: var(--night);
  color: var(--white);
  overflow-y: auto;
}
.mobile-panel.is-open { display: block; }
.mobile-nav { display: grid; }
.mobile-nav a {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(26px, 7vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
}
.mobile-panel .actions { margin-top: 28px; }

/* Home hero */
.hero-home {
  position: relative;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px),
    radial-gradient(circle at 82% 32%, rgba(255,86,54,.16), transparent 33%),
    var(--night);
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: var(--white);
}
.hero-home-inner {
  min-height: 680px;
  padding-top: 144px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, .96fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .display-xl { max-width: 850px; }
.hero-copy .lede { max-width: 760px; margin-top: 34px; }
.hero-copy .actions { margin-top: 36px; }
.hero-graphic {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
  border-left: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
}
.hero-graphic::before,
.hero-graphic::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  z-index: -1;
  height: 1px;
  background: var(--line-dark);
}
.hero-graphic::before { top: 17%; }
.hero-graphic::after { bottom: 12%; }
.hero-sensor-map {
  position: relative;
  width: min(112%, 980px);
  margin: 0 -6%;
}
.hero-media-frame {
  position: relative;
  aspect-ratio: 29 / 22;
  overflow: visible;
  isolation: isolate;
}
.hero-media-poster,
.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.24));
}
.hero-media-poster {
  z-index: 1;
  opacity: 1;
  transition: opacity .35s ease;
}
.hero-media-video {
  z-index: 2;
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-sensor-map.is-video-ready .hero-media-poster { opacity: 0; }
.hero-sensor-map.is-video-ready .hero-media-video { opacity: 1; }
.hero-media-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 0 6px;
  color: rgba(251,250,246,.42);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.hero-media-caption span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: right;
}
.hero-media-caption i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--red);
}
.hero-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}
.hero-index .fact {
  padding: 21px 24px 20px;
  border-right: 1px solid var(--line-dark);
}
.hero-index .fact:first-child { padding-left: 0; }
.hero-index .fact:last-child { border-right: 0; }
.fact dt { margin-bottom: 13px; color: rgba(251,250,246,.38); font-size: 9px; }
.fact dd { margin: 0; color: rgba(251,250,246,.82); font-size: 15px; line-height: 1.35; }
.fact dd strong { color: var(--white); }

/* Provider band */
.provider-band {
  overflow: hidden;
  padding: 25px 0 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.provider-title {
  margin: 0 0 18px;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .105em;
  text-align: center;
  text-transform: uppercase;
}
.provider-row {
  display: grid;
  grid-template-columns: repeat(9, minmax(74px, 1fr));
  align-items: center;
  gap: clamp(12px, 1.5vw, 28px);
}
.provider-logo {
  display: flex;
  min-width: 0;
  height: 54px;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.provider-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  image-rendering: auto;
  transition: transform .2s ease, opacity .2s ease;
}
.provider-domain { display: block; max-width: 100%; color: var(--steel-dark); font-family: var(--mono); font-size: 8px; line-height: 1.35; letter-spacing: .04em; overflow-wrap: anywhere; text-align: center; }
.provider-band.has-domains .provider-logo { height: 76px; flex-direction: column; gap: 7px; }
.provider-band.has-domains .provider-logo img { max-height: 36px; }
.section-dark .provider-domain { color: rgba(251,250,246,.42); }
.provider-logo:hover img { transform: translateY(-2px); opacity: .72; }

/* Shared sections */
.section { padding: clamp(72px, 6vw, 104px) 0; }
.section-sm { padding: clamp(56px, 4.5vw, 78px) 0; }
.section-xs { padding: 48px 0; }
.section-dark { background: var(--night); color: var(--white); }
.section-night-2 { background: var(--night-2); color: var(--white); }
.section-paper { background: var(--paper); }
.section-paper-2 { background: var(--paper-2); }
.section-red { background: var(--red); color: var(--night); }
.rule-top { border-top: 1px solid var(--line); }
.section-dark.rule-top { border-color: var(--line-dark); }
.section-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 100px;
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(38px, 3.6vw, 58px);
}
.section-head .section-no {
  justify-self: end;
  color: var(--steel-dark);
  font-size: 10px;
}
.section-head .heading-wrap { max-width: 1080px; }
.section-head .heading-wrap p { max-width: 700px; margin: 26px 0 0 auto; }
.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}
.split-intro .aside-copy { padding-top: 10px; }
.stack { display: grid; gap: 22px; }

/* Home sections */
.home-positioning .display-md { max-width: 950px; }
.home-positioning .body-lg { grid-column: 7 / span 5; max-width: 640px; margin-top: 14px; }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 22px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 420px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.service-card .card-no { display: block; margin-bottom: 58px; color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
.service-card p { max-width: 420px; margin: 22px 0 34px; color: var(--ink-soft); line-height: 1.55; }
.service-icon { position: absolute; right: 24px; bottom: 22px; width: 150px; height: 150px; color: rgba(11,15,16,.24); }
.facility-layout { display: grid; grid-template-columns: 1.55fr .65fr; border: 1px solid var(--line-dark); }
.facility-graphic { min-height: 550px; border-right: 1px solid var(--line-dark); }
.facility-panel { display: grid; align-content: start; }
.facility-panel .fact-row { padding: 24px; border-bottom: 1px solid var(--line-dark); }
.facility-panel dt { margin-bottom: 12px; color: rgba(251,250,246,.4); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.facility-panel dd { margin: 0; color: rgba(251,250,246,.88); font-size: 15px; }
.facility-note { padding: 24px; color: rgba(251,250,246,.45); font-family: var(--mono); font-size: 9px; line-height: 1.6; letter-spacing: .07em; text-transform: uppercase; }
.connectivity-layout { display: grid; grid-template-columns: 1.55fr .65fr; border: 1px solid var(--line); }
.network-graphic { min-height: 560px; border-right: 1px solid var(--line); }
.network-legend { display: grid; }
.network-legend article { padding: 28px; border-bottom: 1px solid var(--line); }
.network-legend article:last-child { border-bottom: 0; }
.network-legend .mini-label { display: block; margin-bottom: 14px; color: var(--red); font-size: 9px; }
.network-legend p { margin: 0; color: var(--ink-soft); line-height: 1.52; }
.manifesto-title { max-width: 1100px; }
.manifesto-principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border-top: 1px solid rgba(11,15,16,.24); }
.manifesto-principles article { min-height: 190px; padding: 26px 26px 0 0; border-right: 1px solid rgba(11,15,16,.24); }
.manifesto-principles article + article { padding-left: 26px; }
.manifesto-principles article:last-child { border-right: 0; }
.manifesto-principles h3 { margin: 0 0 14px; font-size: 18px; }
.manifesto-principles p { color: rgba(11,15,16,.72); line-height: 1.55; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-step { min-height: 300px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step .mini-label { display: block; margin-bottom: 80px; color: var(--red); font-size: 9px; }
.process-step h3 { margin: 0 0 18px; font-size: 22px; }
.process-step p { color: var(--ink-soft); line-height: 1.52; }
.public-position { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.public-links { display: grid; border-top: 1px solid var(--line-dark); }
.public-links a { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line-dark); color: rgba(251,250,246,.8); }
.public-links a::after { content: "↗"; }
.experience-strip { display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; }
.perspective-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.perspective-card { min-height: 315px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.perspective-card .mini-label { color: var(--red); font-size: 9px; }
.perspective-card h3 { margin: 46px 0 22px; font-size: 30px; line-height: 1; letter-spacing: -.04em; }
.perspective-card p { color: var(--ink-soft); line-height: 1.55; }
.perspective-card .text-link { margin-top: auto; }

/* Interior hero families */
.breadcrumb { margin-bottom: 24px; color: var(--steel-dark); font-size: 9px; }
.breadcrumb a:hover { color: var(--red); }
.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.service-hero-inner {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .72fr);
  gap: 58px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 54px;
}
.service-hero-copy .display-lg { max-width: 960px; }
.service-hero-copy .lede { max-width: 720px; margin-top: 24px; }
.service-hero-copy .actions { margin-top: 28px; }
.service-hero-visual { min-height: 390px; border-left: 1px solid var(--line); }
.service-hero-visual svg { width: 100%; height: 100%; }
.service-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-summary article { padding: 20px 24px; border-right: 1px solid var(--line); }
.service-summary article:last-child { border-right: 0; }
.service-summary .mini-label { display: block; margin-bottom: 14px; color: var(--steel-dark); font-size: 9px; }
.service-summary strong { font-size: 16px; }

.connectivity-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 73% 46%, rgba(255,86,54,.17), transparent 27%),
    var(--night);
  background-size: 58px 58px, 58px 58px, auto, auto;
  color: var(--white);
}
.connectivity-hero-inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
  padding-top: 66px;
  padding-bottom: 60px;
}
.connectivity-hero-copy .lede { margin-top: 24px; }
.connectivity-hero-copy .actions { margin-top: 28px; }
.connectivity-map { min-height: 440px; }

.company-hero { background: var(--red); color: var(--night); border-bottom: 1px solid rgba(11,15,16,.24); }
.company-hero-inner {
  min-height: 620px;
  padding-top: 66px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1fr minmax(440px, .85fr);
  gap: 64px;
  align-items: center;
}
.company-hero .breadcrumb,
.company-hero .eyebrow { color: rgba(11,15,16,.62); }
.company-hero .lede { margin-top: 34px; color: rgba(11,15,16,.72); }
.company-index {
  display: grid;
  border-top: 1px solid rgba(11,15,16,.28);
}
.company-index article { padding: 22px 0; border-bottom: 1px solid rgba(11,15,16,.28); }
.company-index .mini-label { display: block; margin-bottom: 8px; color: rgba(11,15,16,.52); font-size: 9px; }
.company-index strong { font-size: 18px; }

.perspective-hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.perspective-hero-inner { padding-top: 78px; padding-bottom: 70px; }
.perspective-hero .display-xl { max-width: 1240px; }
.perspective-hero .lede { max-width: 880px; margin-top: 38px; margin-left: auto; }
.perspective-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 78px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-hero { background: var(--night); color: var(--white); }
.contact-layout {
  min-height: 780px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 0;
  padding-top: 92px;
  padding-bottom: 92px;
}
.contact-copy { padding-right: clamp(40px, 7vw, 110px); }
.contact-copy .lede { margin-top: 32px; }
.contact-copy .contact-aside { margin-top: 80px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.contact-form-wrap { padding: 42px; background: var(--paper); color: var(--ink); }

/* Commercial page components */
.responsibility-matrix { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.responsibility-column { padding: clamp(30px, 4vw, 58px); }
.responsibility-column + .responsibility-column { border-left: 1px solid var(--line); }
.responsibility-column h3 { margin: 0 0 36px; }
.clean-list { margin: 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 14px 0 14px 28px; border-top: 1px solid var(--line-soft); color: var(--ink-soft); line-height: 1.48; }
.clean-list li::before { content: "—"; position: absolute; left: 0; color: var(--red); }
.section-dark .clean-list li { border-color: var(--line-dark-soft); color: rgba(251,250,246,.7); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.audience-card { min-height: 285px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-card .mini-label { display: block; margin-bottom: 54px; color: var(--red); font-size: 9px; }
.audience-card h3 { margin: 0 0 18px; }
.audience-card p { color: var(--ink-soft); line-height: 1.55; }
.requirements-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.requirement-list { counter-reset: req; display: grid; border-top: 1px solid var(--line); }
.requirement-list li {
  counter-increment: req;
  list-style: none;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 18px;
}
.requirement-list li::before { content: "0" counter(req); color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
.inline-feature { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.inline-feature .feature-panel { padding: 38px; border: 1px solid var(--line-dark); }
.cooling-diagram { min-height: 300px; }
.timeline { display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.timeline-step { min-height: 225px; padding: 24px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline-step .mini-label { display: block; margin-bottom: 48px; color: var(--red); font-size: 9px; }
.timeline-step p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.48; }
.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.compare-card { min-height: 340px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.compare-card h3 { margin: 0 0 26px; }
.compare-card p { color: rgba(251,250,246,.67); line-height: 1.55; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { display: grid; grid-template-columns: minmax(300px,.8fr) minmax(0,1.2fr); gap: 70px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-size: 22px; line-height: 1.15; letter-spacing: -.025em; }
.faq-item p { margin: 0; color: var(--ink-soft); line-height: 1.6; }

/* Connectivity components */
.neutral-explainer { display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: start; }
.neutral-note { padding: 34px; border: 1px solid var(--line); }
.neutral-note .mini-label { display: block; margin-bottom: 34px; color: var(--red); font-size: 9px; }
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.option-card { min-height: 330px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.option-card .mini-label { display: block; margin-bottom: 70px; color: var(--red); font-size: 9px; }
.option-card p { color: var(--ink-soft); line-height: 1.57; }
.design-questions { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.design-questions ol { counter-reset: q; margin: 0; padding: 0; border-top: 1px solid var(--line-dark); }
.design-questions li {
  counter-increment: q;
  list-style: none;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(251,250,246,.75);
  font-size: 18px;
}
.design-questions li::before { content: "0" counter(q); color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
.audience-split { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.audience-split article { padding: clamp(36px, 5vw, 70px); }
.audience-split article + article { border-left: 1px solid var(--line); }
.audience-split h3 { margin: 0 0 24px; }
.audience-split p { color: var(--ink-soft); line-height: 1.6; }

/* Company */
.story-layout { display: grid; grid-template-columns: .6fr 1.4fr; gap: 90px; }
.story-years { position: sticky; top: 120px; align-self: start; }
.story-years strong { display: block; font-size: clamp(68px, 7vw, 120px); line-height: .85; letter-spacing: -.07em; }
.story-copy { display: grid; gap: 32px; }
.mission-block { padding: clamp(58px, 8vw, 120px); background: var(--night); color: var(--white); }
.mission-block .display-md { max-width: 1100px; }
.mission-block .body-lg { max-width: 680px; margin: 48px 0 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card { min-height: 270px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-card .mini-label { display: block; margin-bottom: 48px; color: var(--red); font-size: 9px; }
.value-card p { color: var(--ink-soft); line-height: 1.52; }
.team-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.team-functions { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.team-functions span { padding: 22px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: rgba(251,250,246,.75); font-size: 16px; }
.plurality-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: end; }
.plurality-stack { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.plurality-stack span { padding: 18px 22px; background: var(--paper-2); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Perspective index */
.topic-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.topic-card { min-height: 245px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.topic-card .mini-label { display: block; margin-bottom: 44px; color: var(--red); font-size: 9px; }
.topic-card p { color: var(--ink-soft); line-height: 1.5; }
.featured-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.featured-article { min-height: 430px; padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.featured-article:first-child { grid-row: span 2; min-height: 860px; }
.featured-article .article-meta { color: rgba(251,250,246,.45); font-size: 9px; }
.featured-article h2 { margin: auto 0 26px; font-size: clamp(32px, 3.3vw, 58px); line-height: .98; letter-spacing: -.05em; }
.featured-article:first-child h2 { font-size: clamp(44px, 5vw, 86px); }
.featured-article p { color: rgba(251,250,246,.64); line-height: 1.55; }
.editorial-commitment { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.editorial-commitment ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.editorial-commitment li { padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }

/* Article */
.article-hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.article-hero-inner { padding-top: 74px; padding-bottom: 66px; }
.article-hero .breadcrumb { margin-bottom: 52px; }
.article-hero h1 { max-width: 1280px; }
.article-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; margin-top: 58px; }
.article-intro .lede { max-width: none; }
.article-meta { color: var(--steel-dark); font-size: 9px; line-height: 1.6; }
.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  padding-top: 62px;
  padding-bottom: 104px;
}
.article-toc { position: sticky; top: 120px; }
.article-toc .mini-label { display: block; margin-bottom: 22px; color: var(--steel-dark); font-size: 9px; }
.article-toc nav { display: grid; border-top: 1px solid var(--line); }
.article-toc a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--steel-dark); font-size: 13px; line-height: 1.35; }
.article-toc a:hover { color: var(--red); }
.article-body { font-size: 18px; line-height: 1.72; }
.article-body h2 {
  scroll-margin-top: 120px;
  margin: 90px 0 28px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 46px 0 14px; font-size: 24px; line-height: 1.1; letter-spacing: -.03em; }
.article-body p { margin-bottom: 24px; color: var(--ink-soft); }
.article-body ul, .article-body ol { margin: 0 0 28px; padding-left: 24px; }
.article-body li { margin-bottom: 10px; color: var(--ink-soft); }
.article-body blockquote {
  margin: 52px 0;
  padding: 30px 0 30px 32px;
  border-left: 4px solid var(--red);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.04em;
}
.article-body blockquote p { margin: 0; color: var(--ink); }
.article-callout { margin: 50px 0; padding: 28px; background: var(--paper-2); border: 1px solid var(--line); }
.article-callout .mini-label { display: block; margin-bottom: 20px; color: var(--red); font-size: 9px; }
.article-callout p:last-child { margin-bottom: 0; }
.article-aside { position: sticky; top: 120px; }
.article-diagram { min-height: 330px; border: 1px solid var(--line); background: var(--paper-2); }
.article-aside-note { margin-top: 18px; color: var(--steel-dark); font-family: var(--mono); font-size: 9px; line-height: 1.6; letter-spacing: .07em; text-transform: uppercase; }
.definition-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin: 34px 0 46px; }
.definition-card { padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.definition-card h3 { margin: 0 0 12px; font-size: 20px; }
.definition-card p { margin: 0; font-size: 16px; }
.article-next { background: var(--night); color: var(--white); }
.article-next-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; padding-top: 80px; padding-bottom: 80px; }
.article-next p { color: rgba(251,250,246,.62); }

/* Contact */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.form-label { font-size: 9px; color: var(--steel-dark); }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--red); }
.checkbox-field { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; color: var(--steel-dark); font-size: 13px; line-height: 1.5; }
.checkbox-field input { margin-top: 3px; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 12px; }
.form-message { display: none; margin: 0; color: var(--green); font-size: 13px; }
.form-message.is-visible { display: block; }
.visit-panel { margin-top: 42px; padding: 26px; border: 1px solid var(--line-dark); }
.visit-panel p { color: rgba(251,250,246,.64); line-height: 1.55; }
.press-list { margin: 22px 0 0; padding: 0; list-style: none; }
.press-list li { padding: 10px 0; border-bottom: 1px solid var(--line-dark); color: rgba(251,250,246,.65); }

/* CTA and footer */
.cta-band { background: var(--night); color: var(--white); }
.cta-inner {
  min-height: 520px;
  padding-top: 90px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
}
.cta-inner .display-md { max-width: 950px; }
.cta-copy { align-self: end; }
.cta-copy p { margin: 0 0 30px; color: rgba(251,250,246,.62); font-size: 18px; line-height: 1.55; }
.cta-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line-dark); color: rgba(251,250,246,.38); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer { background: var(--night); color: var(--white); border-top: 1px solid var(--line-dark); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 50px;
  padding-top: 58px;
  padding-bottom: 58px;
}
.footer-brand p { max-width: 340px; margin: 22px 0 0; color: rgba(251,250,246,.48); line-height: 1.5; }
.footer-label { display: block; margin-bottom: 20px; color: rgba(251,250,246,.34); font-size: 9px; }
.footer-col nav { display: grid; align-content: start; gap: 11px; }
.footer-brand .footer-contact { display: grid; gap: 6px; margin-top: 22px; }
.footer-col a, .footer-contact a, .footer-contact address { color: rgba(251,250,246,.66); font-size: 14px; font-style: normal; line-height: 1.5; }
.footer-col a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; padding-bottom: 28px; border-top: 1px solid var(--line-dark); color: rgba(251,250,246,.36); font-size: 11px; }
.footer-bottom nav { display: flex; gap: 24px; align-items: center; }
.footer-bottom nav a, .footer-bottom .footer-cookie-button { color: rgba(251,250,246,.5); font-size: 11px; }
.footer-bottom nav a:hover, .footer-bottom .footer-cookie-button:hover { color: var(--white); }

/* 404 */
.error-page { min-height: 760px; display: grid; place-items: center; background: var(--night); color: var(--white); }
.error-inner { padding-top: 110px; padding-bottom: 110px; }
.error-code { color: var(--red); font-family: var(--mono); font-size: 12px; letter-spacing: .1em; }
.error-inner .display-lg { max-width: 1000px; margin-top: 28px; }
.error-inner .lede { margin-top: 30px; }
.error-inner .actions { margin-top: 34px; }

/* Reveal */
.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }  /* sin menú central: logo | acciones a la derecha */
  .header-actions .visit-link { display: none; }
  .menu-toggle { display: flex; flex-direction: column; }
  .hero-home-inner { grid-template-columns: 1fr 440px; gap: 40px; }
  .section-head { grid-template-columns: 140px 1fr 70px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(4, 1fr); }
  .values-grid, .topic-grid { grid-template-columns: repeat(3, 1fr); }
  .article-layout { grid-template-columns: 210px minmax(0, 1fr); }
  .article-aside { display: none; }
  .footer-top { grid-template-columns: 1.2fr repeat(3, minmax(0,1fr)); gap: 30px; }
}

@media (max-width: 920px) {
  :root { --header-h: 74px; }
  .header-actions .button { display: none; }
  .hero-home { min-height: 0; }
  .hero-home-inner,
  .service-hero-inner,
  .connectivity-hero-inner,
  .company-hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-home-inner { min-height: 0; padding-top: 140px; padding-bottom: 46px; }
  .hero-graphic { min-height: 0; padding-top: 34px; border-left: 0; border-right: 0; border-top: 1px solid var(--line-dark); }
  .hero-sensor-map { width: min(100%, 760px); margin: 0 auto; }
  .hero-index { grid-template-columns: repeat(2, 1fr); }
  .hero-index .fact { border-bottom: 1px solid var(--line-dark); }
  .provider-row { display: flex; overflow-x: auto; gap: 22px; padding-bottom: 4px; scrollbar-width: thin; }
  .provider-logo { flex: 0 0 118px; }
  .section-head { grid-template-columns: 1fr auto; }
  .section-head .kicker { grid-column: 1; }
  .section-head .heading-wrap { grid-column: 1 / -1; }
  .section-head .section-no { grid-column: 2; grid-row: 1; }
  .split-intro,
  .facility-layout,
  .connectivity-layout,
  .public-position,
  .experience-strip,
  .requirements-layout,
  .inline-feature,
  .neutral-explainer,
  .design-questions,
  .story-layout,
  .team-block,
  .plurality-layout,
  .editorial-commitment,
  .article-intro,
  .article-next-inner {
    grid-template-columns: 1fr;
  }
  .home-positioning .body-lg { grid-column: 1 / -1; margin-top: 46px; }
  .service-grid, .perspective-cards, .option-grid, .compare-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .facility-graphic, .network-graphic { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .connectivity-layout .network-graphic { border-color: var(--line); }
  .manifesto-principles, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-hero-inner { padding-top: 70px; }
  .service-hero-visual { border-left: 0; border-top: 1px solid var(--line); min-height: 380px; }
  .service-summary { grid-template-columns: 1fr; }
  .service-summary article { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-summary article:last-child { border-bottom: 0; }
  .responsibility-matrix, .audience-split { grid-template-columns: 1fr; }
  .responsibility-column + .responsibility-column,
  .audience-split article + article { border-left: 0; border-top: 1px solid var(--line); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .company-hero-inner { min-height: 0; }
  .company-index { margin-top: 30px; }
  .story-years { position: static; }
  .values-grid, .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .featured-article:first-child { grid-row: auto; min-height: 560px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .article-toc nav { grid-template-columns: repeat(2, 1fr); }
  .article-toc a:nth-child(odd) { padding-right: 18px; }
  .contact-copy { padding-right: 0; }
  .contact-form-wrap { margin-top: 40px; }
  .cta-inner { grid-template-columns: 1fr; min-height: 0; }
  .cta-copy { max-width: 680px; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .display-xl { font-size: 46px; }
  .display-lg { font-size: 34px; }
  .display-md { font-size: 26px; }
  .outline { -webkit-text-stroke-width: .8px; }
  .section { padding: 82px 0; }
  .section-sm { padding: 62px 0; }
  .header-inner { gap: 16px; }
  .brand { font-size: 26px; }
  .hero-home-inner { padding-top: 122px; }
  .hero-copy .lede { margin-top: 26px; }
  .hero-graphic { min-height: 0; padding-top: 24px; }
  .hero-media-caption { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 8px; }
  .hero-media-caption span:last-child { text-align: left; }
  .hero-index { grid-template-columns: 1fr; }
  .hero-index .fact { padding-left: 0; border-right: 0; }
  .section-head { margin-bottom: 46px; }
  .grid-12 { display: block; }
  .service-card { min-height: 360px; padding: 25px; }
  .service-card .card-no { margin-bottom: 64px; }
  .facility-graphic, .network-graphic { min-height: 380px; }
  .manifesto-principles, .process-grid, .audience-grid, .timeline, .values-grid, .topic-grid, .definition-grid { grid-template-columns: 1fr; }
  .manifesto-principles article { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(11,15,16,.24); }
  .manifesto-principles article + article { padding-left: 0; }
  .manifesto-principles article:last-child { border-bottom: 0; }
  .process-step, .audience-card, .value-card, .topic-card { min-height: 0; }
  .process-step .mini-label, .audience-card .mini-label, .value-card .mini-label, .topic-card .mini-label { margin-bottom: 42px; }
  .public-position { gap: 48px; }
  .service-hero-inner, .connectivity-hero-inner, .company-hero-inner { padding-top: 58px; padding-bottom: 56px; }
  .connectivity-map { min-height: 340px; }
  .requirements-layout, .design-questions { gap: 46px; }
  .requirement-list li, .design-questions li { grid-template-columns: 48px 1fr; }
  .faq-item { grid-template-columns: 1fr; gap: 18px; }
  .team-functions { grid-template-columns: 1fr; }
  .perspective-hero-inner { padding-top: 74px; padding-bottom: 68px; }
  .perspective-masthead { margin-bottom: 52px; }
  .featured-article, .featured-article:first-child { min-height: 430px; }
  .article-hero-inner { padding-top: 70px; padding-bottom: 64px; }
  .article-intro { gap: 28px; margin-top: 40px; }
  .article-layout { padding-top: 54px; padding-bottom: 90px; }
  .article-toc nav { grid-template-columns: 1fr; }
  .article-body { font-size: 17px; }
  .article-body h2 { margin-top: 68px; }
  .contact-layout { padding-top: 62px; padding-bottom: 62px; }
  .contact-form-wrap { padding: 25px 20px; margin-inline: -2px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full, .checkbox-field, .form-actions { grid-column: 1; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .cta-inner { padding-top: 72px; padding-bottom: 42px; }
  .cta-meta { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom nav { flex-wrap: wrap; gap: 14px 22px; }
}

@media (max-width: 760px) {
  .hero-media-video { display: none; }
  .hero-media-poster { opacity: 1 !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media-video { display: none; }
  .hero-media-poster { opacity: 1 !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Final responsive refinements */
.contact-hero .lede { color: rgba(251,250,246,.7); }

@media (max-width: 640px) {
  .contact-hero .display-lg { font-size: 38px; }
  .hero-home .display-xl { font-size: 42px; }
  .hero-home .actions { display: grid; grid-template-columns: 1fr; }
  .hero-home .actions .button { width: 100%; }
  .hero-home, .hero-home * { min-width: 0; }
}

/* Narrow-screen intrinsic sizing fixes */
@media (max-width: 920px) {
  .experience-strip,
  .audience-split,
  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-strip > *,
  .audience-split > *,
  .featured-grid > *,
  .public-position > *,
  .split-intro > *,
  .service-grid > *,
  .perspective-cards > *,
  .topic-grid > *,
  .option-grid > *,
  .contact-layout > *,
  .service-hero-inner > *,
  .connectivity-hero-inner > *,
  .company-hero-inner > * {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .perspective-hero .display-xl {
    font-size: 44px;
  }

  .featured-article,
  .audience-split article,
  .experience-strip > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .experience-strip .display-md {
    font-size: clamp(31px, 9.5vw, 38px);
  }
}


/* v2.2 density and navigation refinements */
@media (min-width: 921px) {
  .home-positioning .section-head { margin-bottom: 26px; }
  .service-hero-copy .display-lg { font-size: 58px; }
  .site-header { text-rendering: auto; }
}
@media (max-width: 360px) {
  .display-lg { font-size: 40px; }
  .display-md { font-size: 23px; }
  .company-hero .display-lg { font-size: 32px; }
  .featured-article { padding: 24px; }
  .featured-article h2,
  .featured-article:first-child h2 {
    font-size: 28px;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
  }
}

/* canonical content system */
.brand-logo { width: 132px; height: auto; }
.footer-brand .brand-logo { width: 154px; }
.hero-lede { display: grid; gap: 16px; }
.hero-lede p { margin: 0; }
.hero-home .hero-lede,
.connectivity-hero .hero-lede { color: rgba(251,250,246,.7); }
.hero-home .hero-lede p,
.connectivity-hero .hero-lede p { color: inherit; }
.service-hero .hero-lede,
.company-hero .hero-lede { margin-top: 28px; }
.service-hero .actions,
.connectivity-hero .actions,
.company-hero .actions { margin-top: 30px; }

.hero-schematic {
  min-height: 410px;
  display: grid;
  align-content: end;
  border-left: 1px solid var(--line);
  padding-left: clamp(26px, 4vw, 58px);
}
.connectivity-hero .hero-schematic { border-color: var(--line-dark); }
.company-hero .hero-schematic { border-color: rgba(11,15,16,.28); }
.hero-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.connectivity-hero .hero-stat-grid { border-color: var(--line-dark); }
.company-hero .hero-stat-grid { border-color: rgba(11,15,16,.28); }
.hero-stat {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.connectivity-hero .hero-stat { border-color: var(--line-dark); }
.company-hero .hero-stat { border-color: rgba(11,15,16,.28); }
.hero-stat span { color: var(--steel-dark); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.connectivity-hero .hero-stat span { color: rgba(251,250,246,.42); }
.company-hero .hero-stat span { color: rgba(11,15,16,.5); }
.hero-stat strong { font-size: clamp(20px, 2vw, 31px); line-height: 1; letter-spacing: -.04em; }

.canonical-section { border-bottom: 1px solid var(--line); }
.section-dark.canonical-section { border-color: var(--line-dark); }
.canonical-content { display: grid; gap: 28px; min-width: 0; }
.canonical-content > p {
  width: min(100%, 900px);
  margin: 0 0 0 auto;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.62;
}
.section-dark .canonical-content > p { color: rgba(251,250,246,.7); }
.canonical-content > .actions { width: min(100%, 900px); margin-left: auto; }
.canonical-content > .clean-list,
.canonical-content > .numbered-list { width: min(100%, 900px); margin-left: auto; }
.canonical-content > blockquote { width: min(100%, 900px); margin: 0 0 0 auto; padding: 24px 0 24px 26px; border-left: 4px solid var(--red); }
.canonical-content > blockquote p { margin: 0; font-size: clamp(24px, 2.7vw, 42px); font-weight: 700; line-height: 1.05; letter-spacing: -.04em; }

.table-scroll { width: 100%; overflow-x: auto; border-top: 1px solid var(--line); }
.section-dark .table-scroll { border-color: var(--line-dark); }
.data-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.data-table th,
.data-table td { padding: 15px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th:first-child,
.data-table td:first-child { padding-left: 0; }
.data-table th:last-child,
.data-table td:last-child { border-right: 0; }
.data-table th { color: var(--steel-dark); font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.data-table td { color: var(--ink-soft); font-size: 15px; line-height: 1.45; }
.section-dark .data-table th,
.section-dark .data-table td { border-color: var(--line-dark); }
.section-dark .data-table th { color: rgba(251,250,246,.38); }
.section-dark .data-table td { color: rgba(251,250,246,.74); }

.canonical-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.canonical-card-grid.count-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.canonical-card-grid.count-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.section-dark .canonical-card-grid { border-color: var(--line-dark); }
.canonical-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark .canonical-card { border-color: var(--line-dark); }
.canonical-card h3 { margin: 0 0 30px; font-size: clamp(23px, 2.1vw, 34px); line-height: 1.04; letter-spacing: -.04em; }
.canonical-card p { margin: 0 0 22px; color: var(--ink-soft); line-height: 1.58; }
.section-dark .canonical-card p { color: rgba(251,250,246,.66); }
.canonical-card .clean-list { margin-bottom: 24px; }
.canonical-card .actions { margin-top: auto; padding-top: 20px; }
.canonical-card a:hover { color: var(--red); }
.canonical-card .button:hover { color: var(--night); }

/* Home v1.7: four equivalent capabilities, then contextual solutions outside the card grid. */
.home-solutions-block {
  margin-top: clamp(36px, 4vw, 58px);
  padding-top: clamp(26px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.section-dark .home-solutions-block { border-color: var(--line-dark); }
.home-solutions-block > h3 {
  margin: 0 0 20px;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.section-dark .home-solutions-block > h3 { color: rgba(251,250,246,.5); }
.home-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.section-dark .home-solutions-grid { border-color: var(--line-dark); }
.home-solution-item {
  min-width: 0;
  padding: clamp(22px, 2.5vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark .home-solution-item { border-color: var(--line-dark); }
.home-solution-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.58;
}
.section-dark .home-solution-item p { color: rgba(251,250,246,.66); }
.home-solution-item strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: 20px; line-height: 1.15; }
.section-dark .home-solution-item strong { color: var(--white); }
.home-solution-item a:hover { color: var(--red); }

.clean-list { margin: 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 13px 0 13px 27px; border-top: 1px solid var(--line-soft); color: var(--ink-soft); line-height: 1.48; }
.clean-list li::before { content: "—"; position: absolute; left: 0; color: var(--red); }
.section-dark .clean-list li { border-color: var(--line-dark-soft); color: rgba(251,250,246,.68); }
.numbered-list { counter-reset: canonical-list; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.numbered-list li {
  counter-increment: canonical-list;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.5;
}
.numbered-list li::before { content: counter(canonical-list, decimal-leading-zero); color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.section-dark .numbered-list,
.section-dark .numbered-list li { border-color: var(--line-dark); }
.section-dark .numbered-list li { color: rgba(251,250,246,.7); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { display: grid; grid-template-columns: minmax(240px,.7fr) minmax(0,1.3fr); gap: clamp(28px,5vw,80px); padding: 28px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-size: clamp(20px,2vw,29px); line-height: 1.08; letter-spacing: -.03em; }
.faq-answer { display: grid; gap: 14px; }
.faq-answer p { margin: 0; }
.section-dark .faq-list,
.section-dark .faq-item { border-color: var(--line-dark); }
.section-dark .faq-item p { color: rgba(251,250,246,.7); }

.canonical-content .provider-band { margin: 0; padding: 28px 0 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; }
.section-dark .canonical-content .provider-band { border-color: var(--line-dark); }
.provider-row { min-width: 0; }
.provider-caption { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.perspective-topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.perspective-topic { min-height: 390px; display: flex; flex-direction: column; padding: clamp(26px,3vw,40px); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.perspective-topic:first-child { grid-row: span 2; min-height: 780px; }
.perspective-topic h2 { margin: auto 0 24px; font-size: clamp(32px,3.4vw,58px); line-height: .98; letter-spacing: -.05em; }
.perspective-topic:first-child h2 { font-size: clamp(46px,5vw,82px); }
.perspective-topic p { margin: 0 0 16px; color: rgba(251,250,246,.64); }
.perspective-topic p:last-child { margin-bottom: 0; }
.perspective-topic a:hover { color: var(--red); }

.article-meta-grid { display: grid; border-top: 1px solid var(--line); }
.article-meta-grid > div { display: grid; gap: 6px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.article-meta-grid span,
.article-factbox span { color: var(--steel-dark); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.article-meta-grid strong { font-size: 14px; line-height: 1.45; }
.article-disclaimer { width: fit-content; margin: 0 0 32px; padding: 12px 16px; border: 1px solid var(--line); color: var(--steel-dark); font-size: 13px; }
.article-claim { margin: 28px 0 32px !important; color: var(--ink) !important; font-size: clamp(25px,2.7vw,42px); font-weight: 700; line-height: 1.06; letter-spacing: -.04em; }
.article-body a { text-decoration: underline; text-decoration-color: rgba(255,86,54,.45); text-underline-offset: .18em; }
.article-body .actions { margin: 44px 0 0; }
.article-body .actions a { text-decoration: none; }
.article-body .table-scroll { margin: 34px 0 46px; }
.article-body .data-table { min-width: 760px; }
.article-body .clean-list { margin-bottom: 28px; }
.article-body .numbered-list { margin-bottom: 34px; }
.article-factbox { border: 1px solid var(--line); background: var(--paper-2); }
.article-factbox > .mini-label { display: block; padding: 20px; border-bottom: 1px solid var(--line); color: var(--red); }
.article-factbox > div { display: grid; gap: 7px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.article-factbox > div:last-child { border-bottom: 0; }
.article-factbox strong { font-size: 13px; line-height: 1.45; }

.legal-hero { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.legal-hero-inner { padding-top: 74px; padding-bottom: 66px; }
.legal-hero .breadcrumb { margin-bottom: 52px; }
.legal-hero .article-meta { margin-top: 26px; }
.legal-layout .article-body { max-width: 780px; }

.direct-contact-grid { display: grid; gap: 22px; }
.direct-contact-grid > div { display: grid; gap: 7px; padding-bottom: 20px; border-bottom: 1px solid var(--line-dark); }
.direct-contact-grid span { color: rgba(251,250,246,.4); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.direct-contact-grid a,
.direct-contact-grid address { color: rgba(251,250,246,.76); font-size: 16px; font-style: normal; line-height: 1.55; }
.contact-form-wrap { scroll-margin-top: 110px; }
.contact-form-wrap .heading-lg { margin-bottom: 42px; }
.checkbox-field a { text-decoration: underline; text-underline-offset: .18em; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--red); }
.form-message.is-error { color: var(--red-dark); }
.form-message.is-success { color: #24743a; }
.visit-panel .button { margin-top: 8px; }

.footer-cookie-button { padding: 0; border: 0; background: transparent; color: rgba(251,250,246,.66); cursor: pointer; font-size: 14px; line-height: 1.5; text-align: left; }
.footer-cookie-button:hover { color: var(--white); }

/* Preserved cookie layout: stacked, full available width, compact type. The discarded 880px and centered 660px variants must not return. */
.cookie-banner {
  position: fixed;
  left: max(18px, calc((100vw - var(--container)) / 2 + var(--gutter)));
  right: max(18px, calc((100vw - var(--container)) / 2 + var(--gutter)));
  bottom: 18px;
  z-index: 220;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px 24px;
  border: 1px solid rgba(251,250,246,.24);
  background: rgba(11,15,16,.985);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  color: var(--white);
}
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
.cookie-banner .kicker { margin-bottom: 10px; }
.cookie-banner h2 { margin: 0 0 8px; font-size: 16px; line-height: 1.2; letter-spacing: -.01em; }
.cookie-banner p { max-width: none; margin: 0 0 8px; color: rgba(251,250,246,.68); font-size: 13px; line-height: 1.55; }
.cookie-banner-copy > a { color: rgba(251,250,246,.7); font-size: 12px; text-decoration: underline; text-underline-offset: .2em; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 8px; }
.cookie-banner-actions .button { min-height: 38px; padding: 0 12px 0 14px; gap: 14px; font-size: 10px; }
.cookie-banner-actions .button { min-width: 0; }
.cookie-modal { position: fixed; inset: 0; z-index: 230; display: grid; place-items: center; padding: 20px; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.cookie-dialog { position: relative; width: min(100%,720px); max-height: min(88vh,760px); overflow-y: auto; padding: clamp(24px,4vw,42px); border: 1px solid var(--line); background: var(--paper); color: var(--ink); box-shadow: 0 32px 90px rgba(0,0,0,.42); }
.cookie-dialog-head { display: flex; justify-content: space-between; gap: 30px; align-items: start; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.cookie-dialog-head .kicker { margin-bottom: 10px; }
.cookie-dialog-head h2 { margin: 0; font-size: clamp(32px,4vw,52px); line-height: 1; letter-spacing: -.05em; }
.cookie-close { width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 30px; line-height: 1; }
.cookie-choice { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.cookie-choice strong { display: block; margin-bottom: 8px; font-size: 20px; }
.cookie-choice p { margin: 0; color: var(--ink-soft); line-height: 1.5; }
.cookie-choice > span { color: var(--steel-dark); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.cookie-choice-toggle { cursor: pointer; }
.cookie-choice-toggle input { width: 25px; height: 25px; accent-color: var(--red); }
.cookie-dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 28px; }
body.cookie-modal-open { overflow: hidden; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

@media (max-width: 1180px) {
  .canonical-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .canonical-card-grid.count-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .article-factbox { display: none; }
}

@media (max-width: 920px) {
  .hero-schematic { min-height: 0; border-left: 0; border-top: 1px solid var(--line); padding: 30px 0 0; }
  .connectivity-hero .hero-schematic { border-color: var(--line-dark); }
  .company-hero-inner { align-items: start; }
  .company-hero .hero-stat-grid { margin-top: 28px; }
  .perspective-topic-grid { grid-template-columns: 1fr; }
  .perspective-topic:first-child { grid-row: auto; min-height: 500px; }
  .faq-item { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; align-items: start; }
  .cookie-banner-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .brand-logo { width: 118px; }
  .footer-brand .brand-logo { width: 142px; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat { min-height: 125px; padding: 18px; }
  .canonical-card-grid,
  .canonical-card-grid.count-2,
  .canonical-card-grid.count-4 { grid-template-columns: 1fr; }
  .canonical-card { min-height: 0; }
  .home-solutions-grid { grid-template-columns: 1fr; }
  .canonical-content > p,
  .canonical-content > .actions,
  .canonical-content > .clean-list,
  .canonical-content > .numbered-list { width: 100%; margin-left: 0; }
  .numbered-list li { grid-template-columns: 44px 1fr; }
  .perspective-topic,
  .perspective-topic:first-child { min-height: 400px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; max-height: calc(100vh - 20px); overflow-y: auto; padding: 14px 16px; gap: 10px; }
  .cookie-banner-copy h2 { font-size: 14px; margin-bottom: 6px; }
  .cookie-banner-copy p { font-size: 12px; line-height: 1.45; }
  .cookie-banner-copy a { font-size: 11.5px; }
  .cookie-banner-actions { gap: 6px; }
  .cookie-banner-actions .button { min-height: 34px; font-size: 9.5px; }
  .cookie-banner-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .cookie-banner-actions .button { width: 100%; }
  .cookie-choice { grid-template-columns: 1fr; gap: 14px; }
  .cookie-dialog-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-dialog-actions .button { width: 100%; }
}

/* hero copy refinements */
.hero-lede {
  max-width: 800px;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.48;
  letter-spacing: -.018em;
}
.hero-lede .body-md,
.article-intro .lede .body-md { color: inherit; font-size: inherit; line-height: inherit; letter-spacing: inherit; }
.hero-home .hero-lede,
.connectivity-hero .hero-lede,
.contact-hero .hero-lede { color: rgba(251,250,246,.7); }
.perspective-hero .hero-lede { max-width: 880px; margin-top: 38px; margin-left: auto; }
.contact-copy .hero-lede { margin-top: 32px; }
.company-hero .button-red { border-color: var(--night); background: var(--night); color: var(--white); }
.company-hero .button-red:hover { border-color: var(--white); background: var(--white); color: var(--night); }

/* Contain horizontally scrollable inventories on narrow screens. */
html { overflow-x: hidden; }
.table-scroll,
.provider-band,
.provider-row { max-width: 100%; min-width: 0; }
.contact-form-wrap { align-self: start; }

@media (max-width: 920px) {
  .provider-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px;
    overflow: visible;
  }
  .provider-logo { flex: initial; width: auto; min-width: 0; }
}

@media (max-width: 640px) {
  .data-table { min-width: 0; table-layout: fixed; }
  .data-table th,
  .data-table td { padding: 12px 8px; overflow-wrap: anywhere; font-size: 12px; }
  .data-table th:first-child,
  .data-table td:first-child { padding-left: 0; }
  .provider-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Final mobile containment: long Spanish headings must never widen the page. */
@media (max-width: 640px) {
  body,
  main,
  section,
  .container,
  .hero-grid,
  .hero-copy,
  .hero-graphic,
  .hero-schematic,
  .section-head,
  .section-head > *,
  .heading-wrap,
  .canonical-content,
  .canonical-card,
  .article-body { min-width: 0; max-width: 100%; }

  .display-xl,
  .display-lg,
  .display-md,
  .heading-lg,
  .heading-md,
  .section-head h2,
  .canonical-card h3,
  .hero-copy h1,
  .perspective-topic h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .hero-graphic,
  .hero-schematic { overflow: hidden; }
}

/* navigation, form, footer and consent refinements */
.desktop-nav { overflow: visible; }
.nav-group { position: relative; display: flex; align-items: center; }
.nav-group-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(251,250,246,.82);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.012em;
  cursor: pointer;
  transition: color .2s ease;
}
.nav-group-toggle:hover,
.nav-group-toggle[aria-current="page"],
.nav-group.is-open .nav-group-toggle,
.nav-group:hover .nav-group-toggle { color: var(--white); }
.nav-group-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform .2s ease;
}
.nav-group-toggle[aria-current="page"]::after,
.nav-group.is-open .nav-group-toggle::after,
.nav-group:hover .nav-group-toggle::after { transform: scaleX(1); }
.nav-group-toggle span { font-size: 12px; transition: transform .2s ease; }
.nav-group.is-open .nav-group-toggle span,
.nav-group:hover .nav-group-toggle span { transform: rotate(180deg); }
.nav-group-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 80;
  display: grid;
  width: min(350px, 88vw);
  padding: 10px;
  border: 1px solid rgba(251,250,246,.16);
  background: rgba(11,15,16,.985);
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-group.is-open .nav-group-menu,
.nav-group:hover .nav-group-menu,
.nav-group:focus-within .nav-group-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* puente invisible entre el botón y el menú para que el ratón no "caiga" en el hueco */
.nav-group::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 26px; }
.desktop-nav .nav-group-menu a {
  display: block;
  padding: 13px 14px;
  color: rgba(251,250,246,.72);
  font-size: 13px;
  line-height: 1.35;
}
.desktop-nav .nav-group-menu a::after { display: none; }
.desktop-nav .nav-group-menu a:hover { background: rgba(251,250,246,.06); color: var(--white); }

.mobile-group { border-bottom: 1px solid var(--line-dark); }
.mobile-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: clamp(22px,6vw,34px);
  font-weight: 650;
  letter-spacing: -.03em;
  text-align: left;
  cursor: pointer;
}
.mobile-group-toggle span { color: var(--red); font-size: .9em; transition: transform .2s ease; }
.mobile-group.is-open .mobile-group-toggle span { transform: rotate(45deg); }
.mobile-group-links { display: grid; padding: 0 0 18px 18px; }
.mobile-group-links[hidden] { display: none; }
.mobile-nav .mobile-group-links a {
  padding: 10px 0;
  border: 0;
  color: rgba(251,250,246,.65);
  font-size: clamp(16px,4vw,20px);
  line-height: 1.35;
}
.mobile-nav .mobile-group-links a:hover { color: var(--white); }

.footer-top { grid-template-columns: minmax(220px,1.4fr) repeat(3,minmax(150px,1fr)); }
.footer-top > * { min-width: 0; }
.footer-column a,
.footer-column button { overflow-wrap: anywhere; }

.form-intro { margin: -22px 0 34px; color: var(--ink-soft); line-height: 1.55; }
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.press-list { margin: 18px 0 24px; }

.toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.cookie-dialog .button-light {
  border-color: var(--night);
  background: transparent;
  color: var(--night);
}
.cookie-dialog .button-light:hover {
  border-color: var(--night);
  background: var(--night);
  color: var(--white);
}
.cookie-dialog-actions .cookie-equal { min-width: 170px; }
.cookie-banner-actions .cookie-equal { min-width: 190px; }
.cookie-banner .button-dark {
  border-color: rgba(251,250,246,.74);
  background: transparent;
  color: var(--white);
}
.cookie-banner .button-dark:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}
.cookie-announcement {
  position: fixed;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-home .hero-lede > p:first-child strong {
  display: block;
  color: var(--white);
  font-size: clamp(25px,2.35vw,40px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

@media (max-width: 1180px) {
  .footer-top { grid-template-columns: 1.2fr repeat(3, minmax(0,1fr)); gap: 30px; }
}

@media (max-width: 920px) {
  .footer-top { grid-template-columns: 1.1fr repeat(3,minmax(0,1fr)); gap: 24px; }

}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px 20px; }
  .footer-brand { grid-column: auto; }
  .form-intro { margin-top: -18px; }
  .cookie-banner-actions .cookie-equal,
  .cookie-dialog-actions .cookie-equal { min-width: 0; }
}

.hero-subheading {
  margin: 28px 0 14px;
  max-width: 760px;
  color: inherit;
  font-size: clamp(22px,2vw,32px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.article-intro .hero-quote {
  margin: 22px 0;
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--red);
}
.article-intro .hero-quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px,1.8vw,30px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
}

/* Preserved hierarchy: descriptive H1 remains visually primary for title-link clarity; coral claim stays adjacent. */
.hero-home .hero-copy .display-xl {
  max-width: 860px;
  font-size: 60px;
  line-height: .9;
  letter-spacing: -.065em;
}
.hero-home .hero-lede {
  margin-top: 24px;
}
.hero-home .hero-lede > p:first-child strong {
  max-width: 680px;
  color: var(--red);
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
}
.hero-evidence {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-dark);
}
.hero-evidence .hero-index {
  border-top: 0;
}
.hero-provider-rail {
  border-top: 1px solid var(--line-dark);
}
.hero-provider-band {
  display: block;
  min-height: 110px;
  padding: 18px 0 22px;
  overflow: visible;
  border: 0;
  background: transparent;
}
.hero-provider-band .provider-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
  color: rgba(251,250,246,.56);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}
.hero-provider-band .provider-title::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 3px;
  flex: 0 0 auto;
  background: var(--red);
}
.hero-provider-band .provider-row {
  grid-template-columns: repeat(9, minmax(54px, 1fr));
  gap: clamp(8px, 1.15vw, 18px);
}
.hero-provider-band .provider-logo {
  height: 58px;
  padding: 7px 2px;
}
.hero-provider-band .provider-logo img {
  max-width: 100%;
  max-height: var(--hero-logo-height, 30px);
  opacity: .76;
  transform: translateY(0);
}
.hero-provider-band .provider-logo--gtd,
.hero-provider-band .provider-logo--vodafone {
  --hero-logo-height: 34px;
}
.hero-provider-band .provider-logo:hover img,
.hero-provider-band .provider-logo:focus-visible img {
  opacity: 1;
  transform: translateY(-2px);
}
.hero-provider-band .provider-logo:focus-visible {
  outline: 1px solid var(--red);
  outline-offset: 4px;
}

@media (max-width: 1180px) and (min-width: 921px) {
  .hero-home-inner {
    min-height: 650px;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 420px);
    gap: 36px;
    padding-top: 132px;
    padding-bottom: 40px;
  }
  .hero-graphic { min-height: 470px; }
  .hero-provider-band {
    display: block;
  }
  .hero-provider-band .provider-row { gap: 8px; }
  .hero-provider-band .provider-logo img { max-height: var(--hero-logo-height, 27px); }
  .hero-provider-band .provider-logo--gtd,
  .hero-provider-band .provider-logo--vodafone { --hero-logo-height: 31px; }
}

@media (max-width: 920px) {
  .hero-home-inner {
    padding-top: 126px;
    padding-bottom: 38px;
  }
  .hero-home .hero-copy .display-xl {
    max-width: 720px;
    font-size: 54px;
  }
  .hero-home .hero-lede > p:first-child strong {
    max-width: 620px;
    font-size: 30px;
  }
  .hero-provider-band {
    display: block;
    min-height: 0;
    padding: 24px 0 28px;
  }
  .hero-provider-band .provider-title {
    margin-bottom: 18px;
  }
  .hero-provider-band .provider-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 14px;
    overflow: visible;
    padding-bottom: 0;
  }
  .hero-provider-band .provider-logo {
    width: auto;
    height: 50px;
    min-width: 0;
  }
  .hero-provider-band .provider-logo img { max-height: var(--hero-logo-height, 27px); }
  .hero-provider-band .provider-logo--gtd,
  .hero-provider-band .provider-logo--vodafone { --hero-logo-height: 31px; }
}

@media (max-width: 640px) {
  .hero-home .hero-copy .display-xl {
    font-size: 42px;
    line-height: .92;
  }
  .hero-home .hero-lede {
    margin-top: 20px;
  }
  .hero-home .hero-lede > p:first-child strong {
    font-size: 26px;
    line-height: 1;
  }
  .hero-home .hero-index {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-home .hero-index .fact {
    padding: 18px 18px 17px;
    border-right: 1px solid var(--line-dark);
  }
  .hero-home .hero-index .fact:nth-child(odd) { padding-left: 0; }
  .hero-home .hero-index .fact:nth-child(even) { border-right: 0; }
  .hero-provider-band { padding-top: 22px; padding-bottom: 24px; }
  .hero-provider-band .provider-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 10px;
  }
  .hero-provider-band .provider-logo { height: 46px; }
  .hero-provider-band .provider-logo img { max-height: var(--hero-logo-height, 24px); }
  .hero-provider-band .provider-logo--gtd,
  .hero-provider-band .provider-logo--vodafone { --hero-logo-height: 28px; }
}

.provider-legend {
  margin: 0 0 14px;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.section-dark .provider-legend { color: rgba(251,250,246,.5); }
.hero-stat:only-child {
  grid-column: 1 / -1;
}

/* Keep the long connectivity H1 readable without splitting words. */
.connectivity-hero .display-lg {
  max-width: 760px;
  font-size: clamp(54px, 5vw, 76px);
  line-height: .92;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
@media (max-width: 640px) {
  .connectivity-hero .display-lg {
    font-size: clamp(39px, 10.7vw, 44px);
    line-height: .96;
    overflow-wrap: normal;
    word-break: normal;
  }
}

/* Prevent long article TOC labels from widening the page at tablet widths. */
@media (max-width: 920px) {
  .article-toc,
  .article-toc nav,
  .article-toc a {
    min-width: 0;
    max-width: 100%;
  }
  .article-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-toc a {
    overflow-wrap: anywhere;
  }
}
@media (max-width: 640px) {
  .article-toc nav {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 920px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .article-layout > *,
  .article-body,
  .article-toc {
    min-width: 0;
    max-width: 100%;
  }
}

/* Local: compensa el margen transparente interno del activo del mapa térmico.
   El fichero (1392x1056) dibuja el isométrico en ~75% del lienzo; el resto es
   transparencia que hacía parecer pequeño el vídeo dentro de sus guías. */
@media (min-width: 921px) {
  .hero-home .hero-media-video { transform: scale(1.27) translateY(12px); }
}

/* Local: figuras provisionales que habitan el hueco izquierdo de las secciones de texto */
.canonical-figure { display: none; }
@media (min-width: 921px) {
  .canonical-content.has-figure {
    grid-template-columns: minmax(240px, 400px) minmax(0, 900px);
    justify-content: space-between;
    align-items: center;
    column-gap: clamp(40px, 6vw, 120px);
  }
  .canonical-figure { display: block; grid-column: 1; grid-row: 1 / span 6; align-self: center; margin: 0; }
  .canonical-figure img { width: 100%; height: auto; }
  .canonical-figure figcaption { margin-top: 8px; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel-dark); }
  .section-dark .canonical-figure figcaption { color: rgba(251,250,246,.38); }
  .canonical-content.has-figure > :not(.canonical-figure) { grid-column: 2; }
  .canonical-content.has-figure > p,
  .canonical-content.has-figure > .actions,
  .canonical-content.has-figure > .clean-list,
  .canonical-content.has-figure > .numbered-list { margin-left: 0; }
}

/* Local: fotos laterales en cover-fill — el contenedor toma la altura del texto y la foto lo llena */
@media (min-width: 921px) {
  .canonical-figure--photo { position: relative; align-self: stretch; }
  .canonical-figure--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
}

/* Local: layout Cockroach — texto y visual a dos columnas alternas */
.split-section { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(44px, 6vw, 110px); align-items: end; }
.split-no { position: absolute; top: 0; right: 0; color: var(--steel-dark); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.section-dark .split-no { color: rgba(251,250,246,.4); }
.split-copy .kicker { margin-bottom: 16px; }
.split-copy h2 { margin: 0 0 20px; }
.split-copy p { width: auto; margin: 0 0 14px; font-size: clamp(16px, 1.1vw, 19px); line-height: 1.62; }
.split-copy p:last-child { margin-bottom: 0; }
.split-copy .actions { margin-top: 26px; }
.split-copy .clean-list, .split-copy .numbered-list { width: auto; margin: 0 0 14px; }
.split-visual { margin: 0; }
.split-visual img { width: 100%; height: auto; display: block; }
.split-visual figcaption { margin-top: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel-dark); }
.section-dark .split-visual figcaption { color: rgba(251,250,246,.38); }
.split-section--flip .split-copy { order: 2; }
.split-section--flip .split-visual { order: 1; }
@media (max-width: 920px) {
  .split-section { grid-template-columns: 1fr; gap: 34px; }
  .split-section--flip .split-copy { order: 1; }
  .split-section--flip .split-visual { order: 2; }
  .split-visual { max-width: 520px; }
  .split-no { position: static; display: block; margin-bottom: 10px; }
}

/* Local: tratamiento técnico para fotos (rejilla, guías, esquinas, leyenda) */
.split-visual--photo { position: relative; align-self: stretch; display: flex; flex-direction: column; margin-top: 31px; }
.split-visual--photo .visual-frame { position: relative; flex: 1; min-height: 260px; }
.split-visual--photo .visual-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-visual--photo::before {
  content: ""; position: absolute; top: 4px; right: -34px; left: 34%; bottom: 96px; z-index: 0;
  background-image: linear-gradient(rgba(11,15,16,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(11,15,16,.09) 1px, transparent 1px);
  background-size: 26px 26px;
}
.split-visual--photo .visual-frame::after {
  content: ""; position: absolute; left: -9%; right: -9%; bottom: -20px; height: 1px; background: rgba(11,15,16,.16);
}
.split-visual--photo img { position: relative; z-index: 1; }
.corner { position: absolute; width: 15px; height: 15px; z-index: 2; }
.split-visual--photo > .corner--tl { top: -4px; left: -7px; position: absolute; z-index: 2; }
.corner--tl { top: -7px; left: -7px; border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
.corner--br { bottom: -7px; right: -7px; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }
.visual-caption { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel-dark); }
.section-dark .split-visual--photo::before { background-image: linear-gradient(rgba(251,250,246,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(251,250,246,.08) 1px, transparent 1px); }
.section-dark .split-visual--photo .visual-frame::after { background: rgba(251,250,246,.18); }
.section-dark .visual-caption { color: rgba(251,250,246,.4); }

/* Local: esquemas vectoriales centrados en su hueco */
.split-section .split-visual:not(.split-visual--photo) {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.split-section .split-visual:not(.split-visual--photo) figcaption { text-align: center; }

/* ===== Inferencia (blog): plantilla de artículo, portada del borrador 20-ago-2026. Acotado a .blog-page ===== */
.blog-page{--navy:#152d42;--muted:#687072;--blue:#135f9d;--toc:250px;--article:720px;--page:1180px;background:#fff}
.blog-page main{background:#fff}
.blog-page img, .blog-page svg{display:block;max-width:100%}.blog-page a{color:inherit;text-decoration:none}.blog-page ::selection{background:var(--red);color:var(--night)}.blog-page .report-head{margin:0;padding:0}.blog-page .meta-row{font-family:var(--mono);font-size:11.5px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}.blog-page .meta-row .format{color:var(--red)}.blog-page h1{max-width:none;margin:20px 0 0;color:var(--navy);font-size:clamp(32px,4.2vw,42px);font-weight:420;line-height:1.04;letter-spacing:-.047em;text-wrap:balance}.blog-page .dek{max-width:none;margin:20px 0 0;color:#535c60;font-family:var(--sans);font-size:18px;line-height:1.6}.blog-page .tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px}.blog-page .tag{padding:7px 12px;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.25);font-size:12px;font-weight:600;color:var(--navy)}.blog-page .tag:hover{border-color:var(--navy)}.blog-page .hero-figure{width:100%;margin:28px 0 0;padding:0}.blog-page .hero-figure img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;border:1px solid var(--line);filter:saturate(.78) contrast(1.02)}.blog-page .hero-figure figcaption{margin-top:9px;color:var(--muted);font-family:var(--mono);font-size:11.5px}.blog-page .mobile-toc{display:none}.blog-page .report-layout{width:min(100%,1080px);margin:54px auto 0;padding:0 var(--gutter) 120px;display:grid;grid-template-columns:minmax(0,var(--article)) var(--toc);column-gap:70px;row-gap:0;align-items:start}.blog-page .report-intro{grid-column:1;grid-row:1}.blog-page .article{grid-column:1;grid-row:2}.blog-page .toc{grid-column:2;grid-row:2}.blog-page .photo-byline{margin:24px 0 24px;font-family:var(--sans);font-size:13.5px;color:var(--ink)}.blog-page .photo-byline a{color:var(--ink);font-weight:700;letter-spacing:.045em;text-transform:uppercase;text-decoration:none}.blog-page .photo-byline a:hover{text-decoration:underline;text-underline-offset:3px}.blog-page .photo-byline .byline-sep{margin:0 9px;color:var(--line);font-weight:400}.blog-page .photo-byline .byline-org{color:var(--muted);font-weight:400;font-size:14px}.blog-page .toc{position:sticky;top:calc(var(--header-h) + 28px);max-height:calc(100vh - var(--header-h) - 54px);overflow:auto;padding-right:18px}.blog-page .toc h2{margin:0 0 18px;font-family:var(--mono);font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:var(--navy)}.blog-page .toc ol{list-style:none;margin:0;padding:0;border-top:1px solid var(--line)}.blog-page .toc li{border-bottom:1px solid var(--line)}.blog-page .toc a{display:block;padding:10px 0;color:var(--muted);font-size:12px;line-height:1.35}.blog-page .toc a:hover{color:var(--blue)}.blog-page .article{width:100%;min-width:0;font-family:var(--sans);font-size:16px;line-height:1.65}.blog-page .article>p:first-child{font-size:18px;line-height:1.7}.blog-page .article p{margin:0 0 24px}.blog-page .article strong{font-weight:700;color:var(--ink)}.blog-page .article h2{scroll-margin-top:calc(var(--header-h) + 24px);margin:78px 0 24px;color:var(--navy);font-family:var(--sans);font-size:25px;font-weight:700;line-height:1.2;letter-spacing:-.025em;text-wrap:balance}.blog-page .article h3{margin:34px 0 12px;color:var(--navy);font-family:var(--sans);font-size:19px;font-weight:650;line-height:1.25}.blog-page .inline-cite{color:var(--blue);font-size:.88em;text-decoration:underline;text-decoration-thickness:.06em;text-underline-offset:.15em}.blog-page .key-findings{margin:0;padding:0;list-style:none;border-top:2px solid var(--navy)}.blog-page .key-findings li{padding:18px 0 18px 28px;border-bottom:1px solid var(--line);position:relative;font-size:16.5px;line-height:1.58}.blog-page .key-findings li:before{content:"";position:absolute;left:2px;top:29px;width:8px;height:8px;border-radius:50%;background:var(--navy)}.blog-page .report-chart{margin:42px 0 46px;border-top:2px solid var(--navy);border-bottom:1px solid var(--line);padding:20px 0 15px;font-family:var(--sans)}.blog-page .chart-head h3{margin:0;color:var(--navy);font-size:20px;line-height:1.25}.blog-page .chart-head p{margin:7px 0 0;color:var(--muted);font-family:var(--sans);font-size:14px;line-height:1.45}.blog-page .chart-body{margin-top:26px}.blog-page .report-chart figcaption{margin-top:18px;color:var(--muted);font-family:var(--mono);font-size:11.5px;line-height:1.5}.blog-page .range-row, .blog-page .bar-row{display:grid;grid-template-columns:255px 1fr;gap:16px;align-items:center;margin:14px 0}.blog-page .chart-label{font-size:12px;line-height:1.35;color:#3f474a}.blog-page .range-track, .blog-page .bar-track{position:relative;height:28px;background:rgba(21,45,66,.08);border-left:1px solid var(--navy)}.blog-page .range-band{position:absolute;top:7px;height:14px;background:#77838b}.blog-page .range-row.emphasis .range-band{background:var(--navy)}.blog-page .range-value{position:absolute;top:5px;font-family:var(--mono);font-size:11px;font-weight:700;white-space:nowrap;color:var(--navy)}.blog-page .axis{margin-left:271px;display:flex;justify-content:space-between;color:var(--muted);font-family:var(--mono);font-size:9px}.blog-page .metric-grid{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--line)}.blog-page .metric-cell{min-height:135px;padding:22px;border-right:1px solid var(--line);display:flex;flex-direction:column;justify-content:space-between}.blog-page .metric-cell:last-child{border-right:0}.blog-page .metric-cell.emphasis, .blog-page .stat-item.emphasis{background:rgba(21,45,66,.055)}.blog-page .metric-value{color:var(--navy);font-family:var(--mono);font-size:25px;font-weight:700;letter-spacing:-.04em}.blog-page .metric-label{margin-top:18px;color:var(--muted);font-size:12px;line-height:1.4}.blog-page .stat-strip{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--line)}.blog-page .stat-item{min-height:155px;padding:22px;border-right:1px solid var(--line);display:flex;flex-direction:column;justify-content:space-between}.blog-page .stat-item:last-child{border-right:0}.blog-page .stat-value{color:var(--navy);font-family:var(--mono);font-size:30px;font-weight:700;letter-spacing:-.05em}.blog-page .stat-label{color:var(--muted);font-size:12px;line-height:1.4}.blog-page .bar-fill{display:block;height:100%;background:#7c878e}.blog-page .bar-row.emphasis .bar-fill{background:var(--navy)}.blog-page .bar-value{position:absolute;right:8px;top:5px;color:var(--navy);font-family:var(--mono);font-size:11px;font-weight:700}.blog-page .timeline{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.blog-page .timeline-item{min-height:170px;padding:22px;border-right:1px solid var(--line)}.blog-page .timeline-item:last-child{border-right:0}.blog-page .timeline-year{font-family:var(--mono);font-size:24px;font-weight:700;color:var(--navy)}.blog-page .timeline-item p{margin:20px 0 0;font-family:var(--sans);font-size:12px;line-height:1.5;color:var(--muted)}.blog-page .conclusion{border-top:3px solid var(--navy);padding-top:4px}.blog-page .faq-item{padding:20px 0;border-top:1px solid var(--line)}.blog-page .faq-item:last-child{border-bottom:1px solid var(--line)}.blog-page .faq-item h3{margin:0 0 8px}.blog-page .faq-item p{font-size:15.5px;line-height:1.58}.blog-page .sources{list-style:none;margin:0;padding:0}.blog-page .sources li{display:grid;grid-template-columns:32px 1fr;gap:12px;padding:13px 0;border-top:1px solid var(--line);font-size:13px;line-height:1.5}.blog-page .source-number{font-family:var(--mono);color:var(--muted)}.blog-page .sources a{color:var(--blue);text-decoration:underline;text-underline-offset:.15em}.blog-page .related-wrap{background:var(--paper);border-top:1px solid var(--line)}.blog-page .related-inner{width:min(100%,1080px);margin:auto;padding:62px var(--gutter) 76px}.blog-page .related-inner>h2{margin:0 0 25px;color:var(--navy);font-size:25px}.blog-page .related-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line)}.blog-page .related-card{padding:22px 25px 25px 0;border-right:1px solid var(--line)}.blog-page .related-card:not(:first-child){padding-left:25px}.blog-page .related-card:last-child{border-right:0}.blog-page .related-format, .blog-page .related-date{display:block;font-size:10px;letter-spacing:.08em;text-transform:uppercase}.blog-page .related-format{color:var(--red);font-weight:700}.blog-page .related-date{margin-top:8px;color:var(--muted)}.blog-page .related-card h3{margin:24px 0 0;color:var(--navy);font-size:19px;line-height:1.2}.blog-page .related-card p{margin:13px 0 0;color:var(--muted);font-family:var(--sans);font-size:14px;line-height:1.5}@media(max-width:1040px){.blog-page .report-layout{grid-template-columns:1fr;gap:0}.blog-page .report-intro, .blog-page .article{grid-column:auto;grid-row:auto}.blog-page .toc{display:none}.blog-page .mobile-toc{display:block;width:auto;margin:30px 0 30px;padding:0}.blog-page .mobile-toc details{border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:12px 0}.blog-page .mobile-toc summary{font-size:12px;font-weight:700;text-transform:uppercase;color:var(--navy);cursor:pointer}.blog-page .mobile-toc ol{padding-left:21px}.blog-page .mobile-toc li{margin:8px 0;font-size:13px}.blog-page .report-layout{margin-top:38px}}@media(max-width:680px){.blog-page .report-head{padding-top:0}.blog-page .meta-row{line-height:1.55}.blog-page h1{font-size:clamp(29px,8.5vw,36px)}.blog-page .dek{font-size:18px}.blog-page .hero-figure{margin-top:22px}.blog-page .report-layout{padding-bottom:80px}.blog-page .article{font-size:16px}.blog-page .article>p:first-child{font-size:17px}.blog-page .article h2{margin-top:58px;font-size:23px}.blog-page .range-row, .blog-page .bar-row{grid-template-columns:1fr;gap:8px}.blog-page .axis{margin-left:0}.blog-page .metric-grid, .blog-page .stat-strip, .blog-page .timeline{grid-template-columns:1fr}.blog-page .metric-cell, .blog-page .stat-item, .blog-page .timeline-item{border-right:0;border-bottom:1px solid var(--line)}.blog-page .metric-cell:last-child, .blog-page .stat-item:last-child, .blog-page .timeline-item:last-child{border-bottom:0}.blog-page .related-grid{grid-template-columns:1fr}.blog-page .related-card, .blog-page .related-card:not(:first-child){padding:22px 0;border-right:0;border-bottom:1px solid var(--line)}}.blog-page .author-card{margin:0 0 30px}.blog-page .author-card h2{margin:0 0 18px;font-family:var(--mono);font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:var(--navy)}.blog-page .author-card .author-name{margin:0;padding:10px 0 2px;border-top:1px solid var(--line);font-family:var(--sans);font-weight:700;font-size:13px;color:var(--ink)}.blog-page .author-card .author-role{margin:0;font-family:var(--sans);font-size:12px;color:var(--muted)}.blog-page .author-card .author-name a{color:var(--ink);text-decoration:underline;text-decoration-color:var(--line);text-underline-offset:3px}.blog-page .author-card .author-name a:hover{text-decoration-color:var(--muted)}.blog-page .mobile-toc .author-card{margin:0 0 18px}.blog-page .ai-note{margin:64px 0 0;padding:18px 0 0;border-top:1px solid var(--line);display:flex;align-items:flex-start;gap:14px}.blog-page .ai-note img{flex:0 0 auto;height:44px;width:auto;opacity:.85}.blog-page .ai-note p{margin:0;font-family:var(--sans);font-size:13.5px;line-height:1.55;color:var(--muted)}.blog-page .share-block{margin:0 0 30px}.blog-page .share-block h2{margin:0 0 14px;font-family:var(--mono);font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:var(--navy)}.blog-page .share-row{display:flex;gap:10px;flex-wrap:wrap}.blog-page .share-btn{width:34px;height:34px;border:1px solid var(--line);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--muted);background:none;cursor:pointer;padding:0}.blog-page .toc a.share-btn, .blog-page .mobile-toc a.share-btn, .blog-page a.share-btn, .blog-page button.share-btn{display:inline-grid;place-items:center;padding:0;line-height:0;width:34px;height:34px}.blog-page .share-btn svg{display:block}.blog-page .share-btn:hover{color:var(--ink);border-color:var(--muted)}.blog-page .share-btn.copied{color:var(--red);border-color:var(--red)}.blog-page .mobile-toc .share-block{margin:0 0 18px}.blog-page .blog-masthead{margin:0 0 30px;font-family:var(--sans)}.blog-page .blog-masthead a{color:var(--red);font-size:28px;font-weight:700;line-height:.9;letter-spacing:-.074em;text-decoration:none}.blog-page .blog-masthead a:hover{text-decoration:underline;text-underline-offset:4px}.blog-page .blog-masthead .masthead-tagline{margin:4px 0 0;color:var(--muted);font-size:14px}

/* Retratos de /equipo/ (fichas de dirección y consejo) */
.canonical-card .portrait { margin: 6px 0 18px; }
.canonical-card .portrait img { display: block; width: min(100%, 190px); height: auto; }

/* /equipo/ · Perfiles: tres fichas alineadas por filas (nombre, cargo, retrato, párrafos, áreas, enlace), sin bordes */
#perfiles .canonical-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); border: 0; column-gap: clamp(20px, 3vw, 64px); row-gap: 0; align-items: start; }
#perfiles .canonical-card { display: contents; }
#perfiles .canonical-card:nth-child(1) > * { grid-column: 1; }
#perfiles .canonical-card:nth-child(2) > * { grid-column: 2; }
#perfiles .canonical-card:nth-child(3) > * { grid-column: 3; }
/* filas: 1 cabecera (nombre y cargo | retrato) · 2 biografía · 3 áreas · 4 enlace */
#perfiles .canonical-card > :nth-child(1) { grid-row: 1; }
#perfiles .canonical-card > :nth-child(2) { grid-row: 2; }
#perfiles .canonical-card > :nth-child(3) { grid-row: 3; }
#perfiles .canonical-card > :nth-child(4) { grid-row: 4; align-self: end; }
#perfiles .card-head { display: flex; flex-direction: row-reverse; justify-content: flex-end; align-items: center; gap: 20px; margin-bottom: 24px; }
#perfiles .card-head h3 { margin: 0 0 6px; font-size: clamp(19px, 1.5vw, 22px); line-height: 1.15; letter-spacing: -.02em; }
#perfiles .card-head .card-id p { margin: 0; color: var(--ink); font-size: 13px; line-height: 1.4; }
#perfiles .card-head .card-id p strong { font-weight: 400; }
#perfiles .card-head .portrait { flex: 0 0 112px; width: 112px; margin: 0; }
#perfiles .card-head .portrait img { display: block; width: 100%; height: auto; aspect-ratio: 447 / 541; object-fit: cover; filter: grayscale(1); border-radius: 10px; }
@media (max-width: 760px) {
  #perfiles .canonical-card-grid { grid-template-columns: 1fr; row-gap: 28px; }
  #perfiles .canonical-card { display: flex; }
  #perfiles .canonical-card > * { grid-column: auto; grid-row: auto; }
}
/* marca en minúsculas en el fuente; mayúsculas tipográficas en rótulos */
.eyebrow,.hero-media-caption span{text-transform:uppercase}
/* ilustración dentro del hero de páginas interiores */
.split-visual--graph{max-width:none;width:100%;justify-self:stretch}
.split-visual--graph img{width:100%;height:auto;display:block}
.hero-graph{margin:0 0 26px;padding:0}
.hero-graph img{width:100%;height:auto;display:block}
.company-hero .hero-graph{background:none;padding:0}
@media(max-width:680px){.hero-graph{margin-bottom:20px}}
/* HUB-V2-START */
.hub-v2 {
  --navy: #152d42;
  --ink: #263746;
  --coral: #ff5636;
  --ochre: #d9a441;
  --paper: #f3f0e8;
  --paper-soft: #faf8f3;
  --muted: #6b747c;
  --line: rgba(21, 45, 66, .22);
  --line-soft: rgba(21, 45, 66, .13);
  --white: #fff;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --shell: 1240px;
}
.hub-v2 * { box-sizing: border-box; }
.hub-v2 {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.hub-v2 img { display: block; max-width: 100%; }
.hub-v2 a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
.hub-v2 a:hover { color: var(--coral); }
.hub-v2 button, .hub-v2 summary { font: inherit; }
.hub-v2 :focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.hub-v2 .shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.hub-v2 .kicker, .hub-v2 .story-meta, .hub-v2 .footer-label, .hub-v2 .author-line, .hub-v2 .behind-card__index {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.hub-v2 .skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  transform: translateY(-180%);
  padding: .7rem .9rem;
  color: var(--white);
  background: var(--navy);
}
.hub-v2 .skip-link:focus { transform: translateY(0); }
.hub-v2 .publication-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
}
.hub-v2 .publication-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hub-v2 .publication-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: .95rem;
  text-decoration: none;
  white-space: nowrap;
}
.hub-v2 .publication-lockup__brand {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -.055em;
}
.hub-v2 .publication-lockup__rule {
  align-self: stretch;
  width: 1px;
  min-height: 32px;
  background: var(--line);
}
.hub-v2 .publication-lockup__title {
  color: var(--coral);
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 825;
  letter-spacing: -.06em;
}
.hub-v2 .publication-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.hub-v2 .publication-nav a {
  text-decoration: none;
  font-size: .85rem;
  font-weight: 720;
}
.hub-v2 .publication-nav__return {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}
.hub-v2 .mobile-menu { display: none; }
.hub-v2 .intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .58fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: 2.7rem 3rem;
  border-bottom: 1px solid var(--line);
}
.hub-v2 .intro__identity { align-self: end; }
.hub-v2 .intro .kicker { margin: 0 0 .7rem; color: var(--coral); }
.hub-v2 .intro h1 {
  max-width: 23ch;
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.01;
  letter-spacing: -.048em;
  font-weight: 790;
}
.hub-v2 .intro__copy {
  align-self: end;
  color: var(--ink);
}
.hub-v2 .intro__copy > p {
  max-width: 58ch;
  margin: 0;
  font-size: 1rem;
}
.hub-v2 .intro__disclosure {
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: .83rem !important;
}
.hub-v2 .intro__disclosure strong { color: var(--navy); }
.hub-v2 .lead {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(325px, .9fr);
  gap: 0;
  padding-block: 3.55rem 4.3rem;
}
.hub-v2 .lead-story { padding-right: clamp(2.2rem, 4.5vw, 4.3rem); }
.hub-v2 .lead-story__image-link, .hub-v2 .rail-story__image-link, .hub-v2 .latest-card__image-link {
  display: block;
  overflow: hidden;
  background: var(--paper);
  text-decoration: none;
}
.hub-v2 .lead-story__image-link { aspect-ratio: 16 / 9; }
.hub-v2 .lead-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}
.hub-v2 .lead-story__image-link:hover .lead-story__image, .hub-v2 .rail-story__image-link:hover img, .hub-v2 .latest-card__image-link:hover img { transform: scale(1.012); }
.hub-v2 .story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .75rem;
  align-items: center;
  margin-top: .92rem;
  color: var(--muted);
  line-height: 1.3;
}
.hub-v2 .story-meta__format { color: var(--coral); font-weight: 780; }
.hub-v2 .lead-story__title {
  max-width: 25ch;
  margin: .7rem 0 0;
  font-size: clamp(2.5rem, 4.25vw, 4.5rem);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 760;
}
.hub-v2 .lead-story__title a, .hub-v2 .rail-story h2 a, .hub-v2 .latest-card h3 a, .hub-v2 .topic-story h4 a { text-decoration: none; }
.hub-v2 .lead-story__dek {
  max-width: 62ch;
  margin: 1.05rem 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.45;
}
.hub-v2 .author-line {
  display: flex;
  gap: .55rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
}
.hub-v2 .author-line a { color: var(--navy); font-weight: 760; }
.hub-v2 .lead-rail {
  padding-left: clamp(2rem, 4vw, 3.6rem);
  border-left: 1px solid var(--line);
}
.hub-v2 .rail-story {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 1rem;
  padding: 0 0 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.hub-v2 .rail-story:last-child { margin-bottom: 0; }
.hub-v2 .rail-story__image-link { align-self: start; aspect-ratio: 16 / 10; }
.hub-v2 .rail-story__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}
.hub-v2 .rail-story .story-meta { margin-top: 0; font-size: .63rem; }
.hub-v2 .rail-story h2 {
  margin: .45rem 0 0;
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -.032em;
}
.hub-v2 .research-section {
  padding-block: 4.4rem 4.9rem;
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}
.hub-v2 .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.9rem;
  padding-bottom: .9rem;
  border-bottom: 2px solid var(--navy);
}
.hub-v2 .section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1;
  letter-spacing: -.048em;
}
.hub-v2 .section-heading > a {
  flex: none;
  padding-bottom: .16rem;
  text-decoration: none;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.hub-v2 .latest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.45rem;
}
.hub-v2 .latest-card { min-width: 0; }
.hub-v2 .latest-card__image-link { aspect-ratio: 16 / 9; }
.hub-v2 .latest-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}
.hub-v2 .latest-card .story-meta { font-size: .62rem; }
.hub-v2 .latest-card h3 {
  margin: .6rem 0 0;
  font-size: clamp(1.28rem, 1.9vw, 1.72rem);
  line-height: 1.1;
  letter-spacing: -.038em;
}
.hub-v2 .latest-card p {
  margin: .72rem 0 0;
  color: var(--ink);
  font-size: .87rem;
}
.hub-v2 .topics-section { padding-block: 5rem 5.3rem; }
.hub-v2 .section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
  align-items: end;
  padding-bottom: 1.25rem;
}
.hub-v2 .section-heading--wide .kicker { margin: 0 0 .55rem; color: var(--coral); }
.hub-v2 .section-heading--wide h2 { max-width: 22ch; }
.hub-v2 .section-heading--wide > p {
  max-width: 56ch;
  margin: 0;
  color: var(--ink);
  font-size: .98rem;
}
.hub-v2 .topic-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}
.hub-v2 .topic-column {
  min-width: 0;
  padding: 0 1.7rem;
  border-right: 1px solid var(--line);
}
.hub-v2 .topic-column__heading {
  display: flex;
  gap: .8rem;
  align-items: baseline;
  min-height: 74px;
  padding: .85rem 0 1rem;
  border-bottom: 1px solid var(--line);
}
.hub-v2 .topic-column__heading span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: .68rem;
}
.hub-v2 .topic-column__heading h3 {
  margin: 0;
  font-size: 1.32rem;
  letter-spacing: -.032em;
}
.hub-v2 .topic-story {
  min-height: 255px;
  padding: 1.5rem 0 1.65rem;
  border-bottom: 1px solid var(--line);
}
.hub-v2 .topic-story .story-meta { margin-top: 0; font-size: .62rem; }
.hub-v2 .topic-story h4 {
  margin: .72rem 0 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -.038em;
}
.hub-v2 .topic-story p {
  margin: .8rem 0 0;
  color: var(--ink);
  font-size: .9rem;
}
.hub-v2 .follow-section {
  color: var(--white);
  background: var(--navy);
}
.hub-v2 .follow-section__inner {
  min-height: 282px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4rem;
  padding-block: 3.5rem;
}
.hub-v2 .follow-section .kicker { margin: 0 0 .7rem; color: var(--coral); }
.hub-v2 .follow-section h2 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.052em;
}
.hub-v2 .follow-section p:not(.kicker) {
  max-width: 55ch;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.75);
}
.hub-v2 .follow-section__actions {
  display: grid;
  gap: .75rem;
  min-width: 260px;
}
.hub-v2 .action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 52px;
  padding: .8rem 1rem;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 760;
}
.hub-v2 .action-link--light { color: var(--navy); background: var(--white); }
.hub-v2 .action-link--light:hover { color: var(--navy); background: var(--coral); }
.hub-v2 .action-link--outline { color: var(--white); border: 1px solid rgba(255,255,255,.55); }
.hub-v2 .action-link--outline:hover { color: var(--white); border-color: var(--coral); }
.hub-v2 .behind-section { padding-block: 5rem 5.2rem; }
.hub-v2 .behind-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.hub-v2 .behind-card {
  position: relative;
  min-height: 350px;
  padding: 2rem 2rem 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hub-v2 .behind-card__index {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  color: var(--coral);
}
.hub-v2 .behind-card .kicker { margin: 0 0 2.8rem; color: var(--muted); }
.hub-v2 .behind-card h3 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.8rem, 2.7vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hub-v2 .behind-card > p:last-child {
  max-width: 45ch;
  margin: 1.25rem 0 0;
  color: var(--ink);
}
.hub-v2 .standards-note {
  max-width: 880px;
  margin: 2rem 0 0 auto;
  padding-left: 1.4rem;
  border-left: 3px solid var(--coral);
  color: var(--ink);
}
.hub-v2 .standards-note p { margin: 0; }
.hub-v2 .standards-note strong { color: var(--navy); }
.hub-v2 .related-section {
  padding-block: 4.2rem;
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}
.hub-v2 .related-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
}
.hub-v2 .related-section .kicker { margin: 0 0 .65rem; color: var(--coral); }
.hub-v2 .related-section h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.048em;
}
.hub-v2 .related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  border-top: 1px solid var(--line);
}
.hub-v2 .related-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem .2rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: .91rem;
  font-weight: 690;
}
.hub-v2 .related-links a:nth-child(odd) { padding-right: 1.2rem; }
.hub-v2 .related-links a:nth-child(even) { padding-left: 1.2rem; border-left: 1px solid var(--line); }
.hub-v2 .site-footer {
  color: var(--navy);
  background: var(--white);
  border-top: 3px solid var(--navy);
}
.hub-v2 .site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(145px, .55fr));
  gap: 3rem;
  padding-block: 3.4rem;
}
.hub-v2 .footer-brand__publication {
  color: var(--coral);
  font-size: 2.2rem;
  font-weight: 825;
  letter-spacing: -.055em;
}
.hub-v2 .footer-brand p { margin: .45rem 0 0; }
.hub-v2 .footer-brand__small { color: var(--muted); font-size: .84rem; }
.hub-v2 .footer-column { display: grid; align-content: start; gap: .52rem; }
.hub-v2 .footer-label { margin: .2rem 0 .55rem; color: var(--coral); }
.hub-v2 .footer-column a { width: fit-content; text-decoration: none; font-size: .86rem; }
.hub-v2 .site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 72px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .77rem;
}
.hub-v2 .site-footer__bottom p { margin: 0; }
.hub-v2 .site-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.hub-v2 .site-footer__bottom a { text-decoration: none; }
.hub-v2 .site-footer__bottom button {
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}


@media (max-width: 1080px) {.hub-v2 .publication-nav { gap: 1.1rem; }
.hub-v2 .lead { grid-template-columns: minmax(0, 1.45fr) minmax(285px, .8fr); }
.hub-v2 .lead-story { padding-right: 2.3rem; }
.hub-v2 .lead-rail { padding-left: 2.2rem; }
.hub-v2 .rail-story { grid-template-columns: 96px minmax(0, 1fr); }
.hub-v2 .latest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.2rem 1.5rem; }
.hub-v2 .topic-story { min-height: 290px; }

}

@media (max-width: 820px) {.hub-v2 .shell { width: min(calc(100% - 32px), var(--shell)); }
.hub-v2 .publication-header__inner { min-height: 72px; }
.hub-v2 .publication-lockup__title { font-size: 1.75rem; }
.hub-v2 .publication-nav { display: none; }
.hub-v2 .mobile-menu { display: block; position: relative; }
.hub-v2 .mobile-menu summary {
    list-style: none;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: .06em;
  }
.hub-v2 .mobile-menu summary::-webkit-details-marker { display: none; }
.hub-v2 .mobile-menu summary::after { content: " +"; color: var(--coral); }
.hub-v2 .mobile-menu[open] summary::after { content: " −"; }
.hub-v2 .mobile-menu__panel {
    position: absolute;
    z-index: 30;
    top: calc(100% + 20px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    display: grid;
    padding: .55rem;
    background: var(--white);
    border: 1px solid var(--navy);
  }
.hub-v2 .mobile-menu__panel a { padding: .72rem .65rem; text-decoration: none; border-bottom: 1px solid var(--line-soft); }
.hub-v2 .mobile-menu__panel a:last-child { border-bottom: 0; }
.hub-v2 .intro { grid-template-columns: 1fr; gap: 1.5rem; padding-block: 2.2rem 2.4rem; }
.hub-v2 .intro__copy > p { max-width: 65ch; }
.hub-v2 .lead { grid-template-columns: 1fr; padding-block: 2.5rem 3.2rem; }
.hub-v2 .lead-story { padding-right: 0; padding-bottom: 2.4rem; }
.hub-v2 .lead-story__title { max-width: 28ch; }
.hub-v2 .lead-rail { padding: 2rem 0 0; border-top: 1px solid var(--line); border-left: 0; }
.hub-v2 .rail-story { grid-template-columns: 140px minmax(0, 1fr); }
.hub-v2 .rail-story h2 { font-size: 1.35rem; }
.hub-v2 .section-heading--wide { grid-template-columns: 1fr; gap: 1rem; }
.hub-v2 .topic-columns { grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.hub-v2 .topic-column { padding-inline: 1.25rem; }
.hub-v2 .topic-story { min-height: 0; }
.hub-v2 .follow-section__inner { grid-template-columns: 1fr; gap: 2rem; }
.hub-v2 .follow-section__actions { min-width: 0; max-width: 440px; }
.hub-v2 .behind-grid { grid-template-columns: 1fr; }
.hub-v2 .behind-card { min-height: 0; }
.hub-v2 .related-section__inner { grid-template-columns: 1fr; gap: 2rem; }
.hub-v2 .related-section h2 { max-width: 20ch; }
.hub-v2 .site-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hub-v2 .footer-brand { grid-column: 1 / -1; }

}

@media (max-width: 560px) {.hub-v2 .publication-lockup { gap: .65rem; }
.hub-v2 .publication-lockup__brand { font-size: .9rem; }
.hub-v2 .publication-lockup__rule { min-height: 28px; }
.hub-v2 .publication-lockup__title { font-size: 1.55rem; }
.hub-v2 .intro h1 { font-size: 2.08rem; }
.hub-v2 .lead-story__title { font-size: 2.35rem; }
.hub-v2 .lead-story__dek { font-size: 1rem; }
.hub-v2 .rail-story { grid-template-columns: 112px minmax(0, 1fr); gap: .85rem; }
.hub-v2 .rail-story h2 { font-size: 1.14rem; }
.hub-v2 .latest-grid { grid-template-columns: 1fr; gap: 2.4rem; }
.hub-v2 .latest-card h3 { font-size: 1.72rem; }
.hub-v2 .section-heading { align-items: start; }
.hub-v2 .section-heading > a { display: none; }
.hub-v2 .section-heading h2 { font-size: 2.18rem; }
.hub-v2 .topics-section { padding-block: 4rem; }
.hub-v2 .topic-column { padding-inline: 1rem; }
.hub-v2 .topic-column__heading { min-height: 60px; }
.hub-v2 .follow-section__inner { min-height: 0; padding-block: 3.2rem; }
.hub-v2 .follow-section h2 { font-size: 2.55rem; }
.hub-v2 .behind-section { padding-block: 4rem; }
.hub-v2 .behind-card { padding: 1.6rem 1.35rem 1.8rem; }
.hub-v2 .behind-card h3 { font-size: 2rem; }
.hub-v2 .related-links { grid-template-columns: 1fr; }
.hub-v2 .related-links a:nth-child(odd), .hub-v2 .related-links a:nth-child(even) { padding-inline: .2rem; border-left: 0; }
.hub-v2 .site-footer__top { grid-template-columns: 1fr; gap: 2.2rem; }
.hub-v2 .footer-brand { grid-column: auto; }
.hub-v2 .site-footer__bottom { align-items: flex-start; flex-direction: column; padding-block: 1.3rem; }
.hub-v2 .site-footer__bottom nav { gap: .75rem 1rem; }

}

@media (prefers-reduced-motion: reduce) {.hub-v2 *, .hub-v2 *::before, .hub-v2 *::after { transition: none !important; animation: none !important; }

}

.hub-v2 .hub-disclosure{padding:1.6rem 0 2.4rem;border-top:1px solid var(--line-soft)}
.hub-v2 .hub-disclosure p{margin:0;max-width:56rem;font-size:.82rem;line-height:1.55;color:var(--muted)}
.hub-v2 .hub-masthead{margin:0 0 1rem;color:var(--coral);font-size:2rem;font-weight:700;line-height:.9;letter-spacing:-.06em}
.hub-v2 .intro__lede{margin-top:1.1rem;max-width:34rem;color:var(--muted)}
.hub-v2 .hub-nav{display:flex;flex-direction:column;align-self:start;border-top:1px solid var(--line)}
.hub-v2 .hub-nav a{padding:.7rem 0;border-bottom:1px solid var(--line);font-family:var(--mono);font-size:.72rem;letter-spacing:.075em;text-transform:uppercase;text-decoration:none}
.hub-v2 .hub-nav a:hover{color:var(--coral)}
.hub-v2 .rail-story{grid-template-columns:minmax(0,1fr);gap:.8rem}
.hub-v2 .rail-story__image-link{width:100%}
.hub-v2 .latest-grid{grid-template-columns:repeat(auto-fit,minmax(230px,1fr))}
/* HUB-V2-END */
/* gráficos de la portada a todo el ancho de su columna (24-ago) */
.split-section .split-visual--graph{max-width:none}
.split-visual--graph img{width:100%;height:auto}

/* contacto: tarjetas bajo el grid principal */
.contact-panels{display:grid;grid-template-columns:1fr 1fr;gap:28px;padding-bottom:72px}
.contact-panels .visit-panel{margin:0;height:100%}
@media(max-width:900px){.contact-panels{grid-template-columns:1fr;padding-bottom:56px}}
/* CONTACTO-CLARO-START (decisión 24-ago: contacto en claro como el resto de interiores) */
.contact-hero{background:var(--paper);color:var(--ink)}
.contact-hero .lede,.contact-hero .hero-lede{color:var(--ink-soft)}
.contact-hero .kicker{color:var(--steel-dark)}
.contact-copy .contact-aside{border-top-color:var(--line)}
.direct-contact-grid > div{border-bottom-color:var(--line)}
.direct-contact-grid span{color:var(--steel-dark)}
.direct-contact-grid address{color:var(--ink-soft)}
.contact-form-wrap{background:var(--white);border:1px solid var(--line)}
.visit-panel{border-color:var(--line)}
.visit-panel p{color:var(--ink-soft)}
.press-list li{border-bottom-color:var(--line);color:var(--ink-soft)}
.contact-hero .button-light{border-color:var(--night);color:var(--night)}
.contact-hero .button-light:hover{background:var(--night);color:var(--white)}
.contact-graph{margin-top:46px}
.contact-graph img{width:100%;height:auto;display:block}
.contact-hero .direct-contact-grid a{color:var(--ink)}
.contact-hero .text-link{color:var(--ink)}
.contact-hero .text-link:hover{color:var(--red-dark)}
/* CONTACTO-CLARO-END */
/* fundido de láminas al completarse la descarga */
.js .hero-graph img,.js .split-visual--graph img{opacity:0;transition:opacity .28s ease}
.js .hero-graph img.img-ready,.js .split-visual--graph img.img-ready{opacity:1}
