/* ===== Tokens ===== */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F6F8FA;
  --ink: #0A1420;
  --ink-soft: #5B6B7A;
  --line: rgba(10,20,32,0.12);
  --line-soft: rgba(10,20,32,0.08);
  --accent: #00BFFF;
  --accent-ink: #006B94;
  --accent-tint: rgba(0,191,255,0.08);
  --green: #3E9A00;
  --green-bright: #6BFF00;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Roboto Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --container: 1320px;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img { display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; color: var(--ink); }
p { margin: 0; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section heading used by Approach / Resultados / Para quién:
   a running label + rule, not a repeated tiny-caps tag. */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(24px, 3.4vw, 32px); white-space: nowrap; }
.section-rule { flex: 1; height: 1px; background: var(--line); }

/* ===== Buttons ===== */
.btn-icon-meet { width: 22px; height: auto; flex: none; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 14px 24px;
  border-radius: 9px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--ink);
  color: #FFFFFF;
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(10,20,32,0.22);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-alt); }
.btn-mono { font-family: var(--font-mono); letter-spacing: 0.01em; font-weight: 500; }
.btn-small { padding: 10px 18px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* Main page sections keep their own positioning context. */
.nav, .hero, .levers, .approach { position: relative; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.nav-logo-mark {
  height: 18px;
  width: auto;
  display: block;
  transition: opacity 150ms ease;
}
.nav-logo:hover .nav-logo-mark { opacity: 0.72; }
@media (min-width: 768px) {
  .nav-logo-mark { height: 20px; }
}
.nav-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.nav-links {
  display: none;
  gap: 28px;
}
.nav-links a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 0;
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--accent-ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 200ms ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

@media (min-width: 860px) {
  .nav-links { display: flex; }
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(680px 420px at 88% -12%, var(--accent-tint), transparent 60%),
    var(--bg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 96px;
  display: grid;
  gap: 48px;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
  }
}

.hero-copy {
  min-width: 0;
  animation: rise 0.7s ease both;
}
.hero-visual {
  min-width: 0;
  animation: rise 0.7s 0.12s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy, .hero-visual { animation: none; }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.kicker-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.kicker-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--ink);
  padding: 3px 8px;
  border-radius: 4px;
}

.hero-headline {
  max-width: 10.5ch;
  font-size: clamp(38px, 4.15vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 26px;
}

.hero-deck {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  max-width: 560px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 25px;
}
.hero-deck span {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}
.hero-deck em {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent-ink);
}
.hero-subhead {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 60ch;
  margin-bottom: 29px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 46px; }

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

/* Franja de logos: fuera de hero-inner, ancho completo, separada
   por una línea, texto centrado — igual que limestonedigital.com */
.hero-logos {
  border-top: 1px solid var(--line-soft);
  padding: 46px 0 64px;
}
.hero-logos-label {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 24px;
}

.marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
  padding-right: 44px;
}
.marquee-track li {
  width: var(--cw, 100px);
  flex: none;
  opacity: 0.5;
}
.marquee-track img { width: 100%; height: auto; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.hero-visual {
  display: none;
  position: relative;
}
@media (min-width: 960px) {
  .hero-visual { display: block; }
}
.hero-visual-caption {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 72px;
}
.hero-visual-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(10,20,32,0.08));
}

/* ===== Value levers ===== */
.levers {
  padding: 104px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.levers-head {
  max-width: 760px;
  margin-bottom: 52px;
}
.levers-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-bottom: 18px;
}
.levers-head > p:last-child {
  max-width: 64ch;
  color: var(--ink-soft);
}
.levers-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 860px) {
  .levers-grid { grid-template-columns: repeat(3, 1fr); }
}
.lever-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #FFFFFF;
}
.lever-card::after {
  content: '';
  position: absolute;
  right: -48px;
  bottom: -64px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent-tint);
  pointer-events: none;
}
.lever-number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-ink);
  margin-bottom: 56px;
}
.lever-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.lever-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 8px;
}
.lever-card > p:not(.lever-number):not(.lever-name) {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
}
.lever-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}
.lever-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}
.lever-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
@media (min-width: 960px) {
  .hero-diagram {
    transform: scale(1.08);
    transform-origin: center;
  }
}

/* ===== Approach =====
   Cabecera con CTAs a la derecha + grid de 3 tarjetas con visual
   propio arriba — inspirado en un patrón de "How it works" de 3 pasos. */
.approach {
  padding: 96px 0;
  background: #F7F7FA;
}
.approach-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.approach-head { max-width: 620px; }
.approach-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.approach-eyebrow-center { justify-content: center; }
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.approach-title {
  font-family: 'Playfair Display', var(--font-display), serif;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 50px);
  margin-bottom: 16px;
}
.approach-title-accent { color: var(--ink); }
.approach-sub { color: var(--ink-soft); font-size: 16px; }
.approach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: none;
}
.approach-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.approach-cta-note {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

.phases-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .phases-grid { grid-template-columns: repeat(3, 1fr); }
}

.phase-card {
  background: #FFFFFF;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(10,20,32,0.04);
}
.phase-card > :not(.phase-visual) {
  padding-left: 24px;
  padding-right: 24px;
}
.phase-step {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 22px;
  margin-bottom: 8px;
}
.phase-title { font-size: 21px; margin-bottom: 6px; }
.phase-meta {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
}
.phase-desc { color: var(--ink-soft); font-size: 15px; padding-bottom: 24px; }

.phase-visual {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.phase-visual-1 { background: linear-gradient(160deg, rgba(0,191,255,0.10), rgba(0,191,255,0.02)); }
.phase-visual-2 { background: linear-gradient(160deg, rgba(107,255,0,0.10), rgba(107,255,0,0.02)); }
.phase-visual-3 { background: linear-gradient(160deg, rgba(10,20,32,0.06), rgba(10,20,32,0.01)); }

.pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(10,20,32,0.06);
  white-space: nowrap;
}
.pill b { color: #D3273E; font-weight: 700; }
.pill i { font-style: normal; color: var(--ink-soft); font-size: 12px; }

.pill-p1 { top: 26px; left: 6%; transform: rotate(-3deg); }
.pill-p2 { top: 78px; left: 15%; transform: rotate(2deg); }
.pill-p3 { top: 130px; left: 6%; transform: rotate(-2deg); }
.pill-p9 { top: 78px; right: 8%; background: var(--ink); color: #FFFFFF; border-color: var(--ink); }
.pill-p9 b { color: var(--green-bright); }

.phase-visual-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.phase-visual-connectors path {
  fill: none;
  stroke: var(--ink-soft);
  stroke-width: 1.4;
  stroke-dasharray: 4 4;
  animation: dash-flow 1.2s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -16; }
}
@media (prefers-reduced-motion: reduce) {
  .phase-visual-connectors path { animation: none; }
}

.pill-p4 { top: 26px; left: 20px; transform: rotate(-2deg); }
.pill-p5 { top: 66px; left: 60px; transform: rotate(2deg); }
.pill-p6 { top: 106px; left: 24px; transform: rotate(-1deg); }
.pill-p7 { top: 146px; left: 72px; transform: rotate(2deg); }

.status-badge {
  position: absolute;
  top: 40px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #FFFFFF;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}
.pill-p8 { top: 96px; left: 56px; transform: rotate(-2deg); }

/* ===== Problema ===== */
.problema { padding: 104px 0; }
.problema-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.problema-head h2 { font-size: clamp(26px, 4vw, 38px); }
.problema-sub { color: var(--ink-soft); margin-top: 16px; font-size: 16px; }

.problema-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 56px;
}
@media (min-width: 780px) {
  .problema-cards { grid-template-columns: repeat(3, 1fr); }
}
.problema-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.problema-icon { width: 44px; height: 44px; margin-bottom: 22px; }
.icon-line { fill: none; stroke: var(--ink-soft); stroke-width: 1.4; }
.icon-boundary { fill: none; stroke: var(--ink); stroke-width: 1.4; }
.icon-boundary-dash { fill: none; stroke: var(--ink-soft); stroke-width: 1.2; stroke-dasharray: 2 3; }
.icon-arrow { fill: none; stroke: var(--accent-ink); stroke-width: 1.6; }
.icon-broken { fill: none; stroke: var(--accent-ink); stroke-width: 1.6; stroke-dasharray: 2 3; }
.icon-q { fill: var(--ink-soft); font-size: 9px; font-family: var(--font-body); font-weight: 700; }
.problema-card h3 { font-size: 18px; margin-bottom: 10px; }
.problema-card p { color: var(--ink-soft); font-size: 15px; }

.problema-break {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  text-align: center;
  padding: 44px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}

.problema-contrast {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 32px;
  background:
    radial-gradient(560px 280px at 8% 0%, var(--accent-tint), transparent 70%),
    #FFFFFF;
}
.contrast-lead {
  font-size: clamp(18px, 2.6vw, 22px);
  margin-bottom: 28px;
  color: var(--ink);
}
.contrast-list { display: grid; gap: 12px; }
.contrast-list li {
  padding-left: 24px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
}
.contrast-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ===== Resultados ===== */
.resultados { padding: 104px 0; background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.caso {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 28px;
  margin-bottom: 24px;
  background: #FFFFFF;
}
.caso-tag {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent-ink);
  font-weight: 600;
  margin-bottom: 28px;
}
.caso-numeros {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}
@media (min-width: 700px) {
  .caso-numeros { grid-template-columns: repeat(3, 1fr); }
  .caso-numeros-single { grid-template-columns: 1fr; }
}
.numero-block { display: flex; flex-direction: column; gap: 6px; }
.numero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 80px);
  color: var(--green);
  line-height: 1;
}
.numero-unit {
  font-size: 0.32em;
  color: var(--green);
  font-weight: 500;
}
.numero-label { color: var(--ink-soft); font-size: 14px; }
.caso-desc { color: var(--ink-soft); font-size: 15px; max-width: 70ch; }

/* ===== Para quién ===== */
.para-quien { padding: 104px 0; }
.fit-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 780px) {
  .fit-grid { grid-template-columns: 1fr 1fr; }
}
.fit-card {
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--line);
}
.fit-yes { border-color: rgba(62,154,0,0.3); background: rgba(62,154,0,0.04); }
.fit-no { border-color: var(--line); }
.fit-card h3 { font-size: 20px; margin-bottom: 20px; }
.fit-yes h3 { color: var(--green); }
.fit-no h3 { color: var(--ink-soft); }
.fit-card ul { display: grid; gap: 16px; }
.fit-card li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
}
.fit-yes li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.fit-no li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

/* ===== CTA destacado ===== */
.cta-destacado {
  padding: 104px 0;
  background:
    radial-gradient(760px 420px at 50% 0%, var(--accent-tint), transparent 65%),
    var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px, 4.5vw, 42px); margin-bottom: 16px; }
.cta-inner p { color: var(--ink-soft); font-size: 16px; margin-bottom: 32px; }

/* ===== Formulario ===== */
.formulario { padding: 104px 0; }
.form-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.form-title { font-size: clamp(22px, 3.4vw, 28px); margin-bottom: 40px; }
.ai-form { display: grid; gap: 20px; text-align: left; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.ai-form label { display: grid; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.ai-form input {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
}
.ai-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

/* ===== Footer ===== */
.footer { padding: 56px 0 24px; border-top: 1px solid var(--line-soft); }
.footer-inner {
  display: grid;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 780px) {
  .footer-inner { grid-template-columns: 1fr auto auto; align-items: start; }
}
.footer-title { font-family: var(--font-display); font-size: 16px; }
.footer-sub { color: var(--ink-soft); font-size: 13px; margin-top: 4px; }
.footer-links, .footer-legal { display: grid; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.footer-links a:hover, .footer-legal a:hover { color: var(--ink); }
.footer-copy {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 13px;
}

/* ===== OPTIMIZE v2: editorial rhythm + interaction ===== */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.nav {
  padding: 12px 14px 0;
  background: transparent;
  border: 0;
  pointer-events: none;
}
.nav-inner {
  padding: 13px 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(10,20,32,0.08);
  pointer-events: auto;
}
.hero {
  padding-top: 132px;
}
.hero-map {
  position: absolute;
  z-index: 3;
  left: 2%;
  right: 2%;
  bottom: -28px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(10,20,32,0.10);
  backdrop-filter: blur(10px);
}
.hero-diagram {
  position: relative;
  line-height: 0;
}
.hero-flow-animation {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.hero-visual-img {
  display: block;
  position: relative;
  z-index: 1;
}
.flow-dot-blue {
  fill: var(--accent);
  stroke: #FFFFFF;
  stroke-width: 3px;
  filter: drop-shadow(0 0 10px rgba(0,191,255,0.9));
}
.flow-dot-green {
  fill: var(--green-bright);
  stroke: #FFFFFF;
  stroke-width: 3px;
  filter: drop-shadow(0 0 10px rgba(107,255,0,0.88));
}
.hero-map-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent-ink);
  margin-bottom: 10px;
}
.hero-map ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-map li {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}
.hero-map li span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-soft);
  margin-bottom: 3px;
}

