/* ═══════════════════════════════════════════════════════
   HAPSYS · style.css v3 — Alternating Dark/Light Sections
   Stacking Parallax · Cinematic Intro · Deep Tech Nav
════════════════════════════════════════════════════════ */

/* ── 1. VARIABLES ─────────────────────────────────────── */
:root {
  --bg-darkest:  #060d1a;
  --bg-dark:     #0a1525;
  --bg-mid:      #0f172a;
  --bg-card:     #1e293b;
  --bg-hover:    #263348;
  --orange:      #f97316;
  --orange-dk:   #ea580c;
  --orange-lt:   rgba(249,115,22,.12);
  --orange-glow: rgba(249,115,22,.22);
  --blue:        #0ea5e9;
  --blue-lt:     rgba(14,165,233,.12);
  --green:       #4ade80;
  --white:       #ffffff;
  --text:        #e2e8f0;
  --text-dim:    #94a3b8;
  --text-muted:  #475569;
  --border:      rgba(255,255,255,.07);
  --border-o:    rgba(249,115,22,.28);
  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
  --r:           12px;
  --r-sm:        8px;

  /* Light section variables */
  --lt-bg:       #ffffff;
  --lt-bg-alt:   #f0f7ff;
  --lt-bg-soft:  #f8fafc;
  --lt-text:     #0f172a;
  --lt-text-dim: #475569;
  --lt-text-muted:#94a3b8;
  --lt-heading:  #060d1a;
  --lt-border:   rgba(0,0,0,.08);
  --lt-card-bg:  #ffffff;
  --lt-card-border: rgba(0,0,0,.06);
}

/* ── 2. RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── 3. LAYOUT ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* ── SCROLL CONVENCIONAL ─────────────────────────────── */
.section-stack {
  position: relative;
  padding: 100px 0;
}
/* Hero y misión mantienen altura mínima de pantalla completa */
.hero    { min-height: 100vh; }
.s-mission { min-height: 80vh; }
/* Cada sección tiene su propio overflow clip */
.section-stack > .container,
.section-stack > .hero-layout,
.section-stack > .hero-grid-overlay,
.section-stack > .hero-scroll { overflow: visible; }

/* ── 4. TYPOGRAPHY ────────────────────────────────────── */
.sec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.sec-label.light { color: rgba(249,115,22,.9); }
.sec-label.light::before { background: rgba(249,115,22,.9); }

.sec-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.sec-h2 em { font-style: normal; color: var(--orange); }

.sec-intro {
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 680px;
  margin-bottom: 60px;
}

/* Dark section typography defaults */
.hero .sec-h2, .s-tech .sec-h2, .s-sectors .sec-h2,
.s-why .sec-h2, .s-investors .sec-h2 { color: #fff; }
.hero .sec-intro, .s-tech .sec-intro, .s-sectors .sec-intro,
.s-why .sec-intro, .s-investors .sec-intro { color: rgba(255,255,255,.62); }

/* Light section typography */
.s-about .sec-h2, .s-mission .sec-h2, .s-services .sec-h2,
.s-cases .sec-h2, .s-team .sec-h2, .s-novedades .sec-h2,
.s-contact .sec-h2 { color: var(--lt-heading); }
.s-about .sec-intro, .s-mission .sec-intro, .s-services .sec-intro,
.s-cases .sec-intro, .s-team .sec-intro, .s-novedades .sec-intro,
.s-contact .sec-intro { color: var(--lt-text-dim); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 14px 28px; border-radius: var(--r-sm); border: none; cursor: pointer;
  transition: background .22s, transform .18s, box-shadow .22s;
  box-shadow: 0 4px 20px rgba(249,115,22,.3);
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.4); }
.btn-primary-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--bg-darkest);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: var(--r-sm); border: none; cursor: pointer;
  transition: background .22s, transform .18s;
}
.btn-primary-light:hover { background: var(--text); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 28px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); cursor: pointer;
  transition: border-color .22s, color .22s, transform .18s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }

/* Tags — dark context */
.tag {
  display: inline-block; font-size: .76rem; font-family: var(--font-mono);
  padding: 5px 12px; border-radius: 20px;
}
/* Tags in light sections */
.s-about .tag {
  background: rgba(249,115,22,.08); color: var(--orange-dk);
  border: 1px solid rgba(249,115,22,.2);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

/* ── 4b. LANGUAGE SWITCH ──────────────────────────────── */
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  padding: 3px 5px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  flex-shrink: 0;
}
.lang-opt {
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .1em;
  cursor: pointer; padding: 3px 7px; border-radius: 4px;
  color: rgba(255,255,255,.35);
  transition: color .2s, background .2s;
  user-select: none;
}
.lang-opt.lang-active {
  color: #fff;
  background: rgba(249,115,22,.2);
  border: 1px solid rgba(249,115,22,.35);
}
.lang-opt:hover:not(.lang-active) { color: rgba(255,255,255,.65); }
.lang-sep { color: rgba(255,255,255,.15); font-size: .55rem; }

/* drawer lang switch */
.drawer-lang { display: flex; align-items: center; gap: 4px; padding: 10px 24px 6px; }
.drawer-lang .lang-opt { font-size: .7rem; padding: 5px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 6px; }
.drawer-lang .lang-opt.lang-active { border-color: rgba(249,115,22,.4); }

