:root {
    --bg-color: #050505;
    --surface-color: #0D1117;
    --accent: #00F2FF;
    --accent-hover: #00D4FF;
    --alert: #FF0055;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(0, 242, 255, 0.6);
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'JetBrains Mono', monospace;
    
    --transition: all 0.3s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Grid Pattern */
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* BUTTONS */
.btn {
    position: relative;
    display: inline-block;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    background-color: #050505;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    overflow: visible;
}

.btn::before {
    content: '[';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    opacity: 0.5;
    transition: var(--transition);
}

.btn::after {
    content: ']';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    opacity: 0.5;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--accent);
    color: #050505;
    box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
}

.btn:hover::before, .btn:hover::after {
    color: #050505;
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
}

.btn-large {
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
}

.btn-minimal {
    background-color: transparent;
    color: var(--accent);
    padding: 0.5rem 1rem;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
}
.btn-minimal::before, .btn-minimal::after {
    display: none;
}
.btn-minimal:hover {
    color: var(--text-primary);
    text-decoration: underline;
    text-shadow: 0 0 10px var(--accent);
    box-shadow: none;
    background-color: transparent;
}


/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5), 0 0 20px rgba(0, 242, 255, 0.3);
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

/* NAV STATUS INDICATOR */
.nav-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--alert);
    border: 1px dashed rgba(255, 0, 85, 0.4);
    padding: 0.6rem 1.2rem;
    background-color: rgba(255, 0, 85, 0.05);
    cursor: crosshair;
    transition: var(--transition);
}

.nav-status-indicator:hover {
    background-color: rgba(255, 0, 85, 0.15);
    border: 1px solid var(--alert);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}

.status-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--alert);
    box-shadow: 0 0 10px var(--alert);
    animation: blink-fast 0.8s infinite alternate;
}

@keyframes blink-fast {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.status-text {
    letter-spacing: 0.1em;
    font-weight: 700;
    min-width: 140px; /* text stabilization */
    text-align: center;
}

.status-text::after {
    content: 'STATUS: OFFLINE';
}

.nav-status-indicator:hover .status-text::after {
    content: '[ COMING SOON ]';
}

/* HERO SECTION */
.hero {
    position: relative;
    padding-top: 15rem;
    padding-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 900;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.email-capture-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.email-capture-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--text-primary);
    border: 1px solid var(--accent);
    outline: none;
    transition: var(--transition);
}

.email-capture-form input::placeholder {
    color: var(--text-secondary);
}

.email-capture-form input:focus {
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    background-color: #0A0A0A;
}

.trust-note {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-render {
    width: 100%;
    max-width: 500px;
    overflow: visible;
    background-color: transparent;
    transform: rotate(15deg);
    transition: var(--transition);
}

.product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Thermal & Neon glow effect */
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.5)) drop-shadow(0 0 40px rgba(255, 0, 85, 0.3));
}

.product-tech-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --- PHASE 2: TACTICAL HERO --- */
.tactical-hero {
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.particle-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 242, 255, 0.5) 2px, rgba(0, 242, 255, 0.5) 4px);
    background-size: 100% 4px;
    z-index: 1;
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { background-position: 0 0; }
    100% { background-position: 0 100vh; }
}

.hud-corners {
    position: absolute;
    top: 2rem; left: 2rem; right: 2rem; bottom: 2rem;
    z-index: 2;
    pointer-events: none;
}
.hud-corners .corner {
    position: absolute;
    width: 40px; height: 40px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
    opacity: 0.7;
}
.corner.top-left { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.corner.top-right { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.corner.bottom-left { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.corner.bottom-right { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.tactical-container {
    position: relative;
    z-index: 5;
}

.cyber-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #FFF;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.glitch {
    position: relative;
    display: inline-block;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--alert);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
    animation-delay: -2.5s;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 86px, 0); }
    10% { clip: rect(69px, 9999px, 4px, 0); }
    20% { clip: rect(31px, 9999px, 47px, 0); }
    30% { clip: rect(16px, 9999px, 66px, 0); }
    40% { clip: rect(98px, 9999px, 20px, 0); }
    50% { clip: rect(33px, 9999px, 44px, 0); }
    60% { clip: rect(74px, 9999px, 82px, 0); }
    70% { clip: rect(8px, 9999px, 2px, 0); }
    80% { clip: rect(51px, 9999px, 78px, 0); }
    90% { clip: rect(10px, 9999px, 24px, 0); }
    100% { clip: rect(96px, 9999px, 70px, 0); }
}

