/* ═══════════════════════════════════════════════════════════
   INTERNSHIP PROGRAM — Promotional Popup Modal
   ═══════════════════════════════════════════════════════════ */

/* ── Overlay ──────────────────────────────────────────────── */
.ip-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ip-popup-overlay.ip-active {
    opacity: 1;
    visibility: visible;
}

/* ── Dismiss state — slide right + fade out ──────────────── */
.ip-popup-overlay.ip-dismissing {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease 0.15s, visibility 0s linear 0.65s;
}

.ip-popup-overlay.ip-dismissing.ip-dismissed {
    opacity: 0;
}

.ip-popup-overlay.ip-dismissing .ip-popup-border-wrap {
    transition: transform 0.55s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.45s ease;
    transform: translateX(120%) scale(0.85) rotate(4deg);
    opacity: 0;
}

/* ── Animated Border Wrapper ──────────────────────────────── */
.ip-popup-border-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #00c3ff, #6e45e2, #ff6b35, #ffd700, #00e676, #00c3ff);
    background-size: 400% 400%;
    animation: ipBorderRotate 6s ease infinite;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 195, 255, 0.15),
        0 0 60px rgba(110, 69, 226, 0.1),
        inset 0 0 30px rgba(0, 195, 255, 0.05);
}

.ip-popup-overlay.ip-active .ip-popup-border-wrap {
    transform: scale(1) translateY(0);
}

@keyframes ipBorderRotate {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 100% 0%; }
    50%  { background-position: 100% 100%; }
    75%  { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* ── Modal Container — Animated background ───────────────── */
.ip-popup-modal {
    position: relative;
    width: 100%;
    max-height: 90vh;
    background: #0a0e1a;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
}

/* Animated nebula background across entire modal */
.ip-popup-modal::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 40% 35% at 20% 30%, rgba(0, 195, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 35% 40% at 75% 65%, rgba(110, 69, 226, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 30% 30% at 60% 20%, rgba(255, 107, 53, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 35% 35% at 30% 80%, rgba(0, 230, 118, 0.04) 0%, transparent 55%);
    animation: ipNebulaFloat 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

/* Animated particles / stars overlay */
.ip-popup-modal::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 45% 60%, rgba(0,195,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 70% 15%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 85% 75%, rgba(110,69,226,0.5), transparent),
        radial-gradient(1px 1px at 30% 85%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1.5px 1.5px at 55% 40%, rgba(0,195,255,0.35), transparent),
        radial-gradient(1px 1px at 90% 45%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 10% 55%, rgba(110,69,226,0.35), transparent);
    animation: ipStarsTwinkle 5s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

/* transform is now on .ip-popup-border-wrap above */

/* ── Close Button ─────────────────────────────────────────── */
.ip-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.ip-popup-close:hover {
    background: rgba(255, 60, 60, 0.7);
    border-color: rgba(255, 60, 60, 0.8);
    transform: rotate(90deg);
}

/* ── Header Banner ────────────────────────────────────────── */
.ip-popup-header {
    position: relative;
    padding: 36px 32px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 195, 255, 0.1);
    z-index: 1;
}

/* Animated scanning line across header */
.ip-popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.04), transparent);
    animation: ipScanLine 4s ease-in-out infinite;
    pointer-events: none;
}

/* Animated border glow at bottom of header */
.ip-popup-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c3ff, #6e45e2, transparent);
    background-size: 200% 100%;
    animation: ipBorderGlow 3s ease infinite;
}

.ip-popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.15), rgba(110, 69, 226, 0.15));
    border: 1px solid rgba(0, 195, 255, 0.3);
    color: #00c3ff;
    padding: 4px 16px;
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    animation: ipBadgePulse 2.5s ease-in-out infinite;
}

.ip-popup-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 195, 255, 0.25), 0 0 40px rgba(110, 69, 226, 0.12);
    animation: ipTitleGlow 3s ease-in-out infinite;
}