/* ── 5. NAVIGATION — Deep Tech Glassmorphism ─────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .4s, box-shadow .4s;
}
#nav.scrolled {
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 8px 32px rgba(0,0,0,.4);
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex; align-items: center;
}
.nav-brand { display: flex; align-items: center; line-height: 0; flex-shrink: 0; }
.nav-logo-img {
  height: 44px; width: auto;
  mix-blend-mode: screen;
  transition: opacity .25s;
}
.nav-logo-img:hover { opacity: .8; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  flex: 1;
  justify-content: flex-end;
  padding-right: 28px;
}
.nav-links a {
  font-family: var(--font-head); font-size: .72rem; font-weight: 500;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .12em;
  position: relative;
  transition: color .22s;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  flex-shrink: 0;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

.nav-btn {
  background: transparent !important; color: var(--orange) !important;
  padding: 8px 20px !important; border-radius: 20px !important;
  border: 1.5px solid var(--orange) !important;
  font-weight: 600 !important;
  font-size: .72rem !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
  transition: background .22s, color .22s, transform .18s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
  background: var(--orange) !important; color: #fff !important;
  transform: translateY(-1px);
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,.8); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none; flex-direction: column;
  background: rgba(6,13,26,.97); border-top: 1px solid var(--border);
  padding: 12px 32px 24px; gap: 2px;
}
.nav-drawer.open { display: flex; }
.drawer-link {
  font-family: var(--font-head); font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,.7); padding: 12px 0;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.drawer-link:hover { color: var(--orange); }
.drawer-cta {
  margin-top: 12px; background: var(--orange); color: #fff;
  text-align: center; padding: 14px; border-radius: var(--r-sm);
  border-bottom: none; font-weight: 600;
}
.drawer-cta:hover { background: var(--orange-dk); color: #fff; }

/* ── 7. HERO — DARK ──────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #060d1a 0%, #0a1525 50%, #060d1a 100%);
  display: flex; align-items: center;
  min-height: 100vh;
  z-index: 2;
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(rgba(249,115,22,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.015) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 58fr 42fr;
  gap: 48px; align-items: center;
  padding: 72px 32px 60px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--white); letter-spacing: -.02em;
  opacity: 0;
}
.hero-h1 em { font-style: normal; color: var(--orange); }
.hero-eyebrow {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .63rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.42); opacity: 0;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(249,115,22,.6);
  animation: pulse-green 2.2s ease-in-out infinite;
}
.hero-p {
  font-size: 1.1rem; line-height: 1.8;
  color: rgba(255,255,255,.58); max-width: 540px;
  opacity: 0;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; }
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 8px; opacity: 0; }
.hinno {
  display: flex; flex-direction: column; gap: 3px;
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  transition: border-color .2s, background .2s;
}
.hinno:hover { border-color: rgba(249,115,22,.3); background: rgba(249,115,22,.05); }
.hinno-name {
  font-family: var(--font-head); font-size: .84rem;
  font-weight: 700; color: #fff; line-height: 1.2;
}
.hinno-sub {
  font-family: var(--font-mono); font-size: .57rem;
  letter-spacing: .07em; color: var(--orange);
}
.hstat { display: flex; flex-direction: column; padding-right: 28px; }
.hstat-top { display: flex; align-items: baseline; gap: 3px; }
.hstat-n {
  font-family: var(--font-head); font-size: 2rem;
  font-weight: 700; color: var(--white); line-height: 1;
}
.hstat-u {
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--orange); font-weight: 500;
}
.hstat-l { font-size: .75rem; color: var(--text-muted); margin-top: 3px; }
.hstat-div {
  width: 1px; height: 36px;
  background: var(--border); margin-right: 28px;
}

/* Mission panel right */
.hero-right { opacity: 0; }
.mission-panel {
  background: rgba(6,13,26,.75);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 50px rgba(249,115,22,.06), inset 0 1px 0 rgba(255,255,255,.06);
}
.panel-header {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  background: rgba(249,115,22,.06);
  border-bottom: 1px solid var(--border);
}
.panel-header-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: blink 1.8s infinite; flex-shrink: 0;
}
.panel-title {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .14em; color: #fff; font-weight: 500;
}
.panel-status {
  margin-left: auto;
  font-family: var(--font-mono); font-size: .62rem;
  color: var(--green); letter-spacing: .1em;
}
.panel-zone {
  padding: 10px 20px;
  font-family: var(--font-mono); font-size: .66rem;
  letter-spacing: .12em; color: var(--orange);
  border-bottom: 1px solid var(--border);
}
.panel-metrics { padding: 4px 0; }
.panel-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 20px; border-bottom: 1px solid rgba(255,255,255,.03);
}
.pm-key {
  font-family: var(--font-mono); font-size: .64rem;
  letter-spacing: .12em; color: var(--text-muted);
}
.pm-val {
  font-family: var(--font-mono); font-size: .78rem;
  font-weight: 500; color: rgba(255,255,255,.85);
}
.signal-bar-track {
  width: 100px; height: 3px;
  background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden;
}
.signal-bar-fill {
  height: 100%; width: 85%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px;
  animation: signalPulse 3s ease-in-out infinite alternate;
}
@keyframes signalPulse { from{width:82%} to{width:94%} }
.panel-divider { height: 1px; background: var(--border); }
.panel-log {
  padding: 10px 20px; max-height: 132px; overflow: hidden;
  display: flex; flex-direction: column; gap: 5px;
}
.log-entry {
  font-family: var(--font-mono); font-size: .65rem;
  color: rgba(255,255,255,.42); letter-spacing: .06em;
  animation: fadeInLog .4s ease;
}
.log-entry.active { color: rgba(249,115,22,.85); }
.log-entry.active::after { content: '_'; animation: blink .8s infinite; }
@keyframes fadeInLog { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:none} }
.panel-cv { padding: 10px 20px; border-top: 1px solid var(--border); }
.cv-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.cv-label { font-family: var(--font-mono); font-size: .62rem; color: var(--text-muted); letter-spacing: .1em; }
.cv-pct { font-family: var(--font-mono); font-size: .66rem; color: var(--orange); }
.cv-bar-track {
  height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden;
}
.cv-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--orange), #ffab40);
  border-radius: 2px; transition: width .8s ease;
}
.panel-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 20px; background: rgba(249,115,22,.04);
  border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: .62rem;
}
.pf-key { color: var(--text-muted); letter-spacing: .1em; }
.pf-val { display: flex; align-items: center; gap: 6px; color: var(--green); }
.pf-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
  animation: blink 2s infinite;
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom}
}
.hero-scroll span {
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .18em; color: var(--text-muted); text-transform: uppercase;
}

/* ── 8. ABOUT — LIGHT ────────────────────────────────── */
.s-about {
  background: #f8fafc;
  position: relative;
  z-index: 3;
}
.s-about::after { display: none; }
.s-about::before { display: none; }

/* Layout principal */
.abt-layout {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: start; margin-bottom: 52px;
}
.abt-text p {
  font-size: 1rem; line-height: 1.82; color: var(--lt-text-dim);
  margin-bottom: 14px;
}

/* Credenciales 2×2 */
.abt-creds {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  align-content: start;
}
.abt-cred {
  display: flex; align-items: flex-start; gap: 13px;
  background: #fff; border: 1px solid #e2e8f0;
  border-left: 3px solid var(--orange);
  border-radius: 10px; padding: 18px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
}
.abt-cred:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.abt-cred-ico {
  color: var(--orange); flex-shrink: 0; margin-top: 1px;
}
.abt-cred-title {
  font-family: var(--font-head); font-size: .88rem; font-weight: 700;
  color: var(--lt-heading); margin-bottom: 5px;
}
.abt-cred-desc {
  font-size: .81rem; line-height: 1.65; color: var(--lt-text-dim);
}

