:root {
    --bg-deep: #1a1030;
    --bg-mid: #2d1b4e;
    --bg-warm: #4a2a5e;
    --thread: rgba(200, 180, 255, 0.35);
    --thread-glow: rgba(255, 200, 240, 0.6);
    --ink: #f4ecff;
    --ink-soft: #c9b8ea;
    --accent: #ffb5e8;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Georgia', 'Iowan Old Style', serif;
    background: radial-gradient(ellipse at 50% 20%, var(--bg-warm), var(--bg-mid) 45%, var(--bg-deep) 100%);
    color: var(--ink);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#web {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.stage {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    animation: drift-in 1.6s ease-out;
}

.eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.title {
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.25),
        0 0 45px rgba(255, 181, 232, 0.45),
        0 0 90px rgba(182, 168, 255, 0.35);
    animation: glow 6s ease-in-out infinite;
}

.tagline {
    margin-top: 1.1rem;
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}

.status {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.03);
}

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

@keyframes glow {
    0%, 100% {
        text-shadow:
            0 0 12px rgba(255, 255, 255, 0.25),
            0 0 45px rgba(255, 181, 232, 0.45),
            0 0 90px rgba(182, 168, 255, 0.35);
    }
    50% {
        text-shadow:
            0 0 16px rgba(255, 255, 255, 0.35),
            0 0 60px rgba(255, 181, 232, 0.65),
            0 0 110px rgba(182, 168, 255, 0.5);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
}

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