* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --bg: #090909;
    --panel: #111111;
    --text: #f4f4f4;
    --muted: #777777;
    --line: #202020;
    --accent: #ffffff;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 40%, #151515 0%, var(--bg) 48%, #050505 100%);
    color: var(--text);
    font-family:
        Inter,
        "Noto Sans KR",
        "Malgun Gothic",
        Arial,
        sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.landing {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 40px 24px;
}

.hero {
    position: relative;
    width: min(760px, 100%);
    text-align: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
}

h1 {
    margin: 0;
    font-size: clamp(58px, 11vw, 132px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.07em;
}

h1 span {
    font-weight: 300;
}

.status {
    display: inline-block;
    margin: 28px 0 0;
    padding: 9px 13px;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: #bcbcbc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.description {
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

footer {
    padding: 0 24px 24px;
    color: #555555;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.08em;
}

@media (max-width: 600px) {
    .landing {
        padding: 28px 18px;
    }

    .eyebrow {
        margin-bottom: 14px;
    }

    .status {
        margin-top: 22px;
    }
}
