:root {
    --bg: #0a0a0c;
    --fg: #e8e6e1;
    --muted: #6b6a66;
    --accent: #c8b88a;
    --grid: rgba(255, 255, 255, 0.035);
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --mono: 'JetBrains Mono', 'Consolas', monospace;
}

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

html,
body {
    height: 100%;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--serif);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

#bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(to right, var(--grid) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

main {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: lowercase;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1.8s ease 0.2s forwards;
}

h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(4rem, 14vw, 11rem);
    letter-spacing: -0.02em;
    line-height: 1;
    font-style: italic;
    opacity: 0;
    animation: fadeIn 2s ease 0.6s forwards;
}

.subtitle {
    font-family: var(--mono);
    font-weight: 300;
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: lowercase;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeIn 2s ease 1.2s forwards;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: lowercase;
    opacity: 0;
    animation: fadeIn 2s ease 1.6s forwards;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}