:root {
    --primary-red: #ff0000;
    --dark-red: #8b0000;
    --bg-black: #050505;
    --text-white: #ffffff;
    --text-grey: #888888;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-black);
    /* Fallback / Base for hero */
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Matrix Background Canvas */
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center, #1a0000 0%, #000000 100%);
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 40px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #2a2a2a;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin: 0 auto;
    /* Glass metallic rim effect */
    box-shadow:
        inset 0 0 0 2px #444,
        0 0 0 2px #111,
        0 30px 60px rgba(0, 0, 0, 0.8);
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: #000;
    /* Inner screen bg */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screen-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* App Interface within Phone */
.app-interface {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    background: radial-gradient(circle at center, #1a0505 0%, #000 70%);
}

.app-interface::before {
    /* Subtle matrix effect inside phone too? Or just dark texture */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+');
    opacity: 0.3;
    pointer-events: none;
}

.lock-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.app-interface h2 {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 800;
}

.sub-glitch {
    color: var(--primary-red);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.app-desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 40px;
    line-height: 1.4;
}

.simulate-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    width: 100%;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.simulate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.security-note {
    font-size: 0.7rem;
    color: #555;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stats-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.8);
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #222;
}

.stat {
    text-align: center;
}

.stat .val {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.stat .lbl {
    color: #666;
    font-size: 0.6rem;
    line-height: 1.2;
}

/* Animations */
@keyframes glitch {
    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)
    }
}

/* Hard Truth Section */
#hard-truth {
    background-color: var(--bg-black);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.5;
}

.content-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Adjusted phone size for sections */
.phone-mockup.small {
    transform: scale(0.9);
    margin: 0;
}

.map-interface {
    height: 100%;
    background: #000;
    position: relative;
    padding: 20px;
    font-family: var(--font-mono);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.map-bg {
    width: 100%;
    height: 300px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.radar-scan {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 0, 0, 0.1) 60deg, transparent 60deg);
    transform: translate(-50%, -50%);
    animation: radar-spin 4s linear infinite;
    border-radius: 50%;
}

.location-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #550000;
    border-radius: 50%;
    box-shadow: 0 0 5px #ff0000;
}

.location-dot.active {
    background: #ff0000;
    animation: pulse 1s infinite;
}

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

.live-counter-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 5px;
}

.live-counter-val {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.text-content {
    max-width: 400px;
}

.pagination-indicator {
    font-family: var(--font-mono);
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-indicator .line {
    width: 30px;
    height: 1px;
    background: var(--primary-red);
}

.big-impact {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.impact-sub {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-mono);
}

.desc-text {
    color: #888;
    line-height: 1.6;
    margin-bottom: 40px;
}

.action-link {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.action-link:hover {
    background: #cc0000;
}

@keyframes radar-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .content-split {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .text-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .pagination-indicator {
        justify-content: center;
    }

    .action-link {
        margin: 0 auto;
    }
}

/* Data Leaks Section */
#data-leaks {
    background-color: var(--bg-black);
    /* Or maybe darker red tint? */
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.breach-interface {
    height: 100%;
    background: #000;
    padding: 20px;
    font-family: var(--font-mono);
    display: flex;
    flex-direction: column;
}

.breach-box {
    flex: 1;
    border: 1px solid #333;
    border-radius: 12px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.floating-pw {
    position: absolute;
    color: #c45d00;
    /* Orange/Gold color from screenshot */
    font-size: 0.8rem;
    opacity: 0.7;
    animation: float-up 6s infinite linear;
}

.p1 {
    top: 20%;
    left: 40%;
    animation-delay: 0s;
}

.p2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.p3 {
    top: 40%;
    left: 10%;
    animation-delay: 2s;
    color: #ff0000;
}

.p4 {
    top: 80%;
    left: 30%;
    animation-delay: 3s;
}

.breached-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 2.5rem;
    font-weight: 800;
    color: #440000;
    border: 4px solid #440000;
    padding: 10px 20px;
    letter-spacing: 5px;
    border-radius: 10px;
    text-transform: uppercase;
}

.orange-btn {
    background: #cc5500;
    /* Orange tone */
}

.orange-btn:hover {
    background: #aa4400;
}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}


/* Data Leaks Section */
#data-leaks {
    background-color: var(--bg-black);
    /* Or maybe darker red tint? */
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.breach-interface {
    height: 100%;
    background: #000;
    padding: 20px;
    font-family: var(--font-mono);
    display: flex;
    flex-direction: column;
}

.breach-box {
    flex: 1;
    border: 1px solid #333;
    border-radius: 12px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.floating-pw {
    position: absolute;
    color: #c45d00;
    /* Orange/Gold color from screenshot */
    font-size: 0.8rem;
    opacity: 0.7;
    animation: float-up 6s infinite linear;
}

.p1 {
    top: 20%;
    left: 40%;
    animation-delay: 0s;
}

.p2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.p3 {
    top: 40%;
    left: 10%;
    animation-delay: 2s;
    color: #ff0000;
}

.p4 {
    top: 80%;
    left: 30%;
    animation-delay: 3s;
}

.breached-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 2.5rem;
    font-weight: 800;
    color: #440000;
    border: 4px solid #440000;
    padding: 10px 20px;
    letter-spacing: 5px;
    border-radius: 10px;
    text-transform: uppercase;
}

.orange-btn {
    background: #cc5500;
    /* Orange tone */
}

.orange-btn:hover {
    background: #aa4400;
}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}


/* Real Time Attack Section */
#real-time-attack {
    background-color: var(--primary-red);
    padding: 100px 0;
    position: relative;
    z-index: 2;
    color: white;
}

