:root {
    --bg-color: #ffffff;
    --text-main: #1a1a1a;
    --text-secondary: #666666;
    --accent: #007AFF; 
    --line: #eeeeee;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 3rem 0;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    line-height: 1;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 3rem;
}

.status-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@keyframes slide {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .hero h1 { font-size: 3rem; }
    .tagline { font-size: 1.2rem; }
}