/* ============================================================
   Ever-Watchful Guardian — Site Stylesheet
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&family=Share+Tech+Mono&family=Rajdhani:wght@300;400;500;600;700&display=swap");

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --bg: #04060f;
  --bg2: #070b18;
  --panel: #0a1020;
  --panel2: #0d1528;
  --border: #162038;
  --border2: #1e3060;
  --accent: #00d4ff;
  --accent2: #ff4060;
  --accent3: #7fff00;
  --gold: #ffcc44;
  --text: #ddebff;
  --muted: #9cc8fa;
  --dim: #c2c2e6;
  --solu: #00ff2aeb;
  --glow: 0 0 24px rgba(0, 212, 255, 0.35);

  /* spacing scale (used by utility classes below) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;
}

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

html {
  scroll-behavior: smooth;
}

/* ── Base ────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* CRT scanline overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 212, 255, 0.012) 3px,
    rgba(0, 212, 255, 0.012) 4px
  );
  pointer-events: none;
  z-index: 9000;
}

/* ── Animated Grid Background ────────────────────────────── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridBreath 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridBreath {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.9;
  }
}

/* ── Navigation ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(4, 6, 15, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-eye {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand-label {
  font-family: "Orbitron", monospace;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.25;
}

.brand-label span {
  display: block;
  font-size: 8px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.35em;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: "Share Tech Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-btn {
  font-family: "Orbitron", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.nav-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: var(--glow);
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  pointer-events: none;
}

.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(123, 255, 0, 0.451);
  transform: translate(-50%, -50%);
}

.rc1 {
  width: 200px;
  height: 200px;
  animation: radarPulse 3.5s ease-out 0s infinite;
}

.rc2 {
  width: 420px;
  height: 420px;
  animation: radarPulse 3.5s ease-out 0.7s infinite;
}

.rc3 {
  width: 640px;
  height: 640px;
  animation: radarPulse 3.5s ease-out 1.4s infinite;
}

.rc4 {
  width: 860px;
  height: 860px;
  animation: radarPulse 3.5s ease-out 2.1s infinite;
}

@keyframes radarPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }
  35% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 330deg, rgba(123, 255, 0, 0.451) 360deg);
  transform: translate(-50%, -50%);
  animation: sweep 4s linear infinite;
}

@keyframes sweep {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Status bar */
.status-bar {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent3);
  animation: blink 1.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(127, 255, 0, 0.7);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero-badge {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 6px 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

/* ── Typography ──────────────────────────────────────────── */
h1 {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: clamp(32px, 5.5vw, 72px);
  letter-spacing: 0.05em;
  line-height: 1.08;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

h1 .line1 {
  display: block;
  color: #fff;
}

h1 .line2 {
  display: block;
  color: var(--accent);
  text-shadow: var(--glow);
}

h2 {
  font-family: "Orbitron", monospace;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 42px);
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: #fff;
}

h2 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 620px;
  margin: 18px auto 44px;
  position: relative;
  z-index: 1;
}

/* ── Buttons ─────────────────────────────────────────────── */
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  font-family: "Orbitron", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #33ddff;
  box-shadow: var(--glow);
}

.btn-outline {
  font-family: "Orbitron", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.25s;
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  box-shadow: var(--glow);
}

/* ── Hero Stats Bar ──────────────────────────────────────── */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  background: rgba(10, 16, 32, 0.7);
  backdrop-filter: blur(8px);
}

