:root {
    --bg-base: #030712;
    --text-main: #f8fafc;
    --text-dim: #64748b;
    --accent: #38bdf8;
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-display: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-display);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.gradient-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.15), transparent 60%);
    z-index: -2;
}

.noise {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

/* Layout */
.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Typography & Meta */
.meta-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 4rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-logo {
    height: 1.5rem;
    width: auto;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.section-meta {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Hero */
.monolith-hero {
    margin-bottom: 8rem;
}

.huge-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.sub-huge {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.mission-statement {
    max-width: 400px;
    font-size: 1.25rem;
}

.primary-action {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--text-main);
    color: var(--bg-base);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.primary-action:hover {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* Sections */
.monolith-section {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
}

.monolith-section.no-border {
    border-top: none;
}

.lead-text {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.3;
    max-width: 1100px;
    margin-bottom: 4rem;
}

.tech-stack {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.monolith-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.monolith-title.small {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.role-text {
    font-family: var(--font-mono);
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.desc-text {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    max-width: 500px;
}

.outline-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--border-color);
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
    background: var(--bg-base);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-title .duration {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-left: 0.5rem;
}

.timeline-desc {
    color: var(--text-dim);
    font-size: 1.125rem;
    max-width: 800px;
}

.timeline-link {
    margin-top: 1.5rem;
}

.highlight-item {
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    margin-left: -2rem;
    margin-right: -2rem;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
}

.highlight-item::before {
    left: -0.3rem;
    top: 2.5rem;
    box-shadow: 0 0 10px var(--accent);
}

.highlight-item .timeline-title {
    color: var(--accent);
    font-size: 2rem;
}

/* Network Links */
.network-links {
    display: flex;
    flex-direction: column;
}

.net-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.net-link:hover {
    color: var(--accent);
}

.net-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.net-desc {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-dim);
}

@media (max-width: 600px) {
    .net-link { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* Logos */
.logo-grid-cyber {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.cyber-logo {
    background: #ffffff;
    padding: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.cyber-logo:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cyber-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Footer */
footer {
    margin-top: 4rem;
}

.meta-data.bottom {
    margin-bottom: 0;
    border-bottom: none;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-dim);
    transition: color 0.3s ease;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--accent);
}
