@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,600;6..96,700;6..96,800&display=swap');

.aurora-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
    min-width: 0;
    /* Light CSS glow for the transparent logo — keeps the PNG clean (no baked
       halo) and adapts to any background. Cyan core + subtle deep-navy depth. */
    --aurora-logo-glow: drop-shadow(0 0 11px rgba(45, 211, 227, 0.32)) drop-shadow(0 6px 14px rgba(4, 18, 48, 0.2));
}

.aurora-brand__icon-shell {
    position: relative;
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    overflow: visible;
    border-radius: 22px;
    background: transparent;
    border: none;
}

.aurora-brand__icon-shell::before {
    display: none;
}

.aurora-brand__icon-shell::after {
    display: none;
}

.aurora-brand__icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    filter: var(--aurora-logo-glow);
    transform: none;
}

.aurora-brand__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.aurora-brand__wordmark {
    display: inline-block;
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    font-optical-sizing: auto;
    font-size: 2.24rem;
    line-height: 0.88;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: none;
    white-space: nowrap;
    background: linear-gradient(120deg, #eafdff 0%, #82d8ff 20%, #2fb8ff 44%, #24cfe0 68%, #33d6c2 90%, #86d77b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 28px rgba(6, 22, 58, 0.28);
}

.aurora-brand__wordmark::after {
    content: '';
    display: block;
    width: 72%;
    height: 1px;
    margin-top: 6px;
    background: linear-gradient(90deg, rgba(124, 226, 255, 0.55), rgba(134, 215, 123, 0));
    opacity: 0.72;
}

@media (max-width: 820px) {
    .aurora-brand {
        gap: 12px;
    }

    .aurora-brand__icon-shell {
        width: 54px;
        height: 54px;
        border-radius: 20px;
    }

    .aurora-brand__wordmark {
        font-size: 2rem;
    }
}
