:root {
    --bg: #0a0a0a;
    --fg: #e0e0e0;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --dim: #666;
}

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

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    overflow-x: hidden;
}

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

main {
    max-width: 680px;
    padding: 3rem 2rem;
    text-align: center;
}

header {
    margin-bottom: 4rem;
}

h1 {
    font-family: 'Space Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    position: relative;
}

.glitch {
    position: relative;
    color: var(--fg);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(62px, 9999px, 12px, 0); }
    40% { clip: rect(89px, 9999px, 55px, 0); }
    60% { clip: rect(15px, 9999px, 88px, 0); }
    80% { clip: rect(72px, 9999px, 29px, 0); }
    100% { clip: rect(48px, 9999px, 91px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 99px, 0); }
    20% { clip: rect(23px, 9999px, 66px, 0); }
    40% { clip: rect(91px, 9999px, 14px, 0); }
    60% { clip: rect(37px, 9999px, 78px, 0); }
    80% { clip: rect(56px, 9999px, 42px, 0); }
    100% { clip: rect(11px, 9999px, 83px, 0); }
}

.subtitle {
    color: var(--dim);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.manifesto {
    margin-bottom: 4rem;
}

.manifesto p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.attributes {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.3rem;
}

.value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.signal {
    margin: 3rem 0;
}

.mono {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--dim);
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: var(--accent);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.small {
    font-size: 0.75rem;
    color: var(--dim);
    font-family: 'Space Mono', monospace;
}

@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .attributes { flex-direction: column; gap: 1.5rem; }
}