/* Proof strip */
.abt-proof {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-radius: 12px; overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.abt-proof-item {
  background: #fff; padding: 24px 20px; text-align: center;
  border-right: 1px solid #e2e8f0; transition: background .2s;
}
.abt-proof-item:last-child { border-right: none; }
.abt-proof-item:hover { background: #fff9f5; }
.abt-pv {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 7px;
}
.abt-pl {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .08em;
  color: var(--lt-text-dim); line-height: 1.4;
}

/* ── 9. TECH SECTION — DARK ──────────────────────────── */
.s-tech {
  background: var(--bg-dark);
  z-index: 4;
}

/* Camera Lens */
.lens-section { margin: 0 0 80px; }
.lens-wrap {
  display: flex; gap: 72px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.lens-container {
  position: relative;
  width: min(480px, 72vw); height: min(480px, 72vw);
  border-radius: 50%; flex-shrink: 0;
}
.lens-ring { position: absolute; border-radius: 50%; }
.r1 {
  inset: 0;
  border: 22px solid;
  border-color: #1e293b #2a3c56 #3d5268 #1e293b;
  box-shadow:
    0 0 0 2px rgba(249,115,22,.15),
    0 12px 40px rgba(0,0,0,.7),
    inset 0 0 60px rgba(0,0,0,.8);
}
.r2 { inset: 8px; border: 1px solid rgba(255,255,255,.1); }
.r3 { inset: 24px; border: 1px solid rgba(249,115,22,.12); }
.lens-glass {
  position: absolute; inset: 22px;
  border-radius: 50%; overflow: hidden;
  background: #03080f;
  box-shadow: inset 0 0 80px rgba(0,0,0,.95), 0 0 0 2px rgba(249,115,22,.2);
}
.lens-terrain {
  position: absolute; inset: -60%;
  transform-origin: center center;
  will-change: transform;
  background:
    radial-gradient(ellipse 50% 35% at 38% 55%, rgba(30,55,25,.9), transparent),
    radial-gradient(ellipse 65% 40% at 65% 38%, rgba(15,35,45,.9), transparent),
    radial-gradient(ellipse 40% 50% at 70% 70%, rgba(40,25,10,.7), transparent),
    linear-gradient(#030a13, #061220);
}
.terrain-grid-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.terrain-feature { position: absolute; border-radius: 50%; opacity: .6; }
.tf1 { width: 35%; height: 20%; top: 45%; left: 30%; background: rgba(40,55,30,.6); }
.tf2 { width: 25%; height: 15%; top: 25%; left: 55%; background: rgba(20,40,50,.7); }
.tf3 { width: 20%; height: 25%; top: 60%; left: 55%; background: rgba(50,35,15,.5); }
.terrain-pipeline {
  position: absolute;
  top: 55%; left: 10%; right: 5%; height: 2px;
  background: rgba(100,116,139,.35); border-radius: 2px;
  transform: rotate(-3deg);
}

/* Radar sweep line */
@keyframes lensRadarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.lens-radar-line {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 1px;
  background: linear-gradient(to right, rgba(249,115,22,0.8), transparent);
  transform-origin: left center;
  animation: lensRadarSweep 3s linear infinite;
  z-index: 5;
  pointer-events: none;
}

/* Sensor label cycling */
.lens-sensor-label {
  position: absolute;
  bottom: 18%; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .16em; color: rgba(249,115,22,.7);
  z-index: 6; pointer-events: none;
  white-space: nowrap;
}

/* Detection boxes */
.detect-box {
  position: absolute; width: 68px; height: 46px;
  border: 1.5px solid var(--orange); border-radius: 2px;
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.detect-box.active { opacity: 1; animation: detectPulse 1.5s ease-in-out infinite; }
.db1 { top: 54%; left: 34%; }
.db2 { top: 38%; left: 58%; }
.db3 { top: 62%; left: 56%; }
.db-label {
  position: absolute; top: -14px; left: 0;
  font-family: var(--font-mono); font-size: 8px;
  color: var(--orange); letter-spacing: .08em;
}
@keyframes detectPulse { 0%,100%{box-shadow:0 0 0 0 rgba(249,115,22,.4)} 50%{box-shadow:0 0 0 6px rgba(249,115,22,0)} }

/* Crosshair */
.lens-crosshair { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.ch-h { position: absolute; top: 50%; left: 12%; right: 12%; height: 1px; background: rgba(249,115,22,.3); transform: translateY(-50%); }
.ch-v { position: absolute; left: 50%; top: 12%; bottom: 12%; width: 1px; background: rgba(249,115,22,.3); transform: translateX(-50%); }
.ch-center { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border: 1.5px solid rgba(249,115,22,.6); border-radius: 50%; transform: translate(-50%, -50%); }

/* Scan lines */
.scan-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0,0,0,.12) 3px, rgba(0,0,0,.12) 4px);
  animation: scanScroll 8s linear infinite;
}
@keyframes scanScroll { from{background-position:0 0} to{background-position:0 400px} }

/* Lens HUD */
.lens-hud { position: absolute; display: flex; flex-direction: column; gap: 1px; font-family: var(--font-mono); z-index: 4; }
.lens-hud-tl { top: 14%; left: 14%; }
.lens-hud-tr { top: 14%; right: 14%; align-items: flex-end; }
.lens-hud-bl { bottom: 14%; left: 14%; }
.lens-hud-br { bottom: 14%; right: 14%; align-items: flex-end; }
.lh-k { font-size: 7px; letter-spacing: .14em; color: rgba(255,255,255,.3); }
.lh-v { font-size: 10px; color: rgba(249,115,22,.75); font-weight: 500; }

/* Focus ring */
.lens-focus-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1px dashed rgba(249,115,22,.18);
  animation: spin 22s linear infinite;
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.lens-f-stop {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .68rem; color: var(--text-muted);
  white-space: nowrap;
}
.lens-scale-marks {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
}
.lens-text-col { flex: 1; min-width: 280px; }
.ltc-step { display: flex; gap: 20px; margin-bottom: 36px; align-items: flex-start; }
.ltc-num { font-family: var(--font-mono); font-size: .72rem; color: var(--orange); letter-spacing: .14em; padding-top: 2px; flex-shrink: 0; }
.ltc-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ltc-desc { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.5); }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pillar {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 26px;
  transition: border-color .3s, background .3s;
}
.pillar:hover { border-color: var(--border-o); background: rgba(255,255,255,.05); }
.pillar-n { font-family: var(--font-mono); font-size: .68rem; color: var(--orange); letter-spacing: .14em; margin-bottom: 10px; }
.pillar-icon { color: rgba(249,115,22,.65); margin-bottom: 10px; }
.pillar-benefit {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700;
  color: var(--orange); margin-bottom: 8px;
  border-bottom: 1px solid rgba(249,115,22,.2); padding-bottom: 8px;
}
.pillar h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.pillar p { font-size: .87rem; line-height: 1.74; color: rgba(255,255,255,.52); margin-bottom: 18px; }
.pillar-list { display: flex; flex-direction: column; gap: 5px; }
.pillar-list li { font-family: var(--font-mono); font-size: .7rem; color: rgba(255,255,255,.38); padding-left: 14px; position: relative; }
.pillar-list li::before { content:'→'; position:absolute; left:0; color:var(--orange); font-size:.66rem; }

/* ── 10. MISSION — LIGHT ─────────────────────────────── */
.s-mission {
  background: var(--lt-bg-alt);
  z-index: 5;
}
.mission-canvas-wrap {
  position: relative; margin-bottom: 48px;
  border: 1px solid var(--lt-card-border); border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  background: #fff;
}
.mission-hud-top {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding: 11px 20px; background: #f8fafc;
  border-bottom: 1px solid var(--lt-card-border);
}
.mhud-item { display: flex; align-items: center; gap: 8px; }
.mhud-right { margin-left: auto; }
.mhud-k { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; color: var(--lt-text-muted); }
.mhud-v { font-family: var(--font-mono); font-size: .72rem; color: var(--lt-text); font-weight: 500; }
.mhud-green { color: var(--green); }
#mission-canvas { display: block; width: 100%; height: auto; }
.mission-phases { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mphase-card {
  background: #fff; border: 1px solid var(--lt-card-border);
  border-radius: 12px; padding: 28px 22px;
  transition: border-color .3s, box-shadow .3s;
}
.mphase-card:hover { border-color: rgba(249,115,22,.3); box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.mpc-num { font-family: var(--font-mono); font-size: .68rem; color: var(--orange); letter-spacing: .14em; margin-bottom: 10px; }
.mphase-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--lt-heading); margin-bottom: 8px; }
.mphase-card p { font-size: .86rem; line-height: 1.7; color: var(--lt-text-dim); }

/* ── 11. SERVICES — LIGHT ────────────────────────────── */
.s-services {
  background: var(--lt-bg-soft);
  z-index: 6;
}

/* ─ Live block: dark card inside light section ─ */
.srv-live-block {
  position: relative;
  background: var(--bg-dark);
  border: 1px solid rgba(249,115,22,.22);
  border-radius: 18px;
  padding: 36px 36px 28px;
  margin: 40px 0 56px;
  box-shadow: 0 16px 56px rgba(0,0,0,.18), 0 0 0 1px rgba(249,115,22,.06);
  overflow: hidden;
}
.srv-live-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(249,115,22,.3) 50%, transparent 80%);
}
/* subtle scan-line shimmer */
.srv-live-block::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,.012) 3px,
    rgba(255,255,255,.012) 4px
  );
}

/* header row */
.slb-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 30px; flex-wrap: wrap; gap: 12px;
}
.slb-status {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .14em; color: #4ade80; font-weight: 600;
}
.slb-dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse-green 2s infinite;
}
.slb-avail-badge {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em;
  background: rgba(249,115,22,.14); color: var(--orange);
  border: 1px solid rgba(249,115,22,.35); padding: 5px 14px; border-radius: 5px;
  font-weight: 700;
}

/* main info + KPIs */
.slb-main {
  display: grid; grid-template-columns: 1fr 180px; gap: 48px;
  align-items: start; margin-bottom: 36px;
}
.slb-service-label {
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .14em;
  color: var(--orange); margin-bottom: 10px; font-weight: 600;
}
.slb-info h3 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: #fff; line-height: 1.28; margin-bottom: 14px;
}
.slb-info > p {
  font-size: .93rem; line-height: 1.74; color: rgba(255,255,255,.58);
  margin-bottom: 18px; max-width: 560px;
}
.slb-pills {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.slb-pills span {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .07em;
  padding: 4px 11px; border-radius: 4px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.48);
  border: 1px solid rgba(255,255,255,.09);
}

/* Feature checklist */
.slb-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5px 20px; margin-top: 16px; margin-bottom: 14px;
}
.slb-feat {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.72); line-height: 1.4;
}
.slb-feat-dot {
  flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); margin-top: 5px;
}

/* Benefit tags */
.slb-benefits {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0;
}
.slb-benefits span {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .06em;
  font-weight: 700; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.28);
  color: rgba(249,115,22,.85);
}