.hstat {
  padding: 20px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hstat:last-child {
  border-right: none;
}

.hstat-num {
  font-family: "Orbitron", monospace;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hstat-lbl {
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Sections ────────────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.section-deck {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 14px auto 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  margin: 0;
}

/* ── Ticker ──────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker {
  display: flex;
  gap: 60px;
  animation: tickerMove 32s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-item span {
  color: var(--accent);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Problem Section ─────────────────────────────────────── */
#problem {
  padding: 100px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.problem-card {
  background: var(--panel);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ── Solution Section ────────────────────────────────────── */
#solution {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.sol-card {
  background: var(--panel);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.sol-card:hover {
  background: var(--panel2);
}

.sol-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--solu), transparent);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.sol-card:hover::after {
  transform: scaleX(1);
}

.sol-num {
  font-family: "Orbitron", monospace;
  font-size: 38px;
  font-weight: 900;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  transition: color 0.25s;
}

.sol-card:hover .sol-num {
  color: rgba(0, 213, 255, 0.527);
}

.sol-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--solu);
  margin-bottom: 12px;
}

.sol-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Features Section ────────────────────────────────────── */
#features {
  padding: 100px 0;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feat-item {
  border: 1px solid var(--border);
  padding: 22px 24px;
  background: var(--panel);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.feat-item.active,
.feat-item:hover {
  border-color: var(--accent);
  background: var(--panel2);
}

.feat-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  box-shadow: var(--glow);
}

.feat-item h4 {
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.feat-item.active h4 {
  color: var(--accent);
}

.feat-item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

.feat-display {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.feat-display-tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.feat-display h3 {
  font-family: "Orbitron", monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 16px;
}

.feat-display p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ftag {
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border2);
  color: var(--muted);
}

/* ── Comparison Table ────────────────────────────────────── */
#comparison {
  padding: 100px 0;
  background: var(--bg2);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  font-family: "Share Tech Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid var(--border2);
  color: var(--muted);
}

.compare-table th.hl {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.compare-table td {
  padding: 15px 20px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.compare-table td.row-label {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.compare-table td.hl {
  background: rgba(0, 212, 255, 0.04);
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.chk {
  color: var(--accent3);
}

.crs {
  color: var(--dim);
}

.prt {
  color: var(--gold);
}

/* ── Customization Section ───────────────────────────────── */
#customization {
  padding: 100px 0;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.custom-card {
  background: var(--panel);
  padding: 36px 32px;
}

.custom-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.custom-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-card ul li {
  font-size: 14.5px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.custom-card ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--dim);
  font-size: 8px;
  top: 5px;
}

/* ── Use Cases ───────────────────────────────────────────── */
#usecases {
  padding: 100px 0;
  background: var(--bg2);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.case-card {
  background: var(--panel);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.case-num {
  font-family: "Orbitron", monospace;
  font-size: 52px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.case-tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.case-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 12px;
}

.case-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-result {
  font-family: "Share Tech Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent3);
  border-top: 1px solid var(--border2);
  padding-top: 14px;
  display: block;
}

/* ── Services Section ────────────────────────────────────── */
#services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 2px;
}

.svc-card {
  background: var(--panel);
  padding: 36px 28px;
  position: relative;
}

.svc-card.featured {
  background: var(--panel2);
}

.svc-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
}

.svc-badge {
  font-family: "Share Tech Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  margin-bottom: 20px;
}

.svc-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.svc-price {
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-features li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.svc-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent3);
  font-size: 11px;
  top: 3px;
}

.base-product {
  border: 1px solid var(--border2);
  background: var(--panel2);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.base-product h3 {
  font-family: "Orbitron", monospace;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 10px;
}

.base-product p {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
}

.base-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btag {
  font-family: "Share Tech Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid var(--border2);
  color: var(--accent);
}

/* ── Process Section ─────────────────────────────────────── */
#process {
  padding: 100px 0;
  background: var(--bg2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.step {
  background: var(--panel);
  padding: 36px 28px;
}

.step-num {
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.step h3 {
  font-family: "Orbitron", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── FAQ Section ─────────────────────────────────────────── */
#faq {
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.faq-item {
  background: var(--panel);
  padding: 28px;
}

.faq-item h4 {
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA Section ─────────────────────────────────────────── */
#cta {
  padding: 120px 40px;
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(0, 30, 60, 0.5) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
}

#cta h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

#cta .section-deck {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border2);
  padding: 12px 24px;
  transition: all 0.25s;
  margin-top: 28px;
}

.linkedin-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: "Orbitron", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-legal {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--dim);
  text-align: right;
}

.footer-status {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copyright {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--dim);
  text-align: center;
}

/* ── Feature Metrics ─────────────────────────────────────── */
.metric-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.metric-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-name {
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  width: 160px;
  flex-shrink: 0;
}

.metric-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  position: relative;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: fillBar 0.8s ease-out forwards;
}

@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: var(--w);
  }
}