/* Glow pulse behind title */
.ip-popup-title::before {
    content: '';
    position: absolute;
    inset: -8px -16px;
    border-radius: 12px;
    background: radial-gradient(ellipse at center, rgba(0, 195, 255, 0.08) 0%, transparent 70%);
    animation: ipTitleGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* "Integrated" keyword — animated gradient highlight */
.ip-popup-title span span {
    background: linear-gradient(90deg, #00e5ff, #a78bfa, #ffd700, #00e5ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ipKeywordShift 4s linear infinite;
    filter: drop-shadow(0 0 10px rgba(110, 69, 226, 0.4));
    font-weight: 700;
}

/* Each line fades in and rises with stagger */
.ip-title-line {
    display: inline-block;
    opacity: 0;
    animation: ipLineFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.ip-title-line-2 {
    animation-delay: 0.55s !important;
}

@keyframes ipLineFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes ipTitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 195, 255, 0.25), 0 0 40px rgba(110, 69, 226, 0.12);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 195, 255, 0.45), 0 0 60px rgba(110, 69, 226, 0.25), 0 0 80px rgba(255, 215, 0, 0.08);
    }
}

@keyframes ipTitleGlowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.04); }
}

@keyframes ipKeywordShift {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.ip-popup-subtitle {
    font-family: 'Muli', sans-serif;
    font-size: 0.95rem;
    color: rgba(200, 215, 235, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* ── Scrollable Body ──────────────────────────────────────── */
.ip-popup-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
    position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 195, 255, 0.4) rgba(255, 255, 255, 0.04);
}

/* ── Custom Scrollbar (Webkit — Chrome, Safari, Edge) ────── */
.ip-popup-body::-webkit-scrollbar {
    width: 8px;
}

.ip-popup-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin: 8px 0;
}

.ip-popup-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00c3ff, #6e45e2, #ffd700);
    background-size: 100% 200%;
    border-radius: 10px;
    border: 1.5px solid rgba(10, 14, 26, 0.6);
    animation: ipScrollThumbGlow 4s ease infinite alternate;
}

.ip-popup-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00e5ff, #8b6cff, #ffe44d);
    background-size: 100% 200%;
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.ip-popup-body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #00e5ff, #a78bfa, #ffe44d);
}

/* Scrollbar corner (if both scrollbars appear) */
.ip-popup-body::-webkit-scrollbar-corner {
    background: transparent;
}

@keyframes ipScrollThumbGlow {
    0%   { background-position: 0% 0%; }
    100% { background-position: 0% 100%; }
}

/* Stat pills row */
.ip-popup-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.ip-popup-stat {
    background: rgba(0, 195, 255, 0.06);
    border: 1px solid rgba(0, 195, 255, 0.12);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    flex: 1;
    min-width: 100px;
    transition: all 0.3s ease;
}

.ip-popup-stat:hover {
    border-color: rgba(0, 195, 255, 0.3);
    background: rgba(0, 195, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.08);
}

.ip-popup-stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #00c3ff;
    display: block;
    line-height: 1.2;
}

.ip-popup-stat-label {
    font-family: 'Muli', sans-serif;
    font-size: 0.72rem;
    color: rgba(200, 215, 235, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Domains grid ─────────────────────────────────────────── */
.ip-popup-domains-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(200, 215, 235, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 14px;
}

.ip-popup-domains {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 22px;
}

.ip-popup-domain {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ip-popup-domain:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

/* Base icon style */
.ip-popup-domain-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ip-popup-domain-icon i {
    font-size: 14px;
}

/* ── Per-domain colorful icon styles ──────────────────────── */

/* Aerospace — Sky blue */
.ip-icon-aerospace {
    background: linear-gradient(135deg, rgba(0, 172, 238, 0.2), rgba(0, 172, 238, 0.08));
    border: 1px solid rgba(0, 172, 238, 0.25);
    color: #00acee;
}

.ip-popup-domain:hover .ip-icon-aerospace {
    box-shadow: 0 0 12px rgba(0, 172, 238, 0.3);
    background: linear-gradient(135deg, rgba(0, 172, 238, 0.3), rgba(0, 172, 238, 0.15));
}

/* Drone — Emerald green */
.ip-icon-drone {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(0, 230, 118, 0.08));
    border: 1px solid rgba(0, 230, 118, 0.25);
    color: #00e676;
}

.ip-popup-domain:hover .ip-icon-drone {
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.3);
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.3), rgba(0, 230, 118, 0.15));
}

