.metric-value.packets {}
.metric-value.flows {}
.metric-value.anomalies {}
.metric-value.confidence {}

/* Ripple effect for buttons and upload */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,212,255,0.25);
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-animate 0.6s linear;
    pointer-events: none;
    z-index: 2;
}
@keyframes ripple-animate {
    to {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

button, .cta-btn, .file-upload {
    position: relative;
    overflow: hidden;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    background: transparent;
}

/* BACKGROUND GRID + GRADIENT */
/* Milky Way Black/Blue Glow Background */
.bg.grid-bg {
    background: radial-gradient(ellipse at 60% 40%, rgba(80,120,255,0.10) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 70%, rgba(0,212,255,0.08) 0%, transparent 70%),
                linear-gradient(120deg, #090a0f 0%, #151a24 60%, #090a0f 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
    animation: none;
    width: 100vw;
    height: 100vh;
}
.bg2.grid-bg { animation-duration: 8s; opacity: 0.5; }
.bg3.grid-bg { animation-duration: 10s; opacity: 0.3; }
@keyframes slide {
    0% { transform: translateX(-25%); }
    100% { transform: translateX(25%); }
}
.radial-gradient {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: -2;
    background: radial-gradient(circle at 60% 40%, rgba(120,180,255,0.10) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(0,212,255,0.08) 0%, transparent 70%);
}

html, body {
    height: auto;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: transparent;
    color: #f6f8fa;
    min-height: 100vh;
    width: 100vw;
}


main {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
    position: relative;
}

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    z-index: 0;
    position: relative;
}

.section-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
}
.section-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Parallax Bubbles */
.bubbles {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: -2;
    display: block !important;
    overflow: hidden;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    background: linear-gradient(135deg, #00d4ff 0%, #007cf0 100%);
    animation: bubble-move 30s linear infinite;
}
@keyframes bubble-move {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(var(--dy, 100px)) translateX(var(--dx, 100px)); }
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 8vw;
    gap: 48px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    z-index: 0;
    position: relative;
}
.hero-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 320px;
}
.headline {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #fff;
    animation: float-headline 4s ease-in-out infinite alternate;
}
@keyframes float-headline {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.subtext {
    font-size: 1.25rem;
    color: #b0c4de;
    margin-bottom: 36px;
    max-width: 520px;
}
.cta-row {
    display: flex;
    gap: 18px;
}
.cta-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
    display: inline-block;
}
.cta-btn.primary {
    background: linear-gradient(90deg, #00d4ff, #007cf0);
    color: #fff;
    box-shadow: 0 2px 16px 0 rgba(0,124,240,0.10);
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.cta-btn.primary:hover {
    background: #007cf0;
    transform: scale(1.07);
    box-shadow: 0 0 24px 0 #00d4ff44;
}
.cta-btn.secondary {
    background: transparent;
    color: #00d4ff;
    border: 1.5px solid #00d4ff;
}
.cta-btn.secondary:hover {
    background: #00d4ff;
    color: #0f2027;
}

/* LIVE INTELLIGENCE PANEL */
.live-intel-panel {
    flex: 1.2;
    min-width: 320px;
    max-width: 420px;
    align-self: flex-end;
    margin-top: 24px;
}
.terminal {
    background: #181c24;
    border-radius: 12px;
    padding: 28px 24px 20px 24px;
    font-family: "JetBrains Mono", "Fira Mono", monospace;
    font-size: 1.05rem;
    color: #b0c4de;
    box-shadow: 0 2px 16px 0 rgba(0,124,240,0.10);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.log-line {
    white-space: pre;
}
.blinking-cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background: #00d4ff;
    margin-left: 2px;
    animation: blink 1s steps(2, start) infinite;
    vertical-align: middle;
}
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* METRICS STRIP */
.metrics-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    background: rgba(24,28,36,0.92);
    border-radius: 12px;
    margin: 0 auto 48px auto;
    padding: 28px 0;
    max-width: 900px;
    box-shadow: 0 2px 16px 0 rgba(0,124,240,0.13);
    font-size: 1.1rem;
    z-index: 0;
    position: relative;
}
.metric {
    color: #b0c4de;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.metric-value {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: 700;
}

/* FEATURE GRID */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 32px auto;
    padding: 0 8vw;
    z-index: 0;
    position: relative;
    justify-content: center;
    background: transparent;
    border-radius: 0;
}
.feature-card {
    background: rgba(24,28,36,0.85);
    border: 1px solid rgba(0,212,255,0.08);
    border-radius: 12px;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 16px 0 rgba(0,124,240,0.04);
    min-height: 180px;
    transition: border 0.2s;
}
.feature-card:hover {
    border: 1.5px solid #00d4ff;
}
.feature-icon {
    font-size: 1.7rem;
    margin-bottom: 2px;
}
.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}
.feature-desc {
    font-size: 1rem;
    color: #b0c4de;
}

/* UPLOAD SECTION */
.upload-section {
    margin: 0 auto 80px auto;
    max-width: 520px;
    background: rgba(24,28,36,0.95);
    border-radius: 12px;
    padding: 40px 32px 32px 32px;
    box-shadow: 0 2px 24px 0 rgba(0,124,240,0.13);
    text-align: center;
    z-index: 0;
    position: relative;
}
.upload-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: #fff;
}
.upload-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}
.file-upload {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #00d4ff;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 0;
    transition: 0.3s;
    background: rgba(0,212,255,0.03);
    color: #00d4ff;
    font-weight: 500;
}
.file-upload:hover {
    background: #00d4ff;
    color: #0f2027;
}
.file-upload input {
    display: none;
}
button {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #00d4ff, #007cf0);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.1rem;
}
button:hover {
    background: #007cf0;
    box-shadow: 0 0 20px #00d4ff;
}

/* GENERAL SPACING */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 700;
    letter-spacing: -0.5px;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: stretch;
        min-height: 60vh;
        gap: 32px;
        padding: 48px 4vw 24px 4vw;
    }
    .hero-content {
        align-items: center;
        min-width: 0;
        width: 100%;
    }
    .live-intel-panel {
        align-self: stretch;
        max-width: 100%;
        margin-top: 0;
    }
    .features {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 0 4vw;
    }
}

@media (max-width: 600px) {
    .headline {
        font-size: 1.4rem;
        text-align: center;
    }
    .subtext {
        font-size: 1rem;
        text-align: center;
        max-width: 95vw;
    }
    .metrics-strip {
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }
    .features {
        grid-template-columns: 1fr;
        padding: 0 2vw;
    }
    .feature-card {
        min-width: 0;
        width: 100%;
        padding: 20px 10px 16px 10px;
        font-size: 0.95rem;
    }
    .upload-section {
        padding: 24px 8px 18px 8px;
    }
    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .live-intel-panel {
        min-width: 0;
        width: 100%;
        margin-top: 18px;
    }
}

/* --- Animated Dots/Stars Background --- */
#stars, #stars2, #stars3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  pointer-events: none;
  z-index: -2;
}
#stars {
  box-shadow: var(--stars-small);
  width: 1px;
  height: 1px;
  animation: animStar 60s linear infinite;
}
#stars2 {
  box-shadow: var(--stars-medium);
  width: 2px;
  height: 2px;
  animation: animStar 120s linear infinite;
}
#stars3 {
  box-shadow: var(--stars-big);
  width: 3px;
  height: 3px;
  animation: animStar 180s linear infinite;
}
@keyframes animStar {
  from { transform: translateY(0px); }
  to { transform: translateY(-2000px); }
}

@media (max-width: 900px) {
  #stars, #stars2, #stars3 {
    width: 100vw;
    height: 100vh;
  }
}