/* CyberGuard marketing homepage styles — extracted for cacheable static delivery.
   Loaded with marketing_fonts.css. Keep visual design; edit carefully. */

:root {
      color-scheme: dark;
      --bg: #030b16;
      --bg-2: #071525;
      --panel: rgba(9, 22, 40, 0.78);
      --panel-solid: #0a1628;
      --panel-border: rgba(75, 220, 255, 0.14);
      --panel-border-strong: rgba(75, 220, 255, 0.32);
      --text: #eef6ff;
      --muted: #8fa8be;
      --muted-2: #6d8499;
      --cyan: #4bdcff;
      --blue: #3b82f6;
      --green: #34d399;
      --violet: #7c5cff;
      --gold: #c4d4e8;
      --nav-h: 74px;
      --radius: 22px;
      --radius-sm: 14px;
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
      --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.28);
      --glow-cyan: 0 0 40px rgba(75, 220, 255, 0.18);
      --glow-blue: 0 12px 36px rgba(59, 130, 246, 0.32);
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
    ::selection {
      background: rgba(75, 220, 255, 0.28);
      color: #fff;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--cyan); text-decoration: none; transition: color 0.2s var(--ease); }
    a:hover { text-decoration: underline; }
    h1, h2, h3, .display { font-family: var(--font); letter-spacing: -0.02em; }
    :focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 3px;
    }
    .skip-link {
      position: absolute;
      left: 16px;
      top: -48px;
      z-index: 200;
      padding: 10px 16px;
      border-radius: 10px;
      background: var(--cyan);
      color: #03111f;
      font-weight: 700;
      text-decoration: none;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 12px; text-decoration: none; }

    .bg-mesh {
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(ellipse 90% 55% at 12% 8%, rgba(59, 130, 246, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 45% at 88% 78%, rgba(75, 220, 255, 0.12), transparent 52%),
        radial-gradient(ellipse 50% 35% at 50% 45%, rgba(124, 92, 255, 0.06), transparent 65%),
        radial-gradient(ellipse 40% 30% at 60% 15%, rgba(15, 35, 64, 0.55), transparent 70%),
        var(--bg);
    }
    .bg-grid {
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.4;
      background-image:
        linear-gradient(rgba(75, 220, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 220, 255, 0.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 95% 75% at 50% 18%, black, transparent 72%);
      pointer-events: none;
    }

    .container {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    /* Nav */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      border-bottom: 1px solid transparent;
      transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s, box-shadow 0.35s;
    }
    .nav.scrolled {
      background: rgba(3, 11, 22, 0.82);
      backdrop-filter: blur(18px) saturate(1.2);
      -webkit-backdrop-filter: blur(18px) saturate(1.2);
      border-color: rgba(75, 220, 255, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
    }
    .brand-cluster {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
      min-width: 0;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none !important;
      color: inherit;
      flex-shrink: 0;
    }
    .brand img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 0 0 1px rgba(75, 220, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.35);
    }
    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }
    .brand-text strong {
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: #fff;
    }
    .brand-text span {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cyan);
    }
    .brand-login {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      text-decoration: none !important;
      padding: 4px 0;
      letter-spacing: 0.02em;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .brand-login:hover {
      color: #fff;
      border-bottom-color: rgba(75, 220, 255, 0.45);
      text-decoration: none !important;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: nowrap;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
      padding: 8px 11px;
      border-radius: 10px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover {
      color: #fff;
      text-decoration: none;
      background: rgba(255, 255, 255, 0.05);
    }
    /* Desktop: keep primary nav tight; extras only in mobile drawer */
    .nav-links .nav-link-mobile-only {
      display: none;
    }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .nav-cta .btn-primary {
      box-shadow: 0 8px 22px rgba(59, 130, 246, 0.28);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 12px;
      font-family: var(--font);
      font-weight: 700;
      font-size: 14px;
      text-decoration: none !important;
      border: 0;
      cursor: pointer;
      transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s, border-color 0.22s, color 0.22s;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }
    .btn-primary {
      color: #03111f;
      background: linear-gradient(135deg, #6ee7ff 0%, var(--cyan) 40%, var(--blue) 100%);
      box-shadow: var(--glow-blue);
    }
    .btn-primary:hover {
      box-shadow: 0 14px 40px rgba(59, 130, 246, 0.45), 0 0 24px rgba(75, 220, 255, 0.25);
    }
    .btn-ghost {
      color: #fff;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(148, 163, 184, 0.22);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(75, 220, 255, 0.28);
    }
    .btn-lg { padding: 15px 26px; font-size: 15px; border-radius: 14px; }
    .btn-sm { padding: 10px 14px; font-size: 13px; border-radius: 10px; }
    .menu-toggle {
      display: none;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 10px;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      padding: 8px 12px;
      line-height: 1;
    }

    /* Hero */
    .hero {
      padding: calc(var(--nav-h) + 64px) 0 72px;
      position: relative;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 52px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(52, 211, 153, 0.04));
      border: 1px solid rgba(52, 211, 153, 0.32);
      color: #bbf7d0;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 22px;
      box-shadow: 0 0 24px rgba(52, 211, 153, 0.08);
    }
    .hero-badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px var(--green);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.55; transform: scale(0.85); }
    }
    .hero h1 {
      margin: 0 0 18px;
      font-size: clamp(36px, 5.2vw, 54px);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -0.03em;
      color: #fff;
      text-wrap: balance;
    }
    .hero h1 em {
      font-style: normal;
      background: linear-gradient(120deg, #fff 10%, var(--cyan) 55%, var(--blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-lead {
      margin: 0 0 26px;
      max-width: 540px;
      font-size: 18px;
      color: var(--muted);
      line-height: 1.7;
    }
    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }
    .pill {
      padding: 9px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.03em;
      border: 1px solid rgba(75, 220, 255, 0.18);
      background: rgba(75, 220, 255, 0.06);
      color: #d7ecff;
      backdrop-filter: blur(8px);
    }
    .pill.free {
      background: rgba(52, 211, 153, 0.12);
      border-color: rgba(52, 211, 153, 0.32);
      color: #bbf7d0;
      box-shadow: 0 0 20px rgba(52, 211, 153, 0.1);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 22px;
    }
    .hero-note {
      font-size: 13px;
      color: var(--muted-2);
      max-width: 500px;
      line-height: 1.55;
    }
    .trust-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin: 20px 0 0;
      max-width: 560px;
    }
    .trust-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 11px 12px;
      border-radius: 14px;
      background: rgba(7, 17, 31, 0.72);
      border: 1px solid rgba(75, 220, 255, 0.12);
    }
    .trust-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
      color: #042f1a;
      background: linear-gradient(135deg, #6ee7b7, #34d399);
      box-shadow: 0 6px 16px rgba(52, 211, 153, 0.22);
    }
    .trust-item strong {
      display: block;
      font-size: 12px;
      font-weight: 800;
      color: #eef6ff;
      line-height: 1.25;
      letter-spacing: 0.01em;
    }
    .trust-item span {
      display: block;
      margin-top: 2px;
      font-size: 11px;
      font-weight: 600;
      color: #8fa8be;
      line-height: 1.35;
    }
    /* Threat trends membership — professional membership card */
    #threat-trends { padding: 72px 0 28px; }
    .trends-card {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 0;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(75, 220, 255, 0.22);
      background: linear-gradient(145deg, rgba(8, 20, 36, 0.98), rgba(5, 12, 24, 0.99));
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(75, 220, 255, 0.05) inset;
    }
    .trends-aside {
      padding: 32px 28px 30px;
      background:
        radial-gradient(ellipse 90% 70% at 20% 0%, rgba(75, 220, 255, 0.14), transparent 55%),
        radial-gradient(ellipse 70% 50% at 80% 100%, rgba(52, 211, 153, 0.1), transparent 50%),
        linear-gradient(180deg, rgba(10, 28, 48, 0.95), rgba(6, 14, 26, 0.98));
      border-right: 1px solid rgba(75, 220, 255, 0.12);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .trends-offer-badge {
      display: inline-flex;
      align-self: flex-start;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #042f1a;
      background: linear-gradient(135deg, #6ee7b7, #34d399);
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 10px 24px rgba(52, 211, 153, 0.25);
    }
    .trends-aside h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(22px, 2.6vw, 28px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    .trends-aside > p {
      margin: 0;
      color: #b7d0e6;
      font-size: 14px;
      line-height: 1.55;
    }
    .trends-benefits {
      margin: 4px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }
    .trends-benefits li {
      position: relative;
      padding: 0 0 0 26px;
      color: #e2f0ff;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 600;
    }
    .trends-benefits li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--green);
      font-weight: 900;
    }
    .trends-offer-panel {
      margin-top: auto;
      padding: 16px 16px 14px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(14, 116, 144, 0.12));
      border: 1px solid rgba(52, 211, 153, 0.28);
    }
    .trends-offer-panel strong {
      display: block;
      color: #bbf7d0;
      font-size: 15px;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .trends-offer-panel p {
      margin: 0;
      color: #cfe8f8;
      font-size: 13px;
      line-height: 1.5;
    }
    .trends-offer-panel .trends-fine {
      margin-top: 8px;
      color: #8fa8be;
      font-size: 11px;
      line-height: 1.4;
      font-weight: 500;
    }
    .trends-main {
      padding: 30px 28px 28px;
    }
    .trends-main-head {
      margin: 0 0 18px;
    }
    .trends-main-head h3 {
      margin: 0 0 6px;
      color: #fff;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }
    .trends-main-head p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }
    .trends-box {
      max-width: none;
      margin: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
    }
    .trends-alert {
      margin: 0 0 16px;
      padding: 14px 16px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.5;
    }
    .trends-alert.ok {
      background: rgba(52, 211, 153, 0.12);
      border: 1px solid rgba(52, 211, 153, 0.32);
      color: #bbf7d0;
    }
    .trends-alert.err {
      background: rgba(255, 107, 129, 0.12);
      border: 1px solid rgba(255, 107, 129, 0.32);
      color: #ffc1cb;
    }
    .trends-success-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }
    .trends-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    .trends-form .field label {
      display: block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: #9ec8e8;
      margin-bottom: 6px;
    }
    .trends-form .field input {
      width: 100%;
      box-sizing: border-box;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid rgba(95, 190, 255, 0.22);
      background: #0c1728;
      color: #fff;
      font: inherit;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .trends-form .field input:focus {
      outline: none;
      border-color: rgba(75, 220, 255, 0.55);
      box-shadow: 0 0 0 3px rgba(75, 220, 255, 0.12);
    }
    .trends-checks {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      margin: 0 0 14px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(148, 163, 184, 0.12);
      font-size: 14px;
      font-weight: 600;
      color: #d7ecff;
    }
    .trends-checks label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
    .trends-checks .muted { color: var(--muted-2); font-weight: 500; font-size: 12px; }
    .trends-note {
      margin: 0 0 18px;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.55;
    }
    .trends-form .hero-actions { gap: 10px; }
    .trends-form .btn-primary { min-width: 220px; }
    .trends-hp {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    @media (max-width: 860px) {
      .trends-card { grid-template-columns: 1fr; }
      .trends-aside { border-right: 0; border-bottom: 1px solid rgba(75, 220, 255, 0.12); }
    }
    @media (max-width: 700px) {
      .trends-grid { grid-template-columns: 1fr; }
      .trends-aside, .trends-main { padding: 24px 18px; }
      .trends-form .btn-primary { min-width: 0; width: 100%; }
    }
    .local-only-banner {
      margin: 0 auto 16px;
      padding: 14px 18px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(52, 211, 153, 0.04));
      border: 1px solid rgba(52, 211, 153, 0.28);
      color: #bbf7d0;
      font-size: 14px;
      line-height: 1.55;
      max-width: 640px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    .local-only-banner strong { color: #fff; }
    .remote-funnel {
      margin-top: 14px;
      color: #9bbbd7;
      font-size: 14px;
      line-height: 1.55;
    }
    .hero-visual {
      position: relative;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 8% 6% -4% 6%;
      background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.28), transparent 70%);
      filter: blur(28px);
      z-index: 0;
      pointer-events: none;
    }
    .hero-card {
      position: relative;
      z-index: 1;
      padding: 28px;
      border-radius: 28px;
      background: linear-gradient(165deg, rgba(14, 30, 54, 0.96), rgba(5, 12, 24, 0.98));
      border: 1px solid var(--panel-border);
      box-shadow: var(--shadow), var(--glow-cyan);
      overflow: hidden;
    }
    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("/static/marketing/network-threat.jpg") center/cover;
      opacity: 0.1;
      mix-blend-mode: screen;
    }
    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(75, 220, 255, 0.06) 0%, transparent 28%, transparent 100%);
      pointer-events: none;
    }
    .hero-card > * { position: relative; z-index: 1; }
    .hero-logo {
      padding: 22px;
      background: linear-gradient(180deg, #050a14, #03060d);
      border-radius: 20px;
      border: 1px solid rgba(75, 220, 255, 0.14);
      margin-bottom: 22px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    .hero-logo img { width: 100%; height: auto; }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .stat-box {
      text-align: center;
      padding: 16px 10px;
      border-radius: 14px;
      background: rgba(0, 0, 0, 0.38);
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: border-color 0.25s, transform 0.25s var(--ease);
    }
    .stat-box:hover {
      border-color: rgba(75, 220, 255, 0.28);
      transform: translateY(-2px);
    }
    .stat-box strong {
      display: block;
      font-size: 22px;
      font-weight: 800;
      color: var(--cyan);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .stat-box span {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .orbit-badge {
      position: absolute;
      top: -14px;
      right: -6px;
      z-index: 2;
      width: 112px;
      height: 112px;
      border-radius: 50%;
      background: conic-gradient(from 200deg, var(--violet), var(--blue), var(--cyan), var(--violet));
      display: grid;
      place-items: center;
      animation: spin 22s linear infinite;
      box-shadow: 0 0 48px rgba(99, 102, 241, 0.42), 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .orbit-badge-inner {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 30%, #0e1c32, var(--bg-2));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8px;
      animation: spin 22s linear infinite reverse;
      box-shadow: inset 0 0 0 1px rgba(75, 220, 255, 0.12);
    }
    .orbit-badge-inner strong {
      font-size: 12px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      letter-spacing: 0.06em;
    }
    .orbit-badge-inner span {
      font-size: 9px;
      color: var(--cyan);
      font-weight: 700;
      margin-top: 2px;
      letter-spacing: 0.04em;
    }

    /* Sections */
    section { padding: 88px 0; }
    .section-head {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 52px;
    }
    .section-head .eyebrow,
    .eyebrow {
      margin: 0 0 12px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--cyan);
    }
    .section-head h2 {
      margin: 0 0 14px;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.025em;
      text-wrap: balance;
    }
    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    /* Threat band */
    .threat-band {
      padding: 0 0 12px;
      margin: -12px 0 0;
    }
    .threat-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(75, 220, 255, 0.12);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--panel-border);
      box-shadow: var(--shadow-soft);
    }
    .threat-item {
      padding: 30px 22px;
      background: linear-gradient(180deg, rgba(10, 22, 40, 0.96), rgba(6, 14, 26, 0.98));
      text-align: center;
      transition: background 0.25s;
    }
    .threat-item:hover {
      background: linear-gradient(180deg, rgba(14, 28, 50, 0.98), rgba(8, 16, 30, 0.99));
    }
    .threat-item strong {
      display: block;
      font-size: clamp(24px, 3vw, 30px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #fff, var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .threat-item span {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.45;
      display: block;
    }

    /* Cards grid */
    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .cards-5 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    /* Four equal pillars — centered, balanced (not a leftover 5-col grid) */
    .cards-4 {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      justify-content: center;
      align-items: stretch;
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
    }
    .cards-4 .card {
      text-align: left;
      height: 100%;
    }
    .card {
      padding: 28px 24px;
      border-radius: var(--radius);
      background: var(--panel);
      border: 1px solid var(--panel-border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: border-color 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }
    .card:hover {
      border-color: var(--panel-border-strong);
      transform: translateY(-5px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(75, 220, 255, 0.08);
    }
    .card-icon {
      width: 50px;
      height: 50px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      font-size: 22px;
      margin-bottom: 18px;
      background: linear-gradient(145deg, rgba(75, 220, 255, 0.14), rgba(59, 130, 246, 0.08));
      border: 1px solid rgba(75, 220, 255, 0.22);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }
    .card h3 {
      margin: 0 0 10px;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
    }
    .card p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* Process */
    .process {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
    }
    .process::before {
      content: "";
      position: absolute;
      top: 44px;
      left: 14%;
      right: 14%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(75, 220, 255, 0.35), rgba(59, 130, 246, 0.35), transparent);
    }
    .step {
      text-align: center;
      padding: 8px 14px 0;
    }
    .step-num {
      width: 58px;
      height: 58px;
      margin: 0 auto 22px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: var(--cyan);
      background: radial-gradient(circle at 35% 30%, rgba(75, 220, 255, 0.16), rgba(8, 18, 34, 0.95));
      border: 2px solid rgba(75, 220, 255, 0.28);
      position: relative;
      z-index: 1;
      box-shadow: 0 0 28px rgba(75, 220, 255, 0.12), 0 8px 20px rgba(0, 0, 0, 0.25);
    }
    .step h3 {
      margin: 0 0 10px;
      font-size: 20px;
      font-weight: 800;
      color: #fff;
    }
    .step .tag {
      display: inline-block;
      margin-bottom: 12px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cyan);
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(75, 220, 255, 0.08);
      border: 1px solid rgba(75, 220, 255, 0.16);
    }
    .step p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* Report preview */
    .report-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .report-copy h2 {
      margin: 0 0 16px;
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.025em;
    }
    .report-copy .lead {
      margin: 0 0 26px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
    }
    .report-mock {
      padding: 32px;
      border-radius: 26px;
      background: linear-gradient(180deg, #0c1a30, #060e1c);
      border: 1px solid var(--panel-border);
      box-shadow: var(--shadow), 0 0 50px rgba(59, 130, 246, 0.08);
      position: relative;
      overflow: hidden;
    }
    .report-mock::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(75, 220, 255, 0.45), transparent);
    }
    .report-mock header {
      text-align: center;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .report-mock header p {
      margin: 0;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cyan);
    }
    .report-mock header h3 {
      margin: 8px 0 0;
      font-size: 18px;
      font-weight: 800;
      color: #fff;
    }
    .score-ring {
      width: 148px;
      height: 148px;
      margin: 0 auto 22px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: conic-gradient(from -90deg, var(--cyan) 0 88%, rgba(255,255,255,0.07) 88% 100%);
      position: relative;
      box-shadow: 0 0 36px rgba(75, 220, 255, 0.18);
    }
    .score-ring::after {
      content: "";
      position: absolute;
      inset: 11px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 30%, #0d1a2e, #081220);
      box-shadow: inset 0 0 0 1px rgba(75, 220, 255, 0.08);
    }
    .score-ring div {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .score-ring strong {
      display: block;
      font-size: 38px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .score-ring span {
      font-size: 12px;
      font-weight: 700;
      color: var(--green);
      letter-spacing: 0.08em;
    }
    /* Certified Trust Score seal (replaces sample grade ring on marketing home) */
    .report-mock-seal {
      text-align: center;
    }
    .report-seal-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 4px auto 20px;
      gap: 10px;
    }
    .report-certified-seal {
      display: block;
      width: min(240px, 72%);
      height: auto;
      margin: 0 auto;
      background: transparent;
      filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.45));
      transition: transform 0.25s ease, filter 0.25s ease;
    }
    .report-mock-seal:hover .report-certified-seal {
      transform: translateY(-3px) scale(1.02);
      filter: drop-shadow(0 20px 42px rgba(75, 220, 255, 0.22));
    }
    .report-seal-caption {
      margin: 0;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--green, #35d68b);
    }
    @media (max-width: 640px) {
      .report-certified-seal { width: min(200px, 78%); }
    }
    .report-lines {
      display: grid;
      gap: 10px;
    }
    .report-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 11px 14px;
      border-radius: 11px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 13px;
      transition: background 0.2s;
    }
    .report-line:hover { background: rgba(255, 255, 255, 0.05); }
    .report-line span { color: var(--muted); }
    .report-line strong { color: #dbeafe; font-weight: 600; }
    .check-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }
    .check-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-size: 15px;
      color: #dbeafe;
    }
    .check-list .check {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      background: rgba(52, 211, 153, 0.14);
      border: 1px solid rgba(52, 211, 153, 0.22);
      color: var(--green);
      font-size: 13px;
      font-weight: 800;
    }

    /* Industries */
    #who-we-serve {
      scroll-margin-top: calc(var(--nav-h, 74px) + 16px);
    }
    .industries-section {
      padding-top: 8px;
    }
    .industries {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .industry-card {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 18px 16px 16px;
      border-radius: 18px;
      background: linear-gradient(165deg, rgba(10, 24, 42, 0.96), rgba(6, 12, 22, 0.98));
      border: 1px solid rgba(94, 190, 255, 0.14);
      min-height: 100%;
      transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
    }
    .industry-card:hover {
      border-color: rgba(122, 238, 195, 0.35);
      transform: translateY(-3px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    }
    .industry-ico {
      font-size: 22px;
      line-height: 1;
    }
    .industry-card h3 {
      margin: 0;
      font-size: 15px;
      font-weight: 850;
      color: #fff;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }
    .industry-card p {
      margin: 0;
      font-size: 13px;
      line-height: 1.45;
      color: #9ec8e8;
    }
    .industries-foot {
      margin: 20px 0 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    /* legacy chips if used elsewhere */
    .industry {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      font-size: 13px;
      font-weight: 700;
      color: #c8d9ea;
    }
    .industry .ico { font-size: 18px; }
    @media (max-width: 900px) {
      .industries { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 560px) {
      .industries { grid-template-columns: 1fr; }
      .industries-foot .btn { width: 100%; text-align: center; }
    }

    /* FAQ */
    .faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
    .faq-item {
      border-radius: 16px;
      background: var(--panel);
      border: 1px solid var(--panel-border);
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .faq-item:hover { border-color: rgba(75, 220, 255, 0.22); }
    .faq-item.open {
      border-color: rgba(75, 220, 255, 0.28);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    }
    .faq-q {
      width: 100%;
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      background: none;
      border: 0;
      color: #fff;
      font-family: var(--font);
      font-size: 16px;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--cyan); }
    .faq-q::after {
      content: "+";
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 18px;
      color: var(--cyan);
      background: rgba(75, 220, 255, 0.08);
      border: 1px solid rgba(75, 220, 255, 0.16);
      transition: transform 0.25s var(--ease), background 0.25s;
    }
    .faq-item.open .faq-q::after {
      transform: rotate(45deg);
      background: rgba(75, 220, 255, 0.14);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s var(--ease);
    }
    .faq-a p {
      margin: 0;
      padding: 0 24px 22px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 320px; }

    /* CTA band */
    .cta-band {
      margin: 0 0 40px;
      padding: 60px 44px;
      border-radius: 28px;
      text-align: center;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.22), transparent 55%),
        linear-gradient(160deg, rgba(12, 28, 52, 0.98), rgba(5, 12, 24, 0.99));
      border: 1px solid rgba(75, 220, 255, 0.22);
      box-shadow: var(--shadow), 0 0 60px rgba(59, 130, 246, 0.1);
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(75, 220, 255, 0.55), transparent);
    }
    .cta-band h2 {
      margin: 0 0 12px;
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 800;
      color: #fff;
      text-wrap: balance;
    }
    .cta-band > p {
      margin: 0 auto 28px;
      max-width: 560px;
      color: var(--muted);
      font-size: 17px;
    }
    .cta-band-actions {
      flex-wrap: wrap;
      gap: 10px;
    }
    .cta-band-actions .btn {
      min-width: min(100%, 200px);
    }
    .cta-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 18px 24px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .cta-contacts a {
      font-size: 16px;
      font-weight: 700;
      color: #fff !important;
      text-decoration: none !important;
      transition: color 0.2s;
    }
    .cta-contacts a:hover { color: var(--cyan) !important; }
    .cta-contacts a.email { color: var(--cyan) !important; }
    .cta-label {
      color: #7d95ab;
      font-size: 13px;
      font-weight: 600;
    }

    /* Footer */
    footer.site-footer,
    footer {
      padding: 56px 0 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      text-align: left;
      background:
        radial-gradient(ellipse 70% 80% at 10% 0%, rgba(29, 161, 242, 0.06), transparent 55%),
        linear-gradient(180deg, rgba(4, 12, 22, 0.2), rgba(2, 8, 16, 0.92));
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr repeat(2, minmax(0, 0.85fr)) 1.25fr;
      gap: 32px 28px;
      align-items: start;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }
    .footer-brand {
      max-width: 320px;
    }
    footer .logo-sm,
    footer .footer-logo .logo-sm {
      display: block;
      width: 148px;
      height: auto;
      margin: 0 0 14px;
      opacity: 0.95;
      filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
    }
    .footer-logo { display: inline-block; text-decoration: none; }
    .footer-tagline {
      margin: 0 0 6px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #9ec8e8;
    }
    .footer-byline {
      margin: 0 0 14px;
      font-size: 13px;
      line-height: 1.45;
      color: var(--muted);
    }
    footer strong { color: #dbeafe; }
    footer .footer-contact {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      margin: 0 0 12px;
      font-size: 14px;
      font-weight: 700;
    }
    footer .footer-contact a {
      color: #e8f6ff !important;
      text-decoration: none !important;
    }
    footer .footer-contact a:hover { color: var(--cyan) !important; }
    .footer-social {
      display: inline-flex;
      font-size: 13px;
      font-weight: 700;
      color: var(--cyan) !important;
      text-decoration: none !important;
    }
    .footer-social:hover { text-decoration: underline !important; }
    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 9px;
      min-width: 0;
    }
    .footer-heading {
      margin: 0 0 4px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #7dd3fc;
    }
    .footer-col a {
      color: #b7cfe3 !important;
      text-decoration: none !important;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
    }
    .footer-col a:hover { color: #fff !important; }
    .footer-subscribe-lead {
      margin: 0 0 10px;
      font-size: 13px;
      line-height: 1.45;
      color: var(--muted);
    }
    .footer-subscribe-col .footer-subscribe {
      margin: 0;
      max-width: none;
    }
    /* Square form inside redesigned footer */
    footer .cg-square-subscribe {
      max-width: none;
      margin: 0;
      text-align: left;
    }
    footer .cg-square-subscribe-label {
      /* Heading already says Email updates */
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    footer .cg-square-subscribe-row {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      align-items: stretch;
    }
    footer .cg-square-subscribe-input {
      flex: 1 1 auto;
      min-width: 0;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(94, 190, 255, 0.22);
      background: rgba(6, 14, 26, 0.95);
    }
    footer .cg-square-subscribe-btn {
      flex: 0 0 auto;
      height: 44px;
      border-radius: 12px;
      padding: 0 16px;
      white-space: nowrap;
      background: linear-gradient(135deg, #1da1f2, #0f9d74);
      font-weight: 800;
    }
    footer .cg-square-subscribe-note {
      margin: 8px 0 0;
      font-size: 11px;
      color: #6f8599;
      line-height: 1.4;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px 20px;
      padding-top: 18px;
    }
    .footer-legal-links {
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 650;
      color: #7a90a8;
    }
    .footer-legal-links a {
      color: #9ec8e8 !important;
      text-decoration: none !important;
    }
    .footer-legal-links a:hover { color: #fff !important; text-decoration: underline !important; }
    footer .legal {
      margin: 0;
      font-size: 12px;
      color: #5f7386;
      line-height: 1.4;
    }
    /* Legacy helpers (other pages / older markup) */
    footer .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px 14px;
      margin: 12px 0 4px;
      font-size: 13px;
      font-weight: 600;
    }
    footer .footer-nav a {
      color: var(--muted) !important;
      text-decoration: none !important;
    }
    footer .footer-nav a:hover { color: #fff !important; }
    .portal-links { margin: 14px 0 0; font-size: 14px; }
    .portal-links a { color: var(--cyan); font-weight: 600; text-decoration: none; }
    .portal-links a:hover { text-decoration: underline; }
    .legal-links { margin-top: 10px; }
    .legal-links a { color: #9ec8e8; font-weight: 600; }
    @media (max-width: 1000px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
      }
      .footer-brand { max-width: none; grid-column: 1 / -1; }
      .footer-subscribe-col { grid-column: 1 / -1; max-width: 420px; }
    }
    @media (max-width: 560px) {
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-subscribe-col { max-width: none; }
      footer .cg-square-subscribe-row { flex-wrap: wrap; }
      footer .cg-square-subscribe-btn { width: 100%; }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    }
    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    /* Protection packages */
    #packages { padding-top: 72px; }
    .pkg-group-head {
      margin: 0 0 20px;
      text-align: center;
    }
    .pkg-group-head h3 {
      margin: 0 0 6px;
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.02em;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .pkg-group-chip {
      display: inline-flex;
      align-items: center;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #042f1a;
      background: linear-gradient(135deg, #6ee7b7, #34d399);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .pkg-group-chip.muted {
      color: #cfeaff;
      background: rgba(75, 220, 255, 0.1);
      border-color: rgba(75, 220, 255, 0.22);
    }
    .pkg-group-head p {
      margin: 0 auto;
      max-width: 620px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }
    .pkg-group-head p a { color: var(--cyan); font-weight: 600; }
    .pkg-group-block {
      margin-bottom: 48px;
    }
    .packages-grid.remote-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 860px;
      margin: 0 auto;
    }
    .package-card.remote::before {
      background: linear-gradient(90deg, #0d5ea8, #4bdcff);
    }
    .package-card.remote.featured {
      border-color: rgba(75, 220, 255, 0.35);
      box-shadow: 0 0 0 1px rgba(75, 220, 255, 0.12), 0 28px 70px rgba(0, 0, 0, 0.42);
    }
    .pkg-badge.remote {
      background: rgba(75, 220, 255, 0.12);
      border-color: rgba(75, 220, 255, 0.28);
      color: #d7f4ff;
    }
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }
    .package-card {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 28px 24px 22px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(10, 22, 40, 0.97), rgba(5, 12, 24, 0.99));
      border: 1px solid var(--panel-border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
    }
    .package-card:hover {
      transform: translateY(-4px);
      border-color: rgba(75, 220, 255, 0.28);
      box-shadow: var(--shadow);
    }
    .package-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #0b6ca8, #3b82f6);
    }
    .package-card.guardian::before { background: linear-gradient(90deg, #087a54, #34d399); }
    .package-card.diamond::before { background: linear-gradient(90deg, #7c5cff, #4bdcff); }
    .package-card.featured {
      border-color: rgba(52, 211, 153, 0.38);
      box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.12), 0 28px 70px rgba(0, 0, 0, 0.42);
      transform: translateY(-6px);
    }
    .package-card.featured:hover { transform: translateY(-8px); }
    .pkg-badge {
      display: inline-flex;
      align-self: flex-start;
      border-radius: 999px;
      padding: 6px 11px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(75, 220, 255, 0.12);
      border: 1px solid rgba(75, 220, 255, 0.28);
      color: #d7f4ff;
    }
    .pkg-badge.popular {
      background: rgba(52, 211, 153, 0.14);
      border-color: rgba(52, 211, 153, 0.35);
      color: #bbf7d0;
    }
    .pkg-badge.executive {
      background: rgba(124, 92, 255, 0.14);
      border-color: rgba(124, 92, 255, 0.35);
      color: #ddd6fe;
    }
    .package-card h3 {
      margin: 0;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.015em;
    }
    .pkg-tagline {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
      min-height: 42px;
    }
    .pkg-price {
      font-family: var(--font);
      font-size: 40px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .pkg-price span {
      font-size: 15px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0;
    }
    .pkg-meta {
      margin: 0;
      font-size: 13px;
      color: #8fa8be;
      line-height: 1.45;
    }
    .pkg-meta strong { color: #dbeafe; }
    .pkg-cadence {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(148, 163, 184, 0.16);
      color: #cdeaff;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.35;
    }
    .pkg-support {
      display: inline-flex;
      align-self: flex-start;
      padding: 8px 11px;
      border-radius: 10px;
      background: rgba(52, 211, 153, 0.1);
      border: 1px solid rgba(52, 211, 153, 0.22);
      color: #b9f6d8;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.35;
    }
    .pkg-best-for {
      margin: 0;
      font-size: 13px;
      color: #9fbad2;
      line-height: 1.5;
      padding-top: 4px;
      border-top: 1px solid rgba(148, 163, 184, 0.12);
    }
    .pkg-features-title {
      margin: 4px 0 0;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #7dd3fc;
    }
    .pkg-features {
      margin: 0;
      padding: 0;
      list-style: none;
      flex: 1;
    }
    .pkg-features li {
      position: relative;
      padding: 8px 0 8px 22px;
      color: #d9efff;
      font-size: 13px;
      line-height: 1.45;
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }
    .pkg-features li:last-child { border-bottom: 0; }
    .pkg-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--green);
      font-weight: 800;
    }
    .pkg-cta {
      margin-top: auto;
      padding-top: 10px;
      display: grid;
      gap: 8px;
    }
    .pkg-cta .btn { width: 100%; }
    .pkg-cta .btn-ghost {
      font-size: 13px;
      padding: 11px 14px;
    }
    .pkg-cta-note {
      margin: 2px 0 0;
      font-size: 12px;
      color: var(--muted-2);
      line-height: 1.4;
      text-align: center;
    }

    /* Home social proof */
    #social-proof {
      scroll-margin-top: calc(var(--nav-h, 74px) + 16px);
    }
    .home-proof-section {
      padding-top: 8px;
    }
    .home-proof-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin: 8px 0 22px;
    }
    .home-proof-stat {
      padding: 16px 14px;
      border-radius: 16px;
      border: 1px solid rgba(94, 190, 255, 0.16);
      background: linear-gradient(165deg, rgba(10, 24, 42, 0.95), rgba(6, 12, 22, 0.98));
      min-height: 100%;
    }
    .home-proof-stat strong {
      display: block;
      margin: 0 0 6px;
      color: #fff;
      font-size: 15px;
      font-weight: 850;
      letter-spacing: -0.01em;
    }
    .home-proof-stat span {
      display: block;
      color: #9ec8e8;
      font-size: 13px;
      line-height: 1.4;
    }
    .home-proof-reviews {
      margin: 0 0 22px;
      padding: 22px 20px;
      border-radius: 22px;
      border: 1px solid rgba(94, 190, 255, 0.14);
      background: rgba(6, 14, 26, 0.55);
    }
    .home-proof-reviews-head {
      text-align: center;
      margin: 0 0 16px;
    }
    .home-proof-reviews-head h3 {
      margin: 0 0 6px;
      font-size: 1.15rem;
      color: #fff;
    }
    .home-proof-reviews-head p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }
    .home-proof-reviews-head strong { color: #bbf7d0; }
    .home-proof-review-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .home-proof-review-card {
      padding: 16px 16px 14px;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      background: linear-gradient(165deg, rgba(12, 26, 44, 0.96), rgba(7, 14, 24, 0.98));
    }
    .home-proof-stars {
      color: #fbbf24;
      letter-spacing: 0.06em;
      font-size: 14px;
      margin-bottom: 8px;
    }
    .home-proof-quote {
      margin: 0 0 12px;
      color: #e6f4ff;
      font-size: 14px;
      line-height: 1.5;
    }
    .home-proof-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 10px;
      align-items: baseline;
      font-size: 12px;
    }
    .home-proof-meta strong { color: #dbeafe; }
    .home-proof-meta span { color: #7a90a8; }
    .home-proof-reviews-foot {
      margin: 14px 0 0;
      text-align: center;
      font-size: 13px;
      color: var(--muted);
    }
    .home-proof-reviews-foot a {
      color: var(--cyan);
      font-weight: 700;
      text-decoration: none;
    }
    .home-proof-reviews-foot a:hover { text-decoration: underline; }
    .home-proof-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 4px;
    }
    @media (max-width: 960px) {
      .home-proof-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .home-proof-stats { grid-template-columns: 1fr; }
      .home-proof-review-grid { grid-template-columns: 1fr; }
      .home-proof-cta .btn { width: 100%; text-align: center; }
    }

    /* Home monthly pricing strip */
    #monthly-plans {
      scroll-margin-top: calc(var(--nav-h, 74px) + 16px);
    }
    .home-pricing-section {
      padding-top: 12px;
    }
    .home-pricing-grid {
      margin-top: 8px;
    }
    .home-pricing-card {
      min-height: 100%;
    }
    .home-pricing-card .pkg-tagline {
      min-height: 0;
    }
    .home-pricing-card .pkg-features {
      margin-top: 4px;
    }
    .home-pricing-foot {
      margin: 22px auto 0;
      max-width: 720px;
      text-align: center;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }
    .home-pricing-foot a {
      color: var(--cyan);
      font-weight: 700;
      text-decoration: none;
    }
    .home-pricing-foot a:hover {
      text-decoration: underline;
    }

    /* Path chooser — free local vs remote vs monthly */
    .hero-paths {
      padding: 8px 0 28px;
    }
    .hero-paths .path-chooser {
      margin: 0;
    }
    .path-chooser {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin: 0 0 36px;
    }
    @media (max-width: 1100px) {
      .path-chooser { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    .path-card {
      border-radius: 18px;
      padding: 18px 16px;
      background: linear-gradient(160deg, rgba(10, 28, 48, 0.95), rgba(6, 14, 26, 0.98));
      border: 1px solid var(--panel-border);
      text-decoration: none !important;
      color: inherit;
      transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .path-card:hover {
      border-color: var(--panel-border-strong);
      transform: translateY(-3px);
      box-shadow: var(--shadow-soft);
      text-decoration: none !important;
    }
    .path-card .path-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--cyan);
    }
    .path-card strong {
      color: #fff;
      font-size: 16px;
      letter-spacing: -0.01em;
    }
    .path-card span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }
    .path-card .path-cta {
      margin-top: 8px;
      color: var(--green);
      font-size: 13px;
      font-weight: 700;
    }

    /* Sticky mobile conversion bar */
    .mobile-cta-bar {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 90;
      padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
      background: rgba(3, 11, 22, 0.97);
      backdrop-filter: blur(14px);
      border-top: 1px solid var(--panel-border);
      box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.45);
      gap: 8px;
    }
    .mobile-cta-bar .btn {
      flex: 1;
      min-width: 0;
      min-height: 48px;
      padding: 8px 8px;
      font-size: 11px;
      font-weight: 800;
      text-align: center;
      white-space: normal;
      line-height: 1.2;
      flex-direction: column;
      gap: 2px;
    }
    .mobile-cta-bar .btn small {
      display: block;
      font-size: 10px;
      font-weight: 700;
      opacity: 0.88;
      letter-spacing: 0.02em;
    }

    .pkg-compare-deck {
      margin-top: 12px;
      border-radius: 18px;
      border: 1px solid var(--panel-border);
      background: linear-gradient(180deg, rgba(8, 17, 31, 0.96), rgba(4, 10, 18, 0.99));
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .pkg-compare-deck > summary {
      cursor: pointer;
      list-style: none;
      padding: 16px 20px;
      color: #cfeaff;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.01em;
    }
    .pkg-compare-deck > summary::-webkit-details-marker { display: none; }
    .pkg-compare-deck[open] > summary {
      border-bottom: 1px solid rgba(75, 220, 255, 0.12);
      color: #fff;
    }
    .pkg-compare-deck .pkg-compare {
      margin-top: 0;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      background: transparent;
    }
    .pkg-compare {
      margin-top: 42px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(8, 17, 31, 0.96), rgba(4, 10, 18, 0.99));
      border: 1px solid var(--panel-border);
      padding: 28px;
      overflow-x: auto;
      box-shadow: var(--shadow-soft);
    }
    .pkg-compare h3 {
      margin: 0 0 8px;
      color: #fff;
      font-size: 20px;
      font-weight: 800;
    }
    .pkg-compare p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14px;
    }
    .compare-table {
      width: 100%;
      min-width: 720px;
      border-collapse: separate;
      border-spacing: 0 8px;
    }
    .compare-table th {
      text-align: left;
      color: #8fa8be;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 8px 12px;
    }
    .compare-table td {
      background: rgba(12, 23, 40, 0.92);
      color: #e8f4ff;
      padding: 12px;
      vertical-align: top;
      border-top: 1px solid rgba(75, 220, 255, 0.1);
      border-bottom: 1px solid rgba(75, 220, 255, 0.1);
      font-size: 13px;
    }
    .compare-table td:first-child {
      border-left: 1px solid rgba(75, 220, 255, 0.1);
      border-radius: 12px 0 0 12px;
      font-weight: 600;
      color: #fff;
    }
    .compare-table td:last-child {
      border-right: 1px solid rgba(75, 220, 255, 0.1);
      border-radius: 0 12px 12px 0;
    }
    .cmp-yes { color: #6ee7b7; font-weight: 700; }
    .cmp-no { color: #fda4af; font-weight: 600; }
    .cmp-mid { color: #fde68a; font-weight: 600; }

    /* Network protection teaser → dedicated page */
    #network-protection { padding-top: 56px; padding-bottom: 24px; }
    .network-teaser {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 0;
      align-items: stretch;
      border-radius: 24px;
      overflow: hidden;
      text-decoration: none !important;
      color: inherit;
      border: 1px solid rgba(75, 220, 255, 0.2);
      background: linear-gradient(145deg, rgba(10, 28, 48, 0.96), rgba(6, 14, 26, 0.99));
      box-shadow: var(--shadow-soft);
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .network-teaser:hover {
      border-color: rgba(75, 220, 255, 0.38);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      text-decoration: none !important;
    }
    .network-teaser-copy {
      padding: 28px 26px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
    }
    .network-teaser-copy h2 {
      margin: 0;
      color: #fff;
      font-size: clamp(22px, 3vw, 28px);
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    .network-teaser-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      max-width: 480px;
    }
    .network-teaser-cta {
      margin-top: 8px;
      color: var(--green);
      font-size: 14px;
      font-weight: 800;
    }
    .network-teaser-visual {
      min-height: 180px;
      background: #03060d;
      border-left: 1px solid rgba(75, 220, 255, 0.12);
    }
    .network-teaser-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.92;
    }
    @media (max-width: 800px) {
      .network-teaser { grid-template-columns: 1fr; }
      .network-teaser-visual {
        min-height: 160px;
        border-left: 0;
        border-top: 1px solid rgba(75, 220, 255, 0.12);
      }
    }

    /* Mobile / responsive */
    @media (max-width: 1100px) {
      .nav-links a { padding: 8px 8px; font-size: 12px; gap: 4px; }
      .nav-cta .btn-sm { padding: 9px 11px; font-size: 12px; }
    }
    @media (max-width: 960px) {
      .hero-grid, .report-split { grid-template-columns: 1fr; }
      .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
      .cards-3, .process { grid-template-columns: 1fr; }
      .cards-5 { grid-template-columns: repeat(2, 1fr); }
      .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
      .threat-inner { grid-template-columns: repeat(2, 1fr); }
      .process::before { display: none; }
      .orbit-badge { width: 90px; height: 90px; top: -8px; right: 0; }
      .orbit-badge-inner { width: 76px; height: 76px; }
      .packages-grid, .packages-grid.remote-grid { grid-template-columns: 1fr; }
      .package-card.featured { transform: none; }
      .package-card.featured:hover { transform: translateY(-4px); }
      .path-chooser { grid-template-columns: 1fr; }
      .trust-strip { max-width: 100%; }
    }
    @media (max-width: 720px) {
      .nav-links { display: none; }
      .brand-login { font-size: 11px; }
      .nav-cta { gap: 6px; }
      .nav-cta .btn-sm { padding: 9px 10px; font-size: 11px; }
      .menu-toggle { display: block; }
      .nav.open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        padding: 16px 20px 20px;
        gap: 4px;
        background: rgba(3, 11, 22, 0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--panel-border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      }
      .nav.open .nav-links a {
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 12px;
      }
      .nav.open .nav-links .nav-link-mobile-only {
        display: block;
        color: #dff4ff;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
        margin-top: 4px;
        padding-top: 14px;
      }
      .nav.open .nav-links .nav-link-mobile-only + .nav-link-mobile-only {
        border-top: 0;
        margin-top: 0;
        padding-top: 12px;
      }
      /* Primary Book free stays visible; ghost Call can hide if crowded */
      .nav-cta .btn-ghost.hide-mobile-portal,
      .nav-cta .btn-ghost {
        display: none;
      }
      .cards-5 { grid-template-columns: 1fr; }
      .cards-4 { grid-template-columns: 1fr; max-width: 420px; }
      .hero-stats { grid-template-columns: 1fr; }
      .hero { padding-top: calc(var(--nav-h) + 36px); }
      .cta-band { padding: 40px 22px; }
      section { padding: 64px 0; }
      .container { width: min(1140px, calc(100% - 28px)); }
      .threat-inner { grid-template-columns: 1fr 1fr; }
      /* Sticky conversion bar for free assessment + remote scans */
      .mobile-cta-bar { display: flex; }
      body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
      footer { padding-bottom: 12px; }

      /* Path chooser: easier taps on phone */
      .hero-paths { padding: 4px 0 20px; }
      .path-chooser { gap: 10px; }
      .path-card {
        padding: 16px 14px;
        min-height: 108px;
        border-radius: 16px;
      }
      .path-card strong { font-size: 17px; }
      .path-card .path-cta { margin-top: 10px; font-size: 14px; }

      /* Trust strip single column on narrow phones if needed later; 2-col at 720 is ok */
      .trust-strip { gap: 8px; }

      /* Membership card mobile */
      .trends-aside, .trends-main { padding: 22px 16px; }
      .trends-form .hero-actions { flex-direction: column; align-items: stretch; }
      .trends-form .btn { width: 100%; }
      .trends-success-actions { flex-direction: column; }
      .trends-success-actions .btn { width: 100%; text-align: center; }
      #threat-trends { padding: 56px 0 20px; }
    }
    @media (max-width: 480px) {
      .threat-inner { grid-template-columns: 1fr; }
      .hero-actions .btn { width: 100%; }
      .nav-cta .btn-sm { padding: 8px 9px; font-size: 11px; }
      .trust-strip { grid-template-columns: 1fr; }
      .hero-pills { gap: 8px; }
      .hero-lead { font-size: 15px; }
      .mobile-cta-bar { gap: 6px; padding-left: 8px; padding-right: 8px; }
      .mobile-cta-bar .btn { font-size: 10px; padding: 8px 6px; min-height: 52px; }
    }
    /* CSS containment: skip layout/paint for off-screen marketing sections (INP/LCP). */
    main > section:not(.hero) {
      content-visibility: auto;
      contain-intrinsic-size: auto 520px;
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .fade-in { opacity: 1; transform: none; }
    }
    @media (max-width: 900px) { .hide-mobile-portal { display: none; } }