#real-time-attack .section-sub {
    color: rgba(255, 255, 255, 0.9);
}

.attack-interface {
    height: 100%;
    background: #000;
    padding: 20px;
    font-family: var(--font-mono);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Matrix background inside this phone too */
.attack-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDBmZjAwIiBmaWxsLW9wYWNpdHk9IjAuMSIvPgo8L3N2Zz4=');
    z-index: 0;
}

.timer-circle {
    width: 180px;
    height: 180px;
    border: 8px solid #333;
    border-top: 8px solid #00ff00;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: spin 2s linear infinite;
    /* Just spinning the border/loader aspect */
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.timer-text {
    font-size: 2.5rem;
    font-weight: 800;
    animation: none;
    /* Text shouldn't spin */
}

.timer-sub {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.attack-status {
    text-align: center;
    color: #00ff00;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.green-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff00;
}

.attack-stats-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: relative;
    z-index: 1;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.attack-stats-row .val {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.attack-stats-row .lbl {
    font-size: 0.5rem;
    color: #888;
}

.green-btn {
    background: linear-gradient(135deg, #00cc00, #008800);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.green-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.4);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Stop the text from spinning inside the spinner */
.timer-content-fix {
    animation: spin-reverse 2s linear infinite;
    text-align: center;
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Footer */
footer {
    background: #000;
    padding: 60px 20px;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
    border-top: 1px solid #222;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer .app-store-badge {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    background: #000;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

footer .app-store-badge:hover {
    background: #222;
    border-color: #666;
    transform: translateY(-2px);
}

footer .app-store-badge i {
    font-size: 24px;
}

footer .badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

footer .badge-text span:first-child {
    font-size: 0.6rem;
    font-weight: 400;
}

footer .badge-text span:last-child {
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 900px) {
    .reverse-mobile {
        flex-direction: column-reverse;
    }
}

/* --- POLISH UPDATES --- */

/* Smooth fade at bottom of hero */
#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg-black));
    pointer-events: none;
    z-index: 1;
}

/* Premium Phone Bezel */
.phone-mockup {
    border-color: #111;
    box-shadow:
        0 0 0 2px #444,
        0 0 0 4px #000,
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    /* Subtle rim light */
}

/* Neon Glows */
.live-counter-val {
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.4);
}

.sub-glitch {
    text-shadow: 0 0 5px var(--primary-red);
}

/* Button Shine Effect */
.action-link,
.simulate-btn {
    position: relative;
    overflow: hidden;
}

.action-link::after,
.simulate-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg) translate(-100%, 0);
    transition: transform 0.5s;
}

.action-link:hover::after,
.simulate-btn:hover::after {
    transform: rotate(45deg) translate(100%, 0);
}

.breached-stamp {
    font-family: 'Stencil', sans-serif;
    border: 5px solid #660000;
    color: #880000;
    background: rgba(100, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    transform: translate(-50%, -50%) rotate(-12deg);
    box-shadow: 0 0 20px rgba(100, 0, 0, 0.5);
}

/* --- POLISH UPDATES --- */

/* Smooth fade at bottom of hero */
#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg-black));
    pointer-events: none;
    z-index: 1;
}

/* Premium Phone Bezel */
.phone-mockup {
    border-color: #111;
    box-shadow:
        0 0 0 2px #444,
        0 0 0 4px #000,
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    /* Subtle rim light */
}

/* Neon Glows */
.live-counter-val {
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.4);
}

.sub-glitch {
    text-shadow: 0 0 5px var(--primary-red);
}

/* Button Shine Effect */
.action-link,
.simulate-btn {
    position: relative;
    overflow: hidden;
}

.action-link::after,
.simulate-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg) translate(-100%, 0);
    transition: transform 0.5s;
}