/* Robotics — Vivid orange */
.ip-icon-robotics {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.08));
    border: 1px solid rgba(255, 152, 0, 0.25);
    color: #ff9800;
}

.ip-popup-domain:hover .ip-icon-robotics {
    box-shadow: 0 0 12px rgba(255, 152, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3), rgba(255, 152, 0, 0.15));
}

/* AI — Electric violet */
.ip-icon-ai {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.08));
    border: 1px solid rgba(156, 39, 176, 0.25);
    color: #ce93d8;
}

.ip-popup-domain:hover .ip-icon-ai {
    box-shadow: 0 0 12px rgba(156, 39, 176, 0.3);
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.3), rgba(156, 39, 176, 0.15));
}

/* Amateur Radio — Golden yellow */
.ip-icon-radio {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: #ffd740;
}

.ip-popup-domain:hover .ip-icon-radio {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.15));
}

/* RC Car — Hot red */
.ip-icon-rccar {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(244, 67, 54, 0.08));
    border: 1px solid rgba(244, 67, 54, 0.25);
    color: #ef5350;
}

.ip-popup-domain:hover .ip-icon-rccar {
    box-shadow: 0 0 12px rgba(244, 67, 54, 0.3);
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.3), rgba(244, 67, 54, 0.15));
}

/* RC Aircraft — Cyan */
.ip-icon-rcplane {
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.2), rgba(0, 195, 255, 0.08));
    border: 1px solid rgba(0, 195, 255, 0.25);
    color: #00c3ff;
}

.ip-popup-domain:hover .ip-icon-rcplane {
    box-shadow: 0 0 12px rgba(0, 195, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.3), rgba(0, 195, 255, 0.15));
}

.ip-popup-domain-name {
    font-family: 'Muli', sans-serif;
    font-size: 0.85rem;
    color: rgba(230, 240, 255, 0.85);
    font-weight: 600;
}

/* ── Highlights strip ─────────────────────────────────────── */
.ip-popup-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 6px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ip-popup-highlight {
    font-family: 'Muli', sans-serif;
    font-size: 0.8rem;
    color: rgba(200, 215, 235, 0.65);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ip-popup-highlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00c3ff;
    flex-shrink: 0;
    animation: ipDotPulse 2s ease-in-out infinite;
}