.cyber-copy {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
}

.cyber-subcopy {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
}

.tactical-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 242, 255, 0.4);
    background-color: rgba(0, 242, 255, 0.05);
}
.input-wrapper input {
    background: transparent;
    border: none;
    color: #FFF;
    padding: 1.2rem 1.5rem;
    width: 100%;
    outline: none;
    font-family: var(--font-body);
}
.input-wrapper input:focus {
    box-shadow: inset 0 0 15px rgba(0, 242, 255, 0.2);
}
.cursor-blink {
    width: 10px;
    height: 20px;
    background-color: var(--accent);
    margin-right: 1.5rem;
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.btn-cyber {
    background-color: #000;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 1.2rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.btn-cyber:hover {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 30px var(--accent);
    text-shadow: none;
}

/* GLITCH VIBRATION BUTTON EFFECT */
.btn-glitch:hover {
    animation: btn-vibrate 0.15s linear infinite both;
    text-shadow: 2px 0 var(--alert), -2px 0 var(--text-primary);
}

@keyframes btn-vibrate {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.status-bar {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(0, 242, 255, 0.7);
}

.product-video {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.3));
    /* mix-blend-mode: screen; */
    border-radius: 8px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

/* REASONS SECTION */
.reasons {
    background-color: #030406;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.reasons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.reason-col {
    padding: 3rem;
    background-color: var(--surface-color);
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.05);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.01),
        rgba(255,255,255,0.01) 2px,
        transparent 2px,
        transparent 4px
    );
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reason-col:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.reason-col:hover .feature-icon {
    filter: drop-shadow(0 0 8px var(--accent));
}

.reason-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.reason-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

/* SPOTLIGHT SECTION */
.spotlight {
    background-color: var(--bg-color);
}

.spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.spotlight-card {
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    background-color: var(--surface-color);
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-marker {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 2px solid var(--accent);
    box-shadow: 0 0 10px var(--accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

/* LIFESTYLE SECTION */
.lifestyle {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background-color: var(--surface-color);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    box-shadow: inset 0 0 50px rgba(0, 242, 255, 0.05);
}

.lifestyle-overlay {
    position: relative;
    z-index: 2;
}

.lifestyle-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lifestyle-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-family: var(--font-body);
}

/* VALIDATION SECTION (PHASE 4) */
.validation {
    position: relative;
    padding: 8rem 0;
    background-color: #030406;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    box-shadow: inset 0 0 50px rgba(0, 242, 255, 0.02);
}

.text-center { text-align: center; }

.live-counter {
    margin: 2rem auto 4rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent);
    background-color: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.counter-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

#device-counter {
    font-weight: bold;
    color: #FFF;
    text-shadow: 0 0 10px var(--accent);
}

/* 4.1 SURVEILLANCE MAP */
.surveillance-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 5rem;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    background-color: #000;
}

.surveillance-map-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.2));
}

.map-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.satellite-ping {
    position: absolute;
    top: 45%;
    left: 60%;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ping 10s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7); }
    15% { transform: translate(-50%, -50%) scale(3); opacity: 0; box-shadow: 0 0 0 20px rgba(0, 242, 255, 0); }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* 4.2 FIELD REPORTS */