/* KPI column */
.slb-kpis {
  display: flex; flex-direction: column; gap: 2px;
}
.slb-kpi {
  padding: 12px 0 12px 16px;
  border-left: 2px solid rgba(249,115,22,.4);
}
.slb-kpi-val {
  font-family: var(--font-head); font-size: 1.55rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.slb-kpi-lbl {
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .07em;
  color: rgba(255,255,255,.38); margin-top: 4px; line-height: 1.3;
}

/* deploy header */
.slb-deploy-header {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em;
  color: rgba(255,255,255,.38); margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.slb-deploy-pulse { display: flex; align-items: center; }

/* Case cards */
.slb-case-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 24px;
}
.slb-case-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px; padding: 20px 20px 16px;
  transition: border-color .25s, background .25s, transform .2s;
}
.slb-case-card:hover {
  border-color: rgba(249,115,22,.3);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.slbc-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.slbc-op {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em;
  color: #4ade80; background: rgba(34,197,94,.09);
  border: 1px solid rgba(34,197,94,.22); padding: 2px 9px; border-radius: 3px;
  font-weight: 700;
}
.slbc-opdot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e; animation: pulse-green 2s infinite;
}
.slbc-ctx {
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .09em;
  color: rgba(255,255,255,.3);
}
.slbc-icon { color: var(--orange); margin-bottom: 10px; opacity: .85; }
.slb-case-card h4 {
  font-family: var(--font-head); font-size: .98rem; font-weight: 700;
  color: rgba(255,255,255,.9); line-height: 1.35; margin-bottom: 7px;
}
.slb-case-card > p {
  font-size: .83rem; line-height: 1.62; color: rgba(255,255,255,.42);
  margin-bottom: 14px;
}
.slbc-det {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 12px;
}
.slbc-det li {
  display: flex; align-items: center; gap: 9px;
  font-size: .82rem; color: rgba(255,255,255,.52); line-height: 1.3;
}
.slbc-det-dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(249,115,22,.7); flex-shrink: 0;
}

/* footer row */
.slb-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap; gap: 16px;
}
.slb-scale-note {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .86rem; line-height: 1.58; color: rgba(255,255,255,.4);
  max-width: 480px;
}
.slb-scale-note svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.slb-scale-note strong { color: rgba(255,255,255,.65); font-weight: 600; }
.slb-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  font-family: var(--font-head); font-size: .88rem; font-weight: 600;
  padding: 12px 22px; border-radius: var(--r-sm); text-decoration: none;
  transition: background .2s, transform .18s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.slb-cta-btn:hover {
  background: var(--orange-dk); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.45);
}

/* ─ Coming divider ─ */
.srv-coming-hdr {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 26px;
}
.srv-coming-line { flex: 1; height: 1px; background: var(--lt-border); }
.srv-coming-lbl {
  font-family: var(--font-mono); font-size: .61rem; letter-spacing: .13em;
  color: var(--lt-text-muted); white-space: nowrap;
}

/* ─ Coming service cards ─ */
.srv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.srv-card {
  border: 1px solid var(--lt-card-border); border-radius: 14px; padding: 30px 24px;
  background: #fff; position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.srv-card:hover {
  border-color: rgba(14,165,233,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.srv-badge {
  display: inline-block; font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .13em; padding: 4px 10px; border-radius: 4px; margin-bottom: 18px;
}
.srv-available { background: rgba(74,222,128,.1); color: #16a34a; border: 1px solid rgba(74,222,128,.25); }
.srv-dev { background: var(--blue-lt); color: #0284c7; border: 1px solid rgba(14,165,233,.22); }
.srv-icon { color: var(--orange); margin-bottom: 14px; }
.srv-card h3 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--lt-heading); margin-bottom: 10px;
}
.srv-card p { font-size: .88rem; line-height: 1.75; color: var(--lt-text-dim); margin-bottom: 18px; }
.srv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.srv-tags span {
  font-size: .68rem; font-family: var(--font-mono); padding: 4px 10px;
  border-radius: 4px; background: #f1f5f9; color: var(--lt-text-muted);
  border: 1px solid var(--lt-card-border);
}
.srv-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: .86rem; font-weight: 600;
  color: var(--orange); transition: gap .2s;
}
.srv-link:hover { gap: 10px; }

/* hover hint label inside card */
.srv-hover-hint {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .09em;
  color: var(--lt-text-muted); opacity: .7;
  transition: opacity .2s;
  user-select: none;
}
.srv-card:hover .srv-hover-hint { opacity: 0; }

/* ── DRONE OVERLAYS ─────────────────────────────────── */
.drone-overlay {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .38s ease;
  will-change: opacity;
}
.drone-overlay.dov-active {
  opacity: 1; pointer-events: none; /* never block clicks */
}

/* dark blurred backdrop */
.dov-bg {
  position: absolute; inset: 0;
  background: rgba(4, 10, 20, .9);
  backdrop-filter: blur(12px) saturate(.6);
  -webkit-backdrop-filter: blur(12px) saturate(.6);
}

/* panel wrapping everything */
.dov-panel {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  padding: 48px;
}

/* crosshair HUD lines */
.dov-hud-line {
  position: absolute; background: rgba(249,115,22,.15); pointer-events: none;
}
.dov-hud-h {
  left: -50vw; right: -50vw; height: 1px;
  top: 50%; transform: translateY(-50%);
  top: calc(50% - 30px);
}
.dov-hud-v {
  top: -50vh; bottom: -50vh; width: 1px;
  left: 50%; transform: translateX(-50%);
}

/* corner brackets */
.dov-corner {
  position: absolute; width: 22px; height: 22px;
  border-color: rgba(249,115,22,.55); border-style: solid;
  transition: width .4s ease, height .4s ease;
}
.dov-tl { top: 0; left: 0;   border-width: 2px 0 0 2px; }
.dov-tr { top: 0; right: 0;  border-width: 2px 2px 0 0; }
.dov-bl { bottom: 0; left: 0;  border-width: 0 0 2px 2px; }
.dov-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.drone-overlay.dov-active .dov-corner {
  width: 32px; height: 32px;
  transition: width .5s cubic-bezier(.34,1.56,.64,1) .1s,
              height .5s cubic-bezier(.34,1.56,.64,1) .1s;
}

/* HUD data tags (top-left / top-right of panel) */
.dov-tag {
  position: absolute; top: 4px;
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .35s ease .2s, transform .35s ease .2s;
}
.drone-overlay.dov-active .dov-tag { opacity: 1; transform: translateY(0); }
.dov-tag-tl { left: 36px; text-align: left; }
.dov-tag-tr { right: 36px; text-align: right; }
.dov-tag-key {
  display: block; font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .14em; color: rgba(249,115,22,.6);
}
.dov-tag-val {
  display: block; font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .1em; color: rgba(255,255,255,.75); font-weight: 600;
}

/* drone image — fondo transparente real, mix-blend-mode:screen hace que los
   píxeles oscuros/negros del fondo desaparezcan; el drone claro flota */
.dov-img {
  max-width: min(680px, 85vw);
  max-height: 46vh;
  object-fit: contain;
  mix-blend-mode: screen;
  transform: scale(.84) translateY(16px);
  opacity: 0;
  transition:
    transform .65s cubic-bezier(.34, 1.56, .64, 1),
    opacity .45s ease;
  filter:
    brightness(1.35) contrast(1.1) saturate(0.9)
    drop-shadow(0 0 60px rgba(249,115,22,.55))
    drop-shadow(0 0 28px rgba(249,115,22,.35));
}
.drone-overlay.dov-active .dov-img {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* caption below drone */
.dov-caption {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease .2s, transform .4s ease .2s;
}
.drone-overlay.dov-active .dov-caption {
  opacity: 1; transform: translateY(0);
}
.dov-label {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em;
  color: var(--orange); font-weight: 700;
}
.dov-specs-row {
  display: flex; align-items: center; gap: 0;
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .08em; color: rgba(255,255,255,.4);
}
.dov-specs-row span { padding: 0 14px; }
.dov-specs-row span + span {
  border-left: 1px solid rgba(255,255,255,.12);
}

/* hide overlays on touch devices */
@media (hover: none) {
  .drone-overlay { display: none !important; }
  .srv-hover-hint { display: none !important; }
}

/* ── 12. SECTORS/INDUSTRIAS — DARK ───────────────────── */
.s-sectors {
  background: var(--bg-dark);
  z-index: 7;
}
.sec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.sec-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 22px;
  min-height: 360px;
  transition: border-color .3s, background .3s, transform .3s;
  cursor: default;
}
.sec-card:hover {
  border-color: var(--border-o);
  background: rgba(255,255,255,.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.sec-ico { color: var(--orange); margin-bottom: 14px; }
.sec-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.sec-card p { font-size: .86rem; line-height: 1.7; color: rgba(255,255,255,.48); margin-bottom: 14px; }
.sec-logos { display: flex; flex-wrap: wrap; gap: 6px; }
.sec-logos span {
  font-family: var(--font-mono); font-size: .63rem; padding: 3px 9px;
  border-radius: 3px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.4);
  border: 1px solid var(--border);
}

/* ── Industry detection popup ─────────────────────── */
.ind-popup {
  position: absolute; inset: 0; z-index: 3;
  padding: 18px 20px 14px;
  background: linear-gradient(160deg, rgba(8,18,36,.98) 0%, rgba(4,10,22,.99) 100%);
  border: 1px solid rgba(249,115,22,.38);
  border-radius: inherit;
  opacity: 0;
  transform: translateY(10px) scale(.99);
  transition: opacity .28s ease, transform .3s cubic-bezier(.34,1.2,.64,1);
  pointer-events: none;
  display: flex; flex-direction: column; gap: 10px;
}
/* thin orange top bar */
.ind-popup::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 70%);
  border-radius: inherit;
}
.sec-card:hover .ind-popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* popup header */
.ind-pop-hdr {
  display: flex; flex-direction: column; gap: 3px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ind-pop-tag {
  font-family: var(--font-mono); font-size: .56rem;
  letter-spacing: .15em; color: #22c55e; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.ind-pop-tag::before {
  content: '';
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse-green 2s infinite;
}
.ind-pop-industry {
  font-family: var(--font-head); font-size: .98rem; font-weight: 700;
  color: #fff; line-height: 1.2;
}

/* algorithm list */
.ind-pop-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.ind-pop-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .79rem; line-height: 1.4; color: rgba(255,255,255,.68);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ind-pop-list li:last-child { border-bottom: none; }
.ind-pop-n {
  font-family: var(--font-mono); font-size: .59rem;
  color: var(--orange); font-weight: 700;
  letter-spacing: .04em; flex-shrink: 0;
  margin-top: 2px; min-width: 16px;
}

/* popup footer */
.ind-pop-footer {
  font-family: var(--font-mono); font-size: .56rem;
  letter-spacing: .09em; color: rgba(255,255,255,.22);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}

/* hint — only visible when popup is NOT shown */
.sec-card::after {
  content: 'VER CAPACIDADES →';
  position: absolute; bottom: 14px; right: 16px;
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .12em; color: rgba(249,115,22,.45);
  opacity: 1; transition: opacity .2s;
  pointer-events: none;
}
.sec-card:hover::after { opacity: 0; }

/* disable on touch */
@media (hover: none) {
  .ind-popup { display: none; }
  .sec-card::after { display: none; }
}

/* ── 13. CASES — LIGHT ───────────────────────────────── */
.s-cases {
  background: var(--lt-bg-soft);
  z-index: 8;
}

/* ── Callout: sistema activo ─── */
.case-callout {
  margin: 40px 0 48px;
  background: #fff;
  border: 1px solid var(--lt-card-border);
  border-left: 3px solid var(--orange);
  border-radius: var(--r);
  padding: 24px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.cc-live {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .14em; color: #16a34a;
  font-weight: 600; margin-bottom: 12px;
}
.cc-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.cc-text {
  font-size: .97rem; line-height: 1.72;
  color: var(--lt-text-dim); margin: 0;
}

/* ── Service cards grid ─── */
.case-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.case-service-card {
  background: #fff;
  border: 1px solid var(--lt-card-border);
  border-radius: var(--r);
  padding: 28px 26px 26px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
}
.case-service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

/* card top row */
.csc-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.csc-status {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .12em; font-weight: 700;
  color: #16a34a;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  padding: 3px 10px 3px 7px; border-radius: 4px;
}
.csc-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #22c55e;
  animation: pulse-green 2s infinite;
}
.csc-context {
  font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .1em; color: var(--lt-text-muted);
  font-weight: 500;
}

/* icon area */
.csc-icon-wrap {
  margin-bottom: 16px;
  opacity: .9;
}

/* card heading + body */
.case-service-card h3 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: var(--lt-heading); margin-bottom: 8px; line-height: 1.35;
}
.case-service-card > p {
  font-size: .91rem; line-height: 1.68;
  color: var(--lt-text-dim); margin-bottom: 20px;
}