.metric-val {
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  width: 56px;
  text-align: right;
  flex-shrink: 0;
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Info Grid ───────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 36px 40px;
  background: var(--panel2);
  border: 1px solid var(--border2);
}

.info-col-label {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}

.arr {
  color: var(--accent3);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.dia {
  color: var(--gold);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Service Note ────────────────────────────────────────── */
.svc-note {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid var(--border2);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2px;
}

.svc-note-title {
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

/* ================================================================
   LEGAL / DOCUMENT PAGES  (tos.html, privacy.html, and any plain
   content page that doesn't use section-inner grid layouts)
   ================================================================ */

/* Wrapper — centre and constrain a column of body copy */
.doc-body {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

/* Bump up section title spacing when inside a doc page */
.doc-body .section-tag {
  margin-bottom: 8px;
}

/* ── Headings inside doc pages ───────────────────────────── */
.doc-body h2,
.doc-h2 {
  font-family: "Orbitron", monospace;
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 56px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border2);
}

.doc-body h3,
.doc-h3 {
  font-family: "Orbitron", monospace;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 36px;
  margin-bottom: 12px;
}

/* ── Body paragraphs ─────────────────────────────────────── */
.doc-body p,
.doc-p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── Lists ───────────────────────────────────────────────── */
.doc-body ul,
.doc-body ol,
.doc-ul,
.doc-ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-left: 0;
}

.doc-body ul li,
.doc-ul li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.7;
}

.doc-body ul li::before,
.doc-ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 8px;
  top: 6px;
}

.doc-body ol,
.doc-ol {
  counter-reset: doc-counter;
}

.doc-body ol li,
.doc-ol li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}

.doc-body ol li::before,
.doc-ol li::before {
  counter-increment: doc-counter;
  content: counter(doc-counter) ".";
  position: absolute;
  left: 0;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  top: 3px;
}

/* ── Nested list items (e.g. 2.1, 2.2 …) ────────────────── */
.doc-body li li,
.doc-sub-item {
  font-size: 14.5px;
  color: var(--dim);
  padding-left: 22px;
  position: relative;
  line-height: 1.65;
}

.doc-body li li::before,
.doc-sub-item::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-size: 13px;
  top: 1px;
}

/* ── Inline code / command text ──────────────────────────── */
.doc-body code,
code {
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent3);
  background: rgba(127, 255, 0, 0.07);
  border: 1px solid rgba(127, 255, 0, 0.18);
  padding: 2px 7px;
  border-radius: 2px;
}

/* ── Links ───────────────────────────────────────────────── */
.doc-body a,
.doc-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.35);
  transition: border-color 0.2s, color 0.2s;
}

.doc-body a:hover,
.doc-link:hover {
  color: #fff;
  border-bottom-color: var(--accent);
}