.field-reports {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.report-card {
    background-color: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.report-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.report-barcode {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 15px;
    background-image: repeating-linear-gradient(90deg, var(--text-secondary) 0, var(--text-secondary) 2px, transparent 2px, transparent 4px, var(--text-secondary) 4px, var(--text-secondary) 5px, transparent 5px, transparent 8px);
    opacity: 0.5;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(0, 242, 255, 0.2);
    padding-bottom: 1rem;
}

.agent-avatar {
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: 1px solid var(--accent);
    object-fit: cover;
    mix-blend-mode: screen;
}

.synthetic-avatar {
    background: repeating-linear-gradient(0deg, var(--accent) 0, transparent 2px);
    opacity: 0.8;
}

.agent-info {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-family: var(--font-body);
    color: var(--text-primary);
    font-weight: 700;
}

.agent-status.verified {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.report-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 4.3 TARGET IDENTIFICATION HUD */
.target-hud-section {
    position: relative;
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 242, 255, 0.2);
    background-color: rgba(0, 5, 10, 0.8);
    overflow: hidden;
}

.scanner-laser {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background-color: var(--accent);
    box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
    z-index: 10;
    animation: scanner-laser-anim 5s linear infinite;
    pointer-events: none;
}

@keyframes scanner-laser-anim {
    0% { top: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hud-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #FFF;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
    margin-bottom: 3rem;
    letter-spacing: 0.15em;
}

.hud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.hud-module {
    display: flex;
    flex-direction: column;
}

.hud-image-wrapper {
    position: relative;
    border: 1px solid rgba(0, 242, 255, 0.4);
    background-color: #000;
    margin-bottom: 1rem;
    overflow: hidden;
}

.hud-hologram {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    opacity: 0.9;
}

.module-scanline {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 242, 255, 0.1) 2px, rgba(0, 242, 255, 0.15) 3px);
    pointer-events: none;
}

.hud-status-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.hud-progress {
    height: 100%;
    width: 30%;
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.animate-progress {
    animation: hud-progress-anim 2s infinite alternate ease-in-out;
}

@keyframes hud-progress-anim {
    0% { transform: translateX(0); width: 20%; }
    100% { transform: translateX(300%); width: 40%; }
}

.hud-copy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .hud-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hud-grid {
        grid-template-columns: 1fr;
    }
}

/* 4.4 LIVE FEED MONITOR */
.live-feed-monitor {
    position: relative;
    border: 2px solid rgba(0, 242, 255, 0.3);
    padding: 2rem;
    background-color: #000;
    border-radius: 4px;
    overflow: hidden;
}

.monitor-hud {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--accent);
    z-index: 10;
    pointer-events: none;
}

.hud-rec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.red-dot {
    width: 8px;
    height: 8px;
    background-color: var(--alert);
    border-radius: 50%;
    animation: blink 1s step-end infinite;
}

.monitor-scanlines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 242, 255, 0.05) 2px, rgba(0, 242, 255, 0.1) 4px);
    pointer-events: none;
    z-index: 5;
}

.surveillance-cards {
    position: relative;
    z-index: 2;
    margin: 2rem 0 0 0;
}

.surveillance-cards .social-card {
    filter: sepia(100%) hue-rotate(150deg) saturate(200%) contrast(1.2);
}

.surveillance-cards .social-card:hover {
    filter: none;
}

/* PHASE 5: FINAL DEPLOYMENT (FOOTER) */
.final-deployment {
    background-color: var(--bg-color);
    padding-top: 6rem;
    position: relative;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
}

.deployment-container {
    padding-bottom: 8rem; /* space for marquee */
}

/* 5.1 TACTICAL CASE VISUAL */
.tactical-case-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
}

.tactical-case-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.1);
}

/* 5.2 AUTHORIZATION HUB */
.authorization-hub {
    margin-bottom: 6rem;
}

.auth-input-wrapper {
    position: relative;
    border: 1px solid var(--alert);
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    animation: neon-blink 2s infinite alternate;
}

@keyframes neon-blink {
    0% { box-shadow: 0 0 5px rgba(255, 0, 85, 0.2); }
    100% { box-shadow: 0 0 15px rgba(255, 0, 85, 0.6), inset 0 0 10px rgba(255, 0, 85, 0.2); }
}

.auth-input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    color: #FFF;
    padding: 1.2rem 1.5rem;
    outline: none;
    font-family: var(--font-body);
    text-align: center;
}