/* detection list */
.det-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--lt-border);
}
.det-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--lt-border);
  font-size: .86rem; color: var(--lt-text);
  line-height: 1.4;
}
.det-item span:last-child { margin-left: auto; }
.det-ico {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(249,115,22,.07);
  color: var(--orange);
}
.det-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #22c55e;
  flex-shrink: 0;
}

/* ── Scale message ─── */
.case-scale-msg {
  display: flex; align-items: flex-start; gap: 18px;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 60%);
  border: 1px solid rgba(249,115,22,.18);
  border-radius: var(--r); padding: 24px 26px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.csm-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(249,115,22,.1); color: var(--orange);
}
.case-scale-msg > div {
  flex: 1; min-width: 240px;
  font-size: .95rem; line-height: 1.68; color: var(--lt-text-dim);
}
.case-scale-msg strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--lt-heading); margin-bottom: 6px;
}
.csm-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: .88rem; font-weight: 600;
  color: var(--orange); text-decoration: none;
  transition: gap .2s;
}
.csm-link:hover { gap: 10px; }

/* ── Proof strip ─── */
.case-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lt-border);
  border: 1px solid var(--lt-border);
  border-radius: var(--r); overflow: hidden;
}
.cps-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 24px 16px;
  background: #fff;
  gap: 8px;
}
.cps-icon {
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(249,115,22,.08);
}
.cps-label {
  font-family: var(--font-head); font-size: .98rem; font-weight: 700;
  color: var(--lt-heading); line-height: 1.25;
}
.cps-sub {
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .06em; color: var(--lt-text-muted);
  line-height: 1.4;
}

/* ── 14. WHY HAPSYS — DARK ───────────────────────────── */
.s-why {
  background: linear-gradient(160deg, #04080f 0%, #060d1a 55%, #0a1828 100%);
  z-index: 9;
}

/* Metric strip */
.why-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 44px 0 52px;
  background: rgba(249,115,22,.06);
  border: 1px solid rgba(249,115,22,.18);
  border-radius: 16px; padding: 32px 0;
}
.whs-item {
  flex: 1; text-align: center; padding: 0 24px;
}
.whs-val {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 8px;
}
.whs-lbl {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em;
  color: rgba(255,255,255,.45); line-height: 1.5;
}
.whs-div {
  width: 1px; align-self: stretch;
  background: rgba(249,115,22,.2); flex-shrink: 0;
}

/* Cards grid v2 */
.why-grid-v2 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.wcv2 {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
  padding: 28px 26px 22px;
  background: rgba(255,255,255,.025);
  display: flex; flex-direction: column;
  transition: border-color .3s, background .3s, transform .3s;
}
.wcv2::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(249,115,22,.3) 100%);
  opacity: 0; transition: opacity .3s;
}
.wcv2:hover {
  border-color: rgba(249,115,22,.28);
  background: rgba(249,115,22,.04);
  transform: translateY(-4px);
}
.wcv2:hover::before { opacity: 1; }
.wcv2-tag {
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em;
  font-weight: 700; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.wcv2 h3 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  color: #fff; line-height: 1.38; margin-bottom: 12px;
}
.wcv2 p {
  font-size: .86rem; line-height: 1.74; color: rgba(255,255,255,.48);
  flex: 1; margin-bottom: 0;
}
.wcv2-foot {
  display: flex; align-items: baseline; gap: 9px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.wcv2-stat {
  font-family: var(--font-head); font-size: 1.65rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.wcv2-stat-lbl {
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .07em;
  color: rgba(255,255,255,.3); line-height: 1.4;
}

/* ── 15. TEAM — LIGHT ────────────────────────────────── */
.s-team {
  background: #fff;
  z-index: 10;
}
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: #fff; border: 1px solid var(--lt-card-border);
  border-radius: 14px; padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.team-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.06); transform: translateY(-4px); border-color: rgba(249,115,22,.3); }
.team-avatar { margin-bottom: 18px; }
.team-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--lt-heading); margin-bottom: 4px; }
.team-role { font-family: var(--font-mono); font-size: .68rem; color: var(--orange); letter-spacing: .08em; margin-bottom: 8px; }
.team-bio { font-size: .82rem; color: var(--lt-text-muted); }

