/* ========================================================
   KALEIDO BRAND HERO SECTION STYLING (#0A0A0A & #ed2227)
   ======================================================== */

.kaleido-hero-section {
    min-height: 85vh;
    background-color: #0A0A0A;
    position: relative;
    padding: 80px 0;
}

/* Ambient Red Glowing Lights */
.kaleido-ambient-glow-1 {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.kaleido-ambient-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Year Pill Badge */
.kaleido-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.kaleido-pill-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
    box-shadow: 0 0 10px #ed2227;
}

.kaleido-pill-badge .badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #FFFFFF;
}

/* Heading Typography */
.kaleido-hero-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.text-gradient-red {
    background: linear-gradient(135deg, #FF5257 0%, #ed2227 50%, #990B0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ed2227;
    display: inline-block;
}

.kaleido-hero-desc {
    font-size: 16.5px;
    line-height: 1.8;
    max-width: 620px;
}

/* Hero CTA Buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(237, 34, 39, 0.35);
    transition: all 0.35s ease;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(237, 34, 39, 0.55);
    background: linear-gradient(135deg, #FF5257 0%, #ed2227 100%);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.35s ease;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* ========================================================
   ULTRA-PREMIUM STAT CARDS & FLOATING OFFSET LAYOUT
   ======================================================== */

.premium-stats-wrapper {
    position: relative;
    padding: 10px 0;
}

/* Back Ambient Red Spotlight */
.cards-spotlight-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

/* Base Card Styling */
.premium-stat-card {
    position: relative;
    z-index: 2;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Offset Floating Layout Setup for Desktop */
@media (min-width: 992px) {
    .card-offset-1 { transform: translateX(-15px); }
    .card-offset-2 { transform: translateX(25px); }
    .card-offset-3 { transform: translateX(-5px); }
}

/* Featured Card Accent */
.featured-card {
    background: linear-gradient(135deg, rgba(30, 15, 18, 0.85) 0%, rgba(15, 15, 15, 0.8) 100%);
    border-color: rgba(237, 34, 39, 0.4);
    box-shadow: 0 20px 45px rgba(237, 34, 39, 0.2);
}

/* Hover Elevation & Glow */
.premium-stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #ed2227;
    background: rgba(25, 25, 25, 0.9);
    box-shadow: 0 25px 50px rgba(237, 34, 39, 0.3);
}

/* Inner Light Reflection Overlay */
.card-glass-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.75s ease;
    pointer-events: none;
}

.premium-stat-card:hover .card-glass-glow {
    left: 140%;
}

/* Icon Styling */
.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.35s ease;
}

.highlight-icon,
.premium-stat-card:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    border-color: #ed2227;
    color: #FFFFFF;
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 22px rgba(237, 34, 39, 0.4);
}

/* Typography & Tag Badges */
.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    color: #AAAAAA;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.tag-red {
    background: rgba(237, 34, 39, 0.2);
    color: #FF5257;
    border-color: rgba(237, 34, 39, 0.4);
}

.stat-subtitle {
    font-size: 13.5px;
    color: #CCCCCC;
    margin-bottom: 0;
    margin-top: 4px;
    font-weight: 500;
}

/* Bottom Metallic Line Accent */
.card-accent-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ed2227 0%, #FF5257 100%);
    transition: width 0.4s ease;
}

.premium-stat-card:hover .card-accent-border {
    width: 100%;
}

/* Mobile Responsiveness (Padding: 30px) */
@media (max-width: 767.98px) {
    .kaleido-hero-section {
        padding: 40px 0 !important;
        min-height: auto;
    }

    .premium-stat-card {
        padding: 18px 20px;
        gap: 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}