/* ─── SGI shared stylesheet ─────────────────────────────────────────
   Used by: index, capabilities, products, about, contact
   ───────────────────────────────────────────────────────────────── */

:root {
  --bg: #07101f;
  --bg-2: #0a1628;
  --panel: #0f1c30;
  --panel-2: #142340;
  --line: #1f2f4a;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --dim: #64748b;
  --cyan-1: #67e8f9;
  --cyan-2: #22d3ee;
  --cyan-3: #0891b2;
  --silver: #cbd5e1;
  --warm: #facc15;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Inter", "Plus Jakarta Sans", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: var(--cyan-2); text-decoration: none; }
a:hover { color: var(--cyan-1); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan-2); }

/* ─── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,16,31,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
nav .inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; max-width: 1200px; margin: 0 auto; }
nav .logo img { height: 44px; display: block; }
nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
nav ul a { color: var(--silver); font-size: 14px; font-weight: 600; letter-spacing: .3px; padding: 6px 0; position: relative; }
nav ul a:hover { color: var(--cyan-1); }
nav ul a.active { color: var(--cyan-2); }
nav ul a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -19px; height: 2px; background: var(--cyan-2); }
nav .cta { background: linear-gradient(135deg, var(--cyan-2), var(--cyan-3)); color: white; padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 13px; transition: all .15s; }
nav .cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(34,211,238,.4); color: white; }
@media (max-width: 820px) { nav ul { display: none; } }

/* ─── PAGE HERO (smaller than homepage hero) ──────────────────────── */
.page-hero { padding: 70px 0 50px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(34,211,238,.12), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(8,145,178,.10), transparent 55%);
  pointer-events: none;
}
.page-hero .inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: 52px; line-height: 1.08; font-weight: 900; letter-spacing: -1.5px; color: white; margin: 14px 0 18px; }
.page-hero h1 .accent { background: linear-gradient(135deg, var(--cyan-1), var(--cyan-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero .lede { font-size: 19px; color: var(--silver); max-width: 680px; margin: 0 auto; line-height: 1.55; }
@media (max-width: 640px) { .page-hero h1 { font-size: 36px; } }

/* ─── SECTION GENERIC ─────────────────────────────────────────────── */
section { padding: 70px 0; position: relative; }
section h2 { font-size: 36px; font-weight: 900; line-height: 1.1; letter-spacing: -.6px; color: white; margin: 12px 0 18px; max-width: 720px; }
section h2 .accent { background: linear-gradient(135deg, var(--cyan-1), var(--cyan-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
section h3 { font-size: 22px; font-weight: 800; color: white; margin: 0 0 10px; letter-spacing: -.2px; }
section .deck { font-size: 17px; color: var(--silver); line-height: 1.55; max-width: 680px; margin: 0 0 50px; }

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary, .btn-secondary {
  padding: 13px 24px; border-radius: 10px; font-weight: 700; font-size: 14px;
  transition: all .15s; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg, var(--cyan-2), var(--cyan-3)); color: white; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(34,211,238,.35); color: white; }
.btn-secondary { background: transparent; color: var(--silver); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--cyan-2); color: var(--cyan-1); }

/* ─── CARDS ───────────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.feature-card {
  position: relative; padding: 32px 26px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; transition: all .25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--cyan-2); box-shadow: 0 16px 40px rgba(34,211,238,.15); }
.feature-card .icon { width: 64px; height: 64px; margin-bottom: 18px; }
.feature-card h3 { font-size: 18px; margin: 0 0 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }
.feature-card::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, transparent, var(--cyan-2), transparent); opacity: 0; transition: opacity .25s; border-radius: 0 16px 16px 0; }
.feature-card:hover::after { opacity: 1; }

/* ─── CTA STRIP ───────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--cyan-3), #075985);
  padding: 50px 36px; border-radius: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: 0 30px 80px rgba(8,145,178,.3);
  margin: 40px 0;
}
.cta-strip h3 { font-size: 24px; font-weight: 900; color: white; margin: 0 0 6px; }
.cta-strip p { color: rgba(255,255,255,.85); margin: 0; font-size: 14px; }
.cta-strip a { background: white; color: var(--cyan-3); padding: 14px 26px; border-radius: 10px; font-weight: 800; font-size: 14px; white-space: nowrap; }
.cta-strip a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
footer { background: #050a15; padding: 50px 0 26px; border-top: 1px solid var(--line); }
footer .inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
@media (max-width: 760px) { footer .inner { grid-template-columns: 1fr; } }
footer h4 { color: white; font-size: 13px; font-weight: 800; letter-spacing: .5px; margin: 0 0 14px; text-transform: uppercase; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 8px; font-size: 14px; color: var(--muted); }
footer ul a { color: var(--muted); }
footer ul a:hover { color: var(--cyan-1); }
footer .tagline { color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 380px; }
footer .credit { text-align: center; font-size: 12px; color: var(--dim); padding-top: 20px; border-top: 1px solid var(--line); }
footer .powered { background: linear-gradient(135deg,#6b3bff,#d97706); color:white; padding:3px 10px; border-radius:999px; font-size:10px; font-weight:800; letter-spacing:1.2px; text-transform:uppercase; }
