:root {
  --bg: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2128;
  --accent: #00e5c3;
  --accent-dim: #00e5c322;
  --text: #e6edf3;
  --text-dim: #7d8590;
  --border: #30363d;
  --critical: #ff6b6b;
  --high: #ffa657;
  --medium: #ffd43b;
  --low: #69db7c;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

.navbar {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-logo .accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  font-size: 12px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* THREAT CARD */
.threat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  font-size: 13px;
}
.threat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.threat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.threat-dot.danger { background: var(--critical); box-shadow: 0 0 8px var(--critical); }
.threat-label { color: var(--text-dim); font-size: 12px; }
.threat-list { display: flex; flex-direction: column; gap: 10px; }
.threat-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sev {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.sev.critical { background: #ff6b6b22; color: var(--critical); border: 1px solid #ff6b6b44; }
.sev.high { background: #ffa65722; color: var(--high); border: 1px solid #ffa65744; }
.sev.medium { background: #ffd43b22; color: var(--medium); border: 1px solid #ffd43b44; }
.sev.low { background: #69db7c22; color: var(--low); border: 1px solid #69db7c44; }
.threat-item span:last-child { color: var(--text-dim); }

/* STATS */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-block { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-number .pct { font-size: 32px; }
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.5;
}

/* FEATURES */
.features-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  max-width: 600px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* THREATS */
.threats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.threats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.threat-list-vertical { display: flex; flex-direction: column; gap: 0; }
.threat-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.threat-row:last-child { border-bottom: none; }
.threat-cat {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.threat-row p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* REPORTING */
.reporting-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.report-preview {
  background: #0f1419;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 40px;
}
.report-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.report-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.report-logo .accent { color: var(--accent); }
.report-meta { font-size: 12px; color: var(--text-dim); }
.report-body { padding: 24px; }
.report-section { margin-bottom: 24px; }
.report-section h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.report-section p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }
.report-section strong { color: var(--text); }

.report-chart { margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.chart-bar { display: flex; align-items: center; gap: 12px; }
.chart-label { font-size: 12px; color: var(--text-dim); width: 56px; flex-shrink: 0; }
.chart-fill { height: 10px; border-radius: 3px; }
.chart-fill.critical { background: var(--critical); }
.chart-fill.high { background: var(--high); }
.chart-fill.medium { background: var(--medium); }
.chart-fill.low { background: var(--low); }
.chart-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  width: 20px;
  text-align: right;
}

.remediation-list { list-style: none; counter-reset: none; }
.remediation-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dim);
}
.remediation-list .num { color: var(--text); font-weight: 700; font-family: var(--font-display); }
.tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.tag.crit { background: #ff6b6b22; color: var(--critical); }
.tag.high { background: #ffa65722; color: var(--high); }

/* CLOSING */
.closing-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}
.footer-logo .accent { color: var(--accent); }
.footer p { font-size: 13px; color: var(--text-dim); }
.footer-meta { font-size: 12px; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .threats-inner { grid-template-columns: 1fr; gap: 40px; }
  .navbar, .hero, .features-section, .reporting-section, .closing-section { padding-left: 20px; padding-right: 20px; }
  .stats-section, .threats-section { padding-left: 20px; padding-right: 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-number { font-size: 40px; }
}