:root {
    --color-bg: #000000;
    --color-accent: #f0e2a8;
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #9a9a9a;
    --color-text-muted: #5a5a5a;
    --font-serif: 'Roboto Slab', 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html,
body {
    height: 100%;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
    position: relative;
}

.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 2rem;
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

.content {
    animation: fadeInUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.75rem;
}

.tagline {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

.footer {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    animation: fadeIn 1.2s ease-out 0.4s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 560px) {
    .container {
        padding: 3rem 1.25rem 1.5rem;
    }

    .logo-section {
        margin-bottom: 2.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
