/* ══════════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* -- DARK MODE (default) -- medium-depth navy -- */
:root {
  --bg:    #1E2B40;
  --bg1:   #243352;
  --surf:  #2A3D60;
  --surf2: #304A72;
  --blue:  #2563EB;
  --blu2:  #4F8EFF;
  --teal:  #06B6D4;
  --text:  #EDF2FF;
  --mute:  #90A8C8;
  --bdr:   rgba(255,255,255,0.12);
  --bdr2:  rgba(255,255,255,0.22);
  --r:     14px;
  --head:  'Outfit', sans-serif;
  --body:  'Inter', sans-serif;
  /* Component tokens */
  --ico-bg:        rgba(255,255,255,0.07);
  --ico-bd:        rgba(255,255,255,0.11);
  --feat-grad:     linear-gradient(135deg, #1C3868 0%, #152650 100%);
  --feat-border:   rgba(37,99,235,0.30);
  --stats-grad:    linear-gradient(130deg, #1E3E7A 0%, #132244 50%, #192E62 100%);
  --stats-sub:     rgba(255,255,255,0.45);
  --cta-grad:      linear-gradient(125deg, #1C3468 0%, #0F2040 55%, #152848 100%);
  --cta-sub:       rgba(255,255,255,0.60);
  --cta-call-c:    rgba(255,255,255,0.50);
  --navbar-scroll: rgba(30,43,64,0.94);
  --toggle-bg:     rgba(255,255,255,0.10);
  --toggle-bd:     rgba(255,255,255,0.18);
}

/* -- LIGHT MODE -- */
[data-theme="light"] {
  --bg:    #F5F7FA;
  --bg1:   #EBF0F8;
  --surf:  #FFFFFF;
  --surf2: #EEF3FF;
  --blue:  #2563EB;
  --blu2:  #3B82F6;
  --teal:  #0891B2;
  --text:  #0D1829;
  --mute:  #4B6080;
  --bdr:   rgba(0,0,0,0.08);
  --bdr2:  rgba(0,0,0,0.14);
  --ico-bg:        rgba(37,99,235,0.07);
  --ico-bd:        rgba(37,99,235,0.14);
  --feat-grad:     linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  --feat-border:   rgba(37,99,235,0.25);
  --stats-grad:    linear-gradient(130deg, #1D4ED8 0%, #1E40AF 50%, #2563EB 100%);
  --stats-sub:     rgba(255,255,255,0.70);
  --cta-grad:      linear-gradient(125deg, #1D4ED8 0%, #1A3FAF 55%, #2563EB 100%);
  --cta-sub:       rgba(255,255,255,0.85);
  --cta-call-c:    rgba(255,255,255,0.80);
  --navbar-scroll: rgba(245,247,250,0.97);
  --toggle-bg:     rgba(0,0,0,0.05);
  --toggle-bd:     rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
h1, h2, h3, h4 {
  font-family: var(--head);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section-p { padding: 100px 0; }

/* ══════════════════════════════════════════
   CURSOR GLOW  (starts off-screen)
══════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  left: -9999px; top: -9999px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: left 0.1s ease, top 0.1s ease;
}
[data-theme="light"] .cursor-glow {
  background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 65%);
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.sec-hd { text-align: center; margin-bottom: 64px; }
.sec-hd h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; margin-bottom: 14px;
}
.sec-hd > p { color: var(--mute); max-width: 520px; margin: 0 auto; }

.grad-text {
  background: linear-gradient(110deg, #60A5FA 0%, #06B6D4 50%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-p, .btn-g, .btn-white, .btn-submit {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: 0.93rem;
  border: none; cursor: pointer; border-radius: 9px; padding: 13px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-p { background: var(--blue); color: #fff; }
.btn-p:hover { background: var(--blu2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,0.35); }
.btn-g { background: rgba(255,255,255,0.07); color: var(--text); border: 1px solid var(--bdr2); }
.btn-g:hover { background: rgba(255,255,255,0.12); }
.btn-white { background: #fff; color: #06101E; font-weight: 700; }
.btn-white:hover { background: #ddeeff; transform: translateY(-2px); }
.btn-submit { background: var(--blue); color: #fff; width: 100%; justify-content: center; padding: 14px; }
.btn-submit:hover { background: var(--blu2); box-shadow: 0 10px 28px rgba(37,99,235,0.3); }

[data-theme="light"] .btn-g {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.13);
  color: var(--text);
}
[data-theme="light"] .btn-g:hover { background: rgba(0,0,0,0.08); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, padding 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: var(--navbar-scroll);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--bdr);
  padding: 12px 0;
}
[data-theme="light"] .navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }

/* Icon mark — gradient tile with SVG network-V */
.logo-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--blue) 0%, var(--teal) 100%);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(37,99,235,0.38);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.logo:hover .logo-icon {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.48);
}

/* Wordmark stack */
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-wordmark {
  font-family: var(--head); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.1em; line-height: 1; color: var(--text);
  transition: color 0.3s;
}
.logo-sub {
  font-family: var(--body); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.18em; line-height: 1; color: var(--teal);
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 15px; border-radius: 7px;
  font-size: 0.88rem; font-weight: 500; color: var(--mute);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surf); }
.nav-cta {
  background: var(--blue) !important;
  color: #fff !important; font-weight: 600 !important; margin-left: 6px;
}
.nav-cta:hover { background: var(--blu2) !important; }

/* Theme toggle button */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--toggle-bg);
  border: 1px solid var(--toggle-bd);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer; font-size: 0.88rem; flex-shrink: 0;
  transition: background 0.2s, transform 0.3s, border-color 0.2s;
  margin-left: 8px;
}
.theme-toggle:hover {
  background: var(--surf);
  transform: rotate(22deg);
}

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--bg1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

#heroCanvas {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}
[data-theme="light"] #heroCanvas { opacity: 0.22; }

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(37,99,235,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 10%, rgba(6,182,212,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(129,140,248,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.3s ease;
}
[data-theme="light"] .hero::before {
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(37,99,235,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 10%, rgba(6,182,212,0.04) 0%, transparent 60%);
}

/* -- Centered headline block -- */
.hero-top {
  position: relative; z-index: 1;
  text-align: center;
  padding: 130px 28px 48px;
  max-width: 1160px;
  margin: 0 auto; width: 100%;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em;
  background: rgba(37,99,235,0.10); border: 1px solid rgba(37,99,235,0.25);
  color: #93B4FF; padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
[data-theme="light"] .hero-tag {
  background: rgba(37,99,235,0.07);
  border-color: rgba(37,99,235,0.20);
  color: #1D4ED8;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ADE80;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero-top h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  white-space: nowrap;
}
.hero-top > p {
  font-size: 1.05rem; color: var(--mute);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.trust-row span {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: var(--mute); font-weight: 500;
}
.trust-row i { color: var(--teal); font-size: 0.82rem; }

/* -- Dashboard panel (below headline) -- */
.hero-dashboard {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  padding: 0 28px 60px; width: 100%;
}

/* Screen-glow under the dashboard */
.hero-dashboard::before {
  content: '';
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 180px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.14) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}

/* NOC window + side cards in a grid */
.hero-dash-grid {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 14px;
  margin-bottom: 14px;
}

/* NOC Window — stays dark in both themes (it's a real screen) */
.noc-win {
  background: rgba(8,15,32,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(37,99,235,0.08);
}
.noc-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
}
.noc-bar i { color: var(--teal); }
.noc-live {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; color: #4ADE80; font-weight: 700; letter-spacing: 0.06em;
}
.noc-live .live-dot { width: 6px; height: 6px; }
.win-dots { display: flex; gap: 6px; }
.wd { width: 11px; height: 11px; border-radius: 50%; }
.wd.r { background: #FF5F56; }
.wd.y { background: #FFBD2E; }
.wd.g { background: #27C93F; }

.noc-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.noc-m-row { display: flex; justify-content: space-between; align-items: center; }
.noc-lbl { font-size: 0.73rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.noc-val { font-size: 0.85rem; font-weight: 700; color: #fff; }
.noc-val.ok     { color: #4ADE80; }
.noc-val.danger { color: #F87171; }
.noc-prog { height: 5px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.noc-fill { height: 100%; background: linear-gradient(90deg, #4ADE80, #06B6D4); border-radius: 4px; }
.noc-fill.blue  { background: linear-gradient(90deg, var(--blue), var(--teal)); }

.noc-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.noc-kpi {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px; padding: 12px 8px; text-align: center;
}
.kn { font-family: var(--head); font-size: 1.2rem; font-weight: 800; margin-bottom: 3px; color: #fff; }
.kn.ok     { color: #4ADE80; }
.kn.danger { color: #F87171; }
.kl { font-size: 0.63rem; color: rgba(255,255,255,0.35); font-weight: 500; }

.noc-statuses { display: flex; flex-direction: column; gap: 6px; }
.ns {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.73rem; font-weight: 500; padding: 8px 12px; border-radius: 7px;
}
.ns.ok   { background: rgba(74,222,128,0.08);  color: #4ADE80; border: 1px solid rgba(74,222,128,0.15); }
.ns.info { background: rgba(37,99,235,0.08);   color: #93B4FF; border: 1px solid rgba(37,99,235,0.15); }

/* -- Side intelligence cards -- */
.hd-side { display: flex; flex-direction: column; gap: 12px; }

.hd-card {
  background: rgba(8,15,32,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; padding: 16px 18px;
  flex: 1; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hdc-top { display: flex; align-items: flex-start; gap: 11px; }
.hdc-ico {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 0.85rem;
}
.hdc-ico.danger-ico { background: rgba(248,113,113,0.15); border: 1px solid rgba(248,113,113,0.2); color: #F87171; }
.hdc-ico.ok-ico     { background: rgba(74,222,128,0.12);  border: 1px solid rgba(74,222,128,0.2);  color: #4ADE80; }
.hdc-ico.info-ico   { background: rgba(79,142,255,0.12);  border: 1px solid rgba(79,142,255,0.2);  color: #4F8EFF; }

.hdc-label { font-size: 0.63rem; color: rgba(255,255,255,0.35); font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 3px; }
.hdc-val { font-size: 1rem; font-weight: 800; color: #fff; font-family: var(--head); line-height: 1.1; }
.hdc-val span { font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.hdc-val.ok { color: #4ADE80; }
.hdc-val.danger { color: #F87171; }

/* Threat bars */
.hdc-bars { display: flex; flex-direction: column; gap: 7px; }
.hdc-row { display: flex; align-items: center; gap: 7px; font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.hdc-row > span:first-child { width: 42px; text-align: right; flex-shrink: 0; }
.hdc-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.hdc-fill { height: 100%; border-radius: 2px; }
.hdc-n { width: 26px; text-align: right; flex-shrink: 0; }

/* SLA mini stats */
.hdc-stats-row { display: flex; gap: 7px; }
.hdc-mini {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 9px 6px; text-align: center;
}
.hdc-mini-n { font-family: var(--head); font-size: 0.88rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.hdc-mini-n.ok { color: #4ADE80; }
.hdc-mini-l { font-size: 0.58rem; color: rgba(255,255,255,0.3); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* Engineer row */
.hdc-eng-row { display: flex; gap: 8px; }
.hdc-eng {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.5);
  flex: 1;
}
.eng-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,0.5), rgba(6,182,212,0.5));
  border: 2px solid rgba(74,222,128,0.5);
  position: relative;
}
.eng-dot::after {
  content: '';
  position: absolute; bottom: 1px; right: 1px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ADE80; border: 1.5px solid rgba(8,15,32,0.9);
}

/* -- KPI strip -- */
.hd-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
}
.hd-kpi {
  background: rgba(8,15,32,0.88);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 13px;
}
.hd-kpi-ico {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.25);
  display: grid; place-items: center;
  color: var(--teal); font-size: 0.95rem;
}
.hd-kpi strong { display: block; font-family: var(--head); font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.1; }
.hd-kpi span { font-size: 0.68rem; color: rgba(255,255,255,0.38); font-weight: 500; }

/* ══════════════════════════════════════════
   SERVICES  —  BENTO GRID (auto-placement)
══════════════════════════════════════════ */
.services { background: var(--bg); transition: background 0.3s ease; }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: auto;
}

/* Wide cards span 2 columns */
.sv1 { grid-column: span 2; }
.sv4 { grid-column: span 2; }
.sv8 { grid-column: span 2; }

.bc {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.3s;
}
.bc::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.bc:hover {
  border-color: rgba(37,99,235,0.30);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}
.bc:hover::after { transform: scaleX(1); }
[data-theme="light"] .bc {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
[data-theme="light"] .bc:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: rgba(37,99,235,0.25);
}

/* Featured card (IT Consulting) */
.bc.featured {
  background: var(--feat-grad);
  border-color: var(--feat-border);
  min-height: 320px;
}

/* Wide card horizontal layout */
.bc-wide-inner {
  display: flex; align-items: flex-start; gap: 18px;
}
.bc-wide-inner .bc-ico { flex-shrink: 0; }

/* Icon containers */
.bc-ico {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--ico-bg);
  border: 1px solid var(--ico-bd);
  display: grid; place-items: center;
  font-size: 1.25rem; color: var(--c, #3B82F6);
  flex-shrink: 0; margin-bottom: 4px;
  transition: background 0.3s, border-color 0.3s;
}
.bc-tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  color: #93B4FF; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}
[data-theme="light"] .bc-tag {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.20);
  color: #1D4ED8;
}
.bc h3 { font-size: 1.05rem; font-weight: 700; }
.bc > p, .bc-wide-inner p { font-size: 0.86rem; color: var(--mute); line-height: 1.65; flex: 1; }
.bc-list {
  list-style: none; display: flex; flex-direction: column; gap: 5px; margin: 4px 0;
}
.bc-list li {
  font-size: 0.8rem; color: var(--mute);
  padding-left: 14px; position: relative;
}
.bc-list li::before { content: '->'; position: absolute; left: 0; color: var(--blue); font-size: 0.7rem; }
.bc-lnk {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--blu2);
  margin-top: 4px; transition: gap 0.2s;
}
.bc-lnk:hover { gap: 10px; }

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.stats-band {
  position: relative; overflow: hidden;
  background: var(--stats-grad);
  padding: 80px 0;
  transition: background 0.3s ease;
}
.sb-deco {
  position: absolute; right: -60px; top: -40px;
  font-family: var(--head);
  font-size: clamp(10rem, 18vw, 20rem);
  font-weight: 900; color: rgba(255,255,255,0.025);
  line-height: 1; pointer-events: none; user-select: none;
}
.sb-row {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.sb-item {
  flex: 1; text-align: center; padding: 16px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.sb-n {
  font-family: var(--head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900; color: #fff; line-height: 1;
}
.sb-u {
  font-family: var(--head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: rgba(255,255,255,0.75);
}
.sb-item p {
  font-size: 0.73rem; color: var(--stats-sub);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.sb-sep { width: 1px; height: 64px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--bg1); transition: background 0.3s ease; }
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.ab-lead { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 14px; }
.ab-body { font-size: 0.875rem; color: var(--mute); line-height: 1.75; margin-bottom: 30px; }
.ab-checks { display: flex; flex-direction: column; gap: 18px; margin-bottom: 34px; }
.ab-check { display: flex; align-items: flex-start; gap: 14px; }
.ab-check > i {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  background: rgba(37,99,235,0.15); border-radius: 50%;
  display: grid; place-items: center; color: var(--blu2); font-size: 0.65rem;
}
.ab-check strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.ab-check p { font-size: 0.82rem; color: var(--mute); line-height: 1.6; }

/* Terminal window — always dark, it's a screen */
.about-terminal { display: flex; flex-direction: column; gap: 14px; }
.terminal {
  background: #020813;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.term-bar {
  background: #0B1120; border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
}
.term-dots { display: flex; gap: 6px; }
.td { width: 11px; height: 11px; border-radius: 50%; }
.td.r { background: #FF5F56; }
.td.y { background: #FFBD2E; }
.td.g { background: #27C93F; }
.term-title { font-size: 0.73rem; color: rgba(255,255,255,0.35); font-weight: 600; letter-spacing: 0.05em; }
.term-body {
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 5px;
  font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 1.6;
}
.tl { color: rgba(255,255,255,0.45); }
.t-pr   { color: #4ADE80; margin-right: 8px; font-weight: 700; }
.t-ok   { color: #4ADE80; margin-right: 6px; font-weight: 700; }
.t-info { color: #FBBF24; margin-right: 6px; font-weight: 700; }
.t-cur {
  display: inline-block; width: 8px; height: 14px;
  background: var(--teal); vertical-align: middle; margin-left: 3px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.term-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.term-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--surf); border: 1px solid var(--bdr2);
  border-radius: 100px; padding: 7px 15px;
  font-size: 0.79rem; font-weight: 600;
  transition: background 0.3s, border-color 0.3s;
}
.term-badge i { color: var(--teal); font-size: 0.8rem; }

/* ══════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════ */
.industries { background: var(--bg); transition: background 0.3s ease; }
.ind-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--bdr); border-radius: var(--r); overflow: hidden;
}
.ind-item {
  background: var(--surf); padding: 32px 28px;
  display: grid; grid-template-columns: 44px 50px 1fr;
  gap: 18px; align-items: start;
  border-left: 3px solid var(--ic, var(--blue));
  transition: background 0.2s;
}
.ind-item:hover { background: var(--surf2); }
[data-theme="light"] .ind-item { box-shadow: none; }
.ind-n {
  font-family: var(--head); font-size: 1rem; font-weight: 900;
  color: var(--ic, var(--blue)); opacity: 0.55; line-height: 1; padding-top: 4px;
}
.ind-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--ico-bg);
  border: 1px solid var(--ico-bd);
  display: grid; place-items: center;
  font-size: 1.15rem; color: var(--ic, var(--blue));
  transition: background 0.3s, border-color 0.3s;
}
.ind-txt h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.ind-txt p  { font-size: 0.835rem; color: var(--mute); line-height: 1.65; }

/* ══════════════════════════════════════════
   WHY VANTAGE  —  ZIGZAG
══════════════════════════════════════════ */
.why { background: var(--bg1); transition: background 0.3s ease; }
.why-track { display: flex; flex-direction: column; gap: 8px; }

.why-row {
  display: flex; align-items: center; gap: 24px;
  width: 62%; padding: 28px 32px;
  background: var(--surf); border-radius: var(--r);
  border-left: 3px solid var(--blue);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.3s, box-shadow 0.25s;
}
.why-row:hover { transform: translateX(8px); border-color: var(--teal); }
[data-theme="light"] .why-row { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
[data-theme="light"] .why-row:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }

.why-row.alt {
  flex-direction: row-reverse;
  margin-left: auto;
  border-left: none; border-right: 3px solid var(--blue);
  text-align: right;
}
.why-row.alt:hover { transform: translateX(-8px); border-color: var(--teal); }

.why-n {
  font-family: var(--head); font-size: 1.8rem; font-weight: 900;
  color: rgba(37,99,235,0.2); line-height: 1; flex-shrink: 0; width: 48px;
}
.why-ico {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: rgba(37,99,235,0.10); border: 1px solid rgba(37,99,235,0.20);
  display: grid; place-items: center;
  font-size: 1.1rem; color: var(--blu2);
  transition: background 0.3s, border-color 0.3s;
}
[data-theme="light"] .why-ico {
  background: rgba(37,99,235,0.07);
  border-color: rgba(37,99,235,0.14);
}
.why-txt h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.why-txt p  { font-size: 0.845rem; color: var(--mute); line-height: 1.6; }

/* ══════════════════════════════════════════
   VENDORS  —  DUAL MARQUEE
══════════════════════════════════════════ */
.vendors { background: var(--bg); transition: background 0.3s ease; }
.marquee-wrap {
  overflow: hidden; margin: 0 0 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.mq-row { overflow: hidden; padding: 8px 0; }
.mq-track {
  display: flex; width: max-content;
  animation: mqLeft 30s linear infinite;
}
.mq-track.rev { animation: mqRight 30s linear infinite; }
.mq-track span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 28px; font-size: 0.88rem; font-weight: 600;
  color: var(--mute); white-space: nowrap;
  border-right: 1px solid var(--bdr);
  transition: color 0.2s;
}
.mq-track span:hover { color: var(--text); }
.mq-track span i { color: var(--blue); font-size: 0.5rem; }
@keyframes mqLeft  { to   { transform: translateX(-50%); } }
@keyframes mqRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.vnd-note {
  text-align: center; color: var(--mute); font-size: 0.875rem;
  padding: 16px 24px; background: var(--surf);
  border-radius: 10px; border: 1px solid var(--bdr);
  transition: background 0.3s, border-color 0.3s;
}
.vnd-note a { color: var(--blu2); font-weight: 600; }
.vnd-note a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════════ */
.testi { background: var(--bg1); transition: background 0.3s ease; }
.testi-card {
  max-width: 780px; margin: 0 auto;
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: 20px; padding: 52px; text-align: center;
  position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
[data-theme="light"] .testi-card {
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
}
.testi-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,0.07), transparent 60%);
  pointer-events: none;
}
.testi-q { font-size: 3rem; color: rgba(37,99,235,0.25); margin-bottom: 24px; line-height: 1; }
.testi-txt { font-size: 1.08rem; line-height: 1.8; margin-bottom: 32px; font-style: italic; }
.testi-who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: grid; place-items: center;
  font-family: var(--head); font-weight: 700; color: #fff;
}
.testi-who strong { display: block; font-size: 0.95rem; font-weight: 700; }
.testi-who span   { font-size: 0.8rem; color: var(--mute); }
.testi-who > div  { text-align: left; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: var(--cta-grad);
  border-top: 1px solid rgba(37,99,235,0.25);
  border-bottom: 1px solid rgba(37,99,235,0.25);
  padding: 96px 0; position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.cta-section::before {
  content: '';
  position: absolute; width: 600px; height: 500px;
  top: -200px; left: -100px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-wrap h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 10px; color: #fff; }
.cta-wrap p  { color: var(--cta-sub); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }
.cta-call {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--cta-call-c);
  transition: color 0.2s;
}
.cta-call:hover { color: #fff; }
.cta-call i { color: var(--teal); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { background: var(--bg); transition: background 0.3s ease; }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 72px; align-items: start;
}
.contact-info h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.contact-info > p { color: var(--mute); margin-bottom: 36px; }
.ci-list { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; align-items: flex-start; gap: 15px; }
.ci-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--surf2); border: 1px solid var(--bdr2);
  border-radius: 10px; display: grid; place-items: center;
  color: var(--blue); font-size: 0.95rem;
  transition: background 0.3s, border-color 0.3s;
}
.ci-item strong { display: block; font-size: 0.87rem; font-weight: 700; margin-bottom: 3px; }
.ci-item span   { font-size: 0.82rem; color: var(--mute); }

.contact-form {
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: 16px; padding: 38px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
[data-theme="light"] .contact-form {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-g { display: flex; flex-direction: column; gap: 7px; }
.cf-g label { font-size: 0.79rem; font-weight: 600; color: var(--mute); }
.cf-g input, .cf-g select, .cf-g textarea {
  background: var(--bg1); border: 1px solid var(--bdr2);
  border-radius: 8px; padding: 11px 14px;
  color: var(--text); font-family: var(--body); font-size: 0.87rem;
  outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.3s;
}
.cf-g input::placeholder, .cf-g textarea::placeholder { color: rgba(100,116,139,0.5); }
.cf-g input:focus, .cf-g select:focus, .cf-g textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.13);
}
.cf-g select option { background: var(--surf); color: var(--text); }
.cf-g textarea { resize: vertical; min-height: 108px; }
.form-ok {
  display: flex; align-items: center; gap: 9px;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.87rem; color: #4ADE80;
}
/* -- TURNSTILE CAPTCHA -- */
.cf-captcha { display: flex; align-items: center; }
.cf-captcha iframe { border-radius: 6px; }

/* -- FORMSPREE field errors -- */
.cf-err {
  font-size: 0.73rem; font-weight: 500; color: #F87171; display: block;
}
.cf-err:empty { display: none; }
.cf-g input[aria-invalid="true"],
.cf-g textarea[aria-invalid="true"] {
  border-color: rgba(248,113,113,0.55);
  box-shadow: 0 0 0 3px rgba(248,113,113,0.10);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--bg1); border-top: 1px solid var(--bdr); transition: background 0.3s ease; }
.ft-top {
  display: grid; grid-template-columns: 1.3fr 2fr;
  gap: 80px; padding: 60px 0;
}
.ft-brand p {
  margin-top: 14px; font-size: 0.84rem; color: var(--mute);
  max-width: 280px; line-height: 1.7;
}
.ft-social { display: flex; gap: 9px; margin-top: 20px; }
.ft-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surf); border: 1px solid var(--bdr);
  display: grid; place-items: center;
  font-size: 0.85rem; color: var(--mute);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ft-social a:hover { color: var(--text); border-color: var(--bdr2); background: var(--surf2); }
.ft-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-col strong {
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px;
}
.fl-col a { font-size: 0.84rem; color: var(--mute); transition: color 0.2s; }
.fl-col a:hover { color: var(--text); }
.ft-bottom { border-top: 1px solid var(--bdr); }
.ft-btm-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: 0.77rem; color: var(--mute);
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Hero: dashboard stacks — NOC on top, side cards in a row below */
  .hero-top { padding: 110px 24px 40px; }
  .hero-top h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); white-space: normal; }
  .hero-dashboard { padding: 0 24px 52px; }
  .hero-dash-grid { grid-template-columns: 1fr; }
  .hd-side { flex-direction: row; }
  .hd-strip { grid-template-columns: repeat(2,1fr); }
  .bento { grid-template-columns: repeat(2,1fr); }
  .sv1 { grid-column: span 2; }
  .sv4 { grid-column: span 2; }
  .sv8 { grid-column: span 2; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .ind-grid { grid-template-columns: 1fr; }
  .why-row { width: 80%; }
  .ft-top { grid-template-columns: 1fr; gap: 40px; }
  .cta-wrap { flex-direction: column; align-items: flex-start; }
  .cta-actions { align-items: flex-start; }
}

@media (max-width: 768px) {
  .section-p { padding: 64px 0; }
  .container { padding: 0 18px; }

  /* Nav */
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--bg); flex-direction: column;
    align-items: center; justify-content: center;
    gap: 20px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; padding: 12px 24px; }
  .burger { display: flex; }
  .theme-toggle { margin-left: 4px; }

  /* Hero */
  .hero-top { padding: 96px 18px 36px; }
  .hero-top h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); white-space: normal; letter-spacing: -0.02em; }
  .hero-top > p { font-size: 0.95rem; }
  .hero-dashboard { padding: 0 18px 48px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-p, .hero-btns .btn-g { width: 100%; justify-content: center; max-width: 320px; }
  .trust-row { gap: 12px; }
  /* Dashboard: hide side cards on mobile, keep NOC + strip */
  .hd-side { display: none; }
  .hero-dash-grid { grid-template-columns: 1fr; }

  /* Services bento */
  .bento { grid-template-columns: 1fr; }
  .sv1, .sv4, .sv8 { grid-column: span 1; }
  .bc-wide-inner { flex-direction: column; }
  .bc.featured { min-height: unset; }

  /* Stats */
  .sb-row { flex-wrap: wrap; }
  .sb-sep { display: none; }
  .sb-item { flex: 0 0 50%; }
  .stats-band { padding: 60px 0; }

  /* About terminal */
  .term-body { font-size: 0.75rem; padding: 16px; overflow-x: auto; }
  .term-badges { gap: 8px; }

  /* Industries */
  .ind-item { grid-template-columns: 46px 1fr; gap: 14px; }
  .ind-n { display: none; }

  /* Why */
  .why-row, .why-row.alt { width: 100%; margin-left: 0; }
  .why-row.alt {
    border-left: 3px solid var(--blue); border-right: none;
    text-align: left; flex-direction: row;
  }
  .why-row.alt:hover { transform: translateX(8px); }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }

  /* Testimonial */
  .testi-card { padding: 32px 20px; }
  .testi-txt { font-size: 0.96rem; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-wrap { gap: 28px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn-white { width: 100%; justify-content: center; }

  /* Footer */
  .ft-top { padding: 44px 0; }
  .ft-links { grid-template-columns: repeat(2,1fr); }
  .ft-btm-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* Sec headings */
  .sec-hd { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-top { padding: 88px 16px 32px; }
  .hero-dashboard { padding: 0 16px 44px; }
  .hero-top h1 { font-size: clamp(1.7rem, 8vw, 2.1rem); }

  /* Stats: 1-per-row */
  .sb-item { flex: 0 0 100%; }
  .sb-n { font-size: 3.2rem; }

  /* Footer links: 1-col */
  .ft-links { grid-template-columns: 1fr; }

  /* Why: stack vertically */
  .why-row, .why-row.alt {
    flex-direction: column; align-items: flex-start;
    gap: 12px; text-align: left;
    border-left: 3px solid var(--blue); border-right: none;
  }
  .why-row.alt:hover { transform: translateX(8px); }
  .why-n { width: auto; }

  /* Industries */
  .ind-item { padding: 22px 18px; }

  /* Bento cards */
  .bc { padding: 22px 18px; }

  /* CTA */
  .cta-call { font-size: 0.83rem; }
}
