/* prototype.st */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* Hero/Name Section */
.name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
}

.massive {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(64px, 12vw, 120px);
    line-height: 1;
    color: #000000;
    letter-spacing: -0.02em;
}

.domain {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #999999;
    margin-top: 0.5rem;
}

/* Status Section */
.status {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 4rem 2rem;
    background: #ffffff;
}

.status-block {
    background: #000000;
    color: #ffffff;
    padding: 48px 2rem;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.status-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #ffffff;
}

/* Thick Divider */
.thick-bar {
    height: 8px;
    background: #000000;
    width: 100%;
}

/* Footer/Version Section */
.version {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
}

.version-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    color: #999999;
}

.date-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: 400;
    color: #999999;
    margin-top: 0.3rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Palette - All colors from design */
/* #ffffff - white background */
/* #000000 - black text */
/* #999999 - gray muted */
/* #333333 - dark gray (hover/accent) */

/* Responsive Design */
@media (max-width: 768px) {
    .massive {
        font-size: clamp(48px, 10vw, 80px);
    }

    .domain {
        font-size: clamp(1rem, 2.5vw, 2rem);
    }

    .status-block {
        padding: 32px 1.5rem;
    }

    .status-text {
        font-size: 0.9rem;
    }
}
