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

:root {
    --bg: #ffffff;
    --text: #0a0a0a;
    --accent: #c4a052;
    --dim: #888888;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
}

.page {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Top bar */
.top {
    display: flex;
    align-items: center;
    padding: 1.75rem 3.5rem;
}

.logo-header {
    width: 48px;
    height: auto;
}

/* Main */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
}

.content {
    text-align: center;
}

.logo-main {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.big-text {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.big-text span {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 0.5em;
    letter-spacing: 0.1em;
    color: var(--dim);
    margin-top: 0.35rem;
}

.accent-bar {
    width: 50px;
    height: 4px;
    background: var(--accent);
    margin: 1.5rem auto;
}

.status {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--text);
}

/* Side decorations */
.side-left {
    position: fixed;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
}

.side-text {
    font-family: 'Manrope', sans-serif;
    writing-mode: vertical-rl;
    font-size: 0.4375rem;
    letter-spacing: 0.25em;
    color: var(--dim);
    text-transform: uppercase;
}

/* Bottom */
.bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.5rem 3.5rem;
    border-top: 1px solid #eeeeee;
}

.bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bottom-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.4375rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dim);
}

.bottom-value {
    font-family: 'Manrope', sans-serif;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text);
}

.bottom-right {
    display: flex;
    gap: 3rem;
}

.bottom-col {
    text-align: right;
}

/* Animations */
.top, main, .bottom {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.top { animation-delay: 0.15s; }
main { animation-delay: 0.35s; }
.bottom { animation-delay: 0.55s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .top {
        padding: 1.25rem 1.5rem;
    }

    .logo-header {
        width: 38px;
    }

    main {
        padding: 0 1.5rem;
    }

    .logo-main {
        width: 150px;
        margin-bottom: 1.5rem;
    }

    .big-text {
        font-size: clamp(1.75rem, 7vw, 3rem);
    }

    .accent-bar {
        width: 40px;
        margin: 1.25rem auto;
    }

    .bottom {
        padding: 1.25rem 1.5rem;
    }

    .bottom-right {
        display: none;
    }

    .side-left {
        display: none;
    }
}