:root {
    --bg-primary: #181818;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #232323;
    --bg-footer: #141414;
    --border: #2a2a2a;
    --border-hover: #3a3a3a;
    --text-primary: #e0e0e0;
    --text-secondary: #999999;
    --text-muted: #555555;
    --accent-blue: #5b7e9e;
    --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    background: linear-gradient(160deg, #1d1d1d 0%, var(--bg-primary) 50%, #1a1a1f 100%);
}

.page {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    animation: fadeIn 1s ease;
}

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

.logo {
    width: 240px;
    height: auto;
    margin-bottom: 64px;
    filter: grayscale(1);
    opacity: 0.8;
}

.headline {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.progress-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 35%;
    height: 100%;
    background: var(--accent-blue);
    border-radius: 2px;
    animation: load 2s ease-out forwards;
}

@keyframes load {
    from { width: 0; }
    to { width: 35%; }
}

.progress-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Footer */
.footer-section {
    background: var(--bg-footer);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: auto;
    padding: 64px 0;
}

.footer-content {
    max-width: 600px;
    text-align: center;
    padding: 2rem;
}

.footer-company {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.footer-details {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 2;
    letter-spacing: 0.01em;
}

.footer-details span {
    display: block;
}

.footer-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.7;
    display: inline;
    margin-right: 6px;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 32px auto;
}

.footer-logo {
    width: 60px;
    height: auto;
    filter: grayscale(1) brightness(1.5);
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
    .page { animation: none; }
    .progress-bar-fill { animation: none; }
}

@media (max-width: 560px) {
    .logo { width: 180px; margin-bottom: 48px; }
    .headline { font-size: 1.5rem; }
    .page { padding: 1.5rem; }
    .footer-content { padding: 1.5rem; }
}
