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

:root {
    --bg-deep: #0a0a0f;
    --cyan-accent: #5eead4;
    --cyan-muted: #2dd4bf;
    --text-primary: #e0e0e0;
    --text-muted: #71717a;
    --grid-line: rgba(0, 255, 242, 0.015);
}

html, body {
    height: 100%;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--bg-deep);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Very subtle static grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

/* Main content */
.container {
    position: relative;
    z-index: 10;
    max-width: 640px;
    padding: 2rem;
    text-align: center;
}

.statement {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.01em;
    color: var(--text-muted);
    animation: fade-in 1s ease-out;
}

.highlight {
    color: var(--cyan-accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.highlight:hover {
    opacity: 0.7;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact link */
.contact-link {
    display: inline-block;
    margin-top: 2.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--text-muted);
    transition: color 0.2s ease, border-color 0.2s ease;
    animation: fade-in 1s ease-out 0.2s both;
}

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

/* Responsive */
@media (max-width: 768px) {
    .statement {
        font-size: 1.1rem;
        line-height: 1.9;
    }
    
    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .statement {
        font-size: 1rem;
        line-height: 1.8;
    }
}