.ip-popup-highlight:nth-child(2) .ip-popup-highlight-dot { background: #00e676; animation-delay: 0.3s; }
.ip-popup-highlight:nth-child(3) .ip-popup-highlight-dot { background: #ff9800; animation-delay: 0.6s; }
.ip-popup-highlight:nth-child(4) .ip-popup-highlight-dot { background: #ce93d8; animation-delay: 0.9s; }

/* ── Footer / CTA ─────────────────────────────────────────── */
.ip-popup-footer {
    padding: 20px 32px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ip-popup-cta {
    display: inline-block;
    background: linear-gradient(135deg, #6e45e2, #00c3ff);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 44px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(110, 69, 226, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    animation: ipCtaPulse 3s ease-in-out infinite;
}

.ip-popup-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.ip-popup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(110, 69, 226, 0.45), 0 0 20px rgba(0, 195, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
}

.ip-popup-cta:hover::before {
    left: 100%;
}

.ip-popup-cta-text {
    position: relative;
    z-index: 1;
}

.ip-popup-seats {
    font-family: 'Muli', sans-serif;
    font-size: 0.78rem;
    color: rgba(200, 215, 235, 0.45);
    margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

@keyframes ipNebulaFloat {
    0%   { transform: translate(0, 0) scale(1);       opacity: 0.6; }
    33%  { transform: translate(15px, -10px) scale(1.03); opacity: 0.8; }
    66%  { transform: translate(-10px, 8px) scale(1.06);  opacity: 0.7; }
    100% { transform: translate(5px, -5px) scale(1.02);   opacity: 0.9; }
}

@keyframes ipStarsTwinkle {
    0%   { opacity: 0.4; }
    50%  { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes ipScanLine {
    0%   { left: -100%; }
    100% { left: 200%; }
}

@keyframes ipBorderGlow {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes ipBadgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 195, 255, 0); }
    50%      { box-shadow: 0 0 12px rgba(0, 195, 255, 0.2); }
}

/* ipTitleGradient — replaced by ipTitleFlow + ipKeywordShift above */
}

@keyframes ipDotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.4); }
}

@keyframes ipCtaPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(110, 69, 226, 0.3); }
    50%      { box-shadow: 0 6px 30px rgba(110, 69, 226, 0.45), 0 0 15px rgba(0, 195, 255, 0.1); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet breakpoint ────────────────────────────────────── */
@media (max-width: 600px) {
    .ip-popup-border-wrap {
        border-radius: 18px;
    }

    .ip-popup-modal {
        max-height: 95vh;
        border-radius: 16px;
    }

    .ip-popup-header {
        padding: 28px 20px 18px;
    }

    .ip-popup-title {
        font-size: 1.35rem;
    }

    .ip-popup-subtitle {
        font-size: 0.85rem;
    }

    .ip-popup-body {
        padding: 18px 20px;
    }

    .ip-popup-stats {
        gap: 8px;
    }

    .ip-popup-stat {
        padding: 8px 10px;
        min-width: 80px;
    }

    .ip-popup-stat-value {
        font-size: 1.15rem;
    }

    .ip-popup-domains {
        grid-template-columns: 1fr;
    }

    .ip-popup-highlights {
        gap: 12px;
    }

    .ip-popup-footer {
        padding: 16px 20px 22px;
    }

    .ip-popup-cta {
        padding: 12px 32px;
        font-size: 1rem;
    }

    .ip-popup-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 18px;
        line-height: 30px;
    }
}

/* ── Mobile breakpoint — compact, essential-only popup ───── */
@media (max-width: 480px) {
    .ip-popup-overlay {
        padding: 12px;
        align-items: center;
    }

    .ip-popup-border-wrap {
        max-width: 340px;
        border-radius: 16px;
        padding: 2px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5),
                    0 0 20px rgba(0, 195, 255, 0.1);
    }

    .ip-popup-modal {
        max-height: 85vh;
        border-radius: 14px;
    }

    /* Compact header */
    .ip-popup-header {
        padding: 20px 16px 14px;
    }

    .ip-popup-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
        margin-bottom: 8px;
        letter-spacing: 1.5px;
    }

    .ip-popup-title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    /* Hide subtitle on mobile — stats convey the key info */
    .ip-popup-subtitle {
        display: none;
    }

    /* Compact body */
    .ip-popup-body {
        padding: 12px 16px;
    }

    /* Inline stats row */
    .ip-popup-stats {
        gap: 6px;
        margin-bottom: 14px;
    }

    .ip-popup-stat {
        padding: 6px 8px;
        min-width: 70px;
        border-radius: 8px;
    }

    .ip-popup-stat-value {
        font-size: 1rem;
    }

    .ip-popup-stat-label {
        font-size: 0.62rem;
        letter-spacing: 0.5px;
    }

    /* Hide the full 7-domain grid — already summarized by the "7 Tech Domains" stat */
    .ip-popup-domains-title,
    .ip-popup-domains {
        display: none;
    }

    /* Hide highlights strip — secondary info */
    .ip-popup-highlights {
        display: none;
    }

    /* Compact footer */
    .ip-popup-footer {
        padding: 12px 16px 18px;
    }

    .ip-popup-cta {
        padding: 10px 28px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        border-radius: 40px;
    }

    .ip-popup-seats {
        font-size: 0.7rem;
        margin-top: 8px;
    }

    /* Smaller close button */
    .ip-popup-close {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 16px;
        line-height: 26px;
    }
}