.action-link:hover::after,
.simulate-btn:hover::after {
    transform: rotate(45deg) translate(100%, 0);
}

.breached-stamp {
    font-family: 'Stencil', sans-serif;
    border: 5px solid #660000;
    color: #880000;
    background: rgba(100, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    transform: translate(-50%, -50%) rotate(-12deg);
    box-shadow: 0 0 20px rgba(100, 0, 0, 0.5);
}

.green-btn {
    background: #00cc00;
    /* Green tone */
}

.green-btn:hover {
    background: #00aa00;
}

/* --- NEW SECTIONS --- */

/* How It Works */
#how-it-works {
    background-color: var(--bg-black);
    padding: 100px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #111;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 30px 20px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.step-num {
    font-family: var(--font-mono);
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 800;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.step-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Analysis Factors */
#analysis-factors {
    background-color: #000;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list li .icon {
    color: var(--primary-red);
    font-weight: 800;
}



/* Real Time Attack Section */
#real-time-attack {
    background-color: var(--bg-black);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-item {
    text-align: center;
    padding: 30px;
    background: #000;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tech-item h4 {
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-mono);
}

.tech-item p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Privacy */
#privacy {
    background: var(--bg-black);
    padding: 80px 0;
    z-index: 2;
    position: relative;
}

.privacy-box {
    background: rgba(255, 0, 0, 0.05);
    /* Very subtle red tint */
    border: 1px solid #330000;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}

.privacy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.privacy-desc {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.p-feat {
    flex: 1;
    min-width: 200px;
    color: #888;
    background: #000;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #222;
}

.p-feat strong {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

/* Footer & Disclaimers */
.footer-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.footer-col p {
    color: #666;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: #444;
}

.footer-links a {
    color: #666;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .privacy-features {
        flex-direction: column;
    }

    .footer-cols {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- Interactive Demo Section --- */
#interactive-demo {
    background-color: #080808;
    padding: 80px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.demo-container {
    max-width: 600px;
    margin: 0 auto;
}

.demo-box {
    background: #000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hacker-input-wrapper {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
}

.hacker-input-wrapper .prompt {
    color: #00ff00;
    font-family: var(--font-mono);
    margin-right: 15px;
    white-space: nowrap;
}

.hacker-input-wrapper input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.hacker-input-wrapper input::placeholder {
    color: #666;
}

.toggle-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 10px;
    transition: color 0.3s;
}

.toggle-btn:hover {
    color: #fff;
}

.demo-result {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.demo-result.hidden {
    display: none;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
    box-shadow: 0 0 8px #555;
}

#result-title {
    color: #ccc;
    font-family: var(--font-mono);
    font-size: 1.1rem;
}

.result-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
}

.stat-value {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.stat-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.risk-critical {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: #ff0000;
}

.risk-high {
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid orange;
    color: orange;
}

.risk-moderate {
    background: rgba(255, 255, 0, 0.2);
    border: 1px solid yellow;
    color: yellow;
}

.risk-low {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    color: #00ff00;
}

.action-cta {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    line-height: 1.5;
}

.action-cta a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
}

.action-cta a:hover {
    text-decoration: underline;
}

/* --- Comparison Section --- */
#comparison {
    background-color: var(--bg-black);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.comparison-table {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.comp-col {
    flex: 1;
    min-width: 300px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.comp-col.breaker {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.1);
}

.comp-header {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-mono);
}

.comp-col.traditional .comp-header {
    color: #888;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.comp-list li {
    font-size: 1.05rem;
    color: #ccc;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.4;
}

.comp-list li i {
    margin-top: 4px;
}

.comp-list li i.bad {
    color: #ff4444;
}

.comp-list li i.good {
    color: #00ff00;
}

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

.download-btn-small {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.download-btn-small:hover {
    background: #cc0000;
}

/* --- FAQ Section --- */
#faq {
    background-color: var(--bg-black);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

details:hover {
    border-color: #555;
}

details[open] {
    background: #1a1a1a;
    border-color: rgba(255, 0, 0, 0.3);
}

summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 400;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

.details-content {
    padding: 0 20px 20px;
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}