@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;800;900&display=swap');

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #64b5f680;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64b5f680;
    padding: 20px;
}

.container {
    max-width: 700px;
    text-align: center;
    background: rgba(255, 252, 248, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 245, 235, 0.5);
    border-radius: 48px;
    padding: 60px 40px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

/* ——— Логотип (только иконка) ——— */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    background: #f7efe8;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
}

.logo-icon svg {
    display: block;
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #c07c4a;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo-icon:hover {
    transform: scale(1.05);
}

/* ——— Название с цветными буквами ——— */
h1 {
    font-family: 'Cairo', 'Segoe UI', system-ui;
    font-weight: 600; /* Cairo-SemiBold */
    font-size: 4.5rem;
    letter-spacing: -0.02em;
    margin: 0 0 4px 0;
    line-height: 1.1;
    text-transform: lowercase; /* делаем все строчные */
}

.first-letter {
    color: #f57c00; /* оранжевый */
}

.rest-letters {
    color: #263238; /* черный с оттенком */
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(60, 55, 48, 0.5);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 2px;
    margin-bottom: 32px;
}

.coming-soon {
    margin: 30px 0 28px;
}

.badge {
    display: inline-block;
    background: rgba(192, 124, 74, 0.10);
    color: #a57248;
    border: 1px solid rgba(192, 124, 74, 0.20);
    padding: 8px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(45, 42, 36, 0.7);
    margin: 20px 0 32px;
}

.social {
    margin-top: 20px;
    font-size: 1rem;
}

.social a {
    color: #b27a4e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.social a:hover {
    color: #8f653f;
    text-decoration: underline;
}

.footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: rgba(45, 42, 36, 0.25);
    letter-spacing: 0.05em;
}

/* адаптив */
@media (max-width: 500px) {
    .container {
        padding: 40px 24px 36px;
        border-radius: 32px;
    }
    h1 {
        font-size: 3.2rem;
    }
    .logo-icon {
        width: 64px;
        height: 64px;
    }
    .logo-icon svg {
        width: 38px;
        height: 38px;
    }
}
