/* ================================================================
   Evolving cover page
   Shown to logged-out visitors when BOHO_EVOLVING_COVER=true.
   Uses ONLY existing design tokens — no new values introduced.
   ================================================================ */

.evolving-cover-body {
    min-height: 100dvh;
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface-app);
}

.evolving-cover {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
}

.evolving-cover__inner {
    width: min(100%, calc(var(--size-32) * 3.5));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

/* Brand row */
.evolving-cover__brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-muted);
}

.evolving-cover__logo {
    width: var(--size-8);
    height: var(--size-8);
    display: block;
    opacity: 0.6;
}

.evolving-cover__brand-name {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

/* Card */
.evolving-cover__card {
    width: 100%;
    padding: var(--space-10) var(--space-8);
    background: var(--surface-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
}

/* Leaf icon */
.evolving-cover__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size-12);
    height: var(--size-12);
    background: var(--surface-secondary);
    border-radius: var(--radius-full);
    color: var(--accent-primary);
    font-size: var(--text-2xl);
}

/* Headline */
.evolving-cover__headline {
    margin: 0;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--text-primary);
}

/* Subline */
.evolving-cover__subline {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    max-width: 36ch;
}

/* Login link — quiet, understated */
.evolving-cover__login-link {
    margin-top: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: var(--space-1);
}

.evolving-cover__login-link:hover {
    color: var(--text-secondary);
}

/* Mobile */
@media (max-width: 480px) {
    .evolving-cover {
        align-items: flex-start;
        padding-top: var(--space-12);
    }

    .evolving-cover__card {
        padding: var(--space-8) var(--space-6);
    }

    .evolving-cover__headline {
        font-size: var(--text-3xl);
    }
}