/* Dark diagnosis section */
.friction {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: #07111D;
  color: #FFFFFF;
}
.friction::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -240px;
  top: -220px;
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(0,191,255,0.025), 0 0 0 144px rgba(0,191,255,0.02);
  pointer-events: none;
}
.friction-inner { position: relative; z-index: 1; }
.friction-intro {
  display: grid;
  gap: 20px;
  max-width: 860px;
  margin-bottom: 64px;
}
.friction .section-label { color: var(--accent); }
.friction h2 {
  color: #FFFFFF;
  font-size: clamp(34px, 5.4vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.friction-intro > p:last-child {
  max-width: 62ch;
  color: rgba(255,255,255,0.64);
  font-size: 17px;
}
.friction-list { border-top: 1px solid rgba(255,255,255,0.16); }
.friction-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  transition: padding 180ms ease, background 180ms ease;
}
.friction-item:hover { padding-left: 14px; background: rgba(255,255,255,0.025); }
.friction-index {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 12px;
}
.friction-item h3 { color: #FFFFFF; font-size: 22px; margin-bottom: 6px; }
.friction-item p { color: rgba(255,255,255,0.58); max-width: 64ch; font-size: 15px; }
.friction-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--green-bright);
  border: 1px solid rgba(107,255,0,0.26);
  border-radius: 999px;
  padding: 5px 10px;
}
.friction-statement {
  margin-top: 72px;
  font-family: var(--font-display);
  font-size: clamp(25px, 4vw, 44px);
  line-height: 1.2;
  color: rgba(255,255,255,0.62);
}
.friction-statement strong { color: #FFFFFF; font-weight: 600; }
.friction-statement em { color: var(--accent); font-style: normal; }

/* Interactive opportunity explorer */
.lever-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  margin-bottom: 18px;
  scrollbar-width: thin;
}
.lever-tab {
  min-height: 156px;
  padding: 22px;
  text-align: left;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.lever-tab:hover { transform: translateY(-2px); border-color: rgba(10,20,32,0.3); }
.lever-tab.is-active {
  color: #FFFFFF;
  background: var(--ink);
  border-color: var(--ink);
}
.lever-tab .lever-number {
  display: block;
  margin-bottom: 34px;
  color: var(--accent-ink);
}
.lever-tab.is-active .lever-number { color: var(--accent); }
.lever-tab .lever-name {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-soft);
}
.lever-tab.is-active .lever-name { color: var(--green-bright); }
.lever-tab strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}
.lever-panels { min-height: 410px; }
.lever-panel {
  display: grid;
  gap: 32px;
  padding: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 18px;
  animation: panel-in 260ms ease both;
}
.lever-panel[hidden] { display: none; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 900px) {
  .lever-panel { grid-template-columns: 1.35fr 1fr 1fr; }
  .lever-measure { grid-column: 1 / -1; }
}
.lever-panel-copy h3 {
  font-size: clamp(28px, 3.3vw, 40px);
  margin: 12px 0 16px;
}
.lever-panel-copy > p:last-child { color: var(--ink-soft); }
.lever-panel-column {
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.lever-panel-column h4 {
  margin: 16px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lever-panel-column ul { display: grid; gap: 12px; }
.lever-panel-column li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: 14px; }
.lever-panel-column li::before { content: '→'; position: absolute; left: 0; color: var(--accent-ink); }
.lever-measure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.lever-measure span { color: var(--ink-soft); font-size: 13px; }
.lever-measure strong { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }

/* Agentize as the distinctive dark method */
.problema {
  background: #07111D;
  color: #FFFFFF;
}
.problema-head h2, .problema-card h3 { color: #FFFFFF; }
.problema-sub, .problema-card p { color: rgba(255,255,255,0.62); }
.problema-card { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.025); }
.problema-card:hover { border-color: rgba(0,191,255,0.56); transform: translateY(-3px); }
.problema-card { transition: transform 180ms ease, border-color 180ms ease; }
.problema .icon-line, .problema .icon-boundary, .problema .icon-boundary-dash { stroke: rgba(255,255,255,0.66); }
.problema .icon-q { fill: rgba(255,255,255,0.66); }
.problema-break { color: #FFFFFF; border-color: rgba(255,255,255,0.16); }
.problema-contrast {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.035);
}
.problema .contrast-lead { color: rgba(255,255,255,0.86); }
.problema .contrast-list li { color: rgba(255,255,255,0.62); }

/* Ownership / trust */
.ownership {
  padding: 112px 0;
  background: #07111D;
  color: #FFFFFF;
}
.ownership-inner { display: grid; gap: 56px; }
@media (min-width: 980px) {
  .ownership-inner { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .ownership-head { position: sticky; top: 120px; }
}
.ownership .section-label { color: var(--accent); }
.ownership-head h2 {
  color: #FFFFFF;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
  margin: 18px 0 24px;
}
.ownership-head > p:last-child { color: rgba(255,255,255,0.62); max-width: 54ch; }
.ownership-grid { border-top: 1px solid rgba(255,255,255,0.16); }
.ownership-grid article {
  display: grid;
  grid-template-columns: 46px 0.55fr 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.ownership-grid span { font-family: var(--font-mono); color: var(--accent); font-size: 12px; }
.ownership-grid h3 { color: #FFFFFF; font-size: 19px; }
.ownership-grid p { color: rgba(255,255,255,0.58); font-size: 14px; }

/* FAQ */
.faq { padding: 112px 0; background: var(--bg-alt); }
.faq-inner { display: grid; gap: 48px; }
@media (min-width: 900px) {
  .faq-inner { grid-template-columns: 0.72fr 1.28fr; align-items: start; }
  .faq-head { position: sticky; top: 120px; }
}
.faq-head h2 { font-size: clamp(34px, 4vw, 50px); margin: 14px 0; }
.faq-head > p:last-child { color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-family: var(--font-mono); color: var(--accent-ink); transition: transform 180ms ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 66ch; padding: 0 42px 26px 0; color: var(--ink-soft); }

.cta-destacado {
  color: #FFFFFF;
  background: var(--ink);
}
.cta-inner h2 { color: #FFFFFF; }
.cta-inner p { color: rgba(255,255,255,0.66); }
.cta-destacado .btn-primary { color: var(--ink); background: var(--green-bright); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .nav { padding: 8px 8px 0; }
  .nav-inner { padding: 11px 12px; }
  .nav-kicker { display: none; }
  .nav .btn-small { padding: 9px 12px; font-size: 12px; }
  .nav .btn-icon-meet { display: none; }
  .hero { padding-top: 104px; }
  .friction, .ownership, .faq { padding: 82px 0; }
  .friction-item { grid-template-columns: 36px minmax(0, 1fr); }
  .friction-tag { grid-column: 2; justify-self: start; }
  .lever-tabs { grid-template-columns: repeat(3, 220px); margin-right: -24px; padding-right: 24px; }
  .lever-panel { padding: 28px 22px; }
  .ownership-grid article { grid-template-columns: 34px 1fr; }
  .ownership-grid article p { grid-column: 2; }
  .section-head { align-items: flex-start; }
  .section-head h2 { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .lever-panel { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-flow-animation { display: none; }
}

/* ===== Editorial system hero =====
   One centered scene: a quiet editorial promise above a live system field. */
.nav-inner {
  color: var(--ink);
  background: rgba(255,255,255,0.88);
  border-color: rgba(10,20,32,0.12);
  box-shadow: 0 10px 34px rgba(10,20,32,0.08);
  backdrop-filter: blur(18px);
}
.nav-logo,
.nav-links a { color: var(--ink); }
.nav-kicker {
  color: var(--ink-soft);
  border-left-color: var(--line);
}
.nav .btn-primary {
  color: #FFFFFF;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
  padding-top: 116px;
  overflow: hidden;
  color: var(--ink);
  border-color: var(--line-soft);
  background: linear-gradient(125deg, #4F83DB 0%, #00BFFF 48%, #43C4AE 100%);
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 48px;
  }
}
.hero-inner {
  max-width: 1180px;
  padding: 64px 24px 118px;
  text-align: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
.hero-kicker {
  justify-content: center;
  margin-bottom: 30px;
}
.hero .kicker-label { color: rgba(10,20,32,0.68); }
.hero .kicker-badge {
  color: #FFFFFF;
  background: var(--ink);
}
.hero-headline {
  max-width: 980px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(56px, 7.3vw, 102px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.hero-deck {
  display: block;
  max-width: none;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: none;
}
.hero-subhead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(10,20,32,0.72);
  font-size: 17px;
}
.hero .cta-row {
  justify-content: center;
  margin-bottom: 24px;
}
.hero .btn { border-radius: 999px; }
.hero .btn-primary {
  color: #FFFFFF;
  background: var(--ink);
}
.hero .btn-primary:hover { box-shadow: 0 8px 30px rgba(10,20,32,0.20); }
.hero .btn-ghost {
  color: var(--ink);
  border-color: rgba(10,20,32,0.28);
}
.hero .btn-ghost:hover {
  color: #FFFFFF;
  border-color: var(--ink);
  background: var(--ink);
}
.hero-tagline { color: rgba(10,20,32,0.68); }

.hero-visual {
  display: block;
  width: min(1000px, 100%);
  margin: 18px auto 0;
  padding: 0 26px 58px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
@media (min-width: 960px) {
  .hero-diagram { transform: none; }
}
.hero-diagram { animation: system-drift 8s ease-in-out infinite; }
@keyframes system-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-map {
  left: 4%;
  right: 4%;
  bottom: -30px;
  text-align: left;
  background: rgba(255,255,255,0.96);
  border-color: rgba(10,20,32,0.10);
  box-shadow: 0 18px 46px rgba(10,20,32,0.14);
}
.hero-logos {
  color: var(--ink);
  border-top: 0;
  background: #FFFFFF;
}

/* Business operating view: the flat product surface after the gradient hero. */
.operating-bridge {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  padding: 112px max(24px, calc((100vw - 1200px) / 2)) 128px;
  color: #221F1C;
  background: #F5F5F2;
  border-radius: 36px 36px 0 0;
}
.operating-intro {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}
.operating-intro .section-label { color: var(--accent-ink); }
.operating-intro h2 {
  margin: 18px 0 22px;
  color: #221F1C;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.operating-intro > p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: #797267;
  font-size: 17px;
}

.business-dashboard {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(34,31,28,0.13);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(34,31,28,0.12), 0 2px 4px rgba(34,31,28,0.06);
}
.os-toolbar {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(34,31,28,0.10);
}
.os-toolbar-brand,
.os-live {
  display: flex;
  align-items: center;
  gap: 10px;
}
.os-toolbar-brand strong { font-size: 13px; }
.os-demo-label {
  padding: 4px 8px;
  color: #797267;
  background: #F0F0ED;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.os-mark,
.os-core-mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.os-mark i,
.os-core-mark i { display: block; width: 8px; height: 8px; }
.os-mark i:nth-child(1), .os-core-mark i:nth-child(1) { border-radius: 50%; background: #F6258C; }
.os-mark i:nth-child(2), .os-core-mark i:nth-child(2) { transform: rotate(45deg); border-radius: 2px; background: #00BFFF; }
.os-mark i:nth-child(3), .os-core-mark i:nth-child(3) { border-radius: 2px; background: #6BFF00; }
.os-live {
  color: #3A6B2A;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.os-live > span,
.os-sidebar-status > span {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #56C63A;
  box-shadow: 0 0 0 4px rgba(86,198,58,0.13);
}

.os-layout {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 690px;
}
.os-sidebar {
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(34,31,28,0.10);
  background: #FAFAF8;
}
.os-sidebar > p {
  padding: 0 10px 12px;
  color: #8C8A88;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.os-sidebar ul { display: grid; gap: 4px; }
.os-sidebar li {
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 7px;
  color: #797267;
  border-radius: 8px;
  font-size: 12px;
}
.os-sidebar li.is-active { color: #221F1C; background: #EDEDE9; font-weight: 600; }
.os-sidebar li b {
  min-width: 20px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #FFFFFF;
  font-size: 9px;
  text-align: center;
}
.os-sidebar-status {
  margin-top: auto;
  padding: 13px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(34,31,28,0.10);
}
.os-sidebar-status div { display: grid; }
.os-sidebar-status strong { font-size: 11px; }
.os-sidebar-status small { color: #8C8A88; font-size: 9px; }

.os-main { min-width: 0; padding: 18px; background: #F5F5F2; }
.os-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.os-metrics article {
  min-width: 0;
  padding: 14px;
  display: grid;
  gap: 3px;
  background: #FFFFFF;
  border: 1px solid rgba(34,31,28,0.10);
  border-radius: 12px;
}
.os-metrics span,
.os-node small {
  color: #8C8A88;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}
.os-metrics strong { font-size: clamp(18px, 2vw, 26px); line-height: 1.15; }
.os-metrics small { overflow: hidden; color: #797267; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }

.os-graph-wrap { max-width: 100%; overflow: hidden; }
.os-graph {
  position: relative;
  min-width: 820px;
  height: 548px;
  overflow: hidden;
  border: 1px solid rgba(34,31,28,0.10);
  border-radius: 16px;
  background-color: #FBFBF9;
  background-image: radial-gradient(rgba(34,31,28,0.13) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
}
.os-connections { position: absolute; inset: 0; width: 100%; height: 100%; }
.os-connections path {
  fill: none;
  stroke: rgba(34,31,28,0.27);
  stroke-width: 1.4;
  stroke-dasharray: 5 7;
}
.os-node {
  position: absolute;
  width: 258px;
  padding: 14px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(34,31,28,0.13);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(34,31,28,0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.os-node:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(34,31,28,0.12); }
.os-node-revenue { left: 3.5%; top: 46px; border-top: 3px solid #518BDB; }
.os-node-operations { right: 3.5%; top: 46px; border-top: 3px solid #36BAB8; }
.os-node-customers { left: 3.5%; bottom: 40px; border-top: 3px solid #ED6D9A; }
.os-node-finance { right: 3.5%; bottom: 40px; border-top: 3px solid #E5A057; }
.os-node header {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(34,31,28,0.09);
}
.os-node-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 700;
}
.icon-blue { color: #2D69B9; background: #DFEBFA; }
.icon-green { color: #237B74; background: #DDF6F1; }
.icon-pink { color: #A74370; background: #F8E1EC; }
.icon-amber { color: #925F20; background: #F8EBD8; }
.os-node header div { min-width: 0; }
.os-node h3 {
  overflow: hidden;
  color: #221F1C;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.os-node header b {
  padding: 3px 6px;
  color: #3A6B2A;
  background: rgba(126,250,85,0.18);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
}
.os-node > p { padding: 11px 0; color: #5F5A53; font-size: 11px; line-height: 1.45; }
.os-node > p span,
.os-node footer span { display: block; margin-bottom: 3px; color: #8C8A88; font-size: 9px; }
.os-node footer {
  padding-top: 10px;
  border-top: 1px solid rgba(34,31,28,0.09);
  font-size: 11px;
}
.os-node footer strong { font-size: 11px; }

.os-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  min-height: 142px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  text-align: center;
  background: #221F1C;
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(34,31,28,0.20);
  transform: translate(-50%, -50%);
}
.os-core-mark i { width: 13px; height: 13px; }
.os-core strong { font-family: var(--font-display); font-size: 22px; line-height: 1.02; }
.os-core small { color: rgba(255,255,255,0.56); font-family: var(--font-mono); font-size: 8px; }

@media (max-width: 760px) {
  .hero { min-height: 0; padding-top: 98px; }
  .hero-inner { padding: 54px 24px 78px; gap: 38px; }
  .hero-headline { font-size: clamp(42px, 12vw, 54px); letter-spacing: -0.045em; }
  .hero-subhead { font-size: 16px; }
  .hero-tagline { max-width: 34ch; }
  .hero-visual { padding: 8px 8px 42px; border-radius: 18px; }
  .hero-map { left: 2%; right: 2%; }
  .nav-cta-label { font-size: 0; }
  .nav-cta-label::after { content: 'Book a session'; font-size: 12px; }
  .operating-bridge { margin-top: -20px; padding: 78px 16px 88px; border-radius: 24px 24px 0 0; }
  .operating-intro { margin-bottom: 38px; }
  .operating-intro h2 { font-size: clamp(40px, 12vw, 56px); }
  .business-dashboard { border-radius: 15px; }
  .os-toolbar { padding: 0 12px; }
  .os-demo-label { display: none; }
  .os-layout { display: block; min-height: 0; }
  .os-sidebar { display: none; }
  .os-main { padding: 10px; }
  .os-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .os-graph-wrap { overflow-x: auto; scrollbar-width: thin; }
  .os-graph { height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-diagram { animation: none; }
}

/* ===== Accessibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== Scroll story prototype =====
   The final art direction will replace the current illustrated layer. The
   structure below deliberately keeps the story, product UI and motion apart. */
.hero-scroll-scene { position: relative; }
.hero-stage { position: relative; overflow: hidden; }
.scene-flat-bg { display: none; }
.scene-dashboard { display: none; }
.scene-scroll-cue { display: none; }

.hero {
  background:
    linear-gradient(180deg, rgba(1,22,44,0.20) 0%, rgba(0,96,170,0.08) 54%, rgba(1,22,44,0.12) 100%),
    url('assets/hero/hero-business-landscape-v1.png') center center / cover no-repeat;
}

.hero-copy .hero-headline,
.hero-copy .hero-deck { color: #FFFFFF; }
.hero-copy .hero-subhead { color: rgba(255,255,255,0.92); }
.hero-copy .hero-tagline { color: rgba(255,255,255,0.82); }
.hero-copy .hero-kicker {
  width: max-content;
  padding: 5px 7px 5px 6px;
  gap: 7px;
  color: #0A1420;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 7px;
  box-shadow: 0 5px 16px rgba(10,20,32,0.12), 0 1px 2px rgba(10,20,32,0.10);
}
.hero-copy .kicker-label {
  color: #0A1420;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-copy .kicker-badge {
  padding: 2px 6px;
  color: #FFFFFF;
  background: #0A1420;
  font-size: 9px;
  border-radius: 4px;
}
.hero-copy .btn-ghost {
  color: #0A1420;
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.78);
}
.hero-copy .btn-ghost:hover {
  color: #0A1420;
  background: #FFFFFF;
  border-color: #FFFFFF;
}

@media (min-width: 821px) {
  .nav {
    position: fixed;
    inset: 0 0 auto;
  }
  .hero {
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: #F5F5F2;
  }
  .hero-scroll-scene {
    height: 360vh;
    background: #F5F5F2;
  }
  .hero-stage {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 650px;
    isolation: isolate;
    background:
      linear-gradient(180deg, rgba(1,22,44,0.23) 0%, rgba(0,92,166,0.08) 54%, rgba(1,22,44,0.14) 100%),
      url('assets/hero/hero-business-landscape-v1.png') center center / cover no-repeat;
  }
  .hero-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.28;
    background:
      radial-gradient(ellipse at 50% 36%, rgba(0,191,255,0.30), transparent 56%),
      linear-gradient(125deg, rgba(79,131,219,0.28), rgba(0,191,255,0.10) 52%, rgba(67,196,174,0.20));
    pointer-events: none;
  }
  .hero-stage::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 44%;
    background: linear-gradient(to bottom, rgba(245,245,242,0) 0%, rgba(245,245,242,0.12) 28%, rgba(245,245,242,0.48) 58%, rgba(245,245,242,0.90) 84%, #F5F5F2 100%);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 38%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent, #000 38%, #000 100%);
    pointer-events: none;
  }
  .scene-flat-bg {
    position: absolute;
    inset: 82% 0 auto;
    z-index: 1;
    height: 100%;
    display: block;
    background: #F5F5F2;
    border: 0;
    outline: 0;
    transform: none;
    backface-visibility: hidden;
    pointer-events: none;
  }
  .scene-flat-bg::before {
    content: '';
    position: absolute;
    inset: -320px 0 auto;
    height: 324px;
    background: linear-gradient(to bottom, rgba(245,245,242,0), rgba(245,245,242,0.10) 28%, rgba(245,245,242,0.42) 56%, rgba(245,245,242,0.82) 82%, #F5F5F2 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 32%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent, #000 32%, #000 100%);
    transform: translateY(3px);
  }
  .hero-stage .hero-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 112px 24px 0;
    display: block;
    text-align: center;
    transform: none;
  }
  .hero-stage .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 900px;
  }
  .hero-stage .hero-kicker { margin-bottom: clamp(12px, 2vh, 24px); }
  .hero-stage .hero-headline {
    max-width: 900px;
    margin-bottom: clamp(14px, 2.2vh, 24px);
    font-size: clamp(62px, 7vw, 96px);
  }
  .hero-stage .hero-deck { margin-bottom: 14px; }
  .hero-stage .hero-subhead {
    max-width: 900px;
    margin-bottom: 20px;
    font-size: clamp(14px, 1.6vh, 17px);
  }
  .hero-stage .cta-row { margin-bottom: 15px; }
  .hero-stage .hero-tagline { font-size: 12px; }
  .scene-dashboard {
    position: absolute;
    inset: 0;
    z-index: 8;
    padding: clamp(26px, 4vh, 44px) max(24px, calc((100vw - 1180px) / 2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(18px, 3vh, 30px);
    opacity: 0;
    visibility: hidden;
    color: #221F1C;
    background: transparent;
    transform: none;
    transform-origin: 50% 0;
    pointer-events: none;
  }
  .scene-dashboard-intro {
    display: grid;
    gap: 8px;
    text-align: center;
  }
  .scene-dashboard-intro span {
    color: var(--accent-ink);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .scene-dashboard-intro strong {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.2vw, 54px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
  }
  .scene-dashboard-shell {
    width: min(1120px, 100%);
    height: min(610px, 68vh);
    min-height: 455px;
    margin: 0 auto;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(34,31,28,0.13);
    border-radius: 19px;
    box-shadow: 0 28px 70px rgba(34,31,28,0.14), 0 2px 4px rgba(34,31,28,0.06);
  }
  .scene-dashboard-bar {
    height: 52px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(34,31,28,0.10);
  }
  .scene-dashboard-bar > div { display: flex; align-items: center; gap: 10px; }
  .scene-dashboard-bar strong { font-size: 12px; }
  .scene-live {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3A6B2A;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .scene-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #56C63A;
    box-shadow: 0 0 0 4px rgba(86,198,58,0.13);
  }
  .scene-dashboard-body { height: calc(100% - 52px); padding: 12px; background: #F5F5F2; }
  .scene-metrics { height: 74px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
  .scene-metrics article {
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(34,31,28,0.10);
    border-radius: 11px;
  }
  .scene-metrics small { color: #8C8A88; font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.08em; }
  .scene-metrics strong { grid-row: span 2; font-size: clamp(19px, 2.2vw, 29px); }
  .scene-metrics span { color: #797267; font-size: 9px; }
  .scene-graph {
    position: relative;
    height: calc(100% - 84px);
    margin-top: 10px;
    overflow: hidden;
    background-color: #FBFBF9;
    background-image: radial-gradient(rgba(34,31,28,0.13) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
    border: 1px solid rgba(34,31,28,0.10);
    border-radius: 14px;
  }
  .scene-connections { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
  .scene-path {
    fill: none;
    stroke: rgba(34,31,28,0.27);
    stroke-width: 1.4;
    stroke-dasharray: 5 7;
  }
  .scene-signal { opacity: 0; filter: drop-shadow(0 0 6px currentColor); }
  .scene-signal-pink { color: #F6258C; fill: #F6258C; }
  .scene-signal-blue { color: #2789FF; fill: #2789FF; }
  .scene-signal-cyan { color: #00BFFF; fill: #00BFFF; }
  .scene-signal-out { color: #62D834; fill: #62D834; }
  .scene-node {
    position: absolute;
    width: 190px;
    padding: 12px 13px;
    display: grid;
    gap: 3px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(34,31,28,0.13);
    border-radius: 13px;
    box-shadow: 0 9px 22px rgba(34,31,28,0.08);
  }
  .scene-node small { color: #8C8A88; font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.09em; }
  .scene-node strong { font-size: 11px; }
  .scene-node span { color: #797267; font-size: 9px; }
  .scene-node-grow { left: 3%; top: 10%; border-top: 3px solid #518BDB; }
  .scene-node-save { left: 3%; bottom: 10%; border-top: 3px solid #ED6D9A; }
  .scene-node-multiply { right: 3%; top: 10%; border-top: 3px solid #36BAB8; }
  .scene-node-impact { right: 3%; bottom: 10%; border-top: 3px solid #7EFA55; }
  .scene-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    min-height: 116px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #FFFFFF;
    text-align: center;
    background: #221F1C;
    border-radius: 17px;
    box-shadow: 0 18px 36px rgba(34,31,28,0.20);
    transform: translate(-50%, -50%);
  }
  .scene-core strong { font-family: var(--font-display); font-size: 18px; line-height: 1; }
  .scene-core small { color: rgba(255,255,255,0.55); font-family: var(--font-mono); font-size: 7px; }
  .scene-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 96px;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(10,20,32,0.64);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: translateX(-50%);
  }
  .scene-scroll-cue i { width: 1px; height: 22px; background: currentColor; transform-origin: top; animation: scroll-cue 1.8s ease-in-out infinite; }
  @keyframes scroll-cue { 0%, 100% { transform: scaleY(0.35); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
  .operating-bridge { margin-top: 0; border-radius: 0; }
}

@media (min-width: 821px) and (max-height: 760px) {
  .hero-stage .hero-inner { padding-top: 92px; }
  .hero-stage .hero-headline { font-size: clamp(54px, 6.4vw, 76px); }
  .hero-stage .hero-kicker { margin-bottom: 10px; }
  .hero-stage .hero-subhead { max-width: 780px; margin-bottom: 12px; }
  .hero-stage .cta-row { margin-bottom: 10px; }
  .scene-dashboard { padding-top: 18px; padding-bottom: 18px; gap: 14px; }
  .scene-dashboard-intro strong { font-size: 34px; }
  .scene-dashboard-shell { height: min(540px, 72vh); min-height: 430px; }
}

/* Opportunity Monitor: one visual system from the hero preview to the full module. */
.browser-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.browser-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(1,22,44,0.26);
  border-radius: 50%;
  background: #FFFFFF;
}
.browser-dots i:first-child { background: #00BFFF; border-color: #00BFFF; }

@media (min-width: 821px) {
  .scene-dashboard-shell { color: #01162C; background: #FFFFFF; border-color: rgba(47,98,136,0.20); }
  .scene-dashboard-bar { border-color: rgba(47,98,136,0.14); }
  .scene-dashboard-bar strong { color: #01162C; }
  .scene-live { color: #2F6288; }
  .scene-live i { background: #00BFFF; box-shadow: 0 0 0 4px rgba(0,191,255,0.10); }
  .scene-opportunity-preview {
    height: calc(100% - 52px);
    display: grid;
    grid-template-columns: 38% minmax(0, 62%);
    background: #FFFFFF;
  }
  .scene-preview-list {
    padding: 14px;
    display: grid;
    align-content: start;
    gap: 6px;
    border-right: 1px solid rgba(47,98,136,0.14);
    background: #FFFFFF;
  }
  .scene-preview-row {
    min-height: 48px;
    padding: 0 13px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 7px;
    align-items: center;
    gap: 8px;
    color: #2F6288;
    border: 1px solid transparent;
    border-radius: 9px;
  }
  .scene-preview-row span { color: #86A4BA; font-family: var(--font-mono); font-size: 8px; }
  .scene-preview-row strong { overflow: hidden; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; text-overflow: ellipsis; white-space: nowrap; }
  .scene-preview-row i { width: 5px; height: 5px; border-radius: 50%; background: rgba(134,164,186,0.45); }
  .scene-preview-row.is-active { color: #01162C; background: rgba(0,191,255,0.09); border-color: rgba(0,191,255,0.28); }
  .scene-preview-row.is-active i { background: #00BFFF; box-shadow: 0 0 0 4px rgba(0,191,255,0.10); }
  .scene-preview-panel {
    margin: 0;
    padding: clamp(26px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    background: linear-gradient(180deg, #169FE9 0%, #31B5EF 58%, #F6FBFF 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .scene-preview-status { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .scene-preview-status span, .scene-preview-label { color: rgba(255,255,255,0.82); font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.13em; }
  .scene-preview-status b { padding: 6px 9px; color: #8A5600; background: #FFF4DE; border-radius: 999px; font-size: 8px; }
  .scene-preview-label { margin: auto 0 8px; }
  .scene-preview-panel h3 { max-width: 13ch; color: #FFFFFF; font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 46px); font-weight: 500; line-height: 0.98; letter-spacing: -0.03em; }
  .scene-preview-panel > p:not(.scene-preview-label) { max-width: 54ch; margin: 12px 0 22px; color: rgba(255,255,255,0.88); font-size: 12px; line-height: 1.5; }
  .scene-preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .scene-preview-metrics article { padding: 12px; display: grid; gap: 3px; color: #01162C; background: rgba(255,255,255,0.96); border: 1px solid rgba(255,255,255,0.72); border-radius: 10px; box-shadow: 0 10px 24px rgba(1,22,44,0.09); }
  .scene-preview-metrics small { color: #86A4BA; font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.08em; }
  .scene-preview-metrics strong { font-size: clamp(18px, 2vw, 28px); }
  .scene-preview-metrics span { color: #2F6288; font-size: 8px; }
  .scene-preview-action { margin: 10px 0 0 8%; padding: 12px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; color: #01162C; background: rgba(255,255,255,0.97); border-radius: 10px; box-shadow: 0 10px 24px rgba(1,22,44,0.10); }
  .scene-preview-action > span { color: #00BFFF; font-family: var(--font-mono); font-size: 9px; }
  .scene-preview-action div { display: grid; gap: 2px; }
  .scene-preview-action small { color: #86A4BA; font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.08em; }
  .scene-preview-action strong { font-size: 10px; }
  .scene-preview-action b { color: #00BFFF; font-size: 18px; }
}

.operating-bridge {
  margin-top: 0;
  padding: 118px max(24px, calc((100vw - 1280px) / 2)) 132px;
  color: #01162C;
  background: #F6FBFF;
  border-radius: 0;
}
.operating-intro { max-width: 870px; margin-bottom: 58px; }
.operating-intro .section-label { color: #2F6288; }
.operating-intro h2 { color: #01162C; }
.operating-intro > p:last-child { max-width: 720px; color: #2F6288; font-size: 18px; }

.pain-browser {
  max-width: 1280px;
  margin: 0 auto;
  overflow: clip;
  background: #FFFFFF;
  border: 1px solid rgba(47,98,136,0.20);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(1,22,44,0.11), 0 2px 4px rgba(1,22,44,0.04);
}
.pain-browser-bar {
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(47,98,136,0.14);
}
.pain-browser-brand, .pain-monitor-status { display: flex; align-items: center; gap: 10px; }
.pain-browser-brand strong { font-size: 13px; }
.pain-browser-brand > span:last-child { padding: 5px 8px; color: #2F6288; background: #F6FBFF; border-radius: 999px; font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }
.pain-monitor-status { color: #2F6288; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.pain-monitor-status i { width: 7px; height: 7px; border-radius: 50%; background: #00BFFF; box-shadow: 0 0 0 4px rgba(0,191,255,0.10); }

.pain-module { display: grid; grid-template-columns: minmax(0, 40%) minmax(0, 60%); align-items: start; }
.pain-list { padding: 20px; display: grid; gap: 10px; border-right: 1px solid rgba(47,98,136,0.14); background: #FFFFFF; }
.pain-item {
  width: 100%;
  min-height: 142px;
  padding: 21px 20px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  color: #01162C;
  text-align: left;
  background: transparent;
  border: 1px solid rgba(47,98,136,0.16);
  border-radius: 12px;
  cursor: pointer;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, transform 300ms ease;
}
.pain-item:hover, .pain-item:focus-visible, .pain-item.is-active { background: rgba(0,191,255,0.09); border-color: rgba(0,191,255,0.40); transform: translateX(3px); }
.pain-icon { width: 38px; height: 38px; display: grid; place-items: center; color: #2F6288; background: #F6FBFF; border: 1px solid rgba(47,98,136,0.16); border-radius: 10px; transition: color 300ms ease, background 300ms ease; }
.pain-item.is-active .pain-icon { color: #01162C; background: rgba(0,191,255,0.16); border-color: rgba(0,191,255,0.35); }
.pain-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pain-item > span:last-child { display: grid; gap: 10px; }
.pain-item strong { font-family: var(--font-body); font-size: clamp(16px, 1.35vw, 20px); font-weight: 700; line-height: 1.15; letter-spacing: 0.16em; }
.pain-item em { color: #2F6288; font-size: clamp(17px, 1.55vw, 24px); font-style: normal; font-weight: 500; line-height: 1.36; letter-spacing: -0.02em; }

.pain-visual-wrap { min-width: 0; padding: 28px; background: #F6FBFF; }
.pain-visual {
  position: sticky;
  top: 104px;
  min-height: 680px;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  color: #01162C;
  background-color: #FFFFFF;
  background-image: radial-gradient(rgba(47,98,136,0.16) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  border: 1px solid rgba(47,98,136,0.18);
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(1,22,44,0.08);
  transition: opacity 150ms ease, transform 150ms ease;
}
.pain-visual.is-changing { opacity: 0.42; transform: translateY(4px); }
.pain-visual-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pain-visual-top > span, .pain-visual-copy > p:first-child { color: #2F6288; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.13em; }
.pain-visual-top b { padding: 7px 10px; display: flex; align-items: center; gap: 7px; color: #8A5600; background: #FFF4DE; border: 1px solid rgba(245,158,11,0.22); border-radius: 999px; font-size: 10px; }
.pain-visual-top b i { width: 6px; height: 6px; border-radius: 50%; background: #F59E0B; }
.pain-visual-copy { margin: auto 0 34px; }
.pain-visual-copy h3 { max-width: 14ch; margin: 13px 0 16px; font-family: var(--font-display); font-size: clamp(44px, 5vw, 70px); font-weight: 500; line-height: 0.98; letter-spacing: -0.045em; }
.pain-visual-copy > p:last-child { max-width: 58ch; color: #2F6288; font-size: 17px; line-height: 1.55; }
.pain-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.pain-metrics article { min-width: 0; padding: 16px; display: grid; gap: 4px; background: rgba(246,251,255,0.92); border: 1px solid rgba(47,98,136,0.15); border-radius: 12px; }
.pain-metrics span { color: #86A4BA; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.10em; }
.pain-metrics strong { font-size: clamp(24px, 3vw, 38px); line-height: 1.05; }
.pain-metrics small { overflow: hidden; color: #2F6288; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.pain-timeline { margin: 24px 0; display: grid; grid-template-columns: repeat(4, 1fr); color: #86A4BA; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.07em; text-transform: uppercase; }
.pain-timeline span { position: relative; padding-top: 17px; border-top: 1px solid rgba(47,98,136,0.22); }
.pain-timeline i { position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border: 2px solid #FFFFFF; border-radius: 50%; background: #86A4BA; box-shadow: 0 0 0 1px rgba(47,98,136,0.22); }
.pain-timeline .is-done { color: #01162C; border-color: #00BFFF; }
.pain-timeline .is-done i { background: #00BFFF; box-shadow: 0 0 0 4px rgba(0,191,255,0.10); }
.pain-next-action { padding: 18px; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 14px; color: #FFFFFF; background: #01162C; border-radius: 12px; }
.pain-next-action > span { color: #00BFFF; font-family: var(--font-mono); font-size: 11px; }
.pain-next-action div { display: grid; gap: 3px; }
.pain-next-action small { color: #86A4BA; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.10em; }
.pain-next-action strong { font-size: 13px; line-height: 1.35; }
.pain-next-action > b { color: #00BFFF; font-size: 22px; }

/* Editorial opportunity module: open list + blue story surface. */
.pain-browser { max-width: 1180px; }
.pain-module {
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  min-height: 720px;
  background: #FFFFFF;
}
.pain-list {
  padding: 22px 30px 28px;
  align-content: start;
  gap: 0;
  border-right: 0;
}
.pain-item {
  min-height: 72px;
  padding: 20px 4px;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  border: 0;
  border-bottom: 1px solid rgba(47,98,136,0.15);
  border-radius: 0;
  transition: color 300ms ease, padding 300ms ease, background 300ms ease;
}
.pain-item:hover,
.pain-item:focus-visible,
.pain-item.is-active {
  padding-left: 10px;
  color: #01162C;
  background: linear-gradient(90deg, rgba(0,191,255,0.09), rgba(0,191,255,0));
  border-color: rgba(47,98,136,0.15);
  transform: none;
}
.pain-icon {
  width: 28px;
  height: 28px;
  color: #2F6288;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.pain-item.is-active .pain-icon { color: #00A9E8; background: transparent; border: 0; }
.pain-icon svg { width: 19px; height: 19px; stroke-width: 1.7; }
.pain-item > span:last-child { gap: 0; }
.pain-item strong {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.25;
  letter-spacing: 0.08em;
}
.pain-item em {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: #2F6288;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.48;
  transform: translateY(-4px);
  transition: max-height 320ms ease, margin 320ms ease, opacity 240ms ease, transform 320ms ease;
}
.pain-item.is-active em {
  max-height: 112px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.pain-visual-wrap {
  min-height: 720px;
  padding: 0;
  background: linear-gradient(180deg, #169FE9 0%, #28AFF0 48%, #75CDF0 70%, #F6FBFF 100%);
}
.pain-visual {
  top: 92px;
  min-height: 720px;
  padding: 42px clamp(30px, 3.8vw, 54px) 58px;
  color: #01162C;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.pain-visual-top { color: #FFFFFF; }
.pain-visual-top > span { color: rgba(255,255,255,0.82); }
.pain-visual-top b { background: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.78); box-shadow: 0 8px 24px rgba(1,22,44,0.09); }
.pain-card-stack { margin-top: 54px; display: grid; align-content: start; }
.pain-story-card {
  position: relative;
  padding: clamp(22px, 2.6vw, 34px);
  color: #01162C;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(1,22,44,0.12), 0 2px 3px rgba(1,22,44,0.04);
}
.pain-story-primary { z-index: 3; width: 92%; }
.pain-story-impact { z-index: 2; width: 88%; margin: -8px 0 0 7%; }
.pain-story-action { z-index: 1; width: 82%; margin: -8px 0 0 14%; padding: 0; }
.pain-visual-copy { margin: 0; }
.pain-visual-copy > p:first-child,
.pain-card-label { color: #2F6288; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.13em; }
.pain-visual-copy h3 {
  max-width: 16ch;
  margin: 12px 0 12px;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 0.98;
}
.pain-visual-copy > p:last-child { max-width: 54ch; font-size: 15px; line-height: 1.5; }
.pain-card-label { margin-bottom: 13px; }
.pain-metrics { gap: 8px; }
.pain-metrics > div {
  min-width: 0;
  padding-right: 10px;
  display: grid;
  gap: 3px;
  border-right: 1px solid rgba(47,98,136,0.14);
}
.pain-metrics > div:last-child { padding-right: 0; border-right: 0; }
.pain-metrics span { font-size: 7px; }
.pain-metrics strong { font-size: clamp(22px, 2.5vw, 34px); }
.pain-metrics small { font-size: 9px; }
.pain-next-action { padding: 18px; color: #01162C; background: transparent; }
.pain-next-action small { color: #2F6288; }
.pain-next-action > b { color: #00A9E8; }

/* Reference-faithful compact composition. */
.pain-browser {
  max-width: 1120px;
  border-color: rgba(1,22,44,0.10);
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(1,22,44,0.09);
}
.pain-browser-bar { display: none; }
.pain-module {
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  min-height: 640px;
}
.pain-list { padding: 22px 28px 24px; }
.pain-item {
  min-height: 61px;
  padding: 16px 0;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
}
.pain-item:hover,
.pain-item:focus-visible,
.pain-item.is-active {
  padding-left: 0;
  background: transparent;
}
.pain-icon { width: 22px; height: 22px; color: #506777; }
.pain-icon svg { width: 15px; height: 15px; stroke-width: 1.6; }
.pain-item strong {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.25;
  letter-spacing: 0.015em;
}
.pain-item em {
  max-width: 38ch;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.48;
}
.pain-item.is-active em { max-height: 96px; margin-top: 8px; }

.pain-visual-wrap {
  min-height: 640px;
  background: linear-gradient(180deg, #279EE7 0%, #33ACEB 50%, #9FD8F2 76%, #F6FBFF 100%);
}
.pain-visual {
  top: 92px;
  min-height: 640px;
  padding: 30px 28px 42px;
}
.pain-visual-top > span { display: none; }
.pain-visual-top b {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 5;
  padding: 5px 8px;
  color: #FFFFFF;
  background: #01162C;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  font-size: 8px;
  transform: translateX(-50%);
}
.pain-visual-top b i { display: none; }
.pain-card-stack { margin-top: 54px; }
.pain-story-card {
  padding: 15px 17px;
  border-color: rgba(1,22,44,0.08);
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(1,22,44,0.10), 0 1px 2px rgba(1,22,44,0.05);
}
.pain-story-primary { width: 82%; margin-left: 8%; }
.pain-story-impact { width: 78%; margin: 9px 0 0 13%; }
.pain-story-action { width: 74%; margin: 9px 0 0 18%; padding: 0; }
.pain-visual-copy > p:first-child,
.pain-card-label { font-size: 7px; letter-spacing: 0.10em; }
.pain-visual-copy h3 {
  max-width: none;
  margin: 7px 0 7px;
  font-family: var(--font-body);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.pain-visual-copy > p:last-child { font-size: 11px; line-height: 1.42; }
.pain-card-label { margin-bottom: 8px; }
.pain-metrics { gap: 7px; }
.pain-metrics > div { padding-right: 7px; }
.pain-metrics span { font-size: 6px; }
.pain-metrics strong { font-size: clamp(17px, 1.7vw, 23px); }
.pain-metrics small { font-size: 7px; }
.pain-next-action { padding: 12px 14px; grid-template-columns: 24px 1fr auto; gap: 9px; }
.pain-next-action > span { font-size: 8px; }
.pain-next-action small { font-size: 6px; }
.pain-next-action strong { font-size: 10px; }
.pain-next-action > b { font-size: 16px; }

/* Left index: deliberately mirrors the compact editorial accordion in the reference. */
.pain-list {
  padding: 30px 34px 28px;
  align-content: start;
  background: #fff;
}
.pain-item {
  min-height: 56px;
  padding: 17px 0 16px;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  color: rgba(1, 22, 44, 0.66);
  border-bottom-color: rgba(1, 22, 44, 0.10);
}
.pain-item:first-child { padding-top: 6px; }
.pain-item:last-child { border-bottom: 0; }
.pain-item:hover,
.pain-item:focus-visible,
.pain-item.is-active {
  color: #01162C;
  background: transparent;
}
.pain-icon,
.pain-item.is-active .pain-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: currentColor;
}
.pain-icon svg { width: 13px; height: 13px; stroke-width: 1.65; }
.pain-item strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.012em;
}
.pain-item em {
  max-width: 34ch;
  color: rgba(1, 22, 44, 0.62);
  font-size: 13px;
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.pain-item.is-active em {
  max-height: 90px;
  margin-top: 10px;
}
.pain-item-meta {
  max-height: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  opacity: 0;
  color: rgba(1, 22, 44, 0.44);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  transition: max-height 320ms ease, margin 320ms ease, opacity 240ms ease;
}
.pain-item-meta b {
  padding: 4px 6px;
  color: rgba(1, 22, 44, 0.72);
  background: #F2F6F8;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pain-item-meta i {
  width: 3px;
  height: 3px;
  background: #00BFFF;
  border-radius: 50%;
}
.pain-item.is-active .pain-item-meta {
  max-height: 24px;
  margin-top: 13px;
  opacity: 1;
}

/* Right story surface: compact notification stack, matching the reference scale. */
.pain-visual { padding: 30px 28px 42px; }
.pain-visual-top b {
  top: 78px;
  padding: 5px 8px;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pain-card-stack {
  width: 100%;
  margin-top: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.pain-story-card {
  width: 78%;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(1,22,44,0.10);
  border-radius: 7px;
  box-shadow: 0 5px 13px rgba(1,22,44,0.11), 0 1px 2px rgba(1,22,44,0.06);
}
.pain-story-primary,
.pain-story-impact,
.pain-story-action {
  width: 78%;
  margin: 0;
}
.pain-card-sender {
  margin-bottom: 7px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 6px;
}
.pain-card-avatar {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background: #01162C;
  border-radius: 50%;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.pain-card-avatar-impact { color: #01162C; background: #DFF5FF; }
.pain-card-sender strong {
  font-size: 8px;
  font-weight: 750;
  line-height: 1;
}
.pain-card-sender small {
  color: rgba(1,22,44,0.42);
  font-size: 6px;
  line-height: 1;
}
.pain-visual-copy > p:first-child {
  margin-left: 24px;
  color: rgba(1,22,44,0.44);
  font-family: var(--font-body);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.pain-visual-copy h3 {
  max-width: none;
  margin: 4px 0 4px 24px;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.pain-visual-copy > p:last-child {
  margin-left: 24px;
  color: rgba(1,22,44,0.68);
  font-size: 8px;
  line-height: 1.38;
}
.pain-story-impact { padding: 9px 12px 10px; }
.pain-story-impact .pain-card-sender { margin-bottom: 7px; }
.pain-metrics { gap: 0; }
.pain-metrics > div {
  padding: 0 8px;
  gap: 1px;
  border-right-color: rgba(1,22,44,0.10);
}
.pain-metrics > div:first-child { padding-left: 24px; }
.pain-metrics span { color: rgba(1,22,44,0.42); font-size: 5px; letter-spacing: 0.08em; }
.pain-metrics strong { font-size: 14px; line-height: 1.05; }
.pain-metrics small { color: rgba(1,22,44,0.52); font-size: 5.5px; }
.pain-story-action { padding: 8px 10px 9px; }
.pain-action-recipient {
  margin: 0 2px 7px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(1,22,44,0.08);
}
.pain-action-recipient span { color: rgba(1,22,44,0.40); font-size: 6px; }
.pain-action-recipient strong { font-size: 7px; font-weight: 700; }
.pain-next-action {
  padding: 0 2px;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 7px;
}
.pain-next-action > span { font-size: 6px; }
.pain-next-action small { font-size: 5px; letter-spacing: 0.07em; }
.pain-next-action strong { font-size: 7.5px; line-height: 1.28; }
.pain-next-action > button {
  padding: 5px 7px;
  color: #FFFFFF;
  background: #178ED8;
  border: 0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 6px;
  font-weight: 700;
  pointer-events: none;
}
.pain-next-action > button b { margin-left: 3px; font-size: 7px; }
.pain-ghost-action {
  width: 64%;
  min-height: 36px;
  margin-top: 0;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 7px;
  color: rgba(1,22,44,0.44);
  background: linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 7px;
  filter: blur(0.15px);
}
.pain-ghost-action > span { color: rgba(1,22,44,0.30); font-size: 9px; }
.pain-ghost-action div { display: grid; gap: 3px; }
.pain-ghost-action strong { font-size: 7px; }
.pain-ghost-action small { font-size: 6px; }

@media (min-width: 821px) {
  .scene-opportunity-preview { grid-template-columns: 50% 50%; }
  .scene-preview-list { padding: 18px 26px; gap: 0; }
  .scene-preview-row {
    min-height: 50px;
    padding: 0 2px;
    grid-template-columns: 20px minmax(0, 1fr) 5px;
    border: 0;
    border-bottom: 1px solid rgba(47,98,136,0.13);
    border-radius: 0;
  }
  .scene-preview-row.is-active { background: transparent; border-color: rgba(47,98,136,0.13); }
  .scene-preview-panel { padding: 28px 34px; }
  .scene-preview-status > span { display: none; }
  .scene-preview-status b { margin: 0 auto; color: #FFFFFF; background: #01162C; border-radius: 4px; }
  .scene-preview-card {
    width: 82%;
    margin: 38px auto 0;
    padding: 14px 16px;
    color: #01162C;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(1,22,44,0.08);
    border-radius: 9px;
    box-shadow: 0 7px 20px rgba(1,22,44,0.11);
  }
  .scene-preview-label { margin: 0 0 5px; color: #2F6288; }
  .scene-preview-card h3 { max-width: none; color: #01162C; font-family: var(--font-body); font-size: clamp(18px, 2vw, 25px); font-weight: 700; line-height: 1.1; }
  .scene-preview-card > p:last-child { margin: 7px 0 0; color: #2F6288; font-size: 9px; line-height: 1.4; }
  .scene-preview-metrics { width: 78%; margin: 8px auto 0 11%; }
  .scene-preview-metrics article { padding: 9px 10px; border-radius: 8px; }
  .scene-preview-action { width: 72%; margin: 8px 0 0 18%; padding: 10px; border-radius: 8px; }
}

@media (max-width: 820px) {
  .operating-bridge { margin-top: -1px; padding: 82px 16px 92px; border-radius: 0; }
  .operating-intro { margin-bottom: 38px; }
  .operating-intro h2 { font-size: clamp(40px, 12vw, 56px); }
  .operating-intro > p:last-child { font-size: 16px; }
  .pain-browser { border-radius: 15px; }
  .pain-browser-bar { min-height: 54px; padding: 0 13px; }
  .pain-browser-brand > span:last-child { display: none; }
  .pain-monitor-status { font-size: 0; }
  .pain-monitor-status::after { content: '8 señales'; font-size: 9px; }
  .pain-module { display: flex; flex-direction: column; }
  .pain-visual-wrap { width: 100%; padding: 10px; order: -1; border-bottom: 1px solid rgba(47,98,136,0.14); }
  .pain-visual { position: relative; top: auto; min-height: 480px; padding: 24px 20px; }
  .pain-visual-copy { margin: 50px 0 24px; }
  .pain-visual-copy h3 { font-size: clamp(38px, 11vw, 52px); }
  .pain-visual-copy > p:last-child { font-size: 15px; }
  .pain-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pain-metrics article:nth-child(3) { display: none; }
  .pain-timeline { margin: 18px 0; }
  .pain-next-action { padding: 15px; }
  .pain-list { width: 100%; padding: 10px; border-right: 0; }
  .pain-item { min-height: 0; padding: 18px 16px; grid-template-columns: 34px minmax(0,1fr); }
  .pain-icon { width: 34px; height: 34px; }
  .pain-item:hover, .pain-item:focus-visible, .pain-item.is-active { transform: none; }
  .pain-item strong { font-size: 15px; letter-spacing: 0.13em; }
  .pain-item em { font-size: 18px; }
  .pain-visual-wrap { min-height: 0; padding: 0; background: linear-gradient(180deg, #169FE9 0%, #35B5EE 55%, #F6FBFF 100%); }
  .pain-visual { min-height: 560px; padding: 28px 18px 48px; }
  .pain-card-stack { margin-top: 38px; }
  .pain-story-card { padding: 22px 19px; }
  .pain-story-primary { width: 96%; }
  .pain-story-impact { width: 92%; margin-left: 5%; }
  .pain-story-action { width: 88%; margin-left: 9%; padding: 0; }
  .pain-visual-copy { margin: 0; }
  .pain-visual-copy h3 { font-size: clamp(34px, 10vw, 46px); }
  .pain-metrics > div:nth-child(3) { display: none; }
  .pain-list { padding: 8px 18px 18px; }
  .pain-item { padding: 18px 2px; grid-template-columns: 30px minmax(0, 1fr); }
  .pain-item:hover, .pain-item:focus-visible, .pain-item.is-active { padding-left: 7px; }
  .pain-icon { width: 28px; height: 28px; }
  .pain-item strong { letter-spacing: 0.08em; }
  .pain-item em { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-scene { height: auto; }
  .hero-stage { position: relative; top: auto; height: auto; min-height: 0; overflow: visible; }
  .hero-stage .hero-inner { position: relative; height: auto; padding-bottom: 80px; }
  .scene-flat-bg, .scene-dashboard { display: none; }
  .scene-scroll-cue { display: none; }
}

/* Agentized business view inside the hero transition */
@media (min-width: 821px) {
  .scene-dashboard-intro strong { max-width: 18ch; margin: 0 auto; }
  .scene-live b { color: #86A4BA; font-weight: 400; }
  .scene-agentized-view {
    height: calc(100% - 52px);
    display: grid;
    grid-template-columns: 42% minmax(0, 58%);
    color: #071829;
    background: #FFFFFF;
  }
  .scene-agent-chat {
    min-width: 0;
    padding: 16px 18px 14px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(7,24,41,0.10);
    background: #FFFFFF;
  }
  .scene-agent-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    overflow: hidden;
    border: 1px solid rgba(7,24,41,0.11);
    border-radius: 10px;
  }
  .scene-agent-metrics > div { min-width: 0; padding: 9px 10px; display: grid; gap: 1px; border-right: 1px solid rgba(7,24,41,0.10); }
  .scene-agent-metrics > div:last-child { border-right: 0; }
  .scene-agent-metrics span { color: #6D8494; font-size: 7px; letter-spacing: 0.08em; text-transform: uppercase; }
  .scene-agent-metrics strong { font-size: clamp(16px, 1.8vw, 23px); font-weight: 550; letter-spacing: -0.045em; }
  .scene-agent-metrics small { overflow: hidden; color: #7890A0; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
  .scene-agent-welcome { margin: 13px auto 10px; display: grid; justify-items: center; gap: 5px; text-align: center; }
  .scene-agent-orb-small {
    position: relative;
    width: 42px;
    height: 42px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 68%, rgba(255,211,225,.98) 0 11%, transparent 33%), radial-gradient(circle at 72% 29%, rgba(219,227,255,.96) 0 9%, transparent 30%), conic-gradient(from 120deg, #95B5F0, #547ED0, #C1CEF2, #FFC9D8, #EEAD86, #95B5F0);
    border: 1px solid rgba(111,144,190,.17);
    border-radius: 50%;
    box-shadow: inset 0 0 12px rgba(255,255,255,.55), 0 8px 22px rgba(66,100,153,.18);
    animation: scene-agent-float 6s ease-in-out infinite;
  }
  .scene-agent-orb-small::after, .scene-agent-orb::after { content: ""; position: absolute; width: 84%; height: 34%; top: 7%; left: 8%; background: linear-gradient(180deg, rgba(255,255,255,.62), transparent); border-radius: 50%; filter: blur(5px); transform: rotate(-15deg); }
  .scene-agent-welcome h3 { margin: 0; color: #071829; font-family: var(--font-sans); font-size: 13px; font-weight: 500; line-height: 1.27; letter-spacing: -0.02em; }
  .scene-agent-welcome h3 em { color: #806FD1; background: linear-gradient(90deg,#806FD1,#E28FA8,#6F8CD8); font-style: normal; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .scene-agent-welcome small { color: #7890A0; font-size: 7px; }
  .scene-agent-welcome small i { width: 5px; height: 5px; margin-right: 3px; display: inline-block; background: #63DB68; border-radius: 50%; box-shadow: 0 0 0 3px rgba(99,219,104,.11); }
  .scene-agent-question { display: flex; justify-content: flex-end; align-items: center; gap: 6px; }
  .scene-agent-question > span { color: #7890A0; font-size: 7px; }
  .scene-agent-question p { margin: 0; padding: 7px 9px; color: #071829; background: #F3F7F9; border: 1px solid rgba(7,24,41,.09); border-radius: 10px 10px 3px 10px; font-size: 9px; }
  .scene-agent-answer { position: relative; margin-top: 10px; padding-left: 27px; }
  .scene-agent-avatar { position: absolute; top: 0; left: 0; width: 20px; height: 20px; display: grid; place-items: center; color: #FFFFFF; background: linear-gradient(145deg,#315F9E,#A47EB4); border-radius: 50%; box-shadow: 0 5px 13px rgba(49,95,158,.18); font-size: 9px; }
  .scene-agent-answer-head { min-height: 20px; display: flex; align-items: center; }
  .scene-agent-answer-head strong { font-size: 9px; font-weight: 600; }
  .scene-agent-answer-head small { margin-left: auto; color: #7890A0; font-size: 7px; }
  .scene-agent-trace { margin: 5px 0 7px; display: flex; flex-wrap: wrap; gap: 4px; }
  .scene-agent-trace span { padding: 3px 5px; color: #627B8C; background: #F3F7F9; border-radius: 4px; font-size: 6.5px; }
  .scene-agent-answer h4 { margin: 0 0 3px; font-size: 13px; font-weight: 600; letter-spacing: -0.025em; }
  .scene-agent-answer > p { margin: 0; color: #647E8F; font-size: 8px; line-height: 1.42; }
  .scene-agent-priorities { margin-top: 8px; border-top: 1px solid rgba(7,24,41,.10); }
  .scene-agent-priorities > div { min-height: 29px; display: grid; grid-template-columns: 19px minmax(0,1fr) auto; align-items: center; gap: 6px; border-bottom: 1px solid rgba(7,24,41,.09); }
  .scene-agent-priorities b { width: 18px; height: 18px; display: grid; place-items: center; color: #276A9B; background: #E9F6FC; border-radius: 5px; font-size: 6.5px; font-weight: 600; }
  .scene-agent-priorities span { color: #647E8F; font-size: 7px; }
  .scene-agent-priorities strong { font-size: 8px; font-weight: 600; }
  .scene-agent-ready { margin-top: 7px; display: block; color: #7890A0; font-size: 7px; }
  .scene-agent-composer { min-height: 37px; margin-top: auto; padding: 7px 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #7890A0; background: #FFFFFF; border: 1px solid rgba(7,24,41,.13); border-radius: 10px; box-shadow: 0 7px 18px rgba(7,24,41,.05); font-size: 7.5px; }
  .scene-agent-composer b { width: 21px; height: 21px; display: grid; place-items: center; flex: 0 0 auto; color: #FFFFFF; background: #10283B; border-radius: 50%; font-size: 10px; }

  .scene-business-map {
    position: relative;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at 76% 14%,rgba(247,211,119,.64),transparent 21%), radial-gradient(circle at 12% 92%,rgba(199,219,187,.78),transparent 23%), radial-gradient(circle at 48% 36%,rgba(220,225,249,.84),transparent 27%), linear-gradient(150deg,#AAC8EE 0%,#91BAE7 24%,#D5D8C8 49%,#78A6C9 70%,#DBE9F3 100%);
  }
  .scene-business-map::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .25; background-image: repeating-radial-gradient(circle at 0 0,rgba(255,255,255,.84) 0 1px,transparent 1px 3px),repeating-radial-gradient(circle at 100% 100%,rgba(7,24,41,.54) 0 1px,transparent 1px 4px); background-size: 4px 4px,5px 5px; mix-blend-mode: soft-light; }
  .scene-business-map::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg,rgba(255,255,255,.04) 48%,rgba(7,24,41,.17) 100%),radial-gradient(ellipse at center,transparent 22%,rgba(7,24,41,.10) 100%); }
  .scene-map-kicker { position: absolute; top: 14px; left: 50%; z-index: 8; padding: 6px 9px; color: rgba(255,255,255,.9); background: rgba(7,24,41,.72); border: 1px solid rgba(255,255,255,.17); border-radius: 999px; font-size: 7px; letter-spacing: .05em; transform: translateX(-50%); backdrop-filter: blur(14px); }
  .scene-map-lines { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }
  .scene-map-lines path { fill: none; stroke: rgba(255,255,255,.58); stroke-width: 1; }
  .scene-map-lines circle { fill: #00BFFF; filter: drop-shadow(0 0 5px rgba(0,191,255,.85)); }
  .scene-map-node { position: absolute; z-index: 5; min-width: 138px; padding: 8px 9px; display: grid; grid-template-columns: 26px minmax(0,1fr); align-items: center; gap: 7px; color: #172B3B; background: rgba(255,255,255,.91); border: 1px solid rgba(255,255,255,.75); border-radius: 10px; box-shadow: 0 12px 28px rgba(7,24,41,.14); backdrop-filter: blur(16px); }
  .scene-map-node > i { width: 26px; height: 26px; display: grid; place-items: center; color: #31506A; background: #F0F5F8; border-radius: 7px; font-size: 13px; font-style: normal; }
  .scene-map-node > span { display: grid; gap: 1px; }
  .scene-map-node strong { font-size: 9px; font-weight: 600; }
  .scene-map-node small { color: #708391; font-size: 7px; }
  .scene-map-revenue { top: 17%; left: 5%; }
  .scene-map-customers { top: 17%; right: 5%; }
  .scene-map-operations { bottom: 22%; left: 8%; }
  .scene-map-finance { bottom: 22%; right: 8%; }
  .scene-map-core { position: absolute; top: 47%; left: 50%; z-index: 4; width: 118px; height: 118px; transform: translate(-50%,-50%); }
  .scene-agent-orb { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 32% 68%,rgba(255,211,225,.97) 0 11%,transparent 33%),radial-gradient(circle at 72% 29%,rgba(219,227,255,.94) 0 9%,transparent 30%),conic-gradient(from 120deg,#7DA7F1,#316FC6,#ACC6F4,#FFD0DC,#4E83D4,#7DA7F1); border: 1px solid rgba(255,255,255,.50); border-radius: 50%; box-shadow: inset 0 0 22px rgba(255,255,255,.42),0 20px 55px rgba(36,75,133,.34),0 0 0 12px rgba(255,255,255,.08); animation: scene-agent-float 7s ease-in-out infinite; }
  .scene-map-core > div:last-child { position: absolute; top: calc(100% + 13px); left: 50%; width: max-content; max-width: 220px; padding: 7px 9px; color: #F7FBFF; text-align: center; background: rgba(7,24,41,.80); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; transform: translateX(-50%); backdrop-filter: blur(16px); }
  .scene-map-core strong { display: block; font-size: 8px; font-weight: 600; }
  .scene-map-core small { color: rgba(255,255,255,.68); font-size: 7px; }
  .scene-map-notice { position: absolute; left: 50%; bottom: 3.5%; z-index: 7; width: min(350px,82%); padding: 8px 9px; display: grid; grid-template-columns: 27px minmax(0,1fr) auto; align-items: center; gap: 8px; color: #172B3B; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.82); border-radius: 10px; box-shadow: 0 18px 42px rgba(7,24,41,.22); transform: translateX(-50%); backdrop-filter: blur(20px); }
  .scene-map-notice > i { width: 27px; height: 27px; display: grid; place-items: center; color: #8B5500; background: #FFF1D7; border-radius: 7px; font-size: 12px; font-style: normal; font-weight: 700; }
  .scene-map-notice > span { min-width: 0; display: grid; gap: 1px; }
  .scene-map-notice small { color: #8B5500; font-size: 6px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .scene-map-notice strong { overflow: hidden; font-size: 8px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
  .scene-map-notice em { overflow: hidden; color: #708391; font-size: 6.5px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
  .scene-map-notice > b { padding: 6px 7px; color: #F7FBFF; background: #11273A; border-radius: 6px; font-size: 6.5px; font-weight: 600; white-space: nowrap; }
}

@keyframes scene-agent-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(4deg); }
}

@media (min-width: 821px) and (max-height: 720px) {
  .scene-agent-chat { padding: 11px 14px; }
  .scene-agent-welcome { margin: 8px auto 6px; }
  .scene-agent-orb-small { width: 34px; height: 34px; }
  .scene-agent-answer { margin-top: 7px; }
  .scene-agent-priorities > div { min-height: 25px; }
  .scene-agent-ready { display: none; }
  .scene-map-node { min-width: 124px; }
}

@media (prefers-reduced-motion: reduce) {
  .scene-agent-orb-small, .scene-agent-orb { animation: none; }
}

/* ===== Curated below-fold system: from The Real Problem onwards ===== */
.friction,
.levers,
.approach,
.problema,
.resultados,
.ownership,
.para-quien,
.faq,
.cta-destacado,
.formulario { scroll-margin-top: 96px; }

.friction {
  padding: 140px 0 132px;
  background:
    radial-gradient(circle at 86% 8%, rgba(0,191,255,.16), transparent 26%),
    radial-gradient(circle at 8% 92%, rgba(91,115,191,.13), transparent 28%),
    #07111D;
}
.friction::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: radial-gradient(rgba(255,255,255,.55) .6px, transparent .6px);
  background-size: 5px 5px;
  pointer-events: none;
}
.friction::after { width: 680px; height: 680px; right: -350px; top: -360px; box-shadow: 0 0 0 100px rgba(0,191,255,.018), 0 0 0 200px rgba(0,191,255,.012); }
.friction-intro { max-width: none; margin-bottom: 58px; }
@media (min-width: 900px) {
  .friction-intro { grid-template-columns: 1.28fr .72fr; column-gap: 72px; align-items: end; }
  .friction-intro .section-label { grid-column: 1 / -1; }
}
.friction h2 { max-width: 15ch; font-size: clamp(44px, 6vw, 76px); font-weight: 500; letter-spacing: -.042em; }
.friction-intro > p:last-child { max-width: 48ch; padding-bottom: 8px; font-size: 17px; line-height: 1.65; }
.friction-diagnostic {
  margin-bottom: 26px;
  padding: 13px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 9px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}
.friction-diagnostic > div { min-height: 92px; padding: 17px 18px; display: grid; align-content: center; gap: 7px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 11px; }
.friction-diagnostic span { color: #00BFFF; font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; }
.friction-diagnostic strong { color: #FFFFFF; font-size: 14px; font-weight: 500; }
.friction-diagnostic > i { display: none; }
.friction-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; border: 0; }
.friction-item {
  min-height: 190px;
  padding: 24px;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) auto;
  gap: 13px;
  background: rgba(7,17,29,.58);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.friction-item:hover { padding-left: 24px; transform: translateY(-3px); background: rgba(255,255,255,.055); border-color: rgba(0,191,255,.38); }
.friction-index { width: 29px; height: 29px; display: grid; place-items: center; color: #BFEFFF; background: rgba(0,191,255,.10); border: 1px solid rgba(0,191,255,.23); border-radius: 8px; font-size: 9px; }
.friction-item h3 { margin: 3px 0 10px; font-size: clamp(19px, 2vw, 25px); font-weight: 500; }
.friction-item p { max-width: 48ch; font-size: 14px; line-height: 1.55; }
.friction-tag { align-self: start; color: #B9FF7C; background: rgba(107,255,0,.055); font-size: 8px; }
.friction-statement { max-width: 920px; margin: 86px auto 0; padding: 56px 24px 0; text-align: center; border-top: 1px solid rgba(255,255,255,.13); font-size: clamp(30px, 4.6vw, 54px); letter-spacing: -.03em; }

.levers { padding: 136px 0; background: #F2F6F8; border: 0; }
.levers-head { max-width: 820px; margin: 0 auto 58px; text-align: center; }
.levers-head .approach-eyebrow { justify-content: center; }
.levers-head h2 { margin: 18px 0 20px; font-size: clamp(42px, 5.4vw, 66px); font-weight: 500; letter-spacing: -.04em; }
.levers-head > p:last-child { max-width: 650px; margin: 0 auto; font-size: 17px; line-height: 1.6; }
.lever-tabs { max-width: 820px; margin: 0 auto -1px; padding: 8px; gap: 7px; position: relative; z-index: 2; overflow: visible; background: rgba(255,255,255,.94); border: 1px solid rgba(7,24,41,.12); border-radius: 16px 16px 0 0; box-shadow: 0 -8px 34px rgba(7,24,41,.04); }
.lever-tab { min-height: 106px; padding: 15px 17px; border: 0; border-radius: 10px; background: transparent; box-shadow: none; }
.lever-tab:hover { transform: none; background: #F4F8FA; }
.lever-tab.is-active { background: #0B1C2B; box-shadow: 0 10px 24px rgba(7,24,41,.14); }
.lever-tab .lever-number { margin-bottom: 16px; font-size: 9px; }
.lever-tab .lever-name { font-size: 10px; letter-spacing: .14em; }
.lever-tab strong { font-size: 21px; font-weight: 500; }
.lever-panels { min-height: 0; }
.lever-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px;
  gap: 38px;
  background: #FFFFFF;
  border-color: rgba(7,24,41,.12);
  border-radius: 20px;
  box-shadow: 0 28px 72px rgba(7,24,41,.10), 0 2px 3px rgba(7,24,41,.03);
}
@media (min-width: 900px) { .lever-panel { grid-template-columns: 1.18fr .91fr .91fr; } }
.lever-panel-copy { padding-right: 24px; }
.lever-panel-copy .section-label { color: #00A6DF; }
.lever-panel-copy h3 { max-width: 13ch; margin: 14px 0 20px; font-size: clamp(34px, 4vw, 48px); font-weight: 500; line-height: 1.02; letter-spacing: -.04em; }
.lever-panel-copy > p:last-child { font-size: 15px; line-height: 1.6; }
.lever-panel-column { padding: 20px; background: #F5F8FA; border: 1px solid rgba(7,24,41,.09); border-radius: 12px; }
.lever-panel-column h4 { margin: 0 0 22px; color: #527185; font-size: 9px; letter-spacing: .13em; }
.lever-panel-column ul { gap: 0; }
.lever-panel-column li { min-height: 51px; padding: 14px 4px 14px 20px; display: flex; align-items: center; color: #173044; border-top: 1px solid rgba(7,24,41,.09); font-size: 13px; }
.lever-panel-column li::before { top: 16px; color: #00A6DF; }
.lever-measure { padding: 18px 20px; align-items: center; background: #0B1C2B; border: 0; border-radius: 11px; color: #FFFFFF; }
.lever-measure span { color: rgba(255,255,255,.58); }
.lever-measure strong { color: #B9FF7C; }

.approach { padding: 136px 0 144px; background: #FFFFFF; }
.approach-top { align-items: center; margin-bottom: 62px; }
.approach-head { max-width: 720px; }
.approach-title { margin: 18px 0 20px; font-family: var(--font-display); font-size: clamp(42px, 5.6vw, 68px); font-weight: 500; line-height: .99; letter-spacing: -.045em; }
.approach-title-accent { color: #2F6288; }
.approach-sub { max-width: 620px; font-size: 17px; line-height: 1.6; }
.approach-cta-note { color: #527185; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.phases-grid { gap: 0; overflow: hidden; border: 1px solid rgba(7,24,41,.13); border-radius: 20px; box-shadow: 0 24px 64px rgba(7,24,41,.08); }
.phase-card { position: relative; border: 0; border-radius: 0; box-shadow: none; }
.phase-card + .phase-card { border-left: 1px solid rgba(7,24,41,.11); }
.phase-card > :not(.phase-visual) { padding-left: 29px; padding-right: 29px; }
.phase-visual { height: 218px; border-bottom: 1px solid rgba(7,24,41,.08); }
.phase-visual::after { content: ""; position: absolute; inset: 0; opacity: .28; background-image: radial-gradient(rgba(7,24,41,.34) .55px, transparent .55px); background-size: 5px 5px; pointer-events: none; }
.phase-visual-1 { background: radial-gradient(circle at 78% 30%, rgba(0,191,255,.24), transparent 28%), linear-gradient(145deg,#EAF5FB,#F8FAFB); }
.phase-visual-2 { background: radial-gradient(circle at 24% 76%, rgba(107,255,0,.18), transparent 26%), linear-gradient(145deg,#EDF4EF,#FAFBF8); }
.phase-visual-3 { background: radial-gradient(circle at 70% 28%, rgba(132,144,220,.20), transparent 26%), linear-gradient(145deg,#EEF0F8,#F9F9FB); }
.phase-step { margin-top: 27px; color: #00A6DF; font-size: 10px; letter-spacing: .09em; }
.phase-title { font-size: 23px; font-weight: 500; letter-spacing: -.02em; }
.phase-meta { margin: 10px 0 15px; color: #537483; font-family: var(--font-mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.phase-desc { padding-bottom: 31px; font-size: 14px; line-height: 1.6; }
.pill, .status-badge { z-index: 1; box-shadow: 0 10px 22px rgba(7,24,41,.09); }

.problema {
  position: relative;
  overflow: hidden;
  padding: 138px 0;
  background:
    radial-gradient(circle at 72% 14%, rgba(75,129,210,.28), transparent 27%),
    radial-gradient(circle at 18% 84%, rgba(0,191,255,.12), transparent 30%),
    linear-gradient(145deg,#07111D,#0B2033 58%,#10192A);
}
.problema::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(rgba(255,255,255,.7) .6px,transparent .6px); background-size: 5px 5px; }
.problema .section-inner { position: relative; }
.problema-head { max-width: 850px; margin-bottom: 68px; }
.problema-head h2 { margin-top: 18px; font-size: clamp(42px, 5.6vw, 66px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.problema-sub { max-width: 690px; margin: 22px auto 0; font-size: 17px; line-height: 1.65; }
.problema-cards { gap: 12px; margin-bottom: 72px; }
.problema-card { position: relative; min-height: 258px; padding: 30px; background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.14); border-radius: 15px; backdrop-filter: blur(12px); }
.problema-card + .problema-card::before { content: "→"; position: absolute; top: 50%; left: -11px; z-index: 2; width: 21px; height: 21px; display: grid; place-items: center; color: #BFEFFF; background: #10283B; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; font-size: 9px; transform: translateY(-50%); }
.problema-icon { width: 50px; height: 50px; margin-bottom: 38px; }
.problema-card h3 { font-size: 22px; font-weight: 500; }
.problema-card p { font-size: 14px; line-height: 1.58; }
.problema-break { max-width: 920px; margin: 0 auto 64px; padding: 52px 24px; font-size: clamp(28px,4.2vw,48px); line-height: 1.15; letter-spacing: -.025em; }
.problema-contrast { padding: 14px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 12px; background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.14); border-radius: 18px; backdrop-filter: blur(18px); }
.contrast-flow { display: grid; overflow: hidden; background: rgba(7,17,29,.52); border: 1px solid rgba(255,255,255,.10); border-radius: 12px; }
.contrast-flow > div { padding: 22px; display: grid; grid-template-columns: 92px minmax(0,1fr); align-items: center; gap: 16px; }
.contrast-flow > div + div { border-top: 1px solid rgba(255,255,255,.11); }
.contrast-flow span { color: rgba(255,255,255,.45); font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; }
.contrast-flow p { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.7; }
.contrast-flow i { margin: 0 4px; color: rgba(255,255,255,.28); font-style: normal; }
.contrast-flow .is-agentized { background: linear-gradient(90deg,rgba(0,191,255,.10),transparent); }
.contrast-flow .is-agentized span { color: #64D7FF; }
.contrast-flow .is-agentized p { color: #FFFFFF; }
.contrast-list { padding: 18px 20px; align-content: center; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.10); border-radius: 12px; }
.problema .contrast-list li { padding: 15px 0 15px 22px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 13px; line-height: 1.5; }
.problema .contrast-list li:last-child { border-bottom: 0; }
.problema .contrast-list li::before { top: 22px; background: #6BFF00; }

.resultados { padding: 136px 0; background: #EEF3F5; border: 0; }
.resultados .section-head, .para-quien .section-head { margin-bottom: 50px; align-items: flex-end; }
.resultados .section-head > div, .para-quien .section-head > div { display: grid; gap: 13px; }
.resultados .section-head h2, .para-quien .section-head h2 { max-width: 15ch; font-size: clamp(40px,5vw,62px); font-weight: 500; line-height: 1; letter-spacing: -.04em; white-space: normal; }
.resultados .section-rule, .para-quien .section-rule { margin-bottom: 12px; background: rgba(7,24,41,.16); }
.caso { position: relative; overflow: hidden; padding: 40px; margin-bottom: 14px; border-color: rgba(7,24,41,.11); border-radius: 17px; box-shadow: 0 18px 48px rgba(7,24,41,.06); }
.caso::after { content: ""; position: absolute; width: 320px; height: 320px; top: -190px; right: -120px; background: radial-gradient(circle,rgba(0,191,255,.12),transparent 68%); pointer-events: none; }
.caso-tag { display: inline-flex; padding: 7px 10px; color: #315F7C; background: #EDF6FA; border: 1px solid rgba(47,98,136,.12); border-radius: 999px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.caso-numeros { gap: 0; margin: 32px 0; border-top: 1px solid rgba(7,24,41,.11); border-bottom: 1px solid rgba(7,24,41,.11); }
.numero-block { min-height: 154px; padding: 28px 26px 24px 0; justify-content: center; }
.numero-block + .numero-block { padding-left: 26px; border-left: 1px solid rgba(7,24,41,.11); }
.numero { color: #0C2538; font-size: clamp(48px,6vw,76px); font-weight: 500; letter-spacing: -.055em; }
.numero-unit { color: #315F7C; }
.numero-label { color: #607B8C; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.caso-desc { max-width: 78ch; color: #526D7E; font-size: 15px; line-height: 1.65; }
.caso + .caso { display: grid; grid-template-columns: .45fr 1fr; align-items: center; gap: 34px; }
.caso + .caso .caso-tag { position: absolute; top: 28px; left: 40px; }
.caso + .caso .caso-numeros { margin: 38px 0 0; border-bottom: 0; }
.caso + .caso .numero-block { min-height: 130px; }

.ownership { padding: 138px 0; background: #07111D; }
.ownership-inner { gap: 76px; }
.ownership-head h2 { margin: 20px 0 28px; font-size: clamp(44px,5.4vw,66px); font-weight: 500; letter-spacing: -.045em; }
.ownership-head > p:last-child { font-size: 16px; line-height: 1.65; }
.ownership-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; border: 0; }
.ownership-grid article { min-height: 220px; padding: 24px; display: grid; grid-template-columns: 1fr; align-content: start; gap: 12px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; }
.ownership-grid article:hover { background: rgba(255,255,255,.065); border-color: rgba(0,191,255,.35); }
.ownership-grid span { width: 30px; height: 30px; display: grid; place-items: center; color: #BFEFFF; background: rgba(0,191,255,.10); border-radius: 8px; font-size: 9px; }
.ownership-grid h3 { margin-top: 19px; font-size: 21px; font-weight: 500; }
.ownership-grid p { font-size: 13px; line-height: 1.55; }

.para-quien { padding: 136px 0; background: #FFFFFF; }
.fit-grid { gap: 12px; }
.fit-card { position: relative; overflow: hidden; min-height: 390px; padding: 38px; border-radius: 17px; }
.fit-card::before { position: absolute; top: 32px; right: 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; font-size: 17px; }
.fit-yes { background: linear-gradient(145deg,#F0FAF2,#FBFDFC); border-color: rgba(70,160,95,.22); }
.fit-yes::before { content: "+"; color: #2E7E46; background: rgba(70,160,95,.12); }
.fit-no { background: #F5F7F8; border-color: rgba(7,24,41,.10); }
.fit-no::before { content: "−"; color: #607B8C; background: rgba(7,24,41,.07); }
.fit-card h3 { margin-bottom: 34px; font-size: 28px; font-weight: 500; }
.fit-card li { min-height: 58px; padding: 16px 0 16px 28px; display: flex; align-items: center; border-top: 1px solid rgba(7,24,41,.10); color: #456274; font-size: 14px; line-height: 1.45; }
.fit-card li::before { top: 17px; }

.faq { padding: 138px 0; background: #F1F5F7; }
.faq-inner { gap: 80px; }
.faq-head h2 { margin: 18px 0; font-size: clamp(44px,5.2vw,64px); font-weight: 500; letter-spacing: -.04em; }
.faq-head > p:last-child { max-width: 32ch; font-size: 16px; line-height: 1.6; }
.faq-list { display: grid; gap: 8px; border: 0; }
.faq details { overflow: hidden; background: #FFFFFF; border: 1px solid rgba(7,24,41,.10); border-radius: 12px; box-shadow: 0 8px 28px rgba(7,24,41,.035); }
.faq summary { padding: 22px 24px; align-items: center; font-family: var(--font-body); font-size: 16px; font-weight: 550; }
.faq summary span { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; background: #EDF6FA; border-radius: 50%; font-size: 13px; }
.faq details[open] { border-color: rgba(0,166,223,.30); }
.faq details[open] summary { color: #0A6E99; }
.faq details p { max-width: none; padding: 0 64px 24px 24px; color: #607B8C; font-size: 14px; line-height: 1.65; }

.cta-destacado { position: relative; overflow: hidden; padding: 132px 24px; background: #F1F5F7; border: 0; }
.cta-destacado::before { content: ""; position: absolute; inset: 24px max(24px,calc((100vw - 1320px)/2)); background: radial-gradient(circle at 72% 20%,rgba(248,211,116,.58),transparent 23%),radial-gradient(circle at 12% 92%,rgba(199,219,187,.72),transparent 24%),radial-gradient(circle at 46% 30%,rgba(210,222,248,.80),transparent 28%),linear-gradient(145deg,#8BB7E6,#D6D9C9 55%,#78A6C9); border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.45), 0 28px 70px rgba(7,24,41,.14); }
.cta-destacado::after { content: ""; position: absolute; inset: 24px max(24px,calc((100vw - 1320px)/2)); opacity: .22; background-image: radial-gradient(rgba(255,255,255,.85) .7px,transparent .7px); background-size: 4px 4px; border-radius: 24px; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 740px; padding: 62px 40px; color: #FFFFFF; background: rgba(7,24,41,.78); border: 1px solid rgba(255,255,255,.18); border-radius: 20px; box-shadow: 0 28px 70px rgba(7,24,41,.22); backdrop-filter: blur(20px); }
.cta-inner .section-label { color: #7DDBFF; }
.cta-inner h2 { margin: 18px 0; font-size: clamp(42px,5.4vw,64px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.cta-inner p { max-width: 570px; margin: 0 auto 34px; font-size: 16px; line-height: 1.6; }
.cta-destacado .btn-primary { color: #071829; background: #FFFFFF; }

.formulario { padding: 132px 0 144px; background: #F1F5F7; }
.form-inner { max-width: 900px; padding: 54px; text-align: left; background: #FFFFFF; border: 1px solid rgba(7,24,41,.11); border-radius: 20px; box-shadow: 0 24px 64px rgba(7,24,41,.08); }
.form-inner > .section-label { color: #2F6288; }
.form-title { max-width: 16ch; margin: 16px 0 46px; font-size: clamp(36px,4.7vw,56px); font-weight: 500; line-height: 1.02; letter-spacing: -.04em; }
.ai-form { grid-template-columns: 1fr 1fr; gap: 18px; }
.ai-form > label, .ai-form > button { grid-column: 1 / -1; }
.form-row { grid-column: 1 / -1; }
.ai-form label { color: #526D7E; font-family: var(--font-mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.ai-form input { min-height: 54px; padding: 14px 15px; background: #F7F9FA; border-color: rgba(7,24,41,.11); border-radius: 10px; }
.ai-form .btn-full { min-height: 56px; margin-top: 7px; border-radius: 10px; }

.footer { padding: 68px 0 28px; color: #FFFFFF; background: #07111D; border: 0; }
.footer-title { color: #FFFFFF; font-size: 18px; }
.footer-sub, .footer-links, .footer-legal, .footer-copy { color: rgba(255,255,255,.52); }
.footer-links a:hover, .footer-legal a:hover { color: #FFFFFF; }

@media (max-width: 899px) {
  .friction-list { grid-template-columns: 1fr; }
  .friction-diagnostic { grid-template-columns: 1fr; }
  .lever-tabs { grid-template-columns: repeat(3, 190px); max-width: none; margin-right: -24px; overflow-x: auto; border-radius: 14px 0 0 14px; }
  .lever-panel { padding: 34px 26px; }
  .phases-grid { gap: 12px; overflow: visible; border: 0; border-radius: 0; box-shadow: none; }
  .phase-card { border: 1px solid rgba(7,24,41,.12); border-radius: 16px; overflow: hidden; }
  .phase-card + .phase-card { border-left: 1px solid rgba(7,24,41,.12); }
  .problema-contrast { grid-template-columns: 1fr; }
  .caso + .caso { grid-template-columns: 1fr; }
  .ownership-grid { grid-template-columns: 1fr 1fr; }
  .faq-inner { gap: 48px; }
}

@media (max-width: 640px) {
  .friction, .levers, .approach, .problema, .resultados, .ownership, .para-quien, .faq, .formulario { padding-top: 92px; padding-bottom: 92px; }
  .friction h2, .levers-head h2, .approach-title, .problema-head h2, .resultados .section-head h2, .para-quien .section-head h2, .ownership-head h2, .faq-head h2 { font-size: clamp(38px,12vw,50px); }
  .friction-item { grid-template-columns: 34px minmax(0,1fr); }
  .friction-tag { grid-column: 2; }
  .lever-panel-column { padding: 16px; }
  .problema-card + .problema-card::before { display: none; }
  .contrast-flow > div { grid-template-columns: 1fr; gap: 8px; }
  .caso { padding: 26px 22px; }
  .caso-numeros { grid-template-columns: 1fr; }
  .numero-block + .numero-block { padding-left: 0; border-left: 0; border-top: 1px solid rgba(7,24,41,.11); }
  .caso + .caso .caso-tag { position: static; }
  .ownership-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: 0; padding: 28px 22px; }
  .cta-destacado { padding: 74px 14px; }
  .cta-destacado::before, .cta-destacado::after { inset: 14px; }
  .cta-inner { padding: 44px 22px; }
  .cta-inner h2 { font-size: 42px; }
  .form-inner { padding: 34px 22px; border-radius: 16px; }
  .ai-form { grid-template-columns: 1fr; }
}
