/* =========================================================
   POPUP OVERLAY
========================================================= */

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    padding: 1.5rem;

    background: rgba(0, 0, 0, .75);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    animation: popupOverlayFade .4s ease;
}

/* =========================================================
   POPUP CONTENT
========================================================= */

.popup-content {
    position: relative;

    width: 100%;
    max-width: 580px;

    padding: 3.5rem 2.5rem;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.01)
        ),
        var(--landin-bg-dark);

    color: #fff;

    border-radius: var(--landin-radius-xl);

    border: 1px solid rgba(198, 164, 108, .15);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45),
        0 0 0 1px rgba(198, 164, 108, .08);

    overflow: hidden;

    animation: popupEntrance .55s ease forwards;
}

/* =========================================================
   GLOW EFFECT
========================================================= */

.popup-content::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top center,
            rgba(198, 164, 108, .18),
            transparent 55%
        );

    pointer-events: none;
}

.popup-content::after {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 120px;
    height: 4px;

    border-radius: var(--landin-radius-pill);

    background: var(--landin-gradient-primary);
}

/* =========================================================
   BADGE
========================================================= */

.popup-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: .5rem 1rem;
    margin-bottom: 1.5rem;

    border-radius: var(--landin-radius-pill);

    background: rgba(198, 164, 108, .12);

    border: 1px solid rgba(198, 164, 108, .25);

    color: var(--landin-primary-light);

    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.popup-title {
    margin-bottom: 1rem;

    font-family: var(--landin-font-accent);

    font-size: clamp(2rem, 4vw, 3rem);

    color: #fff;
}

.popup-subtitle {
    max-width: 420px;

    margin-inline: auto;
    margin-bottom: 1.5rem;

    color: var(--landin-text-light);

    line-height: 1.8;
}

.popup-highlight {
    display: inline-block;

    padding: .85rem 1.25rem;

    margin-bottom: 1.25rem;

    border-radius: var(--landin-radius-pill);

    background: rgba(198, 164, 108, .08);

    border: 1px solid rgba(198, 164, 108, .20);

    color: var(--landin-primary-light);

    font-weight: 700;
}

.popup-footer {
    color: rgba(255,255,255,.75);

    margin-bottom: 0;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes popupEntrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes popupOverlayFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* =========================================================
   DIVIDER COMPONENT
========================================================= */

.landin-divider-icon {
    width: 80px;
    flex-shrink: 0;
}

.landin-divider-icon svg {
    display: block;
    width: 100%;
}

.landin-divider-icon path {
    fill: var(--landin-primary);
}

.landin-divider-text {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--landin-primary);
}
/* =========================================================
   DIVIDER
========================================================= */

.landin-divider-icon{
    fill: currentColor;
    color: var(--landin-primary);
}