:root {
    --bg-top: #000000;
    --bg-bottom: #367526;
    --text-main: #e0e0e0;
}

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

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

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: linear-gradient(to top, var(--bg-bottom) 0%, var(--bg-top) 45%);
}

.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem 4rem;
}

.logo-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000000;
}

.logo-full img {
    display: block;
    width: 100%;
    max-width: 1500px;
    height: auto;
}

.logo-portrait {
    display: none;
}

.status {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.site-footer {
    width: 100%;
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(224, 224, 224, 0.8);
    background: #000000;
}

.site-footer p + p {
    margin-top: 0.25rem;
}

/* Phone Portrait */
@media (max-width: 767px) and (orientation: portrait) {
    .logo-full {
        display: none;
    }

    .logo-portrait {
        display: block;
        max-width: 60vw;
        height: auto;
    }

    .status {
        font-size: 1.25rem;
        margin-top: 1rem;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
    .status {
        font-size: 1.6rem;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .status {
        font-size: 1.8rem;
    }
}
