/* CyberGuard — Network protection page-specific styles.
   Extracted for cacheable static delivery. */

:root { color-scheme: dark; }
    :root {
      --bg: #030b16;
      --panel: #0a1628;
      --line: rgba(75, 220, 255, 0.16);
      --line-strong: rgba(75, 220, 255, 0.32);
      --text: #eef6ff;
      --muted: #8fa8be;
      --cyan: #4bdcff;
      --green: #34d399;
      --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(ellipse 90% 55% at 12% 8%, rgba(59, 130, 246, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 45% at 88% 78%, rgba(75, 220, 255, 0.1), transparent 52%),
        var(--bg);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--cyan); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .wrap { max-width: 1100px; margin: 0 auto; padding: 22px 18px 64px; }
    .topnav {
      display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
      gap: 12px; margin-bottom: 22px;
    }
    .brand {
      display: flex; align-items: center; gap: 10px;
      color: inherit; text-decoration: none !important;
    }
    .brand img { width: 40px; height: 40px; border-radius: 11px; }
    .brand strong { display: block; font-size: 13px; letter-spacing: .04em; }
    .brand em {
      display: block; font-style: normal; font-size: 10px; color: var(--cyan);
      font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    }
    .nav-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 11px 16px; border-radius: 12px; font-weight: 700; font-size: 13px;
      text-decoration: none !important; border: 0; cursor: pointer;
    }
    .btn-primary {
      color: #03111f;
      background: linear-gradient(135deg, #6ee7ff, #4bdcff, #3b82f6);
    }
    .btn-ghost {
      color: #fff;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(148,163,184,.25);
    }
    .hero {
      background: linear-gradient(145deg, rgba(10, 28, 48, 0.95), rgba(6, 14, 26, 0.98));
      border: 1px solid var(--line-strong);
      border-radius: 22px;
      padding: 28px 26px;
      margin-bottom: 18px;
      box-shadow: 0 24px 60px rgba(0,0,0,.35);
    }
    .eyebrow {
      margin: 0 0 8px;
      color: var(--green);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .hero h1 {
      margin: 0 0 10px;
      font-size: clamp(26px, 4vw, 36px);
      letter-spacing: -.02em;
      line-height: 1.15;
    }
    .hero p { margin: 0; color: var(--muted); max-width: 720px; font-size: 15px; }
    .layers {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin: 18px 0 0;
    }
    .layer {
      padding: 12px 12px 14px;
      border-radius: 14px;
      background: rgba(7, 17, 31, 0.9);
      border: 1px solid var(--line);
    }
    .layer strong {
      display: block;
      color: #fff;
      font-size: 13px;
      margin-bottom: 4px;
    }
    .layer span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.4;
    }
    .showcase {
      position: relative;
      border-radius: 22px;
      padding: 14px;
      background: linear-gradient(160deg, rgba(8, 18, 34, 0.98), rgba(4, 10, 20, 0.99));
      border: 1px solid var(--line);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
      overflow: hidden;
      margin-bottom: 18px;
    }
    .showcase-link {
      display: block;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.14);
      text-decoration: none !important;
      transition: border-color .2s, box-shadow .2s, transform .2s;
    }
    .showcase-link:hover {
      border-color: rgba(75, 220, 255, 0.35);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
      transform: translateY(-2px);
    }
    .showcase-link img {
      width: 100%;
      height: auto;
      display: block;
      background: #03060d;
    }
    .cap {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
      margin-top: 16px;
    }
    .pill {
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      border: 1px solid rgba(75, 220, 255, 0.2);
      background: rgba(75, 220, 255, 0.06);
      color: #d7ecff;
    }
    .caption {
      margin: 14px 0 0;
      text-align: center;
      color: #7b93a8;
      font-size: 13px;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      margin-bottom: 18px;
    }
    .card {
      background: linear-gradient(145deg, rgba(10, 22, 40, 0.96), rgba(6, 14, 26, 0.99));
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 20px 18px;
    }
    .card h2 { margin: 0 0 10px; font-size: 18px; color: #fff; }
    .card p { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
    .card p:last-child { margin-bottom: 0; }
    .card ul { margin: 0; padding-left: 18px; color: #d7ecff; font-size: 14px; }
    .card li { margin: 6px 0; }
    .cta-row {
      display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
    }
    .foot {
      margin-top: 10px;
      text-align: center;
      color: var(--muted);
      font-size: 13px;
    }
    @media (max-width: 900px) {
      .layers, .grid-2 { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .layers, .grid-2 { grid-template-columns: 1fr; }
      .hero { padding: 22px 18px; }
    }
