:root {
        --bg-0: #050914;
        --bg-1: #0a1224;
        --panel: #0d1830;
        --panel-2: #0f1e3a;
        --cyan: #39d3ff;
        --cyan-2: #7ff0ff;
        --blue: #3b82f6;
        --blue-deep: #1746c9;
        --line: rgba(94, 180, 255, 0.18);
        --text-dim: #8fa3c4;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html,
      body {
        background: var(--bg-0);
        color: #eaf3ff;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }
      .font-display {
        font-family: "Black Ops One", system-ui;
      }

      .app {
        max-width: 430px;
        margin: 0 auto;
        position: relative;
        min-height: 100vh;
        background:
          radial-gradient(
            120% 60% at 50% -10%,
            rgba(29, 78, 216, 0.35),
            transparent 60%
          ),
          radial-gradient(
            80% 40% at 80% 15%,
            rgba(57, 211, 255, 0.12),
            transparent 60%
          ),
          linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 40%, #060a16 100%);
        overflow: hidden;
      }

      /* animated particle network canvas */
      #netCanvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0.55;
        pointer-events: none;
      }

      /* grid overlay */
      .grid-overlay {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(94, 180, 255, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(94, 180, 255, 0.05) 1px, transparent 1px);
        background-size: 28px 28px;
        mask-image: radial-gradient(
          ellipse 90% 60% at 50% 20%,
          black 40%,
          transparent 90%
        );
        pointer-events: none;
      }

      .status-bar {
        position: relative;
        z-index: 10;
      }

      /* Glass panel */
      .glass {
        background: linear-gradient(
          180deg,
          rgba(20, 36, 66, 0.65),
          rgba(9, 16, 34, 0.65)
        );
        border: 1px solid var(--line);
        backdrop-filter: blur(10px);
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.02) inset,
          0 10px 30px -12px rgba(0, 0, 0, 0.6);
      }

      /* Badge pill */
      .pill {
        border: 1px solid rgba(94, 180, 255, 0.35);
        background: rgba(20, 50, 90, 0.35);
      }

      /* Glow text */
      .glow-cyan {
        color: var(--cyan-2);
        text-shadow:
          0 0 12px rgba(57, 211, 255, 0.65),
          0 0 40px rgba(57, 211, 255, 0.25);
      }
      .glow-white {
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
      }

      /* shield logo */
      .shield-wrap {
        position: relative;
        width: 120px;
        height: auto;
      }
      .shield-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px solid rgba(94, 180, 255, 0.35);
      }
      .shield-ring.r2 {
        inset: -14px;
        border-color: rgba(94, 180, 255, 0.18);
      }
      .shield-ring.r3 {
        inset: -28px;
        border-color: rgba(94, 180, 255, 0.08);
      }
      .shield-core {
        position: absolute;
        inset: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .shield-orbit {
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border-top: 2px solid var(--cyan);
        border-right: 2px solid transparent;
        border-bottom: 2px solid transparent;
        border-left: 2px solid transparent;
        animation: spin 3.2s linear infinite;
        filter: drop-shadow(0 0 6px var(--cyan));
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      /* animated gradient sweep on headline */
      .sweep-text {
        background: linear-gradient(
          100deg,
          #7ff0ff 0%,
          #3b82f6 25%,
          #7ff0ff 50%,
          #3b82f6 75%,
          #7ff0ff 100%
        );
        background-size: 250% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: sweep 5s linear infinite;
      }
      @keyframes sweep {
        0% {
          background-position: 0% 50%;
        }
        100% {
          background-position: 250% 50%;
        }
      }

      /* globe */
      .globe-wrap {
        position: relative;
        width: 260px;
        height: 260px;
      }
      .globe-ball {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background:
          radial-gradient(
            circle at 35% 30%,
            rgba(120, 220, 255, 0.35),
            transparent 45%
          ),
          radial-gradient(
            circle at 60% 70%,
            rgba(30, 70, 140, 0.6),
            transparent 60%
          ),
          #061128;
        box-shadow:
          inset -20px -20px 60px rgba(0, 0, 0, 0.6),
          inset 10px 10px 40px rgba(80, 180, 255, 0.15),
          0 0 60px rgba(45, 150, 255, 0.35);
        position: relative;
        overflow: hidden;
      }
      .globe-dots {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          rgba(120, 210, 255, 0.9) 1px,
          transparent 1.4px
        );
        background-size: 9px 9px;
        mask-image: radial-gradient(
          circle at 50% 50%,
          black 55%,
          transparent 75%
        );
        opacity: 0.55;
        animation: driftGlobe 14s linear infinite;
      }
      @keyframes driftGlobe {
        0% {
          background-position: 0 0;
        }
        100% {
          background-position: -260px 0;
        }
      }
      .globe-ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(90, 190, 255, 0.35);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        animation: pulseRing 3.5s ease-out infinite;
      }
      @keyframes pulseRing {
        0% {
          opacity: 0.8;
        }
        100% {
          opacity: 0;
          transform: translate(-50%, -50%) scale(1.9);
        }
      }
      .globe-base-glow {
        position: absolute;
        left: 50%;
        bottom: -30px;
        width: 220px;
        height: 60px;
        transform: translateX(-50%);
        background: radial-gradient(
          ellipse at center,
          rgba(56, 200, 255, 0.55),
          transparent 70%
        );
        filter: blur(4px);
      }

      /* stat card icon boxes */
      .icon-box {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: linear-gradient(
          145deg,
          rgba(60, 140, 255, 0.25),
          rgba(20, 60, 120, 0.15)
        );
        border: 1px solid rgba(94, 180, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* CTA button */
      .cta-btn {
        position: relative;
        overflow: hidden;
        background: linear-gradient(
          180deg,
          rgba(20, 50, 100, 0.6),
          rgba(10, 25, 55, 0.7)
        );
        border: 1px solid rgba(120, 210, 255, 0.55);
        box-shadow:
          0 0 25px rgba(57, 211, 255, 0.25),
          inset 0 0 20px rgba(57, 211, 255, 0.08);
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }
      .cta-btn:active {
        transform: scale(0.97);
      }
      .cta-btn .shine {
        position: absolute;
        top: 0;
        left: -60%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
          120deg,
          transparent,
          rgba(255, 255, 255, 0.35),
          transparent
        );
        transform: skewX(-20deg);
        animation: shineMove 3s ease-in-out infinite;
      }
      @keyframes shineMove {
        0% {
          left: -60%;
        }
        50% {
          left: 120%;
        }
        100% {
          left: 120%;
        }
      }
      .cta-btn .pulse-border {
        position: absolute;
        inset: 0;
        border-radius: 16px;
        border: 1px solid rgba(120, 220, 255, 0.7);
        animation: borderPulse 2.4s ease-in-out infinite;
      }
      @keyframes borderPulse {
        0%,
        100% {
          opacity: 0.35;
          box-shadow: 0 0 0px rgba(120, 220, 255, 0.2);
        }
        50% {
          opacity: 1;
          box-shadow: 0 0 22px rgba(120, 220, 255, 0.55);
        }
      }

      /* bottom feature icons */
      .feature-ic {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: radial-gradient(
          circle at 35% 30%,
          rgba(60, 140, 255, 0.35),
          rgba(10, 25, 55, 0.6)
        );
        border: 1px solid rgba(94, 180, 255, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .reveal {
        opacity: 0;
        transform: translateY(24px);
      }

      .scanline {
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(120, 220, 255, 0.9),
          transparent
        );
        filter: blur(0.5px);
        opacity: 0.7;
      }

      ::selection {
        background: rgba(57, 211, 255, 0.35);
      }
      .scan-modal {
        position: fixed;
        inset: 0;
        z-index: 999999;
        display: flex;
        justify-content: center;
        align-items: center;
        background: radial-gradient(circle at center, #0b1833, #02060f 70%);
        backdrop-filter: blur(8px);
      }

      .scan-modal.hidden {
        display: none;
      }

      .scan-card {
        width: 430px;
        padding: 30px;

        border-radius: 24px;

        background: linear-gradient(
          180deg,
          rgba(20, 30, 55, 0.96),
          rgba(8, 12, 22, 0.98)
        );

        border: 1px solid rgba(96, 165, 250, 0.25);

        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

        overflow: hidden;
        position: relative;
      }

      .scan-card::before {
        content: "";

        position: absolute;
        inset: 0;

        background: repeating-linear-gradient(
          transparent 0 23px,
          rgba(96, 165, 250, 0.03) 24px
        );

        pointer-events: none;
      }

      .ai-ring {
        width: 82px;
        height: 82px;
        margin: 0 auto 20px;
        position: relative;
      }

      .ai-ring::before,
      .ai-ring::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
      }

      .ai-ring::before {
        border: 3px solid rgba(96, 165, 250, 0.15);
      }

      .ai-ring::after {
        border: 3px solid transparent;
        border-top-color: #60a5fa;
        border-right-color: #38bdf8;
        animation: aiSpin 1s linear infinite;
      }

      .ring {
        position: absolute;
        inset: 0;

        border-radius: 50%;

        border: 2px solid rgba(96, 165, 250, 0.35);

        animation: rotate 5s linear infinite;
      }

      .ring2 {
        inset: 10px;

        animation-direction: reverse;
        animation-duration: 3s;
      }

      .core {
        position: absolute;
        width: 14px;
        height: 14px;
        background: #60a5fa;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 12px rgba(96, 165, 250, 0.45);
        animation: aiPulse 1s ease-in-out infinite;
      }

      .scan-title {
        text-align: center;
        margin-top: 18px;
        letter-spacing: 2px;
      }

      .scan-step {
        text-align: center;
        color: #8cc8ff;
        margin: 15px 0;
      }

      .progress-wrap {
        height: 8px;
        border-radius: 99px;
        background: #15253d;
        overflow: hidden;
      }

      .progress-bar {
        width: 0;
        height: 100%;

        background: linear-gradient(90deg, #60a5fa, #38bdf8, #60a5fa);

        background-size: 200%;

        animation: gradient 2s linear infinite;
      }

      .progress-row {
        display: flex;
        justify-content: space-between;

        margin-top: 10px;

        color: #b8dfff;
        font-size: 13px;
      }

      .log-box {
        margin-top: 18px;

        height: 130px;

        overflow: hidden;

        border-radius: 12px;

        background: rgba(255, 255, 255, 0.03);

        padding: 12px;

        font-size: 12px;

        color: #8dd4ff;

        font-family: monospace;

        line-height: 1.8;
      }

      @keyframes aiSpin {
        to {
          transform: rotate(360deg);
        }
      }

      @keyframes aiPulse {
        50% {
          transform: translate(-50%, -50%) scale(1.3);
        }
      }