:root {
    --color-bg: #ffffff;
    --color-text-main: #111111;
    --color-text-muted: #767676;
    --color-border: #e5e5e5;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html, body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text-main);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 24px;
    text-align: center;
}

.content {
    width: min(760px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pageEnter 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo-wrap {
    margin-bottom: 46px;
    opacity: 0;
    animation: fadeUp 1s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.logo {
    display: block;
    width: auto;
    max-width: min(280px, 70vw);
    max-height: 110px;
    object-fit: contain;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.subtitle {
    color: var(--color-text-muted);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    letter-spacing: 0.7px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1s 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 48px;
    opacity: 0;
    animation: fadeUp 1s 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.social-link {
    position: relative;
    padding: 8px 2px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: var(--color-text-main);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: var(--color-text-muted);
    transform: translateY(-2px);
}

.social-link:hover::after {
    transform: scaleX(1);
}

.social-divider {
    width: 1px;
    height: 18px;
    background: var(--color-border);
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .coming-soon {
        padding: 35px 20px;
    }

    .logo-wrap {
        margin-bottom: 34px;
    }

    .logo {
        max-width: 220px;
        max-height: 90px;
    }

    h1 {
        letter-spacing: 1.8px;
    }

    .subtitle {
        line-height: 1.7;
    }

    .socials {
        gap: 14px;
        margin-top: 38px;
    }

    .social-link {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .social-divider {
        height: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .content,
    .logo-wrap,
    h1,
    .subtitle,
    .socials {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .social-link,
    .social-link::after {
        transition: none;
    }
}
