:root {
    --bg: #184447;
    --bg-soft: #1d5055;
    --text: #f3ece0;
    --text-dim: rgba(243, 236, 224, 0.65);
    --accent: #a8cf45;
}

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

html, body {
    height: 100%;
}

body {
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse at top, rgba(168, 207, 69, 0.08), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.25), transparent 65%);
    color: var(--text);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-x: hidden;
}

.lang-switch {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    z-index: 10;
}

.lang-switch button {
    background: none;
    border: none;
    color: var(--text-dim);
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    font-weight: 600;
    padding: 0.25rem 0.4rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lang-switch button:hover {
    color: var(--text);
}

.lang-switch button.active {
    color: var(--accent);
}

.lang-switch .divider {
    color: var(--text-dim);
    opacity: 0.4;
}

.stage {
    max-width: 640px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-wrap {
    width: min(400px, 70vw);
    animation: float 4.5s ease-in-out infinite;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.85;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lede {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 460px;
}

.dots {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.4;
    animation: pulse 1.4s ease-in-out infinite;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.foot {
    position: fixed;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@media (max-width: 480px) {
    .stage { gap: 1rem; }
    .lede { font-size: 0.95rem; }
    .foot { margin-top: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .logo-wrap, .dots span {
        animation: none;
    }
}
