.gid-results-section {
    padding: 7rem 0;
    position: relative;
    background-color: transparent;
    z-index: 10;
    overflow: hidden;
}

/* Background Ambient Glows to tie it beautifully to the ecosystem */
.gid-results-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.gid-results-glow .glow-orange {
    width: 60vw;
    height: 600px;
    background-color: #f17619;
    top: -100px;
    left: -200px;
    opacity: 0.04;
    filter: blur(220px);
    position: absolute;
    border-radius: 50%;
}

.gid-results-glow .glow-blue {
    width: 60vw;
    height: 600px;
    background-color: #0ea5e9;
    bottom: -150px;
    right: -250px;
    opacity: 0.035;
    filter: blur(220px);
    position: absolute;
    border-radius: 50%;
}

.gid-results-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.gid-results-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.gid-results-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gid-results-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #f17619;
    margin-bottom: 1.5rem;
}

.gid-results-subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* The Cards */
.gid-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.gid-result-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.3) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Soft white/slate halo around normal cards mimicking top elements */
    box-shadow: 0 0 30px rgba(148, 163, 184, 0.05), 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Animation initial state */
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.gid-result-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entrance for Pitch Deck feel */
.gid-result-card:nth-child(1).is-visible { transition-delay: 0.15s; }
.gid-result-card:nth-child(2).is-visible { transition-delay: 0.30s; }
.gid-result-card:nth-child(3).is-visible { transition-delay: 0.45s; }

/* Interactive Hover for Elegance */
.gid-result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(241, 118, 25, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(241, 118, 25, 0.3);
}

.gid-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.04), transparent);
    transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.gid-result-card:hover::before {
    left: 100%;
}

/* Numbers & Data */
.gid-result-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.gid-result-prefix, .gid-result-suffix {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f17619;
}

.gid-result-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 6px;
    font-variant-numeric: tabular-nums;
}

/* Highlighted card mimics the G center halo perfectly */
.gid-result-card.highlight {
    border: 1px solid rgba(241, 118, 25, 0.4);
    box-shadow: 0 0 45px rgba(241, 118, 25, 0.25), 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.gid-result-card.highlight .gid-result-number {
    background: linear-gradient(135deg, #f17619 0%, #ffad66 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gid-result-card.highlight .gid-result-prefix, 
.gid-result-card.highlight .gid-result-suffix {
    color: #ffffff;
}

.gid-result-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.gid-result-detail {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 90%;
}

.gid-result-card.highlight .gid-result-detail {
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 1200px) {
    .gid-results-grid {
        gap: 1.5rem;
    }
    .gid-result-card {
        padding: 2.5rem 1.5rem;
    }
    .gid-result-number {
        font-size: 4rem;
    }
    .gid-result-prefix, .gid-result-suffix {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .gid-results-section {
        padding: 5rem 0;
    }
    .gid-results-subtitle {
        font-size: 2rem;
    }
    .gid-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gid-result-card {
        padding: 3rem 2rem;
    }
    .gid-result-number {
        font-size: 4.5rem;
    }
    .gid-result-prefix, .gid-result-suffix {
        font-size: 2.5rem;
    }
    .gid-result-detail {
        max-width: 100%;
    }
}