/* ── "Last updated" / datestamp line ─────────────────────── */
.doc-datestamp {
  font-family: "Share Tech Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ── Highlighted notice / callout box ────────────────────── */
.doc-callout {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

.doc-callout strong {
  font-family: "Orbitron", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

/* Warning callout variant */
.doc-callout.warn {
  border-left-color: var(--accent2);
  background: rgba(255, 64, 96, 0.04);
}

.doc-callout.warn strong {
  color: var(--accent2);
}

/* ── Horizontal rule (section break) ────────────────────── */
.doc-body hr,
.doc-hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  margin: 48px 0;
}

/* ── Definition / key-value rows (e.g. operator info) ───── */
.doc-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.doc-meta-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  font-size: 14px;
}

.doc-meta-key {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 2px;
}

.doc-meta-val {
  color: var(--muted);
}

/* ── Strong / bold inside body copy ─────────────────────── */
.doc-body strong,
.doc-strong {
  color: var(--text);
  font-weight: 700;
}

/* ================================================================
   SPACING UTILITIES  (use on any element site-wide)
   ================================================================ */

/* Padding — all sides */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: var(--sp-1);
}

.p-2 {
  padding: var(--sp-2);
}

.p-3 {
  padding: var(--sp-3);
}

.p-4 {
  padding: var(--sp-4);
}

.p-5 {
  padding: var(--sp-5);
}

.p-6 {
  padding: var(--sp-6);
}

.p-7 {
  padding: var(--sp-7);
}

.p-8 {
  padding: var(--sp-8);
}

/* Padding — x / y axis */
.px-2 {
  padding-left: var(--sp-2);
  padding-right: var(--sp-2);
}

.px-3 {
  padding-left: var(--sp-3);
  padding-right: var(--sp-3);
}

.px-4 {
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
}

.px-5 {
  padding-left: var(--sp-5);
  padding-right: var(--sp-5);
}

.px-6 {
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}

.px-7 {
  padding-left: var(--sp-7);
  padding-right: var(--sp-7);
}

.py-2 {
  padding-top: var(--sp-2);
  padding-bottom: var(--sp-2);
}

.py-3 {
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-3);
}

.py-4 {
  padding-top: var(--sp-4);
  padding-bottom: var(--sp-4);
}

.py-5 {
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-5);
}

.py-6 {
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}

.py-7 {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}

.py-8 {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.py-9 {
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-9);
}

/* Padding — individual sides */
.pt-4 {
  padding-top: var(--sp-4);
}

.pt-5 {
  padding-top: var(--sp-5);
}

.pt-6 {
  padding-top: var(--sp-6);
}

.pt-7 {
  padding-top: var(--sp-7);
}

.pb-4 {
  padding-bottom: var(--sp-4);
}

.pb-5 {
  padding-bottom: var(--sp-5);
}

.pb-6 {
  padding-bottom: var(--sp-6);
}

.pb-7 {
  padding-bottom: var(--sp-7);
}

.pl-4 {
  padding-left: var(--sp-4);
}

.pl-5 {
  padding-left: var(--sp-5);
}

.pr-4 {
  padding-right: var(--sp-4);
}

.pr-5 {
  padding-right: var(--sp-5);
}

/* Margin — all sides */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: var(--sp-1);
}

.m-2 {
  margin: var(--sp-2);
}

.m-3 {
  margin: var(--sp-3);
}

.m-4 {
  margin: var(--sp-4);
}

.m-5 {
  margin: var(--sp-5);
}

.m-auto {
  margin: auto;
}

/* Margin — x / y axis */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-4 {
  margin-left: var(--sp-4);
  margin-right: var(--sp-4);
}

.mx-5 {
  margin-left: var(--sp-5);
  margin-right: var(--sp-5);
}

