:root {
  --bg: #0a0f1a;
  --bg-surface: #111827;
  --bg-card: #1a2332;
  --bg-card-hover: #1e2a3d;
  --fg: #f1f5f9;
  --fg-muted: #94a3b8;
  --accent: #00d4ff;
  --accent-dim: rgba(0, 212, 255, 0.12);
  --accent-amber: #f59e0b;
  --border: rgba(148, 163, 184, 0.12);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; gap: 8px; }
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  padding: 4px 8px;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* HERO */
.hero { position: relative; overflow: hidden; padding: 80px 32px 100px; }
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* DASHBOARD FRAME */
.hero-dashboard { position: relative; }
.dash-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.06), 0 32px 64px rgba(0, 0, 0, 0.4);
}
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ff5f57; }
.dash-dot.amber { background: #febc2e; }
.dash-dot.green { background: #28c840; }
.dash-title {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.dash-body { padding: 16px; }
.dash-row { display: flex; gap: 10px; margin-bottom: 10px; }
.metric-card {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.metric-card.wide { flex: 1; }
.metric-label { font-size: 10px; color: var(--fg-muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.metric-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--fg); }
.metric-value.large { font-size: 26px; }
.metric-delta { font-size: 11px; color: #10b981; margin-top: 2px; }
.metric-delta.up::before { content: '↑ '; }
.metric-bar { margin-top: 8px; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.metric-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-amber)); border-radius: 2px; }

.client-list { margin-top: 4px; }
.client-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}
.client-row:hover { background: rgba(255,255,255,0.03); }
.client-name { font-size: 12px; font-weight: 500; color: var(--fg); }
.client-status { font-size: 10px; font-weight: 500; padding: 3px 8px; border-radius: 100px; }
.client-status.active { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.client-status.pending { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); }

/* STATS BAND */
.stats-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
}
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--accent); letter-spacing: -0.04em; }
.stat-label { font-size: 14px; color: var(--fg-muted); margin-top: 4px; max-width: 200px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* OPS SECTION */
.ops-section { padding: 100px 32px; }
.ops-inner { max-width: 1100px; margin: 0 auto; }
.ops-header { text-align: center; margin-bottom: 64px; }
.section-label { display: inline-block; font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.ops-header h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 16px; }
.ops-desc { font-size: 17px; color: var(--fg-muted); max-width: 520px; margin: 0 auto; }
.ops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ops-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.ops-card:hover { border-color: rgba(0, 212, 255, 0.25); background: var(--bg-card-hover); }
.ops-number { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 16px; }
.ops-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 10px; letter-spacing: -0.02em; }
.ops-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* FEATURES SECTION */
.features-section { padding: 0 32px 100px; background: var(--bg); }
.features-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.features-col { display: flex; flex-direction: column; gap: 4px; }
.feature-block { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-radius: var(--radius); border: 1px solid transparent; transition: border-color 0.2s, background 0.2s; }
.feature-block:hover { border-color: var(--border); background: rgba(255,255,255,0.02); }
.feature-icon { width: 40px; height: 40px; min-width: 40px; background: var(--accent-dim); border: 1px solid rgba(0, 212, 255, 0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-top: 2px; }
.feature-block h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 6px; }
.feature-block p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
.feature-block h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }

/* WHAT YOU GET */
.whatyouget-section { padding: 80px 32px; background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wyg-inner { max-width: 760px; margin: 0 auto; }
.wyg-inner .section-label { display: block; text-align: center; margin-bottom: 12px; }
.wyg-inner h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.03em; color: var(--fg); text-align: center; margin-bottom: 48px; }
.wyg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; }
.wyg-item { display: flex; gap: 14px; align-items: flex-start; }
.wyg-check { width: 20px; height: 20px; min-width: 20px; border: 1.5px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.wyg-item h4 { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.wyg-item p { font-size: 13px; color: var(--fg-muted); }

/* CLOSING */
.closing-section { padding: 100px 32px; position: relative; overflow: hidden; }
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }
.closing-inner h2 { font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 20px; line-height: 1.2; }
.closing-inner p { font-size: 17px; color: var(--fg-muted); line-height: 1.7; }

/* FOOTER */
.site-footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.footer-tagline { font-size: 15px; color: var(--fg); font-weight: 500; margin-bottom: 8px; font-family: var(--font-display); }
.footer-legal { font-size: 12px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-dashboard { display: none; }
  .ops-grid { grid-template-columns: 1fr; }
  .features-inner { grid-template-columns: 1fr; }
  .wyg-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 24px; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 20px 80px; }
  .stats-band, .ops-section, .features-section, .whatyouget-section, .closing-section { padding-left: 20px; padding-right: 20px; }
}