:root {
  --bg: #080b14;
  --surface: #10162a;
  --surface-variant: #1a2140;
  --outline: #343c5e;
  --outline-soft: #212747;
  --text: #e8ecf5;
  --text-muted: #98a0be;
  --text-dim: #5b6690;

  --brand: #7c78ff; /* primary, logo indigo, bright for dark surfaces */
  --brand-deep: #5551f0;
  --on-brand: #090633;

  --privacy: #7c78ff;
  --inbound: #4ea1ff; /* downloaded */
  --outbound: #35d6a0; /* uploaded / data leaving */
  --firewall: #5bc0eb;
  --blocking: #ffb454;
  --threats: #ff6b6b;
  --geo: #37d0c4;
  --capture: #b794f6;
  --leak: #f6ad55;
  --neutral: #8a96ad;
  --protecting: #35d6a0; /* live-and-protecting status */

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--outline-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--outline-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(
    ellipse 60% 40% at 50% 0%,
    black 0%,
    transparent 70%
  );
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }
}