/* ── 16. NOVEDADES — LIGHT ───────────────────────────── */
.s-novedades {
  background: var(--lt-bg-soft);
  z-index: 11;
}
.nov-tabs {
  display: flex; gap: 4px; margin-bottom: 40px;
  border: 1px solid var(--lt-card-border);
  border-radius: 8px; padding: 4px;
  width: fit-content;
}
.nov-tab {
  font-family: var(--font-head); font-size: .82rem; font-weight: 600;
  padding: 10px 24px; border: none; border-radius: 6px;
  background: transparent; color: var(--lt-text-dim);
  cursor: pointer; transition: all .22s;
}
.nov-tab.active {
  background: var(--orange); color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,.3);
}
.nov-tab:hover:not(.active) { background: rgba(0,0,0,.04); }

.nov-nl-wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; margin-bottom: 48px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--lt-card-border);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.nov-nl-text h3 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  color: var(--lt-heading); margin-bottom: 8px;
}
.nov-nl-text p { font-size: .92rem; line-height: 1.7; color: var(--lt-text-dim); max-width: 400px; }
.nov-nl-form {
  display: flex; gap: 8px; flex-shrink: 0;
}
.nov-nl-form input {
  padding: 12px 16px; border: 1px solid var(--lt-card-border);
  border-radius: var(--r-sm); font-size: .9rem;
  color: var(--lt-text); background: #f8fafc;
  outline: none; width: 220px;
  transition: border-color .22s;
}
.nov-nl-form input:focus { border-color: var(--orange); }
.nov-nl-form button {
  padding: 12px 24px; background: var(--orange); color: #fff;
  border: none; border-radius: var(--r-sm); font-family: var(--font-head);
  font-weight: 600; font-size: .88rem; cursor: pointer;
  transition: background .22s;
}
.nov-nl-form button:hover { background: var(--orange-dk); }

.nov-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nov-post {
  background: #fff; border: 1px solid var(--lt-card-border);
  border-radius: 12px; padding: 24px;
  transition: border-color .3s, box-shadow .3s;
}
.nov-post:hover { border-color: rgba(249,115,22,.3); box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.nov-post-date {
  font-family: var(--font-mono); font-size: .64rem;
  letter-spacing: .1em; color: var(--orange); margin-bottom: 10px;
}
.nov-post h4 {
  font-family: var(--font-head); font-size: .98rem; font-weight: 700;
  color: var(--lt-heading); margin-bottom: 8px; line-height: 1.3;
}
.nov-post p { font-size: .86rem; line-height: 1.7; color: var(--lt-text-dim); margin-bottom: 12px; }
.nov-post-link {
  font-family: var(--font-head); font-size: .82rem; font-weight: 600;
  color: var(--orange); transition: gap .2s;
}
.nov-post-link:hover { text-decoration: underline; }

/* Events panel */
.nov-events { display: flex; flex-direction: column; gap: 16px; }
.nov-event {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px;
  background: #fff; border: 1px solid var(--lt-card-border);
  border-radius: 12px;
  transition: border-color .3s;
}
.nov-event:hover { border-color: rgba(249,115,22,.3); }
.nev-date {
  display: flex; flex-direction: column; align-items: center;
  min-width: 56px; padding: 8px;
  background: rgba(249,115,22,.06); border-radius: 8px;
  text-align: center;
}
.nev-day {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.nev-month {
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .1em; color: var(--orange); text-transform: uppercase;
}
.nev-info h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--lt-heading); margin-bottom: 4px; }
.nev-info p { font-size: .88rem; line-height: 1.6; color: var(--lt-text-dim); margin-bottom: 8px; }
.nev-tag {
  font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .12em; padding: 3px 8px; border-radius: 4px;
  background: rgba(249,115,22,.08); color: var(--orange);
  border: 1px solid rgba(249,115,22,.2);
}

/* ── 17. INVESTORS — DARK ────────────────────────────── */
.s-investors {
  background: var(--bg-dark);
  z-index: 12;
}
/* TRL components (shared) */
.trl-wrap { margin: 14px 0 18px; }
.trl-track { height: 5px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.trl-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 3px; transition: width 1.4s ease .3s;
  position: relative;
}
.trl-fill::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 8px var(--orange);
}
.trl-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: .6rem; color: rgba(255,255,255,.22); }
.trl-active { color: var(--blue) !important; }
.trl-target { color: var(--orange) !important; }
.inv-cta { text-align: center; }

/* ── Inversores V2 ─────────────────────────────────── */

/* Opportunity strip */
.inv2-opp {
  display: flex; align-items: center;
  background: rgba(249,115,22,.05); border: 1px solid rgba(249,115,22,.15);
  border-radius: 16px; padding: 30px 0; margin: 40px 0 50px;
}
.inv2-opp-item { flex: 1; text-align: center; padding: 0 20px; }
.inv2-opp-val {
  font-family: var(--font-head); font-size: 2.1rem; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 8px;
}
.inv2-opp-lbl {
  font-family: var(--font-mono); font-size: .59rem; letter-spacing: .08em;
  color: rgba(255,255,255,.42); line-height: 1.55;
}
.inv2-opp-div { width: 1px; align-self: stretch; background: rgba(249,115,22,.18); flex-shrink: 0; }