.my-2 {
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.my-3 {
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.my-4 {
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.my-5 {
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.my-6 {
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.my-7 {
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-7);
}

.my-8 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-8);
}

/* Margin — individual sides */
.mt-2 {
  margin-top: var(--sp-2);
}

.mt-3 {
  margin-top: var(--sp-3);
}

.mt-4 {
  margin-top: var(--sp-4);
}

.mt-5 {
  margin-top: var(--sp-5);
}

.mt-6 {
  margin-top: var(--sp-6);
}

.mt-7 {
  margin-top: var(--sp-7);
}

.mb-2 {
  margin-bottom: var(--sp-2);
}

.mb-3 {
  margin-bottom: var(--sp-3);
}

.mb-4 {
  margin-bottom: var(--sp-4);
}

.mb-5 {
  margin-bottom: var(--sp-5);
}

.mb-6 {
  margin-bottom: var(--sp-6);
}

.mb-7 {
  margin-bottom: var(--sp-7);
}

.ml-2 {
  margin-left: var(--sp-2);
}

.ml-3 {
  margin-left: var(--sp-3);
}

.mr-2 {
  margin-right: var(--sp-2);
}

.mr-3 {
  margin-right: var(--sp-3);
}

/* ── Text Alignment ──────────────────────────────────────── */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* ── Text Color helpers ──────────────────────────────────── */
.text-accent {
  color: var(--accent);
}

.text-accent2 {
  color: var(--accent2);
}

.text-accent3 {
  color: var(--accent3);
}

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--muted);
}

.text-dim {
  color: var(--dim);
}

.text-white {
  color: #fff;
}

/* ── Font families ───────────────────────────────────────── */
.font-orbitron {
  font-family: "Orbitron", monospace;
}

.font-mono {
  font-family: "Share Tech Mono", monospace;
}

.font-rajdhani {
  font-family: "Rajdhani", sans-serif;
}

/* ── Font sizes ──────────────────────────────────────────── */
.text-xs {
  font-size: 11px;
}

.text-sm {
  font-size: 13px;
}

.text-md {
  font-size: 15px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 22px;
}

.text-2xl {
  font-size: 28px;
}

/* ── Font weights ────────────────────────────────────────── */
.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semi {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

/* ── Letter spacing ──────────────────────────────────────── */
.tracking-wide {
  letter-spacing: 0.12em;
}

.tracking-wider {
  letter-spacing: 0.22em;
}

.tracking-mono {
  letter-spacing: 0.3em;
}

/* ── Line height ─────────────────────────────────────────── */
.leading-tight {
  line-height: 1.2;
}

.leading-snug {
  line-height: 1.4;
}

.leading-normal {
  line-height: 1.65;
}

.leading-loose {
  line-height: 1.9;
}

/* ── Display / visibility ────────────────────────────────── */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

/* ── Flex helpers ────────────────────────────────────────── */
.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: var(--sp-2);
}

.gap-3 {
  gap: var(--sp-3);
}

.gap-4 {
  gap: var(--sp-4);
}

.gap-5 {
  gap: var(--sp-5);
}

.gap-6 {
  gap: var(--sp-6);
}

/* ── Width / max-width ───────────────────────────────────── */
.w-full {
  width: 100%;
}

.max-w-sm {
  max-width: 480px;
}

.max-w-md {
  max-width: 680px;
}

.max-w-lg {
  max-width: 860px;
}

.max-w-xl {
  max-width: 1060px;
}

.max-w-full {
  max-width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── Z-index helpers ─────────────────────────────────────── */
.z-1 {
  position: relative;
  z-index: 1;
}

.z-2 {
  position: relative;
  z-index: 2;
}

.z-10 {
  position: relative;
  z-index: 10;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .section-inner {
    padding: 0 20px;
  }
  .doc-body {
    padding: 60px 20px 80px;
  }
  .doc-meta-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .problem-grid,
  .solution-grid,
  .features-layout,
  .custom-grid,
  .cases-grid,
  .services-grid,
  .process-steps,
  .faq-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .base-product {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    width: 100%;
  }
  .hstat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hstat:last-child {
    border-bottom: none;
  }
}

/* ── Hamburger Menu ──────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--border2);
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-btn {
    display: none;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(4, 6, 15, 0.98);
    border-bottom: 1px solid var(--border2);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    z-index: 799;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 12px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  .nav-links a::after {
    display: none;
  }
  #hero {
    padding: 100px 20px 60px;
  }
  .hero-stats {
    width: 100%;
  }
}
