/* Landing CTA shadows — matches Continue with Google (shadow-sm / shadow-md) */

.hero-cta-btn {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.hero-cta-btn:hover {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.landing-cta-btn {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition:
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.landing-cta-btn:hover {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Footer nav icons — match header nav styling */
.landing-footer-nav__icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #94a3b8;
    transition: color 0.15s ease;
}

.landing-footer-nav__icon-img {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    object-fit: contain;
}

.landing-footer-nav__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    color: #94a3b8;
    transition: color 0.15s ease;
}

a:hover .landing-footer-nav__icon,
a:hover .landing-footer-nav__glyph {
    color: #64748b;
}
