/* ============================================================
   EnergyExe — style.css  v4 (plain px, large and readable)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #0E2841;
  --navy-deep:    #08192A;
  --navy-mid:     #162F4A;
  --navy-light:   #1A3550;
  --steel:        #457B9D;
  --steel-light:  #6B9DB8;
  --steel-dim:    #2E5F7E;
  --muted:        #AEAEAE;
  --muted-dim:    #7A7A7A;
  --white:        #FFFFFF;
  --perform:      #3DD6A3;
  --teal:         #3DD6A3;
  --preview:      #F5A623;
  --predict:      #7B6CF6;
  --scada:        #6B9DB8;
  --danger:       #E05555;
  --border:       rgba(255,255,255,0.08);
  --border-m:     rgba(255,255,255,0.14);
  --border-l:     rgba(255,255,255,0.22);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.22s ease;
}

html { scroll-behavior: smooth; }

/* ── VISIBLE KEYBOARD FOCUS ── */
a:focus-visible,
button:focus-visible,
.serve-tab:focus-visible,
.nav-hamburger:focus-visible {
  outline: 2px solid var(--steel-light);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-align: left;
}
section, h1, h2, h3, p { text-align: left !important; }

/* ── CONTENT WIDTH — stops text stretching too wide on large screens ── */
.what-grid,
.platform-inner,
.serve-tabs,
.serve-panel,
.ai-grid,
.params-grid,
.stage-ladder,
.coverage-grid,
.team-grid,
.cta-inner {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

/* ── UTILITIES ── */
.section-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--steel-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  display: block;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--white);
}
h2 .dim { color: var(--muted-dim); }

.section-intro {
  font-size: 19px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
  margin-top: 16px;
}

.btn-primary {
  background: var(--steel);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--steel-light); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-m);
  padding: 15px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition);
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--border-l); }

.btn-link {
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  padding: 15px 4px;
  transition: color var(--transition);
}
.btn-link:hover { color: var(--white); }

/* ── SCROLL ANIMATIONS — visible by default, no blank gaps ── */
.reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(8,25,42,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo svg { width: 36px; height: 22px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.nav-logo-sub { font-size: 10px; letter-spacing: 1.5px; color: var(--muted-dim); text-transform: uppercase; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 16px; font-weight: 400; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--steel) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 6px; font-size: 16px; font-weight: 500 !important; transition: background var(--transition) !important; }
.nav-cta:hover { background: var(--steel-light) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: transparent; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--muted); border-radius: 2px; transition: all var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 72vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 130px 56px 80px; position: relative; overflow: hidden; text-align: left !important;
}
.hero-grid { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-glow { position: absolute; top: -200px; right: -100px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(69,123,157,0.18) 0%, transparent 65%); pointer-events: none; }
.hero-glow-2 { position: absolute; bottom: -300px; left: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(61,214,163,0.07) 0%, transparent 65%); pointer-events: none; }

.hero-content { position: relative; max-width: 900px; text-align: left !important; margin-left: 0 !important; margin-right: auto !important; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(69,123,157,0.12); border: 1px solid rgba(69,123,157,0.25);
  padding: 9px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 400; color: var(--steel-light);
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 32px;
}
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--perform); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 90px);
  font-weight: 800; line-height: 1.05; letter-spacing: -3px;
  color: var(--white); margin-bottom: 16px;
}

.hero-category { font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); font-weight: 400; color: var(--steel-light); margin-bottom: 24px; }

.hero-sub { font-size: 20px; font-weight: 300; color: var(--muted); max-width: 560px; line-height: 1.8; margin-bottom: 44px; }
.hero-sub strong { color: var(--white); font-weight: 400; }

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-proof { display: flex; gap: 48px; margin-top: 72px; padding-top: 44px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.proof-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--white); letter-spacing: -0.5px; line-height: 1; }
.proof-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 96px 56px; }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-section { background: var(--navy); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }

.what-statement { font-size: 20px; font-weight: 300; color: var(--white); line-height: 1.75; margin-bottom: 36px; border-left: 3px solid var(--steel); padding-left: 22px; }

