@charset "UTF-8";
@import "./common.css";

/* Layout */
body {
    min-height: 100vh;
    align-items: center;
}

.brand {
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.75rem;
}

/* Content */
.logo-h {
    width: 52px;
    height: 52px;
}

.name {
    margin: 0;
    color: var(--color-teal);
    font-family: var(--font-title);
    font-size: clamp(1rem, 2rem, 2.5rem);
    font-weight: 600;
}

.practice {
    text-align: center;
    font-size: 0.75rem;
}

.title {
    text-align: center;
    line-height: 0.9;
    font-weight: 800;
    font-family: var(--font-title);
    font-size: clamp(2.3rem, 7vw, 4.5rem);
    letter-spacing: -0.04em;
}

.description {
    font-size: 1.3rem;
    max-width: 900px;
    margin: auto;
}

.available-soon {
    margin-top: 2rem;
    text-align: center;
}

/* Divider */
.divider {
    width: 60px;
    height: 6px;
    margin: auto auto 3rem;
    background-color: var(--color-teal);
}

/* Dynamic Identity */
.identity-dynamic {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.identity-dynamic .highlight {
    color: var(--color-teal);
    font-weight: 700;
}

.identity-dynamic .separator {
    color: var(--color-teal);
}

/* Animations */
.anim-step {
    opacity: 0;
    animation: fadeIn 0.6s forwards;
    animation: fadeOut 0.6s forwards;
}

.step-1 {
    animation-delay: 0.2s;
}

.step-2 {
    animation-delay: 0.8s;
}

.step-3 {
    animation-delay: 1.0s;
}

.step-4 {
    animation-delay: 1.6s;
}

.step-5 {
    animation-delay: 1.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(1.5em);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(1.5em);
    }
}

/* Logo & Tagline */
.main-logo {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 576px) {
    .main-logo {
        height: 80px;
    }

    .coming-soon-title {
        font-size: 14vw;
    }

    .identity-dynamic {
        font-size: 0.75rem;
    }
}
