:root {
    --primary: #0ea5e9;
    --secondary: #6366f1;
    --accent: #22c55e;
    --bg-main: #0a0c10;
    --bg-card: #11141b;
    --border-dim: #1e293b;
    --text-head: #f8fafc;
    --text-body: #cbd5e1;
    --text-mono: #38bdf8;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-serif: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-serif);
    line-height: 1.5;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 100%),
        linear-gradient(rgba(30, 41, 59, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 41, 59, 0.2) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    overflow-x: hidden;
}

/* Scanning Line Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 45%, rgba(14, 165, 233, 0.05) 50%, transparent 55%);
    background-size: 100% 200%;
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 1000;
}

@keyframes scan {
    from {
        background-position: 0 100%;
    }

    to {
        background-position: 0 -100%;
    }
}

/* Corner Accents */
.corner-accent {
    position: fixed;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
}

.top-left {
    top: 20px;
    left: 20px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.report-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 40px;
    border-left: 1px solid var(--border-dim);
    border-right: 1px solid var(--border-dim);
    min-height: 100vh;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(4px);
}

/* Data Agent Accents */
.agent-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agent-meta::before {
    content: '>';
    color: var(--accent);
}

/* Header */
header {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-dim);
}

header h1 {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    color: var(--text-head);
    margin-bottom: 0.5rem;
}

.header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-mono);
}

/* Sections */
section {
    margin-bottom: 3.5rem;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dim);
    padding-bottom: 0.5rem;
}

.section-head h2 {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--text-head);
    font-weight: 600;
}

/* Report Cards */
.report-entry {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--border-dim);
    transition: border-color 0.3s;
}

.report-entry:hover {
    border-left-color: var(--primary);
}

.entry-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-head);
    margin-bottom: 0.2rem;
}

.project-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-mono);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s;
}

.project-link:hover {
    background: var(--primary);
    color: var(--bg-main);
}

.entry-subtitle {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.entry-content {
    font-size: 0.95rem;
    line-height: 1.6;
}

.entry-content ul {
    list-style: none;
    margin-top: 0.5rem;
}

.entry-content li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
}

.entry-content li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Skills Grid */
.skills-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.skill-item {
    padding: 0.5rem;
    border: 1px solid var(--border-dim);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.skill-item span {
    color: var(--text-mono);
}

/* Navigation - Minimal */
nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

nav a {
    width: 10px;
    height: 10px;
    background: var(--border-dim);
    border-radius: 50%;
    transition: all 0.3s;
}

nav a:hover,
nav a.active {
    background: var(--primary);
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .report-container {
        padding: 40px 20px;
        border: none;
    }

    nav {
        display: none;
    }
}