.what-pillars { display: flex; flex-direction: column; gap: 22px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(69,123,157,0.1); border: 1px solid rgba(69,123,157,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-icon svg { width: 18px; height: 18px; stroke: var(--steel-light); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pillar-title { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 5px; }
.pillar-body  { font-size: 15px; color: var(--muted); line-height: 1.7; }

.leakage-card { background: var(--navy-deep); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.leakage-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.leakage-asset-name { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.leakage-asset-meta { font-size: 13px; color: var(--muted-dim); }
.indep-badge { background: rgba(61,214,163,0.08); border: 1px solid rgba(61,214,163,0.2); border-radius: 4px; padding: 4px 10px; font-size: 12px; color: var(--perform); white-space: nowrap; }
.leakage-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.leakage-label { font-size: 14px; color: var(--muted); width: 160px; flex-shrink: 0; }
.leakage-bar-bg { flex: 1; height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.leakage-bar { height: 8px; border-radius: 4px; transition: width 1s ease; }
.leakage-value { font-size: 14px; font-weight: 500; width: 56px; text-align: right; }
.leakage-total { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.leakage-total-label { font-size: 14px; color: var(--muted); }
.leakage-total-meta  { font-size: 12px; color: var(--muted-dim); margin-top: 3px; }
.leakage-total-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--perform); }
.gain-badge { background: rgba(61,214,163,0.08); border: 1px solid rgba(61,214,163,0.15); color: var(--perform); padding: 3px 9px; border-radius: 4px; font-size: 13px; margin-top: 5px; display: inline-block; }
.independent-note { margin-top: 18px; padding: 14px 18px; background: rgba(69,123,157,0.05); border: 1px solid rgba(69,123,157,0.12); border-radius: 8px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.independent-note strong { color: var(--steel-light); font-weight: 400; }

/* ============================================================
   PLATFORM
   ============================================================ */
.platform-section { background: var(--navy-deep); }
.platform-inner { max-width: 1160px; margin: 0 auto; text-align: left !important; padding-left: 0 !important; }

.browser-chrome { background: #0D1F33; border: 1px solid var(--border-m); border-radius: 14px; overflow: hidden; margin-top: 52px; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.browser-bar { background: #0A1929; padding: 10px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.browser-dots { display: flex; gap: 5px; }
.bdot { width: 10px; height: 10px; border-radius: 50%; }
.browser-url { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 5px; padding: 5px 12px; font-size: 12px; color: var(--muted-dim); margin: 0 12px; font-family: var(--font-body); }

.dash-layout { display: grid; grid-template-columns: 140px 1fr; min-height: 480px; font-size: 12px; }
.dash-sidebar { background: #0B1D2E; border-right: 1px solid var(--border); padding: 12px 0; display: flex; flex-direction: column; }
.dash-sidebar-logo { padding: 10px 14px 14px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.dash-sidebar-logo svg { width: 22px; height: 14px; }
.dash-sidebar-logo-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); }
.dash-sidebar-section { font-size: 8px; text-transform: uppercase; letter-spacing: 1.2px; color: #3A5A78; padding: 6px 14px 4px; font-weight: 500; }
.dash-sidebar-item { display: flex; align-items: center; gap: 7px; padding: 6px 14px; font-size: 12px; color: var(--muted-dim); cursor: pointer; transition: all 0.15s; line-height: 1; }
.dash-sidebar-item:hover { color: var(--muted); background: rgba(255,255,255,0.03); }
.dash-sidebar-item.active { color: var(--white); background: rgba(69,123,157,0.15); }
.dash-sidebar-item svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.dash-sidebar-bottom { margin-top: auto; border-top: 1px solid var(--border); padding-top: 8px; }
.dash-sidebar-user { display: flex; align-items: center; gap: 7px; padding: 8px 14px; }
.dash-sidebar-avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--navy-mid); border: 1px solid var(--border-m); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 600; color: var(--steel-light); flex-shrink: 0; }
.dash-sidebar-user-name { font-size: 11px; color: var(--white); font-weight: 500; }
.dash-sidebar-user-role { font-size: 9px; color: var(--muted-dim); }

.dash-main-content { background: #0F2133; display: flex; flex-direction: column; overflow: hidden; }
.dash-topbar { padding: 12px 18px 0; border-bottom: 1px solid var(--border); }
.dash-greeting-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.dash-greeting-meta { font-size: 10px; color: var(--muted-dim); display: flex; align-items: center; gap: 4px; margin-bottom: 3px; }
.dash-greeting-meta svg { width: 11px; height: 11px; stroke: var(--steel-light); fill: none; stroke-width: 1.5; }
.dash-greeting-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--white); letter-spacing: -0.5px; }
.dash-greeting-sub { font-size: 10px; color: var(--muted-dim); margin-top: 3px; max-width: 320px; line-height: 1.55; }
.explore-btn { background: var(--steel); color: var(--white); border: none; border-radius: 5px; padding: 7px 13px; font-size: 11px; font-weight: 500; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 5px; font-family: var(--font-body); }
.explore-btn svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; }

.dash-stats-bar { display: flex; border-top: 1px solid var(--border); }
.dash-stat-box { flex: 1; padding: 9px 12px; border-right: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.dash-stat-box:last-child { border-right: none; }
.dash-stat-icon { width: 22px; height: 22px; border-radius: 4px; background: rgba(69,123,157,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-stat-icon svg { width: 11px; height: 11px; stroke: var(--steel-light); fill: none; stroke-width: 1.5; }
.dash-stat-num { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); line-height: 1; }
.dash-stat-label { font-size: 8px; color: var(--muted-dim); margin-top: 2px; line-height: 1.3; }

.dash-body-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px; flex: 1; }
.dash-card-inner { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 7px; padding: 12px; overflow: hidden; }
.dash-card-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dash-card-title { font-size: 11px; font-weight: 500; color: var(--white); display: flex; align-items: center; gap: 5px; }
.dash-card-title svg { width: 11px; height: 11px; stroke: var(--steel-light); fill: none; stroke-width: 1.5; }
.dash-see-all { font-size: 10px; color: var(--steel-light); cursor: pointer; display: flex; align-items: center; gap: 3px; }
.dash-see-all svg { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2; }
.portfolio-empty { text-align: center; padding: 14px 8px; color: var(--muted-dim); font-size: 11px; line-height: 1.7; }
.create-link { color: var(--steel-light); font-size: 11px; cursor: pointer; }
.geo-presets { display: flex; gap: 7px; }
.geo-preset { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 6px; padding: 9px 7px; text-align: center; cursor: pointer; transition: border-color var(--transition); }
.geo-preset:hover { border-color: var(--border-m); }
.geo-icon { width: 22px; height: 22px; border-radius: 4px; background: rgba(69,123,157,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 5px; }
.geo-icon svg { width: 11px; height: 11px; stroke: var(--steel-light); fill: none; stroke-width: 1.5; }
.geo-name { font-size: 10px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.geo-desc { font-size: 9px; color: var(--muted-dim); line-height: 1.4; }
.flag-tabs { display: flex; gap: 2px; }
.flag-tab { padding: 3px 7px; border-radius: 4px; font-size: 9px; cursor: pointer; color: var(--muted-dim); }
.flag-tab.active { background: rgba(255,255,255,0.06); color: var(--white); }
.flag-item { display: flex; align-items: center; gap: 7px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.flag-item:last-child { border-bottom: none; }
.flag-status { padding: 2px 5px; border-radius: 3px; font-size: 9px; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.fs-confirmed { background: rgba(224,85,85,0.12); color: var(--danger); }
.fs-watch { background: rgba(245,166,35,0.1); color: var(--preview); }
.flag-name { font-size: 11px; color: var(--white); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.flag-id { font-size: 9px; color: var(--muted-dim); }
.full-data-desc { font-size: 11px; color: var(--muted-dim); line-height: 1.7; margin-bottom: 10px; }
.open-wind-btn { background: rgba(69,123,157,0.14); border: 1px solid rgba(69,123,157,0.25); color: var(--steel-light); border-radius: 5px; padding: 6px 11px; font-size: 10px; cursor: pointer; display: flex; align-items: center; gap: 5px; font-family: var(--font-body); width: fit-content; }
.open-wind-btn svg { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2; }

.platform-annotations { display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.annotation { flex: 1; min-width: 220px; display: flex; gap: 14px; align-items: flex-start; padding: 22px; background: var(--navy); border: 1px solid var(--border); border-radius: 10px; }
.annotation-dot { width: 9px; height: 9px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.annotation-title { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 5px; }
.annotation-body  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-section { background: var(--navy); }
.serve-tabs { display: flex; gap: 4px; margin-top: 48px; border-bottom: 1px solid var(--border); overflow-x: auto; }
.serve-tab { padding: 13px 24px; font-size: 16px; font-weight: 400; color: var(--steel-light); cursor: pointer; background: transparent; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--transition); white-space: nowrap; font-family: var(--font-body); }
.serve-tab:hover { color: var(--white); }
.serve-tab.active { color: var(--white); border-bottom-color: var(--steel); }

.serve-panel { display: none; }
.serve-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 44px 0; align-items: start; }

.serve-panel-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 14px; letter-spacing: -0.5px; }
.serve-panel-desc  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }

.serve-use-cases { display: flex; flex-direction: column; gap: 10px; }
.serve-use-case { padding: 16px 18px; background: var(--navy-deep); border: 1px solid var(--border); border-radius: 8px; transition: border-color var(--transition); }
.serve-use-case:hover { border-color: var(--border-m); }
.serve-use-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--steel-light); margin-bottom: 6px; }
.serve-use-desc  { font-size: 15px; color: var(--muted); line-height: 1.65; }

.serve-questions { display: flex; flex-direction: column; gap: 10px; }
.serve-q { padding: 18px; background: var(--navy-deep); border: 1px solid var(--border); border-radius: 8px; }
.serve-q-text   { font-size: 15px; font-style: italic; color: var(--muted); border-left: 2px solid var(--steel-dim); padding-left: 14px; margin-bottom: 10px; line-height: 1.65; }
.serve-q-answer { font-size: 14px; color: rgba(174,174,174,0.85); line-height: 1.75; }
.serve-q-stats { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.serve-q-stat { background: rgba(255,255,255,0.04); border-radius: 6px; padding: 8px 14px; text-align: center; }
.serve-q-stat-num   { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); }
.serve-q-stat-label { font-size: 11px; color: var(--muted-dim); margin-top: 3px; }

/* ============================================================
   AI AGENT
   ============================================================ */
.ai-section { background: var(--navy-deep); }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; align-items: start; }
.ai-intro { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }

.signal-table { width: 100%; border-collapse: collapse; }
.signal-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-dim); padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.signal-table td { font-size: 15px; color: var(--muted); padding: 9px 12px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.signal-table tr:hover td { background: rgba(255,255,255,0.02); }
.sig-domain { padding: 3px 8px; border-radius: 3px; font-size: 12px; font-weight: 500; }
.sig-op  { background: rgba(69,123,157,0.12); color: var(--steel-light); }
.sig-mkt { background: rgba(61,214,163,0.1);  color: var(--perform); }
.sig-fin { background: rgba(245,166,35,0.1);  color: var(--preview); }
.sig-dq  { background: rgba(255,100,100,0.1); color: #FF8A8A; }

.status-legend { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.status-pill { display: flex; align-items: center; gap: 7px; background: var(--navy); border: 1px solid var(--border); border-radius: 6px; padding: 6px 14px; font-size: 14px; color: var(--muted); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }

.watch-list { display: flex; flex-direction: column; gap: 8px; }
.watch-item { background: var(--navy); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; transition: border-color var(--transition); }
.watch-item:hover { border-color: var(--border-m); }
.watch-signal { font-size: 15px; color: var(--white); margin-bottom: 3px; }
.watch-domain { font-size: 12px; color: var(--muted-dim); }
.watch-right { display: flex; align-items: center; gap: 10px; }
.watch-status { padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 500; }
.ws-confirmed { background: rgba(224,85,85,0.12); color: var(--danger); }
.ws-indicative { background: rgba(245,166,35,0.12); color: var(--preview); }
.ws-watch      { background: rgba(69,123,157,0.12); color: var(--steel-light); }
.watch-value { font-family: var(--font-display); font-size: 16px; font-weight: 700; white-space: nowrap; min-width: 68px; text-align: right; }
.watch-note { margin-top: 14px; font-size: 14px; color: var(--muted-dim); line-height: 1.65; }

/* ============================================================
   30 PARAMETERS
   ============================================================ */
.params-section { background: var(--navy); }
.params-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 48px; }
.param-group { background: var(--navy-deep); padding: 22px; }
.param-group-title { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--steel-light); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.param-item { font-size: 14px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.03); display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.param-item:last-child { border-bottom: none; }
.param-check { color: var(--perform); font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { background: var(--navy-deep); }
.stage-ladder { display: flex; flex-direction: column; gap: 4px; margin-top: 52px; }
.stage-item { display: grid; grid-template-columns: 140px 1fr auto; gap: 24px; align-items: center; padding: 26px 30px; background: var(--navy); border: 1px solid var(--border); border-radius: 10px; transition: border-color var(--transition), transform var(--transition); }
.stage-item:hover { border-color: var(--border-m); transform: translateX(4px); }
.stage-num   { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-dim); margin-bottom: 3px; }
.stage-start { font-size: 12px; color: var(--muted-dim); margin-top: 4px; }
.stage-name       { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 5px; letter-spacing: -0.3px; }
.stage-descriptor { font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.stage-features { display: flex; flex-wrap: wrap; gap: 6px; }
.stage-feat { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 4px; padding: 4px 10px; font-size: 13px; color: var(--muted); }
.stage-badge { padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 500; white-space: nowrap; }
.badge-perform { background: rgba(61,214,163,0.1);  color: var(--perform);  border: 1px solid rgba(61,214,163,0.2); }
.badge-scada   { background: rgba(107,157,184,0.1); color: var(--scada);    border: 1px solid rgba(107,157,184,0.2); }
.badge-preview { background: rgba(245,166,35,0.1);  color: var(--preview);  border: 1px solid rgba(245,166,35,0.2); }
.badge-predict { background: rgba(123,108,246,0.1); color: var(--predict);  border: 1px solid rgba(123,108,246,0.2); }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage-section { background: var(--navy); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; }
.coverage-table { width: 100%; border-collapse: collapse; }
.coverage-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-dim); padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.coverage-table td { font-size: 15px; color: var(--muted); padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: top; }
.coverage-table tr:hover td { background: rgba(255,255,255,0.02); }
.cov-market  { color: var(--white); font-weight: 400; }
.cov-count   { font-family: var(--font-display); color: var(--white); font-size: 16px; }
.depth-full  { color: var(--perform);   font-size: 13px; }
.depth-basic { color: var(--muted-dim); font-size: 13px; }
.coverage-note { margin-top: 14px; font-size: 13px; color: var(--muted-dim); font-style: italic; line-height: 1.65; }

.zone-row { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.zone-pill { background: var(--navy-deep); border: 1px solid var(--border); border-radius: 5px; padding: 9px 14px; text-align: center; font-size: 12px; min-width: 58px; }
.zone-name  { color: var(--steel-light); font-weight: 500; }
.zone-label { color: var(--muted-dim); font-size: 11px; margin-top: 2px; }

.cov-stats { display: flex; flex-direction: column; gap: 18px; }
.cov-stat { background: var(--navy-deep); border: 1px solid var(--border); border-radius: 10px; padding: 24px; transition: border-color var(--transition); }
.cov-stat:hover { border-color: var(--border-m); }
.cov-stat-num  { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.cov-stat-unit { font-size: 15px; color: var(--muted-dim); margin-top: 4px; }
.cov-stat-desc { font-size: 15px; color: var(--muted); margin-top: 10px; line-height: 1.65; }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: var(--navy-deep); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.team-card { background: var(--navy); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: border-color var(--transition), transform var(--transition); }
.team-card:hover { border-color: var(--border-m); transform: translateY(-3px); }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--navy-mid); border: 1px solid var(--border-m); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--steel-light); margin-bottom: 18px; }
.team-name  { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.team-title { font-size: 12px; color: var(--steel-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.team-bio   { font-size: 15px; color: var(--muted); line-height: 1.7; }
.team-pedigree { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 16px; }
.pedigree-tag { background: rgba(69,123,157,0.08); border: 1px solid rgba(69,123,157,0.15); border-radius: 4px; padding: 3px 8px; font-size: 12px; color: var(--steel-light); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { background: var(--navy); padding: 96px 56px; }
.cta-inner { background: var(--navy-deep); border: 1px solid var(--border); border-radius: 16px; padding: 64px 56px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; overflow: hidden; max-width: 1160px; margin: 0 auto; }
.cta-glow { position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(69,123,157,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-title { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white); letter-spacing: -1px; margin-bottom: 12px; }
.cta-sub   { font-size: 17px; color: var(--muted); max-width: 420px; line-height: 1.8; }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.cta-email { font-size: 15px; color: var(--muted); text-decoration: none; text-align: center; padding: 6px; transition: color var(--transition); }
.cta-email:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy-deep); border-top: 1px solid var(--border); padding: 36px 56px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo  { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 15px; color: var(--muted); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-copy  { font-size: 13px; color: var(--muted-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--navy-deep); border-bottom: 1px solid var(--border); padding: 20px 28px; gap: 16px; z-index: 199; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 28px; }
  .hero { padding: 100px 28px 60px; }
  .what-grid, .serve-panel.active, .ai-grid, .coverage-grid, .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .params-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stage-item { grid-template-columns: 1fr; gap: 14px; }
  .stage-badge { width: fit-content; }
  .cta-inner { padding: 40px 28px; }
  .cta-buttons { flex-direction: row; flex-wrap: wrap; }
  footer { padding: 28px; }
  .dash-layout { grid-template-columns: 110px 1fr; }
}

@media (max-width: 600px) {
  section { padding: 48px 20px; }
  .params-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .platform-annotations { flex-direction: column; }
  .dash-layout { display: none; }
  .dash-mobile-note { display: flex !important; }
}

.dash-mobile-note {
  display: none; padding: 32px; background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: 12px; margin-top: 52px; align-items: center; justify-content: center;
  text-align: center; flex-direction: column; gap: 12px; font-size: 17px; color: var(--muted);
}