/* Problem / Solution */
.inv2-ps { display: grid; grid-template-columns: 1fr 1.35fr; gap: 18px; margin-bottom: 50px; }
.inv2-problem {
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 28px 24px;
}
.inv2-solution {
  background: rgba(249,115,22,.04); border: 1px solid rgba(249,115,22,.18);
  border-radius: 14px; padding: 28px 24px;
}
.inv2-ps-label {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em;
  font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.inv2-sol-label { color: var(--orange) !important; }
.inv2-prob-list { display: flex; flex-direction: column; gap: 14px; }
.inv2-prob-item {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .86rem; line-height: 1.62; color: rgba(255,255,255,.48);
}
.inv2-prob-item strong { color: rgba(255,255,255,.68); font-weight: 600; }
.inv2-prob-x { color: rgba(239,68,68,.75); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.inv2-sol-arch { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.inv2-arch-node {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.04); border-radius: 10px; padding: 13px 15px;
}
.inv2-arch-carrier { border-left: 3px solid rgba(249,115,22,.5); }
.inv2-arch-payload { border-left: 3px solid rgba(96,165,250,.5); }
.inv2-arch-svg { flex-shrink: 0; }
.inv2-arch-lbl { font-size: .87rem; color: rgba(255,255,255,.8); font-weight: 600; line-height: 1.3; }
.inv2-arch-lbl span {
  display: block; font-size: .74rem; color: rgba(255,255,255,.38);
  font-family: var(--font-mono); font-weight: 400; margin-top: 3px; letter-spacing: .02em;
}
.inv2-arch-connector {
  display: flex; align-items: center; gap: 10px; padding-left: 24px;
}
.inv2-arch-line {
  width: 2px; height: 18px; flex-shrink: 0;
  background: linear-gradient(180deg, rgba(249,115,22,.4), rgba(96,165,250,.4));
}
.inv2-arch-connector span {
  font-family: var(--font-mono); font-size: .57rem; color: rgba(255,255,255,.3);
  letter-spacing: .06em;
}
.inv2-sol-result {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(249,115,22,.08); border-radius: 8px; padding: 12px 14px;
  font-size: .86rem; line-height: 1.62; color: rgba(255,255,255,.65);
}
.inv2-sol-check { color: #22c55e; font-weight: 700; flex-shrink: 0; }

/* Tech moat */
.inv2-moat-hdr { margin-bottom: 14px; }
.inv2-moat-label {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.28);
}
.inv2-moat {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 13px; margin-bottom: 48px;
}
.inv2-moat-card {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07); border-radius: 12px;
  padding: 22px 20px 18px;
  background: rgba(255,255,255,.02);
  transition: border-color .25s, background .25s, transform .25s;
}
.inv2-moat-card:hover {
  border-color: rgba(249,115,22,.25); background: rgba(249,115,22,.03);
  transform: translateY(-3px);
}
.inv2-mc-n {
  position: absolute; top: 10px; right: 14px;
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 800;
  color: rgba(249,115,22,.1); line-height: 1; pointer-events: none;
}
.inv2-moat-card h4 {
  font-family: var(--font-head); font-size: .94rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.inv2-moat-card p { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.44); margin-bottom: 14px; }
.inv2-mc-tag {
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 700; color: var(--orange);
}

/* Traction + TRL */
.inv2-proof { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; margin-bottom: 48px; }
.inv2-traction {
  background: rgba(34,197,94,.04); border: 1px solid rgba(34,197,94,.15);
  border-radius: 14px; padding: 28px 24px;
}
.inv2-tract-hdr {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 14px;
}
.inv2-tract-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  flex-shrink: 0; animation: pulse-green 2s ease-in-out infinite;
}
.inv2-traction p { font-size: .88rem; line-height: 1.72; color: rgba(255,255,255,.48); margin-bottom: 16px; }
.inv2-traction strong { color: rgba(255,255,255,.78); }
.inv2-tract-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.inv2-tract-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .86rem; color: rgba(255,255,255,.62);
}
.inv2-tract-list li span { color: #22c55e; font-weight: 700; flex-shrink: 0; }
.inv2-trl-block {
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 28px 24px;
}
.inv2-trl-hdr {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 14px;
}
.inv2-trl-desc { font-size: .84rem; line-height: 1.68; color: rgba(255,255,255,.42); margin-top: 14px; }
.inv2-trl-desc strong { color: var(--orange); }
.inv2-trl-stages { display: flex; align-items: center; gap: 7px; margin-top: 18px; }
.inv2-trl-s {
  flex: 1; border: 1px solid rgba(255,255,255,.07); border-radius: 8px;
  padding: 10px 11px; text-align: center;
}
.inv2-trl-done { border-color: rgba(34,197,94,.2); background: rgba(34,197,94,.04); }
.inv2-trl-now { border-color: rgba(249,115,22,.28); background: rgba(249,115,22,.07); }
.inv2-trl-s-n {
  display: block; font-family: var(--font-mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .08em; color: var(--orange); margin-bottom: 4px;
}
.inv2-trl-done .inv2-trl-s-n { color: #22c55e; }
.inv2-trl-s span:last-child { font-size: .71rem; color: rgba(255,255,255,.32); }
.inv2-trl-arr { color: rgba(255,255,255,.2); font-size: .85rem; flex-shrink: 0; }

/* Roadmap */
.inv2-roadmap { margin-bottom: 52px; }
.inv2-rm-hdr {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px;
}
.inv2-rm-track { display: flex; align-items: flex-start; gap: 0; }
.inv2-rm-phase {
  flex: 1; padding: 24px 22px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
}
.inv2-rm-active { border-color: rgba(34,197,94,.2); background: rgba(34,197,94,.03); }
.inv2-rm-funded { border-color: rgba(249,115,22,.18); background: rgba(249,115,22,.03); }
.inv2-rm-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.15); margin-bottom: 14px;
}
.inv2-rm-dot-active { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.5); }
.inv2-rm-dot-funded { background: var(--orange); box-shadow: 0 0 8px rgba(249,115,22,.4); }
.inv2-rm-phase-n {
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 6px;
}
.inv2-rm-active .inv2-rm-phase-n { color: #22c55e; }
.inv2-rm-funded .inv2-rm-phase-n { color: var(--orange); }
.inv2-rm-phase-title {
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  color: #fff; margin-bottom: 12px;
}
.inv2-rm-phase ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.inv2-rm-phase ul li {
  font-size: .8rem; color: rgba(255,255,255,.4);
  padding-left: 14px; position: relative;
}
.inv2-rm-phase ul li::before { content: '—'; position: absolute; left: 0; color: rgba(255,255,255,.18); }
.inv2-rm-connector {
  flex-shrink: 0; width: 28px; height: 1px;
  background: rgba(255,255,255,.1); margin-top: 38px;
}

/* CTA box */
.inv2-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: rgba(249,115,22,.06); border: 1px solid rgba(249,115,22,.2);
  border-radius: 16px; padding: 36px 40px;
}
.inv2-cta-inner h3 {
  font-family: var(--font-head); font-size: 1.22rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.inv2-cta-inner p { font-size: .88rem; color: rgba(255,255,255,.48); line-height: 1.65; }

/* ── 18. CONTACT — LIGHT ─────────────────────────────── */
.s-contact {
  background: #fff;
  z-index: 13;
}
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.contact-form {
  background: #f8fafc; border: 1px solid var(--lt-card-border);
  border-radius: 14px; padding: 38px 34px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--lt-text-dim); margin-bottom: 7px; font-family: var(--font-head);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--lt-card-border); border-radius: var(--r-sm);
  font-size: .9rem; color: var(--lt-text);
  background: #fff; outline: none;
  transition: border-color .22s, box-shadow .22s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-group select option { background: #fff; color: var(--lt-text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; justify-content: center; margin-top: 4px; font-size: .98rem; padding: 15px; }
.form-success {
  display: none; margin-top: 12px; padding: 12px 16px;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25);
  border-radius: 8px; color: #16a34a; font-size: .88rem; text-align: center;
}
.form-success.visible { display: block; }
.contact-info { display: flex; flex-direction: column; }
.ci-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--lt-card-border);
}
.ci-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: rgba(249,115,22,.08); display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.ci-key { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; color: var(--lt-text-muted); margin-bottom: 3px; }
.ci-val { font-size: .92rem; font-weight: 600; color: var(--lt-heading); transition: color .2s; }
a.ci-val:hover { color: var(--orange); }
.ci-card {
  margin-top: 24px; padding: 22px;
  background: rgba(249,115,22,.04); border: 1px solid rgba(249,115,22,.15);
  border-radius: 12px;
}
.ci-card-title { font-family: var(--font-head); font-size: .98rem; font-weight: 700; color: var(--lt-heading); margin-bottom: 8px; }
.ci-card p { font-size: .86rem; line-height: 1.6; color: var(--lt-text-dim); }
.ci-card-link { display: inline-block; margin-top: 12px; font-family: var(--font-head); font-size: .86rem; font-weight: 600; color: var(--orange); }
.ci-card-link:hover { text-decoration: underline; }

/* ── 19. FOOTER — VERY DARK ──────────────────────────── */
.footer { background: #020810; padding: 64px 0 28px; position: relative; z-index: 14; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer-logo-img { width: 120px; height: auto; border-radius: 8px; margin-bottom: 16px; opacity: .85; }
.footer-logo-img:hover { opacity: 1; }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.38); max-width: 260px; }
.footer-tag { font-family: var(--font-mono); font-size: .62rem !important; letter-spacing: .12em; color: rgba(255,255,255,.22) !important; margin-top: 8px; }
.footer-col h4 { font-family: var(--font-head); font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: .85rem; color: rgba(255,255,255,.48); padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-cta-btn {
  display: inline-block; margin-top: 10px; padding: 9px 18px;
  background: var(--orange); color: #fff !important; border-radius: var(--r-sm);
  font-weight: 600; font-family: var(--font-head); font-size: .84rem;
  transition: background .22s, transform .18s;
}
.footer-cta-btn:hover { background: var(--orange-dk); transform: translateY(-1px); }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .78rem; color: rgba(255,255,255,.22);
}