.btn-initialize {
    width: 100%;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.btn-initialize.loading {
    pointer-events: none;
    color: var(--accent);
}

.loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: var(--accent);
    width: 0%;
    transition: width 2s cubic-bezier(0.1, 0.7, 1.0, 0.1);
}

.btn-initialize.loading .loading-bar {
    width: 100%;
}

.auth-success-msg {
    font-family: var(--font-body);
    color: #34C759;
    background-color: rgba(52, 199, 89, 0.1);
    border: 1px solid #34C759;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    border-radius: 4px;
    animation: blink 1s step-end infinite;
}

/* 5.3 THE COMMAND CENTER */
.command-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    border-top: 1px dashed rgba(0, 242, 255, 0.3);
    padding-top: 4rem;
}

.code-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.code-column h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.code-column a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(0, 242, 255, 0.7);
    transition: var(--transition);
}

.code-column a:hover {
    color: #FFF;
    text-shadow: 0 0 8px var(--accent);
}

/* 5.4 SYSTEM DETAILS (MARQUEE) */
.system-marquee-wrapper {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    background-color: #000;
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.system-marquee {
    display: inline-block;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0.8;
    animation: marquee 30s linear infinite;
}

.system-marquee span {
    padding-right: 50px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 5.5 THE KILL-SWITCH POPUP */
.kill-switch-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(20, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.kill-switch-modal.show {
    opacity: 1;
    pointer-events: all;
}

.kill-switch-content {
    background-color: #0D0000;
    border: 2px solid var(--alert);
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.3), inset 0 0 20px rgba(255, 0, 85, 0.1);
    padding: 4rem;
    max-width: 600px;
    text-align: center;
    animation: pulse-border 1.5s infinite alternate;
}

@keyframes pulse-border {
    0% { border-color: var(--alert); }
    100% { border-color: #880000; }
}

.alarm-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--alert);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.alarm-msg {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #FFF;
    margin-bottom: 3rem;
}

#kill-timer {
    font-weight: bold;
    color: var(--alert);
    font-size: 1.5rem;
}

.btn-alarm {
    color: #FFF;
    border-color: var(--alert);
}

.btn-alarm::before, .btn-alarm::after {
    color: var(--alert);
}

.btn-alarm:hover {
    background-color: var(--alert);
    box-shadow: 0 0 20px var(--alert);
}

.social-title {
    font-family: var(--font-heading);
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--alert);
}

.social-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.social-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.social-card {
    flex: 1;
    height: 300px;
    background-color: var(--surface-color);
    border: 1px solid rgba(0, 242, 255, 0.2);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
    border-color: var(--accent);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.5;
}

.card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.5;
}

.social-card:hover .card-image, .social-card:hover .card-video {
    transform: scale(1.05);
    filter: grayscale(0%) sepia(100%) hue-rotate(150deg);
    opacity: 0.8;
}

.bg-tiktok-1 { background-image: url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?q=80&w=800&auto=format&fit=crop'); }
.bg-yt-1 { background-image: url('https://images.unsplash.com/photo-1611162616475-46b635cb6868?q=80&w=800&auto=format&fit=crop'); }
.bg-product { background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?q=80&w=800&auto=format&fit=crop'); }

.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--accent);
}

.footer-cta {
    padding: 4rem 0 6rem;
}

.footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.footer-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
}

.footer-bottom {
    padding: 2rem 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 242, 255, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container, .spotlight-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .email-capture-form {
        flex-direction: column;
    }

    .hero-visual {
        margin-top: 2rem;
    }
    
    .features-list {
        text-align: left;
    }

    .spotlight-visual {
        order: 2;
    }

    .social-cards {
        flex-direction: column;
    }

    .command-center {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .reasons-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title, .section-title, .lifestyle-content h2, .footer-cta h2, .cyber-title, .alarm-title {
        font-size: 2.2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .kill-switch-content {
        padding: 2rem;
        max-width: 90%;
    }
    
    .media-logos {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .reason-col {
        padding: 1.5rem;
    }
    
    .btn:not(.btn-minimal) {
        width: 100%;
        text-align: center;
    }
    
    .nav-container .btn {
        width: auto;
    }
}
