@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@300;400;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg-deep: #050505;
    --bg-card: #0A0A0A;
    --accent-gold: #D4AF37;
    --accent-gold-dim: #997A24;
    --text-main: #FFFFFF;
    --text-dim: #A0A0A0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --danger: #FF4B2B;
}

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

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

section {
    padding: 6rem 0;
}

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
    position: relative;
    padding: 2rem;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.stats-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-val {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Outfit';
    color: var(--text-main);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-top: 5px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border 0.3s ease;
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.btn {
    background: var(--accent-gold);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    background: #fff;
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
}

.timeline-item {
    padding-left: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-gold);
}

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

.meth-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.severity-high {
    color: var(--danger);
    font-weight: 800;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    padding: 1rem;
    border-bottom: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.code-pill {
    font-family: 'JetBrains Mono', monospace;
    background: #111;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

pre {
    background: #000;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid var(--glass-border);
}

code {
    color: #88C0D0;
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

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

.f-item {
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 12px;
}

.f-item h5 {
    color: var(--accent-gold);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.terminal-window {
    background: #0D0D0D;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.terminal-header {
    background: #1A1A1A;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #333;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.t-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #88C0D0;
    overflow-x: auto;
}

.t-prompt { color: #81A1C1; margin-right: 10px; }
.t-cmd { color: #EBCB8B; }

.exfil-matrix {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 16px;
    border-spacing: 0;
    margin: 3rem 0;
}

.exfil-matrix th {
    background: rgba(212, 175, 55, 0.05);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--accent-gold);
}

.exfil-matrix td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.exfil-matrix tr:last-child td {
    border-bottom: none;
}

.plaintext-gold {
    color: var(--accent-gold);
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

.hash-dim {
    color: #555;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

@media (max-width: 968px) {
    .hero h1 { font-size: 3.5rem; }
    .meth-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .stat-box { margin-bottom: 1.5rem; }
    .hero h1 { font-size: 3rem; }
}