/* ── 20. SCROLL REVEAL ───────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(38px); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); transition: opacity .75s ease, transform .75s ease; }

/* ── 21. RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .slb-main { grid-template-columns: 1fr; gap: 28px; }
  .slb-kpis { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .slb-kpi { border-left: none; border-bottom: 1px solid rgba(249,115,22,.3); padding: 8px 20px 8px 0; }
  .srv-live-block { padding: 28px 24px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lens-wrap { flex-direction: column; align-items: center; }
.why-grid-v2 { grid-template-columns: 1fr 1fr; }
  .inv2-ps { grid-template-columns: 1fr; }
  .inv2-proof { grid-template-columns: 1fr; }
  .inv2-moat { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-stack { padding: 80px 0; min-height: auto; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-layout { padding: 72px 20px 48px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .hstat { padding-right: 0; }
  .hstat-div { display: none; }
  .abt-layout { grid-template-columns: 1fr; gap: 36px; }
  .abt-proof { grid-template-columns: 1fr 1fr; }
  .abt-proof-item:nth-child(2) { border-right: none; }
  .abt-proof-item:nth-child(3) { border-top: 1px solid #e2e8f0; }
  .abt-proof-item:nth-child(4) { border-top: 1px solid #e2e8f0; }
  .pillars { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .slb-case-grid { grid-template-columns: 1fr; }
  .slb-footer { flex-direction: column; align-items: flex-start; }
  .slb-scale-note { max-width: 100%; }
  .slb-features { grid-template-columns: 1fr; }
  .srv-live-block { padding: 22px 18px 18px; }
  .slb-main { gap: 20px; }
  .slb-info h3 { font-size: 1.25rem; }
  .sec-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .case-service-grid { grid-template-columns: 1fr; }
  .case-proof-strip { grid-template-columns: 1fr 1fr; }
  .why-grid-v2 { grid-template-columns: 1fr; }
  .why-strip { flex-wrap: wrap; gap: 20px; padding: 24px; }
  .whs-div { display: none; }
  .whs-item { flex: 0 0 45%; }
  .whs-val { font-size: 1.9rem; }
  .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .inv-grid { grid-template-columns: 1fr; }
  .abt-creds { grid-template-columns: 1fr; }
  .abt-proof { grid-template-columns: 1fr 1fr; }
  .inv2-opp { flex-wrap: wrap; padding: 22px; gap: 0; }
  .inv2-opp-div { display: none; }
  .inv2-opp-item { flex: 0 0 50%; padding: 12px 16px; }
  .inv2-moat { grid-template-columns: 1fr; }
  .inv2-rm-track { flex-direction: column; gap: 12px; }
  .inv2-rm-connector { width: 1px; height: 18px; margin: 0 auto; background: rgba(255,255,255,.1); }
  .inv2-cta-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .inv2-trl-stages { flex-direction: column; gap: 8px; }
  .inv2-trl-arr { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mission-phases { grid-template-columns: 1fr; }
  .lens-container { width: min(320px,80vw); height: min(320px,80vw); }
  .nov-nl-wrap { flex-direction: column; align-items: flex-start; }
  .nov-posts { grid-template-columns: 1fr; }
  .nov-nl-form { width: 100%; }
  .nov-nl-form input { flex: 1; width: auto; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .sec-grid { grid-template-columns: 1fr; }
  .case-proof-strip { grid-template-columns: 1fr 1fr; }
  .case-scale-msg { flex-direction: column; gap: 12px; }
  .csm-icon { width: 36px; height: 36px; }
  .inv2-opp-item { flex: 0 0 100%; }
  .inv2-moat { grid-template-columns: 1fr; }
}

/* ── OPERATOR CONSOLE (Mission Section) ─────────────── */
.op-console {
  width: 100%; margin-top: 40px;
  background: #080c10;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-mono);
  color: #c9d1d9;
}

/* Top bar */
.opc-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px;
  background: #0d1117;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.65rem; letter-spacing: 0.1em;
}
.opc-tb-left { display: flex; align-items: center; gap: 8px; }
.opc-tb-right { display: flex; align-items: center; gap: 8px; }
.opc-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3fb950; animation: blink 2s infinite;
}
.opc-sysname { color: #f97316; font-weight: 600; }
.opc-mission-id { color: #8b949e; }
.opc-div { color: rgba(255,255,255,0.2); }
.opc-phase-badge { color: #f97316; }
.opc-clock { color: #58a6ff; font-variant-numeric: tabular-nums; }

/* Body: 2 columns */
.opc-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
}

/* Camera panel */
.opc-cam-panel {
  display: flex; flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.opc-cam-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.65rem; letter-spacing: 0.1em;
}
.opc-cam-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ef4444; animation: blink 0.8s infinite;
}
.opc-cam-alt { margin-left: auto; color: #58a6ff; }
.opc-cam-viewport {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; background: #000; flex: 1;
}
#opc-view-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* Scanline */
.opc-scanline {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), transparent);
  animation: opcScan 3s linear infinite; z-index: 3;
}
@keyframes opcScan {
  from { top: 0; opacity: 0.6; }
  to   { top: 100%; opacity: 0.1; }
}

/* Grid overlay */
.opc-gridlines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 45px;
}

/* Corner brackets (HUD style) */
.opc-cam-corners { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.opc-corner {
  position: absolute; width: 14px; height: 14px;
  border-color: rgba(249,115,22,0.6); border-style: solid;
}
.opc-corner-tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.opc-corner-tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.opc-corner-bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.opc-corner-br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

/* Anomaly bounding box */
.opc-anomaly-box {
  position: absolute; z-index: 5;
  top: 38%; left: 22%; width: 34%; height: 30%;
  transition: opacity 0.4s ease;
}
.opc-anomaly-box.opc-hidden { opacity: 0; pointer-events: none; }
.opc-abox-corner {
  position: absolute; width: 12px; height: 12px;
  border-color: #f97316; border-style: solid;
  animation: alertPulse 1s ease-in-out infinite;
}
.opc-abox-tl { top: 0; left: 0;   border-width: 2px 0 0 2px; }
.opc-abox-tr { top: 0; right: 0;  border-width: 2px 2px 0 0; }
.opc-abox-bl { bottom: 0; left: 0;  border-width: 0 0 2px 2px; }
.opc-abox-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.opc-abox-label {
  position: absolute; top: -20px; left: 0;
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: #f97316; white-space: nowrap;
}
@keyframes alertPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* Payload badge */
.opc-payload-badge {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 6; background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.5);
  padding: 3px 10px; border-radius: 4px;
  font-size: 0.62rem; letter-spacing: 0.12em; color: #f97316;
  transition: opacity 0.4s;
}
.opc-payload-badge.opc-hidden { opacity: 0; pointer-events: none; }

/* Camera footer */
.opc-cam-footer {
  display: flex; justify-content: space-between;
  padding: 6px 14px;
  font-size: 0.62rem; color: #6e7681;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
}

/* Right panel */
.opc-right-panel {
  display: flex; flex-direction: column;
}

/* AI Terminal */
.opc-terminal { flex: 1; display: flex; flex-direction: column; }
.opc-term-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(249,115,22,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.62rem; letter-spacing: 0.1em; color: #f1a56d;
}
.opc-term-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #3fb950; animation: blink 1.2s infinite;
}
.opc-term-body {
  flex: 1; padding: 10px 12px; overflow: hidden;
  font-size: 0.72rem; line-height: 1.6; color: #c9d1d9;
  min-height: 180px; max-height: 220px;
}
.opc-term-line {
  opacity: 0; transform: translateY(4px);
  animation: termLine 0.3s ease forwards;
  margin-bottom: 1px;
}
.opc-term-line.dim    { color: #6e7681; }
.opc-term-line.accent { color: #f97316; }
.opc-term-line.alert  { color: #ef4444; }
.opc-term-line.ok     { color: #3fb950; }
@keyframes termLine {
  to { opacity: 1; transform: translateY(0); }
}
.opc-term-cursor {
  display: inline-block; width: 7px; height: 0.85em;
  background: #f97316; vertical-align: -1px; margin-left: 3px;
  animation: blink 1s steps(2,start) infinite;
}

/* Sensor graph */
.opc-graph-panel {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 8px 12px 6px;
}
.opc-graph-label {
  font-size: 0.58rem; letter-spacing: 0.1em;
  color: #6e7681; margin-bottom: 6px;
}
#opc-graph { display: block; width: 100%; }

/* Telemetry grid */
.opc-telem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.opc-telem-item {
  padding: 8px 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.opc-telem-item:nth-child(even) { border-right: none; }
.opc-t-key { font-size: 0.58rem; letter-spacing: 0.1em; color: #6e7681; margin-bottom: 3px; }
.opc-t-val { font-size: 0.78rem; font-weight: 600; color: #c9d1d9; }
.opc-green { color: #3fb950; }
.opc-red   { color: #ef4444; }
.opc-orange { color: #f97316; }

/* Narrative strip */
.opc-narrative {
  padding: 10px 16px;
  background: rgba(249,115,22,0.04);
  border-top: 1px solid rgba(249,115,22,0.15);
  font-size: 0.75rem; line-height: 1.5; color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  transition: opacity 0.4s ease;
}
.opc-narrative strong { color: #f97316; }

/* Responsive */
@media (max-width: 768px) {
  .opc-body { grid-template-columns: 1fr; }
  .opc-right-panel { border-top: 1px solid rgba(255,255,255,0.08); }
  .opc-cam-panel { border-right: none; }
}
