* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050b12;
    font-family: 'Inter', sans-serif;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Атмосферная анимация */
.orb {
    position: absolute;
    width: 70vmax;
    height: 70vmax;
    background: radial-gradient(circle, rgba(42,75,96,0.4) 0%, rgba(5,11,18,0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.content {
    background: rgba(18, 28, 36, 0.6);
    border-radius: 32px;
    padding: 3rem 2rem;
    border: 1px solid rgba(174, 198, 207, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

h1 {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #e2e8f0 0%, #aec6cf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #5B86A1;
}

.divider {
    width: 60px;
    height: 2px;
    background: #2A4B60;
    margin: 1.5rem auto;
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #8A9BA8;
}

.indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 12px 16px;
    background: #121C24;
    border: 1px solid #2A4B60;
    border-radius: 40px;
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.2s;
}

.email-form input:focus {
    border-color: #AEC6CF;
    box-shadow: 0 0 8px rgba(174,198,207,0.3);
}

.email-form button {
    padding: 12px 28px;
    background: #2A4B60;
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: 0.2s;
}

.email-form button:hover {
    background: #5B86A1;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.7rem;
    margin-top: 1rem;
    color: #5B86A1;
}

@media (max-width: 600px) {
    h1 { font-size: 3rem; }
    .email-form { flex-direction: column; }
    .email-form button { padding: 12px; }
    .content { padding: 2rem 1.5rem; }
}