/* Base & Resets */
body { background-color: #f8f8fa; color: #0a0a0a; overflow-x: hidden; margin: 0; }

/* Suppress iOS Safari's "tap to play" overlay button on autoplay-muted videos
   so blocked autoplay falls back to a clean black frame instead of a play UI. */
video.lazy-video,
.bpr-hero-video video,
.tpr-hero-video video,
.lpr-hero-video video,
.ppr-hero-video video,
.apr-hero-video video,
.mpr-hero-video video,
.rpr-hero-video video,
.corp-hero-video video,
.ptr-hero-vid {
    pointer-events: none;
}
video.lazy-video::-webkit-media-controls,
video.lazy-video::-webkit-media-controls-overlay-play-button,
video.lazy-video::-webkit-media-controls-start-playback-button,
video.lazy-video::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
}

/* Advanced Glassmorphism Base */
.glass-panel {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(10, 10, 10, 0.5) 100%);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.01);
    box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.9), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-dropdown {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.9) 0%, rgba(8, 8, 8, 0.98) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 1), 
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Nav Fluid Highlight Pill (Global) */
#nav-highlight {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.25, 1.2, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 0 20px rgba(255,255,255,0.05);
}

/* Nav Item Buttons */
.nav-btn {
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
}

/* Invisible bridge to prevent hover dead zones */
.nav-btn::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 35px;
}

/* Mega Menu Core structural styles */
.nav-item-group { position: relative; }
.nav-item-group.is-mega { position: static; }

.dropdown-wrapper {
    position: absolute;
    top: 100%;
    padding-top: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.98) rotateX(-8deg);
    transform-origin: top center;
    transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 50;
    perspective: 1000px;
}

/* Standard small dropdowns */
.dropdown-standard { width: max-content; left: 0; }
.dropdown-right { width: max-content; left: auto; right: 0; }
.dropdown-center {
    width: max-content;
    left: 50%;
    transform: translate(-50%, 16px) scale(0.98) rotateX(-8deg);
}

/* Full Width Dropdown Modifier */
.dropdown-full {
    left: 0;
    right: 0;
    width: 100%;
}

/* Hover Triggers */
.nav-item-group:hover .dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) rotateX(0);
    pointer-events: auto;
}
.nav-item-group:hover .dropdown-center {
    transform: translate(-50%, 0) scale(1) rotateX(0);
}

/* Bento Box Ultimate Hover Effects */
.bento-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.8), 
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Dynamic Right Panel Item Animations */
.stagger-item {
    opacity: 0;
    transform: translateX(15px) translateY(10px) scale(0.95);
    animation: slideInFade 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes slideInFade {
    to { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}

/* Left Panel Magnetic Pill */
#left-panel-highlight {
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 15px rgba(255,255,255,0.03);
    transition: all 0.4s cubic-bezier(0.25, 1.2, 0.3, 1);
    pointer-events: none;
    z-index: 0;
}

/* Left Panel Button Base */
.left-panel-btn {
    position: relative;
    z-index: 10;
}

/* Shimmer CTA Button */
.btn-shimmer {
    background: linear-gradient(90deg, #ffffff 0%, #d4d4d4 25%, #ffffff 50%);
    background-size: 200% auto;
    color: #000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-shimmer:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), inset 0 0 15px rgba(255,255,255,1);
    transform: scale(1.03);
}

/* Global Blur Overlay */
#global-blur {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.8s ease;
    background: radial-gradient(circle at 50% 15%, rgba(5,5,5,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
body.nav-hovered #global-blur {
    opacity: 1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Micro-graphics: Noise & High-Tech Grid */
.noise-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    border-radius: inherit;
    z-index: -1;
}
.tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at top left, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top left, black 20%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    border-radius: inherit;
}

/* Thin Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }

/* Responsive & Mobile Enhancements */
@media (min-width: 1024px) and (max-width: 1280px) {
    .nav-btn { padding-left: 0.75rem !important; padding-right: 0.75rem !important; font-size: 13px !important; }
    #desktop-nav-list { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
}

/* Mobile Menu State */
#mobile-menu {
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-nav-open #mobile-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}
.mobile-category-list {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-category-list.open {
    grid-template-rows: 1fr;
}
.mobile-category-list-inner {
    overflow: hidden;
}

@media (max-width: 1024px) {
    #nav-container { border-radius: 20px; }
    .nav-btn::after { display: none; }
}

/* ================================
   HERO CAROUSEL
   ================================ */

/* Viewport clips overflow */
.carousel-viewport {
    position: relative;
}

/* Right edge fade hint */
.carousel-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(247 247 247));
    pointer-events: none;
    z-index: 10;
    border-radius: 0 16px 16px 0;
    transition: opacity 0.4s ease;
}

.carousel-viewport.at-end::after {
    opacity: 0;
}

/* Track slides horizontally */
.carousel-track {
    gap: 20px;
    will-change: transform;
}

/* Each slide gets its own silky blur transition */
.carousel-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 300px;
    transition: filter 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    filter: blur(0px) saturate(1);
    opacity: 1;
    transform: scale(1);
}

/* Phase 1: Instant blur kick on scroll start */
.carousel-track.scroll-phase-1 .carousel-slide {
    filter: blur(12px) saturate(0.7);
    opacity: 0.6;
    transform: scale(0.97);
    transition: filter 0.15s cubic-bezier(0.32, 0, 0.67, 0),
                opacity 0.15s cubic-bezier(0.32, 0, 0.67, 0),
                transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}

/* Phase 2: Smooth resolve — blur eases out slower than it came in */
.carousel-track.scroll-phase-2 .carousel-slide {
    filter: blur(0px) saturate(1);
    opacity: 1;
    transform: scale(1);
    transition: filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* The track transform itself — buttery spring curve */
.carousel-track.scroll-phase-1 {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-track.scroll-phase-2 {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-track:not(.scroll-phase-1):not(.scroll-phase-2) {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Individual card */
.carousel-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.01);
}

/* Blue inner glow overlay on hover */
.carousel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 0 30px rgba(59, 130, 246, 0.25),
                inset 0 0 60px rgba(59, 130, 246, 0.1),
                inset 0 0 100px rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.carousel-card:hover::before {
    opacity: 1;
}

/* Outer blue glow */
.carousel-card:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.15),
                0 0 60px rgba(59, 130, 246, 0.06),
                0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

/* Video background */
.carousel-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Dark overlay so logo pops */
.carousel-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    pointer-events: none;
    transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: inherit;
}

.carousel-card:hover::after {
    background: linear-gradient(180deg, rgba(10,20,50,0.2) 0%, rgba(10,20,50,0.45) 100%);
}

/* Centered logo */
.carousel-card-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-card-logo img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,0.6));
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-card:hover .carousel-card-logo img {
    opacity: 1;
    transform: scale(1.06);
}

/* Info below card */
.carousel-card-info {
    padding: 16px 4px 0;
}

.carousel-card-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 4px;
}

.carousel-card-info p {
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* Arrow Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-70%); /* offset for the info text below cards */
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-70%) scale(1.08);
}

.carousel-arrow-left {
    left: -22px;
}

.carousel-arrow-right {
    right: -22px;
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 300px;
    }
    .carousel-arrow-left { left: 8px; }
    .carousel-arrow-right { right: 8px; }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 85%;
        min-width: 0;
    }
}
/* ================================
   OFFER STRIP
   ================================ */

.offer-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 28px 48px;
    border-radius: 22px;
    background: rgba(5, 5, 14, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.06),
        0 0 40px rgba(59, 130, 246, 0.04),
        0 2px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 200px rgba(59, 130, 246, 0.06),
        inset 0 0 100px rgba(59, 130, 246, 0.04),
        inset 0 0 50px rgba(59, 130, 246, 0.03),
        inset 0 1px 0 rgba(96, 165, 250, 0.2),
        inset 0 -1px 0 rgba(59, 130, 246, 0.08);
}

@keyframes strip-glow-spin {
    100% { transform: rotate(360deg); }
}

/* Animated blue orb left */
.offer-strip::after {
    content: '';
    position: absolute;
    left: -5%;
    top: -80%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.05) 35%, transparent 70%);
    border-radius: 50%;
    animation: strip-orb-1 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes strip-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(10%, 15%) scale(1.2); opacity: 1; }
}

/* Second orb via box on the strip itself — using a child div */
.offer-strip-orb {
    position: absolute;
    right: -3%;
    bottom: -90%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.04) 35%, transparent 70%);
    border-radius: 50%;
    animation: strip-orb-2 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes strip-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-8%, -10%) scale(1.15); opacity: 1; }
}

/* Center pulse */
.offer-strip-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 600px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    animation: strip-pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes strip-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* ---- Left: Timer Block ---- */
.offer-timer-block {
    flex-shrink: 0;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 16px 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.offer-timer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.offer-timer-badge svg {
    width: 14px;
    height: 14px;
    color: #3b82f6;
}

.offer-timer-digits {
    display: flex;
    gap: 8px;
}

.offer-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 12px;
    padding: 10px 16px 8px;
    min-width: 64px;
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.1);
}

.offer-timer-unit span:first-child {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.offer-timer-unit span:last-child {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ---- Center: Copy ---- */
.offer-copy {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.offer-copy-headline {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.offer-copy-headline .blue {
    color: #3b82f6;
    font-size: 24px;
}

.offer-copy-sub {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.offer-copy-sub img {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.45;
}

/* ---- Right: CTA ---- */
.offer-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 19px 38px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1a4fbe,
                0 6px 16px rgba(37, 99, 235, 0.35);
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
}

.offer-cta strong {
    font-weight: 800;
}

.offer-cta:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1a4fbe,
                0 10px 24px rgba(37, 99, 235, 0.45);
}

.offer-cta:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1a4fbe,
                0 2px 8px rgba(37, 99, 235, 0.3);
}

.offer-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.offer-cta:hover svg {
    transform: translateX(3px);
}

/* ---- Responsive ---- */

/* Tablet landscape */
@media (max-width: 1280px) {
    .offer-strip {
        padding: 24px 32px;
        gap: 28px;
    }
    .offer-copy-headline { font-size: 19px; }
    .offer-copy-headline .blue { font-size: 21px; }
    .offer-cta { padding: 17px 28px; font-size: 15px; }
}

/* Tablet portrait */
@media (max-width: 1024px) {
    .offer-strip {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 24px;
        gap: 20px;
        border-radius: 18px;
    }
    /* Timer + Copy sit side by side */
    .offer-timer-block {
        order: 1;
        align-self: stretch;
    }
    .offer-copy {
        order: 2;
        text-align: center;
    }
    .offer-copy-headline {
        font-size: 20px;
        justify-content: center;
    }
    .offer-copy-headline .blue { font-size: 22px; }
    .offer-copy-sub { justify-content: center; font-size: 14px; }
    .offer-cta {
        order: 3;
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
        font-size: 18px;
        border-radius: 12px;
    }
    /* Make timer row fill width on tablet */
    .offer-timer-digits { justify-content: center; gap: 10px; }
    .offer-timer-unit {
        min-width: 80px;
        padding: 12px 18px 10px;
    }
    .offer-timer-unit span:first-child { font-size: 32px; }
    .offer-timer-unit span:last-child { font-size: 10px; }
}

/* Large mobile / small tablet */
@media (max-width: 768px) {
    .offer-strip {
        padding: 22px 18px;
        gap: 16px;
        border-radius: 16px;
    }
    .offer-timer-block {
        width: 100%;
        padding: 14px 16px 16px;
        border-radius: 14px;
    }
    .offer-timer-digits { gap: 8px; }
    .offer-timer-unit {
        min-width: 0;
        flex: 1;
        padding: 10px 8px 8px;
        border-radius: 10px;
    }
    .offer-timer-unit span:first-child { font-size: 28px; }
    .offer-timer-unit span:last-child { font-size: 9px; }
    .offer-copy-headline { font-size: 18px; line-height: 1.4; }
    .offer-copy-headline .blue { font-size: 18px; }
    .offer-copy-sub { font-size: 13px; }
    .offer-copy-sub img { display: none; }
    .offer-cta {
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .offer-strip {
        padding: 16px 14px;
        gap: 14px;
        border-radius: 14px;
        box-shadow:
            0 0 40px rgba(59, 130, 246, 0.04),
            0 2px 20px rgba(0, 0, 0, 0.4),
            inset 0 0 80px rgba(59, 130, 246, 0.04),
            inset 0 1px 0 rgba(96, 165, 250, 0.15);
    }
    .offer-timer-block {
        padding: 12px 12px 14px;
        border-radius: 12px;
        gap: 10px;
    }
    .offer-timer-badge { font-size: 10px; }
    .offer-timer-digits { gap: 5px; }
    .offer-timer-unit { padding: 8px 6px 6px; border-radius: 8px; }
    .offer-timer-unit span:first-child { font-size: 22px; }
    .offer-timer-unit span:last-child { font-size: 8px; margin-top: 2px; }
    .offer-copy-headline { font-size: 13px; gap: 6px; }
    .offer-copy-headline .blue { font-size: 15px; }
    .offer-copy-sub { font-size: 12px; }
    .offer-cta {
        padding: 14px 20px;
        font-size: 13px;
        border-radius: 8px;
        box-shadow: 0 3px 0 0 #1a4fbe, 0 5px 12px rgba(37, 99, 235, 0.3);
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .offer-strip { padding: 14px 10px; gap: 12px; border-radius: 12px; }
    .offer-timer-block { padding: 10px 10px 12px; gap: 8px; }
    .offer-timer-badge { font-size: 9px; }
    .offer-timer-badge svg { width: 11px; height: 11px; }
    .offer-timer-unit { padding: 6px 4px 5px; border-radius: 6px; }
    .offer-timer-unit span:first-child { font-size: 18px; }
    .offer-timer-unit span:last-child { font-size: 7px; }
    .offer-copy-headline { font-size: 12px; }
    .offer-copy-headline .blue { font-size: 13px; }
    .offer-copy-sub { font-size: 11px; }
    .offer-cta { padding: 12px 16px; font-size: 12px; }
}
/* ================================
   HERO CTA
   ================================ */

.hero-cta-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #070a12;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 580px;
    display: flex;
    align-items: stretch;
}

/* ---- Video fills right 75% of card ---- */
.hero-cta-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 25%;
    z-index: 0;
}

.hero-cta-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Gradient: solid dark left 25%, then fades into video ---- */
.hero-cta-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            #070a12 0%,
            #070a12 25%,
            rgba(7, 10, 18, 0.85) 32%,
            rgba(7, 10, 18, 0.5) 42%,
            rgba(7, 10, 18, 0.2) 55%,
            transparent 70%
        ),
        linear-gradient(180deg,
            rgba(7, 10, 18, 0.7) 0%,
            transparent 25%,
            transparent 70%,
            rgba(7, 10, 18, 0.8) 100%
        );
    pointer-events: none;
}

/* Bottom vignette */
.hero-cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(7, 10, 18, 0.7));
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 24px 24px;
}

/* ---- Content ---- */
.hero-cta-content {
    position: relative;
    z-index: 2;
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Eyebrow */
.hero-cta-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 8px;
}

.hero-cta-divider {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    margin: 0 0 32px;
    border-radius: 2px;
}

/* ---- Title: Neon cinematic display font ---- */
.hero-cta-title {
    font-family: 'Instrument Serif', serif !important;
    font-size: 100px;
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
    text-align: center;
    font-style: italic;
    transform: skewX(-4deg);
    color: #7dd3fc;
    text-shadow: 0 0 10px rgba(125, 211, 252, 0.6),
                 0 0 30px rgba(125, 211, 252, 0.3),
                 0 0 60px rgba(56, 189, 248, 0.2),
                 0 0 120px rgba(56, 189, 248, 0.1),
                 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-cta-title-accent {
    display: block;
    background: linear-gradient(180deg, #bae6fd 0%, #7dd3fc 25%, #38bdf8 55%, #0ea5e9 80%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.5))
            drop-shadow(0 0 50px rgba(14, 165, 233, 0.25));
}

/* Description */
.hero-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0 0 40px;
    max-width: 400px;
}

/* ====================================
   TIMER + BUTTON — 1:1 reference match
   ==================================== */
.hero-cta-timer-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 22px 18px 18px;
    width: 100%;
    max-width: 420px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hero-cta-timer-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
}

.hero-cta-timer-label svg {
    color: rgba(255, 255, 255, 0.4);
}

.hero-cta-timer-digits {
    display: flex;
    gap: 8px;
    width: 100%;
}

.hero-cta-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 20px 0 16px;
    flex: 1;
}

.hero-cta-timer-unit span:first-child {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    font-style: normal;
}

.hero-cta-timer-unit span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    text-transform: capitalize;
    letter-spacing: 0.04em;
    margin-top: 8px;
    font-style: normal;
}

/* ---- CTA Button: inside timer block, Shopify raised style ---- */
.hero-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
    border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    letter-spacing: 0.005em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf,
                0 6px 18px rgba(37, 120, 235, 0.3);
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    margin: 0;
}

.hero-cta-button:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf,
                0 10px 26px rgba(37, 120, 235, 0.4);
}

.hero-cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf,
                0 2px 8px rgba(37, 120, 235, 0.2);
}

/* Learn more */
.hero-cta-learn {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: rgba(255, 255, 255, 0.15);
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.hero-cta-learn:hover {
    color: rgba(255, 255, 255, 0.75);
    text-decoration-color: rgba(255, 255, 255, 0.35);
}

/* ---- Bottom right View All ---- */
.hero-cta-viewall {
    position: absolute;
    bottom: 28px;
    right: 36px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-cta-viewall:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
}

/* ---- Responsive ---- */

/* Large tablet / Small desktop — keep side-by-side */
@media (max-width: 1280px) {
    .hero-cta-card { min-height: 540px; }
    .hero-cta-title { font-size: 70px; }
    .hero-cta-content {
        width: 50%;
        padding: 44px 36px;
    }
    .hero-cta-desc { font-size: 15px; }
    .hero-cta-timer-unit span:first-child { font-size: 46px; }
    .hero-cta-timer-wrap {
        padding: 20px 16px 16px;
        max-width: 380px;
    }
    /* Tighten gradient to match content width */
    .hero-cta-gradient {
        background:
            linear-gradient(90deg,
                #070a12 0%,
                #070a12 45%,
                rgba(7, 10, 18, 0.85) 52%,
                rgba(7, 10, 18, 0.4) 62%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(7, 10, 18, 0.7) 0%,
                transparent 25%,
                transparent 70%,
                rgba(7, 10, 18, 0.8) 100%
            );
    }
}

/* Tablet landscape and below — STACK vertically */
@media (max-width: 1024px) {
    .hero-cta-card {
        flex-direction: column;
        min-height: auto;
        border-radius: 20px;
    }
    .hero-cta-video {
        position: relative;
        width: 100%;
        height: 280px;
        left: 0;
        top: 0;
    }
    .hero-cta-gradient { display: none; }
    .hero-cta-content {
        width: 100%;
        padding: 40px 40px 48px;
        margin-top: 0;
    }
    .hero-cta-eyebrow {
        font-size: 12px;
        letter-spacing: 0.18em;
        margin-bottom: 6px;
    }
    .hero-cta-divider { margin-bottom: 24px; }
    .hero-cta-title {
        font-size: 72px;
        transform: skewX(-3deg);
        margin-bottom: 20px;
    }
    .hero-cta-desc {
        font-size: 15px;
        margin-bottom: 32px;
        max-width: 480px;
    }
    .hero-cta-timer-wrap {
        max-width: 440px;
        padding: 20px 16px 16px;
        border-radius: 18px;
        gap: 16px;
        margin-bottom: 24px;
    }
    .hero-cta-timer-label { font-size: 13px; }
    .hero-cta-timer-digits { gap: 8px; }
    .hero-cta-timer-unit {
        padding: 18px 0 14px;
        border-radius: 12px;
    }
    .hero-cta-timer-unit span:first-child { font-size: 44px; }
    .hero-cta-timer-unit span:last-child {
        font-size: 11px;
        margin-top: 6px;
    }
    .hero-cta-button {
        padding: 18px 0;
        font-size: 15px;
        border-radius: 12px;
    }
    .hero-cta-learn { font-size: 14px; }
    .hero-cta-viewall {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto 32px;
        padding: 12px 24px;
        justify-content: center;
    }
    .hero-cta-card::after { display: none; }
}

/* Tablet portrait / Large mobile */
@media (max-width: 768px) {
    .hero-cta-card { border-radius: 18px; }
    .hero-cta-video { height: 220px; }
    .hero-cta-content {
        padding: 32px 24px 32px;
    }
    .hero-cta-eyebrow {
        font-size: 11px;
        letter-spacing: 0.15em;
    }
    .hero-cta-divider { margin-bottom: 20px; }
    .hero-cta-title {
        font-size: 48px;
        margin-bottom: 16px;
    }
    .hero-cta-desc {
        font-size: 14px;
        margin-bottom: 28px;
        max-width: 100%;
    }
    .hero-cta-timer-wrap {
        max-width: 100%;
        padding: 18px 14px 14px;
        border-radius: 16px;
        gap: 14px;
        margin-bottom: 20px;
    }
    .hero-cta-timer-label { font-size: 12px; }
    .hero-cta-timer-digits { gap: 6px; }
    .hero-cta-timer-unit {
        padding: 14px 0 10px;
        border-radius: 10px;
    }
    .hero-cta-timer-unit span:first-child { font-size: 36px; }
    .hero-cta-timer-unit span:last-child {
        font-size: 10px;
        margin-top: 4px;
    }
    .hero-cta-button {
        padding: 16px 0;
        font-size: 14px;
        border-radius: 10px;
    }
    .hero-cta-learn { font-size: 13px; }
    .hero-cta-viewall {
        margin: 0 24px 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-cta-card { border-radius: 14px; }
    .hero-cta-video { height: 180px; }
    .hero-cta-content {
        padding: 24px 16px 24px;
    }
    .hero-cta-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
    }
    .hero-cta-divider {
        margin-bottom: 14px;
        width: 28px;
    }
    .hero-cta-title {
        font-size: 36px;
        transform: skewX(-2deg);
        margin-bottom: 12px;
        text-shadow: 0 0 8px rgba(125, 211, 252, 0.5),
                     0 0 20px rgba(125, 211, 252, 0.2),
                     0 3px 20px rgba(0, 0, 0, 0.5);
    }
    .hero-cta-desc {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 20px;
    }
    .hero-cta-timer-wrap {
        padding: 14px 10px 10px;
        border-radius: 12px;
        gap: 10px;
        margin-bottom: 16px;
    }
    .hero-cta-timer-label { font-size: 10px; gap: 6px; }
    .hero-cta-timer-label svg { width: 12px; height: 12px; }
    .hero-cta-timer-digits { gap: 5px; }
    .hero-cta-timer-unit {
        padding: 10px 0 8px;
        border-radius: 8px;
    }
    .hero-cta-timer-unit span:first-child { font-size: 28px; }
    .hero-cta-timer-unit span:last-child {
        font-size: 8px;
        margin-top: 3px;
        letter-spacing: 0.06em;
    }
    .hero-cta-button {
        padding: 14px 0;
        font-size: 13px;
        border-radius: 8px;
        box-shadow: 0 3px 0 0 #1e6abf,
                    0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .hero-cta-learn { font-size: 12px; }
    .hero-cta-viewall {
        margin: 0 16px 20px;
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 8px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .hero-cta-video { height: 150px; }
    .hero-cta-content {
        padding: 20px 12px 20px;
    }
    .hero-cta-title {
        font-size: 30px;
        transform: skewX(-2deg);
    }
    .hero-cta-desc { font-size: 12px; }
    .hero-cta-timer-wrap {
        padding: 12px 8px 8px;
        gap: 8px;
    }
    .hero-cta-timer-unit { padding: 8px 0 6px; }
    .hero-cta-timer-unit span:first-child { font-size: 22px; }
    .hero-cta-button {
        padding: 12px 0;
        font-size: 12px;
    }
    .hero-cta-viewall {
        margin: 0 12px 16px;
        font-size: 11px;
    }
}
/* ================================
   AWARDS & RECOGNITION — Bento Grid
   ================================ */

.aw-header {
    text-align: center;
    margin-bottom: 40px;
}

.aw-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 20px;
}

.aw-title {
    font-family: 'Instrument Serif', serif;
    font-size: 48px;
    font-weight: 400;
    color: #0a0a0a;
    letter-spacing: -0.03em;
    margin: 0;
}

.aw-title span {
    color: #0a0a0a;
}

/* ---- Grid ---- */
.aw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.aw-card {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 28px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    transition: all 0.35s ease;
}

.aw-card:hover {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.aw-rank {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: #0a0a0a;
    line-height: 1;
}

.aw-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(0,0,0,0.65);
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.aw-logo {
    height: 28px;
    width: auto;
    margin-top: 10px;
    opacity: 0.55;
    filter: brightness(0);
    transition: opacity 0.3s ease;
}

.aw-logo-sm { height: 32px; }

.aw-logo-invert { filter: none; opacity: 0.4; }

.aw-card:hover .aw-logo { opacity: 0.6; }

/* ---- Certification cards ---- */
.aw-certs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.aw-cert-card {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: all 0.35s ease;
}

.aw-cert-card:hover {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.12);
}

.aw-cert-text {
    text-align: center;
}

.aw-cert-text h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: #0a0a0a;
    line-height: 1.2;
    margin: 0 0 8px;
}

.aw-cert-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #0a0a0a;
    text-transform: uppercase;
}

.aw-cert-badge {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .aw-grid { grid-template-columns: repeat(3, 1fr); }
    .aw-title { font-size: 40px; }
}

@media (max-width: 768px) {
    .aw-grid { grid-template-columns: repeat(2, 1fr); }
    .aw-certs { grid-template-columns: 1fr; }
    .aw-title { font-size: 32px; }
    .aw-rank { font-size: 26px; }
    .aw-cert-text h3 { font-size: 20px; }
}
.trusted-by-section {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px;
}

.trusted-by-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 40px;
}

.trusted-by-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
}

.trusted-by-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 28px 40px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    opacity: 0.55;
    filter: brightness(0);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trusted-by-badge:hover {
    opacity: 0.85;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.trusted-by-badge.no-invert { filter: none; }
.trusted-by-badge.no-invert.grayscale { filter: grayscale(1); }
.trusted-by-badge.no-invert:hover,
.trusted-by-badge.no-invert.grayscale:hover { opacity: 0.7; }

.trusted-by-badge img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

/* ---- Responsive ---- */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .trusted-by-section { padding: 32px 24px; }
    .trusted-by-badge { padding: 24px 32px; }
    .trusted-by-badge img { height: 56px; }
}

/* Tablet */
@media (max-width: 1024px) {
    .trusted-by-section { padding: 28px 20px; }
    .trusted-by-label { margin-bottom: 32px; font-size: 10px; }
    .trusted-by-grid { gap: 6px; }
    .trusted-by-badge {
        padding: 20px 28px;
        border-radius: 12px;
    }
    .trusted-by-badge img { height: 44px; }
}

/* Large mobile / tablet portrait */
@media (max-width: 768px) {
    .trusted-by-section { padding: 24px 16px; }
    .trusted-by-label { margin-bottom: 24px; font-size: 10px; letter-spacing: 0.15em; }
    .trusted-by-grid { gap: 6px; }
    .trusted-by-badge {
        padding: 16px 22px;
        border-radius: 10px;
    }
    .trusted-by-badge img { height: 32px; }
    .trusted-by-badge:hover {
        transform: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .trusted-by-section { padding: 20px 12px; }
    .trusted-by-label {
        margin-bottom: 20px;
        font-size: 9px;
        letter-spacing: 0.12em;
    }
    .trusted-by-grid { gap: 4px; }
    .trusted-by-badge {
        padding: 12px 16px;
        border-radius: 8px;
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        max-width: calc(50% - 4px);
    }
    .trusted-by-badge img { height: 24px; width: auto; max-width: 100%; }
}

/* Small mobile */
@media (max-width: 380px) {
    .trusted-by-section { padding: 16px 10px; }
    .trusted-by-label { font-size: 8px; margin-bottom: 16px; }
    .trusted-by-badge {
        padding: 10px 12px;
        border-radius: 6px;
    }
    .trusted-by-badge img { height: 20px; }
}
/* ================================
   FORBES PLACEMENT SECTION
   ================================ */

.forbes-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    background: #070a12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 600px;
    display: flex;
    align-items: stretch;
}

/* Inner clip for video/gradient only */
.forbes-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* ---- Video ---- */
.forbes-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 30%;
    z-index: 0;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
}

.forbes-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Gradient ---- */
.forbes-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 24px;
    background:
        linear-gradient(90deg,
            #070a12 0%,
            #070a12 28%,
            rgba(7, 10, 18, 0.9) 35%,
            rgba(7, 10, 18, 0.5) 48%,
            rgba(7, 10, 18, 0.15) 62%,
            transparent 78%
        );
    pointer-events: none;
}

.forbes-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 24px;
    background: linear-gradient(180deg,
        rgba(7, 10, 18, 0.4) 0%,
        transparent 20%,
        transparent 75%,
        rgba(7, 10, 18, 0.6) 100%
    );
    pointer-events: none;
}

/* ---- Content ---- */
.forbes-content {
    position: relative;
    z-index: 2;
    width: 40%;
    padding: 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo */
.forbes-logo-wrap {
    margin-bottom: 24px;
}

.forbes-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* Description */
.forbes-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 380px;
}

/* Actions */
.forbes-actions {
    margin-bottom: 28px;
}

/* Shopify 3D button */
.forbes-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf,
                0 6px 18px rgba(37, 120, 235, 0.3);
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.forbes-cta:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf,
                0 10px 26px rgba(37, 120, 235, 0.4);
}

.forbes-cta:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf,
                0 2px 8px rgba(37, 120, 235, 0.2);
}

/* Meta row: badge + tooltip */
.forbes-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.forbes-limited {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 6px;
    padding: 4px 10px;
}

.forbes-included {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Package link */
.forbes-package-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: text-decoration-color 0.3s ease, color 0.3s ease;
}

.forbes-package-link:hover {
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

.forbes-link-icon {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Bottom right attribution ---- */
.forbes-attribution {
    position: absolute;
    bottom: 28px;
    right: 36px;
    z-index: 3;
    text-align: right;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
}

.forbes-attribution strong {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

.forbes-attribution span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .forbes-content {
        width: 50%;
        padding: 40px 36px;
    }
    .forbes-video { left: 35%; }
}

@media (max-width: 768px) {
    .forbes-card {
        flex-direction: column;
        min-height: auto;
        overflow: hidden;
    }
    .forbes-video {
        position: relative;
        left: 0;
        width: 100%;
        height: 220px;
        border-radius: 24px 24px 0 0;
    }
    .forbes-gradient {
        background: linear-gradient(180deg,
            transparent 0%, rgba(7,10,18,0.5) 50%, #070a12 90%
        );
    }
    .forbes-content {
        width: 100%;
        padding: 0 28px 36px;
        margin-top: -40px;
    }
    .forbes-cta { width: 100%; justify-content: center; }
    .forbes-attribution {
        position: relative;
        bottom: auto; right: auto;
        text-align: center;
        padding: 0 28px 28px;
    }
}

/* Most Popular Pill */
.forbes-popular-pill {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #3c8dff, #693cff);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 30px;
    width: fit-content;
}
/* ================================
   EMAIL GRAB
   ================================ */

.email-grab {
    position: relative;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(236, 72, 153, 0.08), rgba(244, 114, 182, 0.2), rgba(236, 72, 153, 0.08), rgba(236, 72, 153, 0.3));
    overflow: hidden;
}

/* Spinning conic glow */
.email-grab-glow {
    position: absolute;
    top: -80%;
    left: -20%;
    width: 140%;
    height: 260%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(236, 72, 153, 0.2) 60deg, transparent 120deg, rgba(244, 114, 182, 0.15) 200deg, transparent 260deg, rgba(236, 72, 153, 0.18) 320deg, transparent 360deg);
    animation: email-glow-spin 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes email-glow-spin {
    100% { transform: rotate(360deg); }
}

/* Inner card */
.email-grab-inner {
    position: relative;
    z-index: 1;
    border-radius: 26px;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(236, 72, 153, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.03) 0%, transparent 70%),
        #0c070a;
    padding: 52px 56px 44px;
    box-shadow:
        inset 0 0 120px rgba(236, 72, 153, 0.04),
        inset 0 0 60px rgba(236, 72, 153, 0.03),
        inset 0 1px 0 rgba(244, 114, 182, 0.1);
}

/* ---- Top pill ---- */
.email-grab-top {
    margin-bottom: 24px;
    text-align: center;
}

.email-grab-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f9a8d4;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 100px;
    padding: 8px 18px;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.08);
}

.email-grab-pill-icon {
    width: 13px;
    height: 13px;
    color: #f472b6;
}

/* ---- Main row ---- */
.email-grab-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

/* Copy */
.email-grab-left {
    max-width: 520px;
}

.email-grab-headline {
    font-family: 'Instrument Serif', serif;
    font-size: 38px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.email-grab-headline .pink {
    background: linear-gradient(135deg, #f9a8d4, #ec4899, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.email-grab-copy {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.6;
}

/* ---- Unified input bar ---- */
.email-grab-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.email-grab-field-group {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.04),
                inset 0 0 30px rgba(236, 72, 153, 0.02);
}

.email-grab-field-group:focus-within {
    border-color: rgba(236, 72, 153, 0.35);
    box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.06),
                0 0 40px rgba(236, 72, 153, 0.08),
                inset 0 0 30px rgba(236, 72, 153, 0.03);
}

.email-grab-input {
    flex: 1;
    padding: 22px 24px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    min-width: 0;
}

.email-grab-input-name { flex: 0.6; }
.email-grab-input-email { flex: 1; }

.email-grab-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.email-grab-divider {
    width: 1px;
    height: 32px;
    background: rgba(236, 72, 153, 0.12);
    flex-shrink: 0;
}

/* Button inside the bar */
.email-grab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    margin: 6px 6px 6px 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #be185d 0%, #db2777 30%, #ec4899 65%, #f472b6 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #9d174d,
                0 6px 20px rgba(236, 72, 153, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

.email-grab-btn:hover {
    background: linear-gradient(180deg, #c9226a 0%, #e33c85 30%, #f05da6 65%, #f587c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #9d174d,
                0 12px 30px rgba(236, 72, 153, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.email-grab-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #9d174d,
                0 2px 6px rgba(236, 72, 153, 0.2);
}

.email-grab-btn:disabled { cursor: default; transform: none; }
.email-grab-btn:disabled:hover { transform: none; }

.email-grab-btn-icon { width: 15px; height: 15px; }

/* Footnote */
.email-grab-footnote {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.18);
}

.email-grab-lock-icon {
    width: 11px;
    height: 11px;
    color: rgba(255, 255, 255, 0.14);
}

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .email-grab { border-radius: 26px; }
    .email-grab-inner {
        padding: 48px 44px 40px;
        border-radius: 24px;
    }
    .email-grab-headline { font-size: 34px; }
}

/* Tablet */
@media (max-width: 1024px) {
    .email-grab { border-radius: 24px; }
    .email-grab-inner {
        padding: 44px 32px 36px;
        border-radius: 22px;
    }
    .email-grab-top { margin-bottom: 20px; }
    .email-grab-pill {
        font-size: 10px;
        padding: 7px 16px;
    }
    .email-grab-main { gap: 28px; }
    .email-grab-headline { font-size: 30px; }
    .email-grab-copy { font-size: 14px; }
    .email-grab-input {
        padding: 20px 20px;
        font-size: 14px;
    }
    .email-grab-btn {
        padding: 14px 26px;
        font-size: 14px;
    }
}

/* Tablet portrait / Large mobile */
@media (max-width: 768px) {
    .email-grab { border-radius: 22px; padding: 2px; }
    .email-grab-inner {
        padding: 36px 24px 32px;
        border-radius: 20px;
    }
    .email-grab-pill {
        font-size: 9px;
        letter-spacing: 0.08em;
        padding: 6px 14px;
    }
    .email-grab-pill-icon { width: 11px; height: 11px; }
    .email-grab-main { gap: 24px; }
    .email-grab-headline {
        font-size: 26px;
        line-height: 1.2;
    }
    .email-grab-copy {
        font-size: 13px;
        line-height: 1.6;
    }
    .email-grab-form { gap: 10px; }
    .email-grab-field-group {
        flex-direction: column;
        border-radius: 16px;
    }
    .email-grab-input {
        padding: 16px 18px;
        font-size: 14px;
        width: 100%;
    }
    .email-grab-input-name { flex: 1; }
    .email-grab-divider {
        width: 100%;
        height: 1px;
    }
    .email-grab-btn {
        width: calc(100% - 12px);
        margin: 0 6px 6px;
        justify-content: center;
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 12px;
    }
    .email-grab-footnote { font-size: 11px; }
}

/* Mobile */
@media (max-width: 480px) {
    .email-grab { border-radius: 18px; padding: 2px; }
    .email-grab-inner {
        padding: 28px 16px 24px;
        border-radius: 16px;
    }
    .email-grab-top { margin-bottom: 16px; }
    .email-grab-pill {
        font-size: 8px;
        padding: 5px 12px;
        gap: 5px;
    }
    .email-grab-pill-icon { width: 10px; height: 10px; }
    .email-grab-main { gap: 20px; }
    .email-grab-headline {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .email-grab-copy {
        font-size: 12px;
        line-height: 1.55;
    }
    .email-grab-field-group { border-radius: 14px; }
    .email-grab-input {
        padding: 14px 16px;
        font-size: 13px;
    }
    .email-grab-btn {
        padding: 14px 20px;
        font-size: 13px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #9d174d,
                    0 5px 14px rgba(236, 72, 153, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    .email-grab-btn-icon { width: 13px; height: 13px; }
    .email-grab-footnote {
        font-size: 10px;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .email-grab-inner {
        padding: 24px 12px 20px;
    }
    .email-grab-pill {
        font-size: 7px;
        padding: 4px 10px;
    }
    .email-grab-headline { font-size: 19px; }
    .email-grab-copy { font-size: 11px; }
    .email-grab-input {
        padding: 12px 14px;
        font-size: 12px;
    }
    .email-grab-btn {
        padding: 12px 16px;
        font-size: 12px;
    }
}
/* ================================
   BUSINESS PR SECTION
   ================================ */

/* ---- ANIMATED BORDER WRAPPER ---- */
.bpr-outer {
    position: relative;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.06), rgba(96, 165, 250, 0.2), rgba(59, 130, 246, 0.06), rgba(59, 130, 246, 0.25));
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Spinning conic border glow */
.bpr-glow-orb {
    position: absolute;
    top: -80%;
    left: -15%;
    width: 130%;
    height: 260%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(59, 130, 246, 0.2) 45deg, transparent 90deg, rgba(96, 165, 250, 0.15) 180deg, transparent 225deg, rgba(59, 130, 246, 0.18) 300deg, transparent 360deg);
    animation: bpr-border-spin 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bpr-border-spin {
    100% { transform: rotate(360deg); }
}

/* Inner card */
.bpr-outer > *:not(.bpr-glow-orb):not(.bpr-scan-line) {
    position: relative;
    z-index: 2;
}

/* Actual inner bg */
.bpr-outer::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 26px;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 60%),
        #050510;
    z-index: 1;
    box-shadow:
        inset 0 0 200px rgba(59, 130, 246, 0.05),
        inset 0 0 100px rgba(59, 130, 246, 0.04),
        inset 0 0 40px rgba(59, 130, 246, 0.03);
    animation: bpr-inner-pulse 5s ease-in-out infinite;
}

@keyframes bpr-inner-pulse {
    0%, 100% {
        box-shadow:
            inset 0 0 200px rgba(59, 130, 246, 0.05),
            inset 0 0 100px rgba(59, 130, 246, 0.04),
            inset 0 0 40px rgba(59, 130, 246, 0.03);
    }
    50% {
        box-shadow:
            inset 0 0 200px rgba(59, 130, 246, 0.09),
            inset 0 0 100px rgba(59, 130, 246, 0.07),
            inset 0 0 40px rgba(59, 130, 246, 0.05);
    }
}

/* Scanning light line */
.bpr-scan-line {
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.04), rgba(96, 165, 250, 0.06), rgba(59, 130, 246, 0.04), transparent);
    z-index: 3;
    pointer-events: none;
    animation: bpr-scan 6s ease-in-out infinite;
}

@keyframes bpr-scan {
    0% { left: -30%; }
    100% { left: 100%; }
}

/* Inner layout */
.bpr-outer > .bpr-hero,
.bpr-outer > .bpr-grid,
.bpr-outer > .bpr-bottom-cta {
    position: relative;
    z-index: 2;
}

/* Padding wrapper - using margin on children */
.bpr-hero { margin: 16px 16px 0; }
.bpr-bottom-cta { margin: 0 16px 16px; }

/* ================================
   TOP HERO STRIP
   ================================ */
.bpr-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bpr-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bpr-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bpr-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 16, 0.97) 0%,
            rgba(5, 5, 16, 0.93) 22%,
            rgba(5, 5, 16, 0.75) 38%,
            rgba(5, 5, 16, 0.4) 52%,
            rgba(5, 5, 16, 0.12) 66%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(5, 5, 16, 0.4) 0%,
            transparent 20%,
            transparent 75%,
            rgba(5, 5, 16, 0.5) 100%
        );
    pointer-events: none;
}

/* Hero content */
.bpr-hero-content {
    position: relative;
    z-index: 2;
    width: 46%;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Live badge */
.bpr-hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
    margin-bottom: 16px;
}

.bpr-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: bpr-dot-pulse 2s ease-in-out infinite;
}

@keyframes bpr-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(59, 130, 246, 0.3); }
}

/* Eyebrow */
.bpr-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bpr-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* Title */
.bpr-hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.bpr-hero-title span {
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

/* Description */
.bpr-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 360px;
}

/* Stats row */
.bpr-hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 14px;
    width: fit-content;
}

.bpr-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.bpr-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.bpr-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bpr-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(59, 130, 246, 0.12);
}

/* Shopify CTA */
.bpr-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf,
                0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.bpr-hero-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.bpr-hero-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.bpr-hero-btn-icon { width: 15px; height: 15px; }

/* ================================
   SUB-CATEGORY CAROUSEL
   ================================ */
.bpr-carousel {
    position: relative;
    margin: 20px 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bpr-grid-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
}

.bpr-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 2px 4px;
    margin-top: -20px;
    scroll-padding: 0 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
}

.bpr-grid::-webkit-scrollbar { display: none; }

/* Nav arrows - positioned as flex siblings on either side */
.bpr-nav {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 0 0 #1e6abf,
                0 12px 28px rgba(37, 120, 235, 0.55),
                0 0 40px rgba(59, 130, 246, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: bpr-nav-pulse 3s ease-in-out infinite;
}

@keyframes bpr-nav-pulse {
    0%, 100% {
        box-shadow: 0 6px 0 0 #1e6abf,
                    0 12px 28px rgba(37, 120, 235, 0.55),
                    0 0 40px rgba(59, 130, 246, 0.35),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
    50% {
        box-shadow: 0 6px 0 0 #1e6abf,
                    0 14px 32px rgba(37, 120, 235, 0.7),
                    0 0 55px rgba(59, 130, 246, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
}

.bpr-nav:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-3px) scale(1.05);
    animation: none;
    box-shadow: 0 9px 0 0 #1e6abf,
                0 18px 40px rgba(37, 120, 235, 0.7),
                0 0 60px rgba(59, 130, 246, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
}

.bpr-nav:active {
    transform: translateY(2px) scale(0.98);
    animation: none;
    box-shadow: 0 2px 0 0 #1e6abf,
                0 4px 12px rgba(37, 120, 235, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.bpr-nav svg,
.bpr-nav i { width: 26px; height: 26px; stroke-width: 3; }

.bpr-nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
    transform: scale(0.9);
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1120 100%);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3);
}

.bpr-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 calc((100% - 30px) / 4);
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #0d1424 0%, #070b16 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Subtle accent line at top */
.bpr-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    z-index: 4;
    opacity: 0.6;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

/* Arrow indicator on hover */
.bpr-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-4px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.bpr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(96, 165, 250, 0.2),
                0 0 40px rgba(59, 130, 246, 0.18),
                inset 0 1px 0 rgba(96, 165, 250, 0.15);
}

.bpr-card:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.bpr-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Image takes top portion */
.bpr-card-video {
    position: relative;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.bpr-card-video video,
.bpr-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bpr-card:hover .bpr-card-video img,
.bpr-card:hover .bpr-card-video video {
    transform: scale(1.08);
}

/* Fade at bottom of image into content */
.bpr-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(7, 11, 22, 0.5) 50%,
        rgba(7, 11, 22, 0.95) 90%,
        #070b16 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Content sits in bottom */
.bpr-card-inner {
    position: relative;
    z-index: 2;
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: flex-start;
}

/* Floating icon badge */
.bpr-card-icon {
    position: absolute;
    top: -22px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border: 2px solid #070b16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
    z-index: 3;
}

.bpr-card:hover .bpr-card-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.05);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.bpr-card-icon svg { width: 20px; height: 20px; stroke-width: 2; }

.bpr-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.bpr-card:hover .bpr-card-title {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bpr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.bpr-card:hover .bpr-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   BOTTOM CTA
   ================================ */
.bpr-bottom-cta {
    display: flex; flex-direction: column; align-items: center;
    gap: 14px; padding: 24px 0 20px;
}

.bpr-bottom-proof {
    display: flex; align-items: center; gap: 6px;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
    color: rgba(255, 255, 255, 0.3); margin: 0;
}

.bpr-proof-icon { width: 14px; height: 14px; color: #3b82f6; }

.bpr-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.bpr-bottom-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.bpr-bottom-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.bpr-bottom-btn-icon { width: 16px; height: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet — keep side-by-side */
@media (max-width: 1280px) {
    .bpr-hero { height: 520px; }
    .bpr-hero-content {
        width: 50%;
        padding: 40px 44px;
    }
    .bpr-hero-title { font-size: 56px; }
    .bpr-hero-desc { font-size: 13px; }
    /* Tighten gradient to match content width */
    .bpr-hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(5, 5, 16, 0.97) 0%,
                rgba(5, 5, 16, 0.95) 30%,
                rgba(5, 5, 16, 0.78) 45%,
                rgba(5, 5, 16, 0.35) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(5, 5, 16, 0.4) 0%,
                transparent 20%,
                transparent 75%,
                rgba(5, 5, 16, 0.5) 100%
            );
    }
}

/* Tablet landscape and below — STACK vertically */
@media (max-width: 1024px) {
    .bpr-hero {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }
    .bpr-hero-video {
        position: relative;
        width: 100%;
        height: 360px;
        inset: auto;
    }
    .bpr-hero-gradient { display: none; }
    .bpr-hero-content {
        width: 100%;
        padding: 32px 36px 36px;
    }
    .bpr-hero-live-badge { margin-bottom: 14px; }
    .bpr-hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }
    .bpr-hero-desc {
        font-size: 14px;
        max-width: 560px;
        margin-bottom: 22px;
    }
    .bpr-hero-stats { flex-wrap: wrap; margin-bottom: 24px; }
    .bpr-grid { gap: 8px; }
    .bpr-card { flex: 0 0 calc((100% - 10px) / 2); }
    .bpr-carousel { margin: 16px 12px 0; gap: 8px; }
}

/* Tablet portrait / Large mobile */
@media (max-width: 768px) {
    .bpr-outer { border-radius: 22px; padding: 2px; }
    .bpr-hero { margin: 10px 10px 0; border-radius: 16px; }
    .bpr-hero-video { height: 290px; }
    .bpr-hero-content {
        padding: 26px 24px 28px;
    }
    .bpr-hero-live-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .bpr-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }
    .bpr-hero-eyebrow::before { width: 18px; }
    .bpr-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .bpr-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .bpr-hero-stats {
        padding: 14px 16px;
        gap: 14px;
        border-radius: 12px;
        margin-bottom: 22px;
    }
    .bpr-stat-num { font-size: 18px; }
    .bpr-stat-label { font-size: 9px; }
    .bpr-stat-divider { height: 22px; }
    .bpr-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    /* Mobile carousel — hide arrows, let swipe do the work */
    .bpr-carousel {
        margin: 14px 0 0;
        gap: 0;
        padding: 0 10px;
    }
    .bpr-nav { display: none; }
    .bpr-grid-wrapper { padding: 4px 0; }
    .bpr-grid {
        gap: 10px;
        padding: 24px 0 8px;
        scroll-padding: 0 10px;
    }
    .bpr-card {
        flex: 0 0 240px;
        border-radius: 16px;
    }
    .bpr-card-inner { padding: 18px 20px 20px; }
    .bpr-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        top: -21px;
        left: 20px;
    }
    .bpr-card-icon svg { width: 19px; height: 19px; }
    .bpr-card-title { font-size: 18px; margin-top: 26px; }
    .bpr-card-desc { font-size: 12.5px; line-height: 1.45; }
    .bpr-bottom-cta { margin: 0 10px 10px; padding: 20px 0 16px; gap: 12px; }
    .bpr-bottom-proof { font-size: 11px; }
    .bpr-bottom-btn {
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .bpr-outer { border-radius: 18px; padding: 2px; }
    .bpr-hero { margin: 8px 8px 0; border-radius: 14px; }
    .bpr-hero-video { height: 230px; }
    .bpr-hero-content {
        padding: 20px 16px 22px;
    }
    .bpr-hero-live-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 6px;
    }
    .bpr-live-dot { width: 6px; height: 6px; }
    .bpr-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .bpr-hero-eyebrow::before { width: 14px; }
    .bpr-hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .bpr-hero-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .bpr-hero-stats {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 10px;
        margin-bottom: 18px;
        width: 100%;
        justify-content: space-around;
    }
    .bpr-stat-num { font-size: 18px; }
    .bpr-stat-label { font-size: 8px; }
    .bpr-stat-divider { height: 18px; }
    .bpr-hero-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .bpr-carousel {
        margin: 12px 0 0;
        padding: 0 8px;
    }
    .bpr-grid {
        gap: 8px;
        scroll-padding: 0 8px;
    }
    .bpr-card {
        flex: 0 0 210px;
        border-radius: 14px;
    }
    .bpr-card-inner { padding: 16px 16px 18px; }
    .bpr-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        top: -19px;
        left: 16px;
    }
    .bpr-card-icon svg { width: 17px; height: 17px; }
    .bpr-card-title { font-size: 15px; margin-top: 24px; }
    .bpr-card-desc { font-size: 11.5px; }
    .bpr-bottom-cta { margin: 0 8px 8px; padding: 16px 0 12px; gap: 10px; }
    .bpr-bottom-proof { font-size: 10px; }
    .bpr-proof-icon { width: 12px; height: 12px; }
    .bpr-bottom-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .bpr-bottom-btn-icon { width: 14px; height: 14px; }
}

/* Small mobile */
@media (max-width: 380px) {
    .bpr-hero-video { height: 200px; }
    .bpr-hero-content { padding: 18px 14px 20px; }
    .bpr-hero-title { font-size: 28px; }
    .bpr-hero-desc { font-size: 11px; }
    .bpr-hero-stats { padding: 10px 12px; gap: 8px; }
    .bpr-stat-num { font-size: 15px; }
    .bpr-hero-btn { padding: 12px 16px; font-size: 11px; }
    .bpr-carousel { padding: 0 6px; }
    .bpr-card {
        flex: 0 0 190px;
        border-radius: 13px;
    }
    .bpr-card-inner { padding: 14px 14px 16px; }
    .bpr-card-icon {
        width: 34px;
        height: 34px;
        top: -17px;
        left: 14px;
    }
    .bpr-card-icon svg { width: 15px; height: 15px; }
    .bpr-card-title { font-size: 14px; margin-top: 20px; }
    .bpr-card-desc { font-size: 11px; }
    .bpr-bottom-btn { padding: 12px 18px; font-size: 11px; }
}
/* ================================
   TECH PR SECTION — PURPLE THEME
   ================================ */

.tpr-outer {
    position: relative;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(147, 51, 234, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        #08050f;
    border: 1px solid rgba(147, 51, 234, 0.12);
    box-shadow:
        0 0 80px rgba(147, 51, 234, 0.04),
        inset 0 0 120px rgba(147, 51, 234, 0.03),
        inset 0 1px 0 rgba(192, 132, 252, 0.1),
        inset 0 -1px 0 rgba(147, 51, 234, 0.05);
}

.tpr-glow-orb,
.tpr-scan-line {
    display: none;
}

/* ================================
   TOP HERO STRIP
   ================================ */
.tpr-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tpr-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tpr-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tpr-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(8, 5, 15, 0.97) 0%,
            rgba(8, 5, 15, 0.93) 22%,
            rgba(8, 5, 15, 0.75) 38%,
            rgba(8, 5, 15, 0.4) 52%,
            rgba(8, 5, 15, 0.12) 66%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(8, 5, 15, 0.4) 0%,
            transparent 20%,
            transparent 75%,
            rgba(8, 5, 15, 0.5) 100%
        );
    pointer-events: none;
}

.tpr-hero-content {
    position: relative;
    z-index: 2;
    width: 46%;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tpr-hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(147, 51, 234, 0.06);
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
    margin-bottom: 16px;
}

.tpr-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
    animation: tpr-dot-pulse 2s ease-in-out infinite;
}

@keyframes tpr-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(168, 85, 247, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(168, 85, 247, 0.3); }
}

.tpr-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c084fc;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tpr-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #a855f7;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

.tpr-hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.tpr-hero-title span {
    background: linear-gradient(180deg, #d8b4fe 0%, #a855f7 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
}

.tpr-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 360px;
}

/* Purple Shopify CTA */
.tpr-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, #7c3aed 0%, #8b5cf6 35%, #a78bfa 65%, #c4b5fd 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #5b21b6,
                0 6px 18px rgba(147, 51, 234, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.tpr-hero-btn:hover {
    background: linear-gradient(180deg, #8b4ff0 0%, #9b72fa 35%, #b49dfc 65%, #d0c5ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #5b21b6, 0 10px 26px rgba(147, 51, 234, 0.4);
}

.tpr-hero-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #5b21b6, 0 2px 8px rgba(147, 51, 234, 0.2);
}

.tpr-hero-btn-icon { width: 15px; height: 15px; }

/* ================================
   SUB-CATEGORY CAROUSEL
   ================================ */
.tpr-carousel {
    position: relative;
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tpr-grid-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
}

.tpr-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 2px 4px;
    margin-top: -20px;
    scroll-padding: 0 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
}

.tpr-grid::-webkit-scrollbar { display: none; }

/* Nav arrows - prominent purple raised buttons */
.tpr-nav {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #7c3aed 0%, #8b5cf6 35%, #a78bfa 65%, #c4b5fd 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 0 0 #5b21b6,
                0 12px 28px rgba(147, 51, 234, 0.55),
                0 0 40px rgba(168, 85, 247, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: tpr-nav-pulse 3s ease-in-out infinite;
}

@keyframes tpr-nav-pulse {
    0%, 100% {
        box-shadow: 0 6px 0 0 #5b21b6,
                    0 12px 28px rgba(147, 51, 234, 0.55),
                    0 0 40px rgba(168, 85, 247, 0.35),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
    50% {
        box-shadow: 0 6px 0 0 #5b21b6,
                    0 14px 32px rgba(147, 51, 234, 0.7),
                    0 0 55px rgba(168, 85, 247, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
}

.tpr-nav:hover {
    background: linear-gradient(180deg, #8b4ff0 0%, #9b72fa 35%, #b49dfc 65%, #d0c5ff 100%);
    transform: translateY(-3px) scale(1.05);
    animation: none;
    box-shadow: 0 9px 0 0 #5b21b6,
                0 18px 40px rgba(147, 51, 234, 0.7),
                0 0 60px rgba(168, 85, 247, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
}

.tpr-nav:active {
    transform: translateY(2px) scale(0.98);
    animation: none;
    box-shadow: 0 2px 0 0 #5b21b6,
                0 4px 12px rgba(147, 51, 234, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.tpr-nav svg,
.tpr-nav i { width: 26px; height: 26px; stroke-width: 3; }

.tpr-nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
    transform: scale(0.9);
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d20 100%);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ================================
   PREMIUM CARDS
   ================================ */
.tpr-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 calc((100% - 30px) / 4);
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at top right, rgba(147, 51, 234, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #140c24 0%, #0a0616 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Subtle accent line at top */
.tpr-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 132, 252, 0.5), transparent);
    z-index: 4;
    opacity: 0.6;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

/* Arrow indicator on hover */
.tpr-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-4px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.tpr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(192, 132, 252, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(192, 132, 252, 0.2),
                0 0 40px rgba(147, 51, 234, 0.18),
                inset 0 1px 0 rgba(192, 132, 252, 0.15);
}

.tpr-card:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.tpr-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Image takes top portion */
.tpr-card-video {
    position: relative;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.tpr-card-video video,
.tpr-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tpr-card:hover .tpr-card-video img,
.tpr-card:hover .tpr-card-video video {
    transform: scale(1.08);
}

/* Fade at bottom of image into content */
.tpr-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(10, 6, 22, 0.5) 50%,
        rgba(10, 6, 22, 0.95) 90%,
        #0a0616 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Content sits in bottom */
.tpr-card-inner {
    position: relative;
    z-index: 2;
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: flex-start;
}

/* Floating icon badge - purple gradient */
.tpr-card-icon {
    position: absolute;
    top: -22px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #6d28d9 100%);
    border: 2px solid #0a0616;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(147, 51, 234, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
    z-index: 3;
}

.tpr-card:hover .tpr-card-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.05);
    box-shadow: 0 10px 24px rgba(147, 51, 234, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.tpr-card-icon svg { width: 20px; height: 20px; stroke-width: 2; }

.tpr-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.tpr-card:hover .tpr-card-title {
    background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tpr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.tpr-card:hover .tpr-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   BOTTOM CTA
   ================================ */
.tpr-bottom-cta {
    display: flex; justify-content: center;
    padding: 24px 0 16px;
}

.tpr-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(180deg, #7c3aed 0%, #8b5cf6 35%, #a78bfa 65%, #c4b5fd 100%);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #5b21b6, 0 6px 18px rgba(147, 51, 234, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.tpr-bottom-btn:hover {
    background: linear-gradient(180deg, #8b4ff0 0%, #9b72fa 35%, #b49dfc 65%, #d0c5ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #5b21b6, 0 10px 26px rgba(147, 51, 234, 0.4);
}

.tpr-bottom-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #5b21b6, 0 2px 8px rgba(147, 51, 234, 0.2);
}

.tpr-bottom-btn-icon { width: 16px; height: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet — keep side-by-side */
@media (max-width: 1280px) {
    .tpr-hero { height: 520px; }
    .tpr-hero-content {
        width: 50%;
        padding: 40px 44px;
    }
    .tpr-hero-title { font-size: 56px; }
    .tpr-hero-desc { font-size: 13px; }
    .tpr-hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(8, 5, 15, 0.97) 0%,
                rgba(8, 5, 15, 0.95) 30%,
                rgba(8, 5, 15, 0.78) 45%,
                rgba(8, 5, 15, 0.35) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(8, 5, 15, 0.4) 0%,
                transparent 20%,
                transparent 75%,
                rgba(8, 5, 15, 0.5) 100%
            );
    }
}

/* Tablet landscape and below — STACK vertically */
@media (max-width: 1024px) {
    .tpr-hero {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }
    .tpr-hero-video {
        position: relative;
        width: 100%;
        height: 360px;
        inset: auto;
    }
    .tpr-hero-gradient { display: none; }
    .tpr-hero-content {
        width: 100%;
        padding: 32px 36px 36px;
    }
    .tpr-hero-live-badge { margin-bottom: 14px; }
    .tpr-hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }
    .tpr-hero-desc {
        font-size: 14px;
        max-width: 560px;
        margin-bottom: 22px;
    }
    .tpr-carousel { margin: 4px 0 0; gap: 8px; }
    .tpr-card { flex: 0 0 calc((100% - 10px) / 2); }
}

/* Tablet portrait / Large mobile */
@media (max-width: 768px) {
    .tpr-outer { padding: 10px; border-radius: 22px; }
    .tpr-hero { border-radius: 16px; }
    .tpr-hero-video { height: 290px; }
    .tpr-hero-content {
        padding: 26px 24px 28px;
    }
    .tpr-hero-live-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .tpr-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }
    .tpr-hero-eyebrow::before { width: 18px; }
    .tpr-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .tpr-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .tpr-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    /* Mobile carousel — hide arrows, let swipe do the work */
    .tpr-carousel {
        margin: 4px 0 0;
        gap: 0;
        padding: 0 10px;
    }
    .tpr-nav { display: none; }
    .tpr-grid-wrapper { padding: 4px 0; }
    .tpr-grid {
        gap: 10px;
        padding: 24px 0 8px;
        scroll-padding: 0 10px;
    }
    .tpr-card {
        flex: 0 0 240px;
        border-radius: 16px;
    }
    .tpr-card-inner { padding: 18px 20px 20px; }
    .tpr-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        top: -21px;
        left: 20px;
    }
    .tpr-card-icon svg { width: 19px; height: 19px; }
    .tpr-card-title { font-size: 18px; margin-top: 26px; }
    .tpr-card-desc { font-size: 12.5px; line-height: 1.45; }
    .tpr-bottom-cta { padding: 20px 0 16px; }
    .tpr-bottom-btn {
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .tpr-outer { padding: 8px; border-radius: 18px; }
    .tpr-hero { border-radius: 14px; }
    .tpr-hero-video { height: 230px; }
    .tpr-hero-content {
        padding: 20px 16px 22px;
    }
    .tpr-hero-live-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 6px;
    }
    .tpr-live-dot { width: 6px; height: 6px; }
    .tpr-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .tpr-hero-eyebrow::before { width: 14px; }
    .tpr-hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .tpr-hero-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .tpr-hero-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #5b21b6, 0 5px 14px rgba(147, 51, 234, 0.25);
    }
    .tpr-carousel {
        margin: 4px 0 0;
        padding: 0 8px;
    }
    .tpr-grid {
        gap: 8px;
        scroll-padding: 0 8px;
    }
    .tpr-card {
        flex: 0 0 210px;
        border-radius: 14px;
    }
    .tpr-card-inner { padding: 16px 16px 18px; }
    .tpr-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        top: -19px;
        left: 16px;
    }
    .tpr-card-icon svg { width: 17px; height: 17px; }
    .tpr-card-title { font-size: 15px; margin-top: 24px; }
    .tpr-card-desc { font-size: 11.5px; }
    .tpr-bottom-cta { padding: 16px 0 12px; }
    .tpr-bottom-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #5b21b6, 0 5px 14px rgba(147, 51, 234, 0.25);
    }
    .tpr-bottom-btn-icon { width: 14px; height: 14px; }
}

/* Small mobile */
@media (max-width: 380px) {
    .tpr-hero-video { height: 200px; }
    .tpr-hero-content { padding: 18px 14px 20px; }
    .tpr-hero-title { font-size: 28px; }
    .tpr-hero-desc { font-size: 11px; }
    .tpr-hero-btn { padding: 12px 16px; font-size: 11px; }
    .tpr-carousel { padding: 0 6px; }
    .tpr-card {
        flex: 0 0 190px;
        border-radius: 13px;
    }
    .tpr-card-inner { padding: 14px 14px 16px; }
    .tpr-card-icon {
        width: 34px;
        height: 34px;
        top: -17px;
        left: 14px;
    }
    .tpr-card-icon svg { width: 15px; height: 15px; }
    .tpr-card-title { font-size: 14px; margin-top: 20px; }
    .tpr-card-desc { font-size: 11px; }
    .tpr-bottom-btn { padding: 12px 18px; font-size: 11px; }
}
/* ================================
   LAUNCH PR SECTION — BLUE THEME
   3-card grid (no carousel needed)
   ================================ */

.lpr-outer {
    position: relative;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        #050510;
    border: 1px solid rgba(59, 130, 246, 0.12);
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.04),
        inset 0 0 120px rgba(59, 130, 246, 0.03),
        inset 0 1px 0 rgba(96, 165, 250, 0.1),
        inset 0 -1px 0 rgba(59, 130, 246, 0.05);
}

/* ================================
   TOP HERO STRIP
   ================================ */
.lpr-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lpr-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lpr-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lpr-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 16, 0.97) 0%,
            rgba(5, 5, 16, 0.93) 22%,
            rgba(5, 5, 16, 0.75) 38%,
            rgba(5, 5, 16, 0.4) 52%,
            rgba(5, 5, 16, 0.12) 66%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(5, 5, 16, 0.4) 0%,
            transparent 20%,
            transparent 75%,
            rgba(5, 5, 16, 0.5) 100%
        );
    pointer-events: none;
}

.lpr-hero-content {
    position: relative;
    z-index: 2;
    width: 46%;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lpr-hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
    margin-bottom: 16px;
}

.lpr-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: lpr-dot-pulse 2s ease-in-out infinite;
}

@keyframes lpr-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(59, 130, 246, 0.3); }
}

.lpr-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lpr-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.lpr-hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.lpr-hero-title span {
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.lpr-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 360px;
}

.lpr-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.lpr-hero-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.lpr-hero-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.lpr-hero-btn-icon { width: 15px; height: 15px; }

/* ================================
   DESKTOP: static 3-col grid (carousel wrapper invisible)
   ================================ */
.lpr-carousel {
    position: relative;
    display: block;
}

.lpr-grid-wrapper {
    position: relative;
}

.lpr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 4px 2px;
}

/* Arrows hidden on desktop — grid is static */
.lpr-nav { display: none; }

/* ================================
   NAV ARROWS (for tablet/mobile carousel)
   ================================ */
.lpr-nav-prev,
.lpr-nav-next {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 0 0 #1e6abf,
                0 10px 24px rgba(37, 120, 235, 0.5),
                0 0 32px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    animation: lpr-nav-pulse 3s ease-in-out infinite;
}

@keyframes lpr-nav-pulse {
    0%, 100% {
        box-shadow: 0 5px 0 0 #1e6abf,
                    0 10px 24px rgba(37, 120, 235, 0.5),
                    0 0 32px rgba(59, 130, 246, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
    50% {
        box-shadow: 0 5px 0 0 #1e6abf,
                    0 12px 28px rgba(37, 120, 235, 0.65),
                    0 0 45px rgba(59, 130, 246, 0.45),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
}

.lpr-nav-prev:hover,
.lpr-nav-next:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px) scale(1.05);
    animation: none;
    box-shadow: 0 7px 0 0 #1e6abf,
                0 14px 32px rgba(37, 120, 235, 0.6),
                0 0 50px rgba(59, 130, 246, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
}

.lpr-nav-prev:active,
.lpr-nav-next:active {
    transform: translateY(2px) scale(0.98);
    animation: none;
    box-shadow: 0 1px 0 0 #1e6abf,
                0 3px 10px rgba(37, 120, 235, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.lpr-nav-prev svg,
.lpr-nav-next svg,
.lpr-nav-prev i,
.lpr-nav-next i { width: 22px; height: 22px; stroke-width: 3; }

.lpr-nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
    transform: scale(0.9);
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1120 100%);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ================================
   PREMIUM CARDS (wider, richer layout)
   ================================ */
.lpr-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.14) 0%, transparent 60%),
        linear-gradient(180deg, #0d1424 0%, #070b16 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Accent line at top */
.lpr-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    z-index: 4;
    opacity: 0.6;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

/* External-link arrow indicator */
.lpr-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-4px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.lpr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(96, 165, 250, 0.2),
                0 0 40px rgba(59, 130, 246, 0.18),
                inset 0 1px 0 rgba(96, 165, 250, 0.15);
}

.lpr-card:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.lpr-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Image top */
.lpr-card-video {
    position: relative;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.lpr-card-video video,
.lpr-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lpr-card:hover .lpr-card-video img,
.lpr-card:hover .lpr-card-video video {
    transform: scale(1.08);
}

.lpr-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(7, 11, 22, 0.5) 50%,
        rgba(7, 11, 22, 0.95) 90%,
        #070b16 100%
    );
    pointer-events: none;
    z-index: 1;
}

.lpr-card-inner {
    position: relative;
    z-index: 2;
    padding: 24px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: flex-start;
}

/* Larger floating icon badge for this 3-card layout */
.lpr-card-icon {
    position: absolute;
    top: -26px;
    left: 24px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border: 2px solid #070b16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 8px 22px rgba(59, 130, 246, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
    z-index: 3;
}

.lpr-card:hover .lpr-card-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.05);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.lpr-card-icon svg { width: 24px; height: 24px; stroke-width: 2; }

.lpr-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 34px 0 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.lpr-card:hover .lpr-card-title {
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lpr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.55;
    transition: color 0.3s ease;
}

.lpr-card:hover .lpr-card-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* Learn More link at bottom */
.lpr-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 0.01em;
    transition: color 0.3s ease, gap 0.3s ease;
}

.lpr-card:hover .lpr-card-link {
    color: #93c5fd;
    gap: 10px;
}

.lpr-card-link-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

/* ================================
   BOTTOM CTA
   ================================ */
.lpr-bottom-cta {
    display: flex; justify-content: center;
    padding: 24px 0 16px;
}

.lpr-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.lpr-bottom-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.lpr-bottom-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.lpr-bottom-btn-icon { width: 16px; height: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1280px) {
    .lpr-hero { height: 520px; }
    .lpr-hero-content {
        width: 50%;
        padding: 40px 44px;
    }
    .lpr-hero-title { font-size: 56px; }
    .lpr-hero-desc { font-size: 13px; }
    .lpr-hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(5, 5, 16, 0.97) 0%,
                rgba(5, 5, 16, 0.95) 30%,
                rgba(5, 5, 16, 0.78) 45%,
                rgba(5, 5, 16, 0.35) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(5, 5, 16, 0.4) 0%,
                transparent 20%,
                transparent 75%,
                rgba(5, 5, 16, 0.5) 100%
            );
    }
    .lpr-card-title { font-size: 20px; }
}

/* Tablet: carousel with arrows */
@media (max-width: 1024px) {
    .lpr-hero {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }
    .lpr-hero-video {
        position: relative;
        width: 100%;
        height: 360px;
        inset: auto;
    }
    .lpr-hero-gradient { display: none; }
    .lpr-hero-content {
        width: 100%;
        padding: 32px 36px 36px;
    }
    .lpr-hero-live-badge { margin-bottom: 14px; }
    .lpr-hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }
    .lpr-hero-desc {
        font-size: 14px;
        max-width: 560px;
        margin-bottom: 22px;
    }

    /* Activate carousel */
    .lpr-carousel {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 4px 0 0;
    }
    .lpr-grid-wrapper {
        flex: 1;
        min-width: 0;
        padding: 4px 0;
    }
    .lpr-grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 24px 2px 4px;
        margin-top: -20px;
        scroll-padding: 0 4px;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
    }
    .lpr-grid::-webkit-scrollbar { display: none; }
    .lpr-card {
        flex: 0 0 calc((100% - 12px) / 2);
        scroll-snap-align: start;
    }

    /* Show arrows */
    .lpr-nav-prev,
    .lpr-nav-next { display: flex; }

    .lpr-card-inner { padding: 22px 22px 24px; }
    .lpr-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        top: -24px;
        left: 22px;
    }
    .lpr-card-icon svg { width: 22px; height: 22px; }
    .lpr-card-title { font-size: 19px; margin-top: 30px; }
    .lpr-card-desc { font-size: 13px; }
}

/* Tablet portrait / Large mobile: single card carousel with arrows */
@media (max-width: 768px) {
    .lpr-outer { padding: 10px; border-radius: 22px; }
    .lpr-hero { border-radius: 16px; }
    .lpr-hero-video { height: 290px; }
    .lpr-hero-content {
        padding: 26px 24px 28px;
    }
    .lpr-hero-live-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .lpr-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }
    .lpr-hero-eyebrow::before { width: 18px; }
    .lpr-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .lpr-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .lpr-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    /* Hide arrows on mobile — swipe only */
    .lpr-nav-prev,
    .lpr-nav-next { display: none; }

    .lpr-carousel {
        padding: 0 10px;
        gap: 0;
    }
    .lpr-grid {
        gap: 12px;
        scroll-padding: 0 10px;
    }
    .lpr-card {
        flex: 0 0 280px;
        border-radius: 16px;
    }

    .lpr-card-video { height: 30px; }
    .lpr-card-inner { padding: 22px 22px 22px; }
    .lpr-card-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        top: -23px;
        left: 22px;
    }
    .lpr-card-icon svg { width: 21px; height: 21px; }
    .lpr-card-title { font-size: 18px; margin-top: 28px; line-height: 1.2; }
    .lpr-card-desc { font-size: 13px; line-height: 1.5; }
    .lpr-card-link { font-size: 12.5px; padding-top: 14px; }

    .lpr-bottom-cta { padding: 20px 0 16px; }
    .lpr-bottom-btn {
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .lpr-outer { padding: 8px; border-radius: 18px; }
    .lpr-hero { border-radius: 14px; }
    .lpr-hero-video { height: 230px; }
    .lpr-hero-content {
        padding: 20px 16px 22px;
    }
    .lpr-hero-live-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 6px;
    }
    .lpr-live-dot { width: 6px; height: 6px; }
    .lpr-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .lpr-hero-eyebrow::before { width: 14px; }
    .lpr-hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .lpr-hero-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .lpr-hero-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }

    .lpr-carousel { padding: 0 8px; }
    .lpr-grid {
        gap: 10px;
        scroll-padding: 0 8px;
    }
    .lpr-card {
        flex: 0 0 260px;
        border-radius: 14px;
    }

    .lpr-card-video { height: 30px; }
    .lpr-card-inner { padding: 20px 20px 20px; }
    .lpr-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        top: -21px;
        left: 18px;
    }
    .lpr-card-icon svg { width: 19px; height: 19px; }
    .lpr-card-title { font-size: 17px; margin-top: 24px; }
    .lpr-card-desc { font-size: 12.5px; line-height: 1.5; }
    .lpr-card-link { font-size: 12px; padding-top: 12px; }
    .lpr-bottom-cta { padding: 16px 0 12px; }
    .lpr-bottom-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .lpr-bottom-btn-icon { width: 14px; height: 14px; }
}

@media (max-width: 380px) {
    .lpr-hero-video { height: 200px; }
    .lpr-hero-content { padding: 18px 14px 20px; }
    .lpr-hero-title { font-size: 28px; }
    .lpr-hero-desc { font-size: 11px; }
    .lpr-hero-btn { padding: 12px 16px; font-size: 11px; }
    .lpr-carousel { padding: 0 6px; }
    .lpr-grid { gap: 8px; scroll-padding: 0 6px; }
    .lpr-card {
        flex: 0 0 240px;
        border-radius: 13px;
    }
    .lpr-card-inner { padding: 18px 18px 18px; }
    .lpr-card-icon {
        width: 42px;
        height: 42px;
        top: -21px;
    }
    .lpr-card-icon svg { width: 19px; height: 19px; }
    .lpr-card-title { font-size: 18px; margin-top: 24px; }
    .lpr-card-desc { font-size: 12px; }
    .lpr-bottom-btn { padding: 12px 18px; font-size: 11px; }
}
/* ================================
   PEOPLE & BRANDS PR — BLUE THEME
   ================================ */

.ppr-outer {
    position: relative;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        #050510;
    border: 1px solid rgba(59, 130, 246, 0.12);
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.04),
        inset 0 0 120px rgba(59, 130, 246, 0.03),
        inset 0 1px 0 rgba(96, 165, 250, 0.1),
        inset 0 -1px 0 rgba(59, 130, 246, 0.05);
}

/* ================================
   TOP HERO STRIP
   ================================ */
.ppr-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ppr-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ppr-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ppr-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 16, 0.97) 0%,
            rgba(5, 5, 16, 0.93) 22%,
            rgba(5, 5, 16, 0.75) 38%,
            rgba(5, 5, 16, 0.4) 52%,
            rgba(5, 5, 16, 0.12) 66%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(5, 5, 16, 0.4) 0%,
            transparent 20%,
            transparent 75%,
            rgba(5, 5, 16, 0.5) 100%
        );
    pointer-events: none;
}

.ppr-hero-content {
    position: relative;
    z-index: 2;
    width: 46%;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ppr-hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
    margin-bottom: 16px;
}

.ppr-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: ppr-dot-pulse 2s ease-in-out infinite;
}

@keyframes ppr-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(59, 130, 246, 0.3); }
}

.ppr-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ppr-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.ppr-hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.ppr-hero-title span {
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.ppr-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 360px;
}

.ppr-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.ppr-hero-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.ppr-hero-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.ppr-hero-btn-icon { width: 15px; height: 15px; }

/* ================================
   SUB-CATEGORY CAROUSEL
   ================================ */
.ppr-carousel {
    position: relative;
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ppr-grid-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
}

.ppr-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 2px 4px;
    margin-top: -20px;
    scroll-padding: 0 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
}

.ppr-grid::-webkit-scrollbar { display: none; }

/* Nav arrows - prominent raised blue buttons */
.ppr-nav {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 0 0 #1e6abf,
                0 12px 28px rgba(37, 120, 235, 0.55),
                0 0 40px rgba(59, 130, 246, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: ppr-nav-pulse 3s ease-in-out infinite;
}

@keyframes ppr-nav-pulse {
    0%, 100% {
        box-shadow: 0 6px 0 0 #1e6abf,
                    0 12px 28px rgba(37, 120, 235, 0.55),
                    0 0 40px rgba(59, 130, 246, 0.35),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
    50% {
        box-shadow: 0 6px 0 0 #1e6abf,
                    0 14px 32px rgba(37, 120, 235, 0.7),
                    0 0 55px rgba(59, 130, 246, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
}

.ppr-nav:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-3px) scale(1.05);
    animation: none;
    box-shadow: 0 9px 0 0 #1e6abf,
                0 18px 40px rgba(37, 120, 235, 0.7),
                0 0 60px rgba(59, 130, 246, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
}

.ppr-nav:active {
    transform: translateY(2px) scale(0.98);
    animation: none;
    box-shadow: 0 2px 0 0 #1e6abf,
                0 4px 12px rgba(37, 120, 235, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.ppr-nav svg,
.ppr-nav i { width: 26px; height: 26px; stroke-width: 3; }

.ppr-nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
    transform: scale(0.9);
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1120 100%);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ================================
   PREMIUM CARDS
   ================================ */
.ppr-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 calc((100% - 30px) / 4);
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #0d1424 0%, #070b16 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ppr-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    z-index: 4;
    opacity: 0.6;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

.ppr-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-4px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.ppr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(96, 165, 250, 0.2),
                0 0 40px rgba(59, 130, 246, 0.18),
                inset 0 1px 0 rgba(96, 165, 250, 0.15);
}

.ppr-card:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.ppr-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ppr-card-video {
    position: relative;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.ppr-card-video video,
.ppr-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ppr-card:hover .ppr-card-video img,
.ppr-card:hover .ppr-card-video video {
    transform: scale(1.08);
}

.ppr-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(7, 11, 22, 0.5) 50%,
        rgba(7, 11, 22, 0.95) 90%,
        #070b16 100%
    );
    pointer-events: none;
    z-index: 1;
}

.ppr-card-inner {
    position: relative;
    z-index: 2;
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: flex-start;
}

.ppr-card-icon {
    position: absolute;
    top: -22px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border: 2px solid #070b16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
    z-index: 3;
}

.ppr-card:hover .ppr-card-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.05);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.ppr-card-icon svg { width: 20px; height: 20px; stroke-width: 2; }

.ppr-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.ppr-card:hover .ppr-card-title {
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ppr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.ppr-card:hover .ppr-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   BOTTOM CTA
   ================================ */
.ppr-bottom-cta {
    display: flex; justify-content: center;
    padding: 24px 0 16px;
}

.ppr-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.ppr-bottom-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.ppr-bottom-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.ppr-bottom-btn-icon { width: 16px; height: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1280px) {
    .ppr-hero { height: 520px; }
    .ppr-hero-content {
        width: 50%;
        padding: 40px 44px;
    }
    .ppr-hero-title { font-size: 56px; }
    .ppr-hero-desc { font-size: 13px; }
    .ppr-hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(5, 5, 16, 0.97) 0%,
                rgba(5, 5, 16, 0.95) 30%,
                rgba(5, 5, 16, 0.78) 45%,
                rgba(5, 5, 16, 0.35) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(5, 5, 16, 0.4) 0%,
                transparent 20%,
                transparent 75%,
                rgba(5, 5, 16, 0.5) 100%
            );
    }
}

@media (max-width: 1024px) {
    .ppr-hero {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }
    .ppr-hero-video {
        position: relative;
        width: 100%;
        height: 360px;
        inset: auto;
    }
    .ppr-hero-gradient { display: none; }
    .ppr-hero-content {
        width: 100%;
        padding: 32px 36px 36px;
    }
    .ppr-hero-live-badge { margin-bottom: 14px; }
    .ppr-hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }
    .ppr-hero-desc {
        font-size: 14px;
        max-width: 560px;
        margin-bottom: 22px;
    }
    .ppr-carousel { margin: 4px 0 0; gap: 8px; }
    .ppr-card { flex: 0 0 calc((100% - 10px) / 2); }
}

@media (max-width: 768px) {
    .ppr-outer { padding: 10px; border-radius: 22px; }
    .ppr-hero { border-radius: 16px; }
    .ppr-hero-video { height: 290px; }
    .ppr-hero-content {
        padding: 26px 24px 28px;
    }
    .ppr-hero-live-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .ppr-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }
    .ppr-hero-eyebrow::before { width: 18px; }
    .ppr-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .ppr-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .ppr-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    /* Mobile carousel — hide arrows, let swipe do the work */
    .ppr-carousel {
        margin: 4px 0 0;
        gap: 0;
        padding: 0 10px;
    }
    .ppr-nav { display: none; }
    .ppr-grid-wrapper { padding: 4px 0; }
    .ppr-grid {
        gap: 10px;
        padding: 24px 0 8px;
        scroll-padding: 0 10px;
    }
    .ppr-card {
        flex: 0 0 240px;
        border-radius: 16px;
    }
    .ppr-card-inner { padding: 18px 20px 20px; }
    .ppr-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        top: -21px;
        left: 20px;
    }
    .ppr-card-icon svg { width: 19px; height: 19px; }
    .ppr-card-title { font-size: 18px; margin-top: 26px; }
    .ppr-card-desc { font-size: 12.5px; line-height: 1.45; }
    .ppr-bottom-cta { padding: 20px 0 16px; }
    .ppr-bottom-btn {
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .ppr-outer { padding: 8px; border-radius: 18px; }
    .ppr-hero { border-radius: 14px; }
    .ppr-hero-video { height: 230px; }
    .ppr-hero-content {
        padding: 20px 16px 22px;
    }
    .ppr-hero-live-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 6px;
    }
    .ppr-live-dot { width: 6px; height: 6px; }
    .ppr-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .ppr-hero-eyebrow::before { width: 14px; }
    .ppr-hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .ppr-hero-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .ppr-hero-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .ppr-carousel {
        margin: 4px 0 0;
        padding: 0 8px;
    }
    .ppr-grid {
        gap: 8px;
        scroll-padding: 0 8px;
    }
    .ppr-card {
        flex: 0 0 210px;
        border-radius: 14px;
    }
    .ppr-card-inner { padding: 16px 16px 18px; }
    .ppr-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        top: -19px;
        left: 16px;
    }
    .ppr-card-icon svg { width: 17px; height: 17px; }
    .ppr-card-title { font-size: 15px; margin-top: 24px; }
    .ppr-card-desc { font-size: 11.5px; }
    .ppr-bottom-cta { padding: 16px 0 12px; }
    .ppr-bottom-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .ppr-bottom-btn-icon { width: 14px; height: 14px; }
}

@media (max-width: 380px) {
    .ppr-hero-video { height: 200px; }
    .ppr-hero-content { padding: 18px 14px 20px; }
    .ppr-hero-title { font-size: 28px; }
    .ppr-hero-desc { font-size: 11px; }
    .ppr-hero-btn { padding: 12px 16px; font-size: 11px; }
    .ppr-carousel { padding: 0 6px; }
    .ppr-card {
        flex: 0 0 190px;
        border-radius: 13px;
    }
    .ppr-card-inner { padding: 14px 14px 16px; }
    .ppr-card-icon {
        width: 34px;
        height: 34px;
        top: -17px;
        left: 14px;
    }
    .ppr-card-icon svg { width: 15px; height: 15px; }
    .ppr-card-title { font-size: 14px; margin-top: 20px; }
    .ppr-card-desc { font-size: 11px; }
    .ppr-bottom-btn { padding: 12px 18px; font-size: 11px; }
}
/* ================================
   AUTHORITY PR — BLUE THEME
   ================================ */

.apr-outer {
    position: relative;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        #050510;
    border: 1px solid rgba(59, 130, 246, 0.12);
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.04),
        inset 0 0 120px rgba(59, 130, 246, 0.03),
        inset 0 1px 0 rgba(96, 165, 250, 0.1),
        inset 0 -1px 0 rgba(59, 130, 246, 0.05);
}

/* ================================
   TOP HERO STRIP
   ================================ */
.apr-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.apr-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.apr-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apr-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 16, 0.97) 0%,
            rgba(5, 5, 16, 0.93) 22%,
            rgba(5, 5, 16, 0.75) 38%,
            rgba(5, 5, 16, 0.4) 52%,
            rgba(5, 5, 16, 0.12) 66%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(5, 5, 16, 0.4) 0%,
            transparent 20%,
            transparent 75%,
            rgba(5, 5, 16, 0.5) 100%
        );
    pointer-events: none;
}

.apr-hero-content {
    position: relative;
    z-index: 2;
    width: 46%;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apr-hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
    margin-bottom: 16px;
}

.apr-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: apr-dot-pulse 2s ease-in-out infinite;
}

@keyframes apr-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(59, 130, 246, 0.3); }
}

.apr-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apr-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.apr-hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.apr-hero-title span {
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.apr-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 360px;
}

.apr-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.apr-hero-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.apr-hero-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.apr-hero-btn-icon { width: 15px; height: 15px; }

/* ================================
   SUB-CATEGORY CAROUSEL
   ================================ */
.apr-carousel {
    position: relative;
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apr-grid-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
}

.apr-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 2px 4px;
    margin-top: -20px;
    scroll-padding: 0 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
}

.apr-grid::-webkit-scrollbar { display: none; }

/* Nav arrows - prominent raised blue buttons */
.apr-nav {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 0 0 #1e6abf,
                0 12px 28px rgba(37, 120, 235, 0.55),
                0 0 40px rgba(59, 130, 246, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: apr-nav-pulse 3s ease-in-out infinite;
}

@keyframes apr-nav-pulse {
    0%, 100% {
        box-shadow: 0 6px 0 0 #1e6abf,
                    0 12px 28px rgba(37, 120, 235, 0.55),
                    0 0 40px rgba(59, 130, 246, 0.35),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
    50% {
        box-shadow: 0 6px 0 0 #1e6abf,
                    0 14px 32px rgba(37, 120, 235, 0.7),
                    0 0 55px rgba(59, 130, 246, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
}

.apr-nav:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-3px) scale(1.05);
    animation: none;
    box-shadow: 0 9px 0 0 #1e6abf,
                0 18px 40px rgba(37, 120, 235, 0.7),
                0 0 60px rgba(59, 130, 246, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
}

.apr-nav:active {
    transform: translateY(2px) scale(0.98);
    animation: none;
    box-shadow: 0 2px 0 0 #1e6abf,
                0 4px 12px rgba(37, 120, 235, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.apr-nav svg,
.apr-nav i { width: 26px; height: 26px; stroke-width: 3; }

.apr-nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
    transform: scale(0.9);
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1120 100%);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ================================
   PREMIUM CARDS
   ================================ */
.apr-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 calc((100% - 30px) / 4);
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #0d1424 0%, #070b16 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.apr-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    z-index: 4;
    opacity: 0.6;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

.apr-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-4px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.apr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(96, 165, 250, 0.2),
                0 0 40px rgba(59, 130, 246, 0.18),
                inset 0 1px 0 rgba(96, 165, 250, 0.15);
}

.apr-card:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.apr-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.apr-card-video {
    position: relative;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.apr-card-video video,
.apr-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.apr-card:hover .apr-card-video img,
.apr-card:hover .apr-card-video video {
    transform: scale(1.08);
}

.apr-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(7, 11, 22, 0.5) 50%,
        rgba(7, 11, 22, 0.95) 90%,
        #070b16 100%
    );
    pointer-events: none;
    z-index: 1;
}

.apr-card-inner {
    position: relative;
    z-index: 2;
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: flex-start;
}

.apr-card-icon {
    position: absolute;
    top: -22px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border: 2px solid #070b16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
    z-index: 3;
}

.apr-card:hover .apr-card-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.05);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.apr-card-icon svg { width: 20px; height: 20px; stroke-width: 2; }

.apr-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.apr-card:hover .apr-card-title {
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.apr-card:hover .apr-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   BOTTOM CTA
   ================================ */
.apr-bottom-cta {
    display: flex; justify-content: center;
    padding: 24px 0 16px;
}

.apr-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.apr-bottom-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.apr-bottom-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.apr-bottom-btn-icon { width: 16px; height: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1280px) {
    .apr-hero { height: 520px; }
    .apr-hero-content {
        width: 50%;
        padding: 40px 44px;
    }
    .apr-hero-title { font-size: 56px; }
    .apr-hero-desc { font-size: 13px; }
    .apr-hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(5, 5, 16, 0.97) 0%,
                rgba(5, 5, 16, 0.95) 30%,
                rgba(5, 5, 16, 0.78) 45%,
                rgba(5, 5, 16, 0.35) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(5, 5, 16, 0.4) 0%,
                transparent 20%,
                transparent 75%,
                rgba(5, 5, 16, 0.5) 100%
            );
    }
}

@media (max-width: 1024px) {
    .apr-hero {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }
    .apr-hero-video {
        position: relative;
        width: 100%;
        height: 360px;
        inset: auto;
    }
    .apr-hero-gradient { display: none; }
    .apr-hero-content {
        width: 100%;
        padding: 32px 36px 36px;
    }
    .apr-hero-live-badge { margin-bottom: 14px; }
    .apr-hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }
    .apr-hero-desc {
        font-size: 14px;
        max-width: 560px;
        margin-bottom: 22px;
    }
    .apr-carousel { margin: 4px 0 0; gap: 8px; }
    .apr-card { flex: 0 0 calc((100% - 10px) / 2); }
}

@media (max-width: 768px) {
    .apr-outer { padding: 10px; border-radius: 22px; }
    .apr-hero { border-radius: 16px; }
    .apr-hero-video { height: 290px; }
    .apr-hero-content {
        padding: 26px 24px 28px;
    }
    .apr-hero-live-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .apr-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }
    .apr-hero-eyebrow::before { width: 18px; }
    .apr-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .apr-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .apr-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    /* Mobile carousel — hide arrows, let swipe do the work */
    .apr-carousel {
        margin: 4px 0 0;
        gap: 0;
        padding: 0 10px;
    }
    .apr-nav { display: none; }
    .apr-grid-wrapper { padding: 4px 0; }
    .apr-grid {
        gap: 10px;
        padding: 24px 0 8px;
        scroll-padding: 0 10px;
    }
    .apr-card {
        flex: 0 0 240px;
        border-radius: 16px;
    }
    .apr-card-inner { padding: 18px 20px 20px; }
    .apr-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        top: -21px;
        left: 20px;
    }
    .apr-card-icon svg { width: 19px; height: 19px; }
    .apr-card-title { font-size: 18px; margin-top: 26px; }
    .apr-card-desc { font-size: 12.5px; line-height: 1.45; }
    .apr-bottom-cta { padding: 20px 0 16px; }
    .apr-bottom-btn {
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .apr-outer { padding: 8px; border-radius: 18px; }
    .apr-hero { border-radius: 14px; }
    .apr-hero-video { height: 230px; }
    .apr-hero-content {
        padding: 20px 16px 22px;
    }
    .apr-hero-live-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 6px;
    }
    .apr-live-dot { width: 6px; height: 6px; }
    .apr-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .apr-hero-eyebrow::before { width: 14px; }
    .apr-hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .apr-hero-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .apr-hero-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .apr-carousel {
        margin: 4px 0 0;
        padding: 0 8px;
    }
    .apr-grid {
        gap: 8px;
        scroll-padding: 0 8px;
    }
    .apr-card {
        flex: 0 0 210px;
        border-radius: 14px;
    }
    .apr-card-inner { padding: 16px 16px 18px; }
    .apr-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        top: -19px;
        left: 16px;
    }
    .apr-card-icon svg { width: 17px; height: 17px; }
    .apr-card-title { font-size: 15px; margin-top: 24px; }
    .apr-card-desc { font-size: 11.5px; }
    .apr-bottom-cta { padding: 16px 0 12px; }
    .apr-bottom-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .apr-bottom-btn-icon { width: 14px; height: 14px; }
}

@media (max-width: 380px) {
    .apr-hero-video { height: 200px; }
    .apr-hero-content { padding: 18px 14px 20px; }
    .apr-hero-title { font-size: 28px; }
    .apr-hero-desc { font-size: 11px; }
    .apr-hero-btn { padding: 12px 16px; font-size: 11px; }
    .apr-carousel { padding: 0 6px; }
    .apr-card {
        flex: 0 0 190px;
        border-radius: 13px;
    }
    .apr-card-inner { padding: 14px 14px 16px; }
    .apr-card-icon {
        width: 34px;
        height: 34px;
        top: -17px;
        left: 14px;
    }
    .apr-card-icon svg { width: 15px; height: 15px; }
    .apr-card-title { font-size: 14px; margin-top: 20px; }
    .apr-card-desc { font-size: 11px; }
    .apr-bottom-btn { padding: 12px 18px; font-size: 11px; }
}
/* ================================
   MEDIA & EXPOSURE PR — BLUE THEME
   3-card grid on desktop, carousel on mobile/tablet
   ================================ */

.mpr-outer {
    position: relative;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        #050510;
    border: 1px solid rgba(59, 130, 246, 0.12);
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.04),
        inset 0 0 120px rgba(59, 130, 246, 0.03),
        inset 0 1px 0 rgba(96, 165, 250, 0.1),
        inset 0 -1px 0 rgba(59, 130, 246, 0.05);
}

/* ================================
   TOP HERO STRIP
   ================================ */
.mpr-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mpr-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mpr-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mpr-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 16, 0.97) 0%,
            rgba(5, 5, 16, 0.93) 22%,
            rgba(5, 5, 16, 0.75) 38%,
            rgba(5, 5, 16, 0.4) 52%,
            rgba(5, 5, 16, 0.12) 66%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(5, 5, 16, 0.4) 0%,
            transparent 20%,
            transparent 75%,
            rgba(5, 5, 16, 0.5) 100%
        );
    pointer-events: none;
}

.mpr-hero-content {
    position: relative;
    z-index: 2;
    width: 46%;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mpr-hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
    margin-bottom: 16px;
}

.mpr-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: mpr-dot-pulse 2s ease-in-out infinite;
}

@keyframes mpr-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(59, 130, 246, 0.3); }
}

.mpr-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mpr-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.mpr-hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.mpr-hero-title span {
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.mpr-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 360px;
}

.mpr-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.mpr-hero-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.mpr-hero-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.mpr-hero-btn-icon { width: 15px; height: 15px; }

/* ================================
   DESKTOP: static 3-col grid
   ================================ */
.mpr-carousel {
    position: relative;
    display: block;
}

.mpr-grid-wrapper {
    position: relative;
}

.mpr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 4px 2px;
}

/* Arrows hidden on desktop */
.mpr-nav { display: none; }

/* ================================
   NAV ARROWS (for tablet/mobile carousel)
   ================================ */
.mpr-nav-prev,
.mpr-nav-next {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 0 0 #1e6abf,
                0 10px 24px rgba(37, 120, 235, 0.5),
                0 0 32px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    animation: mpr-nav-pulse 3s ease-in-out infinite;
}

@keyframes mpr-nav-pulse {
    0%, 100% {
        box-shadow: 0 5px 0 0 #1e6abf,
                    0 10px 24px rgba(37, 120, 235, 0.5),
                    0 0 32px rgba(59, 130, 246, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
    50% {
        box-shadow: 0 5px 0 0 #1e6abf,
                    0 12px 28px rgba(37, 120, 235, 0.65),
                    0 0 45px rgba(59, 130, 246, 0.45),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
}

.mpr-nav-prev:hover,
.mpr-nav-next:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px) scale(1.05);
    animation: none;
    box-shadow: 0 7px 0 0 #1e6abf,
                0 14px 32px rgba(37, 120, 235, 0.6),
                0 0 50px rgba(59, 130, 246, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
}

.mpr-nav-prev:active,
.mpr-nav-next:active {
    transform: translateY(2px) scale(0.98);
    animation: none;
    box-shadow: 0 1px 0 0 #1e6abf,
                0 3px 10px rgba(37, 120, 235, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.mpr-nav-prev svg,
.mpr-nav-next svg,
.mpr-nav-prev i,
.mpr-nav-next i { width: 22px; height: 22px; stroke-width: 3; }

.mpr-nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
    transform: scale(0.9);
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1120 100%);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ================================
   PREMIUM CARDS
   ================================ */
.mpr-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.14) 0%, transparent 60%),
        linear-gradient(180deg, #0d1424 0%, #070b16 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mpr-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    z-index: 4;
    opacity: 0.6;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

.mpr-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-4px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.mpr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(96, 165, 250, 0.2),
                0 0 40px rgba(59, 130, 246, 0.18),
                inset 0 1px 0 rgba(96, 165, 250, 0.15);
}

.mpr-card:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.mpr-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mpr-card-video {
    position: relative;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.mpr-card-video video,
.mpr-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.mpr-card:hover .mpr-card-video img,
.mpr-card:hover .mpr-card-video video {
    transform: scale(1.08);
}

.mpr-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(7, 11, 22, 0.5) 50%,
        rgba(7, 11, 22, 0.95) 90%,
        #070b16 100%
    );
    pointer-events: none;
    z-index: 1;
}

.mpr-card-inner {
    position: relative;
    z-index: 2;
    padding: 24px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: flex-start;
}

.mpr-card-icon {
    position: absolute;
    top: -26px;
    left: 24px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border: 2px solid #070b16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 8px 22px rgba(59, 130, 246, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
    z-index: 3;
}

.mpr-card:hover .mpr-card-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.05);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.mpr-card-icon svg { width: 24px; height: 24px; stroke-width: 2; }

.mpr-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 34px 0 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.mpr-card:hover .mpr-card-title {
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mpr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.55;
    transition: color 0.3s ease;
}

.mpr-card:hover .mpr-card-desc {
    color: rgba(255, 255, 255, 0.75);
}

.mpr-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 0.01em;
    transition: color 0.3s ease, gap 0.3s ease;
}

.mpr-card:hover .mpr-card-link {
    color: #93c5fd;
    gap: 10px;
}

.mpr-card-link-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

/* ================================
   BOTTOM CTA
   ================================ */
.mpr-bottom-cta {
    display: flex; justify-content: center;
    padding: 24px 0 16px;
}

.mpr-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.mpr-bottom-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.mpr-bottom-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.mpr-bottom-btn-icon { width: 16px; height: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1280px) {
    .mpr-hero { height: 520px; }
    .mpr-hero-content {
        width: 50%;
        padding: 40px 44px;
    }
    .mpr-hero-title { font-size: 56px; }
    .mpr-hero-desc { font-size: 13px; }
    .mpr-hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(5, 5, 16, 0.97) 0%,
                rgba(5, 5, 16, 0.95) 30%,
                rgba(5, 5, 16, 0.78) 45%,
                rgba(5, 5, 16, 0.35) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(5, 5, 16, 0.4) 0%,
                transparent 20%,
                transparent 75%,
                rgba(5, 5, 16, 0.5) 100%
            );
    }
    .mpr-card-title { font-size: 20px; }
}

/* Tablet: carousel with arrows, still 3 across */
@media (max-width: 1024px) {
    .mpr-hero {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }
    .mpr-hero-video {
        position: relative;
        width: 100%;
        height: 360px;
        inset: auto;
    }
    .mpr-hero-gradient { display: none; }
    .mpr-hero-content {
        width: 100%;
        padding: 32px 36px 36px;
    }
    .mpr-hero-live-badge { margin-bottom: 14px; }
    .mpr-hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }
    .mpr-hero-desc {
        font-size: 14px;
        max-width: 560px;
        margin-bottom: 22px;
    }

    /* Activate carousel */
    .mpr-carousel {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 4px 0 0;
    }
    .mpr-grid-wrapper {
        flex: 1;
        min-width: 0;
        padding: 4px 0;
    }
    .mpr-grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 24px 2px 4px;
        margin-top: -20px;
        scroll-padding: 0 4px;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
    }
    .mpr-grid::-webkit-scrollbar { display: none; }
    .mpr-card {
        flex: 0 0 calc((100% - 12px) / 2);
        scroll-snap-align: start;
    }

    .mpr-nav-prev,
    .mpr-nav-next { display: flex; }

    .mpr-card-inner { padding: 22px 22px 24px; }
    .mpr-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        top: -24px;
        left: 22px;
    }
    .mpr-card-icon svg { width: 22px; height: 22px; }
    .mpr-card-title { font-size: 19px; margin-top: 30px; }
    .mpr-card-desc { font-size: 13px; }
}

/* Tablet portrait / Large mobile */
@media (max-width: 768px) {
    .mpr-outer { padding: 10px; border-radius: 22px; }
    .mpr-hero { border-radius: 16px; }
    .mpr-hero-video { height: 290px; }
    .mpr-hero-content {
        padding: 26px 24px 28px;
    }
    .mpr-hero-live-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .mpr-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }
    .mpr-hero-eyebrow::before { width: 18px; }
    .mpr-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .mpr-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .mpr-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    /* Hide arrows on mobile — swipe only */
    .mpr-nav-prev,
    .mpr-nav-next { display: none; }

    .mpr-carousel {
        padding: 0 10px;
        gap: 0;
    }
    .mpr-grid {
        gap: 12px;
        scroll-padding: 0 10px;
    }
    .mpr-card {
        flex: 0 0 280px;
        border-radius: 16px;
    }

    .mpr-card-video { height: 30px; }
    .mpr-card-inner { padding: 22px 22px 22px; }
    .mpr-card-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        top: -23px;
        left: 22px;
    }
    .mpr-card-icon svg { width: 21px; height: 21px; }
    .mpr-card-title { font-size: 18px; margin-top: 28px; line-height: 1.2; }
    .mpr-card-desc { font-size: 13px; line-height: 1.5; }
    .mpr-card-link { font-size: 12.5px; padding-top: 14px; }

    .mpr-bottom-cta { padding: 20px 0 16px; }
    .mpr-bottom-btn {
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .mpr-outer { padding: 8px; border-radius: 18px; }
    .mpr-hero { border-radius: 14px; }
    .mpr-hero-video { height: 230px; }
    .mpr-hero-content {
        padding: 20px 16px 22px;
    }
    .mpr-hero-live-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 6px;
    }
    .mpr-live-dot { width: 6px; height: 6px; }
    .mpr-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .mpr-hero-eyebrow::before { width: 14px; }
    .mpr-hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .mpr-hero-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .mpr-hero-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }

    .mpr-carousel { padding: 0 8px; }
    .mpr-grid {
        gap: 10px;
        scroll-padding: 0 8px;
    }
    .mpr-card {
        flex: 0 0 260px;
        border-radius: 14px;
    }

    .mpr-card-video { height: 30px; }
    .mpr-card-inner { padding: 20px 20px 20px; }
    .mpr-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        top: -21px;
        left: 18px;
    }
    .mpr-card-icon svg { width: 19px; height: 19px; }
    .mpr-card-title { font-size: 17px; margin-top: 24px; }
    .mpr-card-desc { font-size: 12.5px; line-height: 1.5; }
    .mpr-card-link { font-size: 12px; padding-top: 12px; }
    .mpr-bottom-cta { padding: 16px 0 12px; }
    .mpr-bottom-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .mpr-bottom-btn-icon { width: 14px; height: 14px; }
}

@media (max-width: 380px) {
    .mpr-hero-video { height: 200px; }
    .mpr-hero-content { padding: 18px 14px 20px; }
    .mpr-hero-title { font-size: 28px; }
    .mpr-hero-desc { font-size: 11px; }
    .mpr-hero-btn { padding: 12px 16px; font-size: 11px; }
    .mpr-carousel { padding: 0 6px; }
    .mpr-grid { gap: 8px; scroll-padding: 0 6px; }
    .mpr-card {
        flex: 0 0 240px;
        border-radius: 13px;
    }
    .mpr-card-inner { padding: 18px 18px 18px; }
    .mpr-card-icon {
        width: 42px;
        height: 42px;
        top: -21px;
    }
    .mpr-card-icon svg { width: 19px; height: 19px; }
    .mpr-card-title { font-size: 18px; margin-top: 24px; }
    .mpr-card-desc { font-size: 12px; }
    .mpr-bottom-btn { padding: 12px 18px; font-size: 11px; }
}
/* ================================
   RESIDENCY PR SECTION — BLUE THEME
   2-card grid on desktop, carousel on mobile/tablet
   ================================ */

.rpr-outer {
    position: relative;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        #050510;
    border: 1px solid rgba(59, 130, 246, 0.12);
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.04),
        inset 0 0 120px rgba(59, 130, 246, 0.03),
        inset 0 1px 0 rgba(96, 165, 250, 0.1),
        inset 0 -1px 0 rgba(59, 130, 246, 0.05);
}

/* ================================
   TOP HERO STRIP
   ================================ */
.rpr-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.rpr-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.rpr-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rpr-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 16, 0.97) 0%,
            rgba(5, 5, 16, 0.93) 22%,
            rgba(5, 5, 16, 0.75) 38%,
            rgba(5, 5, 16, 0.4) 52%,
            rgba(5, 5, 16, 0.12) 66%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(5, 5, 16, 0.4) 0%,
            transparent 20%,
            transparent 75%,
            rgba(5, 5, 16, 0.5) 100%
        );
    pointer-events: none;
}

.rpr-hero-content {
    position: relative;
    z-index: 2;
    width: 46%;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rpr-hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
    margin-bottom: 16px;
}

.rpr-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: rpr-dot-pulse 2s ease-in-out infinite;
}

@keyframes rpr-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(59, 130, 246, 0.3); }
}

.rpr-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rpr-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.rpr-hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.rpr-hero-title span {
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.rpr-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 360px;
}

.rpr-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.rpr-hero-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.rpr-hero-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.rpr-hero-btn-icon { width: 15px; height: 15px; }

/* ================================
   DESKTOP: static 2-col grid
   ================================ */
.rpr-carousel {
    position: relative;
    display: block;
}

.rpr-grid-wrapper {
    position: relative;
}

.rpr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 4px 2px;
}

/* Arrows hidden on desktop */
.rpr-nav { display: none; }

/* ================================
   NAV ARROWS (tablet only)
   ================================ */
.rpr-nav-prev,
.rpr-nav-next {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 0 0 #1e6abf,
                0 10px 24px rgba(37, 120, 235, 0.5),
                0 0 32px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    animation: rpr-nav-pulse 3s ease-in-out infinite;
}

@keyframes rpr-nav-pulse {
    0%, 100% {
        box-shadow: 0 5px 0 0 #1e6abf,
                    0 10px 24px rgba(37, 120, 235, 0.5),
                    0 0 32px rgba(59, 130, 246, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
    50% {
        box-shadow: 0 5px 0 0 #1e6abf,
                    0 12px 28px rgba(37, 120, 235, 0.65),
                    0 0 45px rgba(59, 130, 246, 0.45),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
}

.rpr-nav-prev:hover,
.rpr-nav-next:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px) scale(1.05);
    animation: none;
    box-shadow: 0 7px 0 0 #1e6abf,
                0 14px 32px rgba(37, 120, 235, 0.6),
                0 0 50px rgba(59, 130, 246, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
}

.rpr-nav-prev:active,
.rpr-nav-next:active {
    transform: translateY(2px) scale(0.98);
    animation: none;
    box-shadow: 0 1px 0 0 #1e6abf,
                0 3px 10px rgba(37, 120, 235, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.rpr-nav-prev svg,
.rpr-nav-next svg,
.rpr-nav-prev i,
.rpr-nav-next i { width: 22px; height: 22px; stroke-width: 3; }

.rpr-nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
    transform: scale(0.9);
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1120 100%);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ================================
   PREMIUM CARDS (wider 2-card layout)
   ================================ */
.rpr-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.14) 0%, transparent 60%),
        linear-gradient(180deg, #0d1424 0%, #070b16 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rpr-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    z-index: 4;
    opacity: 0.6;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

.rpr-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-4px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.rpr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(96, 165, 250, 0.2),
                0 0 40px rgba(59, 130, 246, 0.18),
                inset 0 1px 0 rgba(96, 165, 250, 0.15);
}

.rpr-card:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.rpr-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.rpr-card-video {
    position: relative;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.rpr-card-video video,
.rpr-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.rpr-card:hover .rpr-card-video img,
.rpr-card:hover .rpr-card-video video {
    transform: scale(1.08);
}

.rpr-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(7, 11, 22, 0.5) 50%,
        rgba(7, 11, 22, 0.95) 90%,
        #070b16 100%
    );
    pointer-events: none;
    z-index: 1;
}

.rpr-card-inner {
    position: relative;
    z-index: 2;
    padding: 26px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: flex-start;
}

.rpr-card-icon {
    position: absolute;
    top: -28px;
    left: 28px;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border: 2px solid #070b16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 8px 22px rgba(59, 130, 246, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
    z-index: 3;
}

.rpr-card:hover .rpr-card-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.05);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.rpr-card-icon svg { width: 26px; height: 26px; stroke-width: 2; }

.rpr-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 36px 0 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.rpr-card:hover .rpr-card-title {
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rpr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.55;
    transition: color 0.3s ease;
}

.rpr-card:hover .rpr-card-desc {
    color: rgba(255, 255, 255, 0.75);
}

.rpr-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 0.01em;
    transition: color 0.3s ease, gap 0.3s ease;
}

.rpr-card:hover .rpr-card-link {
    color: #93c5fd;
    gap: 10px;
}

.rpr-card-link-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

/* ================================
   BOTTOM CTA
   ================================ */
.rpr-bottom-cta {
    display: flex; justify-content: center;
    padding: 24px 0 16px;
}

.rpr-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.rpr-bottom-btn:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.rpr-bottom-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.rpr-bottom-btn-icon { width: 16px; height: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1280px) {
    .rpr-hero { height: 520px; }
    .rpr-hero-content {
        width: 50%;
        padding: 40px 44px;
    }
    .rpr-hero-title { font-size: 56px; }
    .rpr-hero-desc { font-size: 13px; }
    .rpr-hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(5, 5, 16, 0.97) 0%,
                rgba(5, 5, 16, 0.95) 30%,
                rgba(5, 5, 16, 0.78) 45%,
                rgba(5, 5, 16, 0.35) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(5, 5, 16, 0.4) 0%,
                transparent 20%,
                transparent 75%,
                rgba(5, 5, 16, 0.5) 100%
            );
    }
    .rpr-card-title { font-size: 22px; }
}

/* Tablet: carousel with arrows */
@media (max-width: 1024px) {
    .rpr-hero {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }
    .rpr-hero-video {
        position: relative;
        width: 100%;
        height: 360px;
        inset: auto;
    }
    .rpr-hero-gradient { display: none; }
    .rpr-hero-content {
        width: 100%;
        padding: 32px 36px 36px;
    }
    .rpr-hero-live-badge { margin-bottom: 14px; }
    .rpr-hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }
    .rpr-hero-desc {
        font-size: 14px;
        max-width: 560px;
        margin-bottom: 22px;
    }

    /* Activate carousel */
    .rpr-carousel {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 4px 0 0;
    }
    .rpr-grid-wrapper {
        flex: 1;
        min-width: 0;
        padding: 4px 0;
    }
    .rpr-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 24px 2px 4px;
        margin-top: -20px;
        scroll-padding: 0 4px;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
    }
    .rpr-grid::-webkit-scrollbar { display: none; }
    .rpr-card {
        flex: 0 0 calc((100% - 14px) / 2);
        scroll-snap-align: start;
    }

    .rpr-nav-prev,
    .rpr-nav-next { display: flex; }

    .rpr-card-inner { padding: 22px 24px 24px; }
    .rpr-card-icon {
        width: 50px;
        height: 50px;
        border-radius: 13px;
        top: -25px;
        left: 24px;
    }
    .rpr-card-icon svg { width: 23px; height: 23px; }
    .rpr-card-title { font-size: 20px; margin-top: 32px; }
    .rpr-card-desc { font-size: 13.5px; }
}

/* Mobile — hide arrows, swipe with bigger cards */
@media (max-width: 768px) {
    .rpr-outer { padding: 10px; border-radius: 22px; }
    .rpr-hero { border-radius: 16px; }
    .rpr-hero-video { height: 290px; }
    .rpr-hero-content {
        padding: 26px 24px 28px;
    }
    .rpr-hero-live-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .rpr-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }
    .rpr-hero-eyebrow::before { width: 18px; }
    .rpr-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .rpr-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .rpr-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    /* Hide arrows on mobile */
    .rpr-nav-prev,
    .rpr-nav-next { display: none; }

    .rpr-carousel {
        padding: 0 10px;
        gap: 0;
    }
    .rpr-grid {
        gap: 12px;
        scroll-padding: 0 10px;
    }
    .rpr-card {
        flex: 0 0 280px;
        border-radius: 16px;
    }

    .rpr-card-video { height: 30px; }
    .rpr-card-inner { padding: 22px 22px 22px; }
    .rpr-card-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        top: -23px;
        left: 22px;
    }
    .rpr-card-icon svg { width: 21px; height: 21px; }
    .rpr-card-title { font-size: 18px; margin-top: 28px; line-height: 1.2; }
    .rpr-card-desc { font-size: 13px; line-height: 1.5; }
    .rpr-card-link { font-size: 12.5px; padding-top: 14px; }

    .rpr-bottom-cta { padding: 20px 0 16px; }
    .rpr-bottom-btn {
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .rpr-outer { padding: 8px; border-radius: 18px; }
    .rpr-hero { border-radius: 14px; }
    .rpr-hero-video { height: 230px; }
    .rpr-hero-content {
        padding: 20px 16px 22px;
    }
    .rpr-hero-live-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 6px;
    }
    .rpr-live-dot { width: 6px; height: 6px; }
    .rpr-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .rpr-hero-eyebrow::before { width: 14px; }
    .rpr-hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .rpr-hero-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .rpr-hero-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }

    .rpr-carousel { padding: 0 8px; }
    .rpr-grid {
        gap: 10px;
        scroll-padding: 0 8px;
    }
    .rpr-card {
        flex: 0 0 260px;
        border-radius: 14px;
    }
    .rpr-card-video { height: 30px; }
    .rpr-card-inner { padding: 20px 20px 20px; }
    .rpr-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        top: -21px;
        left: 20px;
    }
    .rpr-card-icon svg { width: 19px; height: 19px; }
    .rpr-card-title { font-size: 17px; margin-top: 26px; }
    .rpr-card-desc { font-size: 12.5px; line-height: 1.5; }
    .rpr-card-link { font-size: 12px; padding-top: 12px; }

    .rpr-bottom-cta { padding: 16px 0 12px; }
    .rpr-bottom-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .rpr-bottom-btn-icon { width: 14px; height: 14px; }
}

@media (max-width: 380px) {
    .rpr-hero-video { height: 200px; }
    .rpr-hero-content { padding: 18px 14px 20px; }
    .rpr-hero-title { font-size: 28px; }
    .rpr-hero-desc { font-size: 11px; }
    .rpr-hero-btn { padding: 12px 16px; font-size: 11px; }
    .rpr-carousel { padding: 0 6px; }
    .rpr-grid { gap: 8px; scroll-padding: 0 6px; }
    .rpr-card {
        flex: 0 0 240px;
        border-radius: 13px;
    }
    .rpr-card-inner { padding: 18px 18px 18px; }
    .rpr-card-icon {
        width: 40px;
        height: 40px;
        top: -20px;
    }
    .rpr-card-icon svg { width: 18px; height: 18px; }
    .rpr-card-title { font-size: 18px; margin-top: 24px; }
    .rpr-card-desc { font-size: 12px; }
    .rpr-bottom-btn { padding: 12px 18px; font-size: 11px; }
}
/* ================================
   CRISIS PR — SLIM, URGENT, RED
   ================================ */

.cpr-outer {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 48px;
    gap: 40px;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        #0a0506;
    border: 1px solid rgba(220, 38, 38, 0.15);
    box-shadow:
        0 0 60px rgba(220, 38, 38, 0.04),
        inset 0 0 80px rgba(220, 38, 38, 0.03),
        inset 0 1px 0 rgba(248, 113, 113, 0.08);
}

/* Subtle pulsing red ring on left edge */
.cpr-pulse-ring {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    animation: cpr-pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cpr-pulse {
    0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.3); }
}

/* ---- LEFT SIDE ---- */
.cpr-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.cpr-urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fca5a5;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 100px;
    padding: 5px 12px;
    width: fit-content;
}

.cpr-urgent-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
    animation: cpr-dot-blink 1s ease-in-out infinite;
}

@keyframes cpr-dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.cpr-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0;
    text-transform: uppercase;
}

.cpr-title span {
    background: linear-gradient(180deg, #fca5a5 0%, #ef4444 50%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cpr-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
}

/* ---- RIGHT SIDE ---- */
.cpr-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cpr-response {
    display: flex;
    align-items: center;
}

.cpr-response-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

.cpr-response-time strong {
    color: #fca5a5;
}

.cpr-clock-icon {
    width: 14px;
    height: 14px;
    color: #ef4444;
}

/* CTA — RED, URGENT */
.cpr-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    background: linear-gradient(180deg, #991b1b 0%, #b91c1c 25%, #dc2626 55%, #ef4444 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #7f1d1d,
                0 6px 20px rgba(220, 38, 38, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    animation: cpr-cta-glow 2s ease-in-out infinite;
}

@keyframes cpr-cta-glow {
    0%, 100% { box-shadow: 0 4px 0 0 #7f1d1d, 0 6px 20px rgba(220, 38, 38, 0.35); }
    50% { box-shadow: 0 4px 0 0 #7f1d1d, 0 6px 30px rgba(220, 38, 38, 0.5); }
}

.cpr-cta:hover {
    background: linear-gradient(180deg, #a52222 0%, #c72828 25%, #e53e3e 55%, #f56565 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #7f1d1d, 0 10px 30px rgba(220, 38, 38, 0.5);
}

.cpr-cta:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #7f1d1d, 0 2px 8px rgba(220, 38, 38, 0.2);
}

.cpr-cta-phone {
    width: 16px;
    height: 16px;
}

/* Available line */
.cpr-available {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
}

.cpr-available-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
    .cpr-outer {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 24px;
        border-radius: 18px;
    }
    .cpr-right {
        align-items: flex-start;
        width: 100%;
    }
    .cpr-cta {
        width: 100%;
        justify-content: center;
    }
    .cpr-title { font-size: 34px; }
}
/* ================================
   CORPORATE PR SECTION — PURPLE THEME
   ================================ */

.corp-outer {
    position: relative;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(147, 51, 234, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        #08050f;
    border: 1px solid rgba(147, 51, 234, 0.12);
    box-shadow:
        0 0 80px rgba(147, 51, 234, 0.04),
        inset 0 0 120px rgba(147, 51, 234, 0.03),
        inset 0 1px 0 rgba(192, 132, 252, 0.1),
        inset 0 -1px 0 rgba(147, 51, 234, 0.05);
}

/* ================================
   TOP HERO STRIP
   ================================ */
.corp-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.corp-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.corp-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corp-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(8, 5, 15, 0.97) 0%,
            rgba(8, 5, 15, 0.93) 22%,
            rgba(8, 5, 15, 0.75) 38%,
            rgba(8, 5, 15, 0.4) 52%,
            rgba(8, 5, 15, 0.12) 66%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(8, 5, 15, 0.4) 0%,
            transparent 20%,
            transparent 75%,
            rgba(8, 5, 15, 0.5) 100%
        );
    pointer-events: none;
}

.corp-hero-content {
    position: relative;
    z-index: 2;
    width: 46%;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corp-hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(147, 51, 234, 0.06);
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
    margin-bottom: 16px;
}

.corp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
    animation: corp-dot-pulse 2s ease-in-out infinite;
}

@keyframes corp-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(168, 85, 247, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(168, 85, 247, 0.3); }
}

.corp-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c084fc;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.corp-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #a855f7;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

.corp-hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.corp-hero-title span {
    background: linear-gradient(180deg, #d8b4fe 0%, #a855f7 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
}

.corp-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 360px;
}

.corp-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, #7c3aed 0%, #8b5cf6 35%, #a78bfa 65%, #c4b5fd 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #5b21b6, 0 6px 18px rgba(147, 51, 234, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.corp-hero-btn:hover {
    background: linear-gradient(180deg, #8b4ff0 0%, #9b72fa 35%, #b49dfc 65%, #d0c5ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #5b21b6, 0 10px 26px rgba(147, 51, 234, 0.4);
}

.corp-hero-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #5b21b6, 0 2px 8px rgba(147, 51, 234, 0.2);
}

.corp-hero-btn-icon { width: 15px; height: 15px; }

/* ================================
   SUB-CATEGORY CAROUSEL
   ================================ */
.corp-carousel {
    position: relative;
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.corp-grid-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
}

.corp-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 2px 4px;
    margin-top: -20px;
    scroll-padding: 0 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
}

.corp-grid::-webkit-scrollbar { display: none; }

/* Nav arrows - prominent raised purple buttons */
.corp-nav {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #7c3aed 0%, #8b5cf6 35%, #a78bfa 65%, #c4b5fd 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 0 0 #5b21b6,
                0 12px 28px rgba(147, 51, 234, 0.55),
                0 0 40px rgba(168, 85, 247, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: corp-nav-pulse 3s ease-in-out infinite;
}

@keyframes corp-nav-pulse {
    0%, 100% {
        box-shadow: 0 6px 0 0 #5b21b6,
                    0 12px 28px rgba(147, 51, 234, 0.55),
                    0 0 40px rgba(168, 85, 247, 0.35),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
    50% {
        box-shadow: 0 6px 0 0 #5b21b6,
                    0 14px 32px rgba(147, 51, 234, 0.7),
                    0 0 55px rgba(168, 85, 247, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
    }
}

.corp-nav:hover {
    background: linear-gradient(180deg, #8b4ff0 0%, #9b72fa 35%, #b49dfc 65%, #d0c5ff 100%);
    transform: translateY(-3px) scale(1.05);
    animation: none;
    box-shadow: 0 9px 0 0 #5b21b6,
                0 18px 40px rgba(147, 51, 234, 0.7),
                0 0 60px rgba(168, 85, 247, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 -3px 0 0 rgba(0, 0, 0, 0.15) inset;
}

.corp-nav:active {
    transform: translateY(2px) scale(0.98);
    animation: none;
    box-shadow: 0 2px 0 0 #5b21b6,
                0 4px 12px rgba(147, 51, 234, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.corp-nav svg,
.corp-nav i { width: 26px; height: 26px; stroke-width: 3; }

.corp-nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
    transform: scale(0.9);
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d20 100%);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ================================
   PREMIUM CARDS
   ================================ */
.corp-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 calc((100% - 30px) / 4);
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at top right, rgba(147, 51, 234, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #140c24 0%, #0a0616 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.corp-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 132, 252, 0.5), transparent);
    z-index: 4;
    opacity: 0.6;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

.corp-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-4px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.corp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(192, 132, 252, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(192, 132, 252, 0.2),
                0 0 40px rgba(147, 51, 234, 0.18),
                inset 0 1px 0 rgba(192, 132, 252, 0.15);
}

.corp-card:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.corp-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.corp-card-video {
    position: relative;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.corp-card-video video,
.corp-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-card:hover .corp-card-video img,
.corp-card:hover .corp-card-video video {
    transform: scale(1.08);
}

.corp-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(10, 6, 22, 0.5) 50%,
        rgba(10, 6, 22, 0.95) 90%,
        #0a0616 100%
    );
    pointer-events: none;
    z-index: 1;
}

.corp-card-inner {
    position: relative;
    z-index: 2;
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: flex-start;
}

.corp-card-icon {
    position: absolute;
    top: -22px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #6d28d9 100%);
    border: 2px solid #0a0616;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(147, 51, 234, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
    z-index: 3;
}

.corp-card:hover .corp-card-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.05);
    box-shadow: 0 10px 24px rgba(147, 51, 234, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.corp-card-icon svg { width: 20px; height: 20px; stroke-width: 2; }

.corp-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.corp-card:hover .corp-card-title {
    background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corp-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.corp-card:hover .corp-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   BOTTOM CTA
   ================================ */
.corp-bottom-cta {
    display: flex; justify-content: center;
    padding: 24px 0 16px;
}

.corp-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(180deg, #7c3aed 0%, #8b5cf6 35%, #a78bfa 65%, #c4b5fd 100%);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #5b21b6, 0 6px 18px rgba(147, 51, 234, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.corp-bottom-btn:hover {
    background: linear-gradient(180deg, #8b4ff0 0%, #9b72fa 35%, #b49dfc 65%, #d0c5ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #5b21b6, 0 10px 26px rgba(147, 51, 234, 0.4);
}

.corp-bottom-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #5b21b6, 0 2px 8px rgba(147, 51, 234, 0.2);
}

.corp-bottom-btn-icon { width: 16px; height: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1280px) {
    .corp-hero { height: 520px; }
    .corp-hero-content {
        width: 50%;
        padding: 40px 44px;
    }
    .corp-hero-title { font-size: 56px; }
    .corp-hero-desc { font-size: 13px; }
    .corp-hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(8, 5, 15, 0.97) 0%,
                rgba(8, 5, 15, 0.95) 30%,
                rgba(8, 5, 15, 0.78) 45%,
                rgba(8, 5, 15, 0.35) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(8, 5, 15, 0.4) 0%,
                transparent 20%,
                transparent 75%,
                rgba(8, 5, 15, 0.5) 100%
            );
    }
}

@media (max-width: 1024px) {
    .corp-hero {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }
    .corp-hero-video {
        position: relative;
        width: 100%;
        height: 360px;
        inset: auto;
    }
    .corp-hero-gradient { display: none; }
    .corp-hero-content {
        width: 100%;
        padding: 32px 36px 36px;
    }
    .corp-hero-live-badge { margin-bottom: 14px; }
    .corp-hero-title {
        font-size: 56px;
        margin-bottom: 14px;
    }
    .corp-hero-desc {
        font-size: 14px;
        max-width: 560px;
        margin-bottom: 22px;
    }
    .corp-carousel { margin: 4px 0 0; gap: 8px; }
    .corp-card { flex: 0 0 calc((100% - 10px) / 2); }
}

@media (max-width: 768px) {
    .corp-outer { padding: 10px; border-radius: 22px; }
    .corp-hero { border-radius: 16px; }
    .corp-hero-video { height: 290px; }
    .corp-hero-content {
        padding: 26px 24px 28px;
    }
    .corp-hero-live-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .corp-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }
    .corp-hero-eyebrow::before { width: 18px; }
    .corp-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .corp-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .corp-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    .corp-carousel {
        margin: 4px 0 0;
        gap: 0;
        padding: 0 10px;
    }
    .corp-nav { display: none; }
    .corp-grid-wrapper { padding: 4px 0; }
    .corp-grid {
        gap: 10px;
        padding: 24px 0 8px;
        scroll-padding: 0 10px;
    }
    .corp-card {
        flex: 0 0 240px;
        border-radius: 16px;
    }
    .corp-card-inner { padding: 18px 20px 20px; }
    .corp-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        top: -21px;
        left: 20px;
    }
    .corp-card-icon svg { width: 19px; height: 19px; }
    .corp-card-title { font-size: 18px; margin-top: 26px; }
    .corp-card-desc { font-size: 12.5px; line-height: 1.45; }
    .corp-bottom-cta { padding: 20px 0 16px; }
    .corp-bottom-btn {
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .corp-outer { padding: 8px; border-radius: 18px; }
    .corp-hero { border-radius: 14px; }
    .corp-hero-video { height: 230px; }
    .corp-hero-content {
        padding: 20px 16px 22px;
    }
    .corp-hero-live-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 6px;
    }
    .corp-live-dot { width: 6px; height: 6px; }
    .corp-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .corp-hero-eyebrow::before { width: 14px; }
    .corp-hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .corp-hero-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .corp-hero-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #5b21b6, 0 5px 14px rgba(147, 51, 234, 0.25);
    }
    .corp-carousel {
        margin: 4px 0 0;
        padding: 0 8px;
    }
    .corp-grid {
        gap: 8px;
        scroll-padding: 0 8px;
    }
    .corp-card {
        flex: 0 0 210px;
        border-radius: 14px;
    }
    .corp-card-inner { padding: 16px 16px 18px; }
    .corp-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        top: -19px;
        left: 16px;
    }
    .corp-card-icon svg { width: 17px; height: 17px; }
    .corp-card-title { font-size: 15px; margin-top: 24px; }
    .corp-card-desc { font-size: 11.5px; }
    .corp-bottom-cta { padding: 16px 0 12px; }
    .corp-bottom-btn {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #5b21b6, 0 5px 14px rgba(147, 51, 234, 0.25);
    }
    .corp-bottom-btn-icon { width: 14px; height: 14px; }
}

@media (max-width: 380px) {
    .corp-hero-video { height: 200px; }
    .corp-hero-content { padding: 18px 14px 20px; }
    .corp-hero-title { font-size: 28px; }
    .corp-hero-desc { font-size: 11px; }
    .corp-hero-btn { padding: 12px 16px; font-size: 11px; }
    .corp-carousel { padding: 0 6px; }
    .corp-card {
        flex: 0 0 190px;
        border-radius: 13px;
    }
    .corp-card-inner { padding: 14px 14px 16px; }
    .corp-card-icon {
        width: 34px;
        height: 34px;
        top: -17px;
        left: 14px;
    }
    .corp-card-icon svg { width: 15px; height: 15px; }
    .corp-card-title { font-size: 14px; margin-top: 20px; }
    .corp-card-desc { font-size: 11px; }
    .corp-bottom-btn { padding: 12px 18px; font-size: 11px; }
}
/* ================================
   EDITORIAL — CONSTELLATION NETWORK
   ================================ */

.edit-outer {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 700px;
    background: #06020a;
    border: 1px solid rgba(236, 72, 153, 0.08);
    box-shadow:
        inset 0 0 120px rgba(236, 72, 153, 0.03),
        inset 0 1px 0 rgba(244, 114, 182, 0.06);
}

/* ---- NETWORK CANVAS — OVERFLOWS THE BOX ---- */
.edit-network-wrap {
    position: absolute;
    top: -80%;
    right: -60%;
    bottom: -80%;
    left: -40%;
    z-index: 0;
    pointer-events: none;
}

.edit-network-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Left fade so text stays readable */
.edit-network-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(90deg, #06020a 0%, #06020a 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Top/bottom edge fades */
.edit-network-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(6, 2, 10, 0.6) 0%, transparent 15%, transparent 85%, rgba(6, 2, 10, 0.6) 100%);
}

/* ---- LEFT TEXT ---- */
.edit-left {
    position: relative;
    z-index: 2;
    width: 460px;
    flex-shrink: 0;
    padding: 64px 64px;
}

.edit-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 114, 182, 0.6);
    margin-bottom: 16px;
}

.edit-eyebrow-icon { width: 13px; height: 13px; }

.edit-title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}

.edit-title span {
    background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 30%, #ec4899 70%, #be185d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(236, 72, 153, 0.4)) drop-shadow(0 0 40px rgba(236, 72, 153, 0.15));
}

.edit-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin: 0 0 32px;
}

.edit-desc strong {
    color: #f472b6;
    font-weight: 700;
}

.edit-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 14px;
    background: linear-gradient(180deg, #be185d 0%, #db2777 30%, #ec4899 65%, #f472b6 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #9d174d,
                0 6px 18px rgba(236, 72, 153, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.edit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #9d174d, 0 10px 26px rgba(236, 72, 153, 0.4);
}

.edit-cta:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #9d174d, 0 2px 8px rgba(236, 72, 153, 0.2);
}

.edit-cta-icon {
    width: 15px;
    height: 15px;
}

/* Stats row — hidden by default, shown on mobile */
.edit-stats {
    display: none;
}

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .edit-outer { min-height: 640px; }
    .edit-left { width: 420px; padding: 52px 52px; }
    .edit-title { font-size: 38px; }
    .edit-desc { font-size: 14.5px; }
}

@media (max-width: 1024px) {
    .edit-outer {
        min-height: auto;
        display: block;
        border-radius: 22px;
        overflow: hidden;
        padding: 2px;
        background:
            radial-gradient(ellipse at 30% 0%, rgba(236, 72, 153, 0.15) 0%, transparent 55%),
            radial-gradient(ellipse at 70% 100%, rgba(190, 24, 93, 0.1) 0%, transparent 50%),
            linear-gradient(180deg, #0b0510 0%, #06020a 100%);
        border: 1px solid rgba(236, 72, 153, 0.12);
        box-shadow:
            inset 0 0 80px rgba(236, 72, 153, 0.04),
            inset 0 1px 0 rgba(244, 114, 182, 0.08);
    }

    /* Hide network constellation on tablet/mobile */
    .edit-network-wrap { display: none; }

    .edit-left {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 56px 52px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .edit-eyebrow {
        font-size: 10px;
        letter-spacing: 0.18em;
        margin-bottom: 18px;
        padding: 5px 12px;
        background: rgba(236, 72, 153, 0.08);
        border: 1px solid rgba(236, 72, 153, 0.18);
        border-radius: 100px;
        color: #f472b6;
    }
    .edit-eyebrow-icon { width: 12px; height: 12px; }

    .edit-title {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 18px;
        letter-spacing: -0.025em;
    }

    .edit-desc {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 28px;
        color: rgba(255, 255, 255, 0.5);
        max-width: 640px;
    }
    .edit-desc strong {
        color: #f472b6;
        text-shadow: 0 0 16px rgba(236, 72, 153, 0.3);
    }

    /* Show stats row */
    .edit-stats {
        display: flex;
        gap: 12px;
        width: 100%;
        max-width: 520px;
        margin-bottom: 32px;
    }
    .edit-stat {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 16px 10px;
        border-radius: 14px;
        background:
            linear-gradient(180deg, rgba(236, 72, 153, 0.08) 0%, rgba(236, 72, 153, 0.03) 100%);
        border: 1px solid rgba(236, 72, 153, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: inset 0 1px 0 rgba(244, 114, 182, 0.08);
    }
    .edit-stat-num {
        font-family: 'Instrument Serif', serif;
        font-size: 28px;
        font-weight: 400;
        line-height: 1;
        background: linear-gradient(135deg, #fce7f3 0%, #f472b6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.02em;
    }
    .edit-stat-label {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
    }

    .edit-cta {
        padding: 16px 32px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* Large mobile */
@media (max-width: 768px) {
    .edit-outer { border-radius: 20px; }
    .edit-left { padding: 40px 28px 36px; }

    .edit-title { font-size: 32px; margin-bottom: 16px; }
    .edit-desc { font-size: 14px; margin-bottom: 24px; }

    .edit-stats { gap: 10px; margin-bottom: 28px; }
    .edit-stat { padding: 14px 8px; }
    .edit-stat-num { font-size: 24px; }
    .edit-stat-label { font-size: 9.5px; }

    .edit-cta {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
        font-size: 13.5px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .edit-outer { border-radius: 18px; }
    .edit-left {
        padding: 32px 22px 30px;
    }
    .edit-eyebrow {
        font-size: 9px;
        letter-spacing: 0.16em;
        padding: 4px 10px;
        margin-bottom: 14px;
    }
    .edit-title {
        font-size: 26px;
        margin-bottom: 13px;
    }
    .edit-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .edit-stats {
        gap: 8px;
        margin-bottom: 22px;
    }
    .edit-stat {
        padding: 11px 4px;
        border-radius: 11px;
    }
    .edit-stat-num { font-size: 21px; }
    .edit-stat-label { font-size: 8.5px; letter-spacing: 0.1em; }
    .edit-cta {
        padding: 13px 22px;
        font-size: 12.5px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #9d174d, 0 5px 14px rgba(236, 72, 153, 0.25);
    }
    .edit-cta-icon { width: 13px; height: 13px; }
}

/* Small mobile */
@media (max-width: 380px) {
    .edit-left { padding: 26px 18px 26px; }
    .edit-title { font-size: 22px; }
    .edit-desc { font-size: 12px; margin-bottom: 16px; }
    .edit-stats { gap: 6px; margin-bottom: 18px; }
    .edit-stat { padding: 9px 2px; }
    .edit-stat-num { font-size: 18px; }
    .edit-stat-label { font-size: 8px; }
    .edit-cta { padding: 12px 18px; font-size: 11.5px; }
}
/* ================================
   OUTLET NETWORK — STATIC GRADIENT
   ================================ */

/* Dark → Blue → White gradient band */
.bg-fade-band {
    height: 600px;
    background: linear-gradient(180deg,
        #002bff 0%,
        #0035ff 10%,
        #0845f0 20%,
        #1a5ce0 30%,
        #3070d8 40%,
        #4a8ae0 50%,
        #6aa0e8 58%,
        #90b8ef 66%,
        #b0cef4 74%,
        #cee0f8 82%,
        #e4ecf6 90%,
        #f8f8fa 100%
    );
}

/* Everything after stays white */
.light-mode-zone {
    background: #f8f8fa;
}

/* ---- CONTAINER ---- */
.onet-outer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- TOP ---- */
.onet-top {
    text-align: center;
    margin-bottom: 36px;
}

.onet-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    display: block;
}

.onet-title {
    font-family: 'Instrument Serif', serif;
    font-size: 40px;
    font-weight: 400;
    color: #0a0a0a;
    letter-spacing: -0.04em;
    margin: 0 0 10px;
}

.onet-title span {
    color: rgb(0, 43, 255);
    font-style: italic;
}

.onet-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 460px;
}

/* ---- SEARCH ---- */
.onet-search-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 520px;
    margin: 0 auto 40px;
    padding: 0 24px;
    height: 56px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.onet-search-wrap:focus-within {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.onet-search-icon {
    width: 18px;
    height: 18px;
    color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.onet-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #0a0a0a;
}

.onet-search-input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

/* ---- GRID ---- */
.onet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    min-height: 60px;
    margin-bottom: 32px;
}

.onet-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    cursor: default;
}

.onet-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.onet-card-initial {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f0f0f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.onet-card:hover .onet-card-initial {
    background: #0a0a0a;
    color: #ffffff;
}

.onet-card-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.onet-card-name mark {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    font-weight: 700;
    border-radius: 2px;
    padding: 0 2px;
}

.onet-empty-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 32px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.3);
}

/* ---- FOOTER ---- */
.onet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.onet-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.25);
}

.onet-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.onet-request-btn:hover { color: #0a0a0a; }
.onet-request-icon { width: 14px; height: 14px; }

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .onet-grid { grid-template-columns: repeat(3, 1fr); }
    .onet-title { font-size: 36px; }
}

/* Tablet */
@media (max-width: 1024px) {
    .onet-top { margin-bottom: 32px; }
    .onet-title { font-size: 34px; }
    .onet-desc { font-size: 14.5px; max-width: 500px; }
    .onet-search-wrap {
        max-width: 560px;
        margin-bottom: 32px;
        height: 54px;
    }
    .onet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .bg-fade-band { height: 500px; }
}

/* Large mobile */
@media (max-width: 768px) {
    #outlet-network-section { padding: 60px 16px; }
    .onet-top { margin-bottom: 28px; }
    .onet-eyebrow {
        font-size: 9px;
        letter-spacing: 0.18em;
        margin-bottom: 10px;
    }
    .onet-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    .onet-desc {
        font-size: 13.5px;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 8px;
    }
    .onet-search-wrap {
        max-width: 100%;
        margin-bottom: 24px;
        height: 52px;
        padding: 0 20px;
        gap: 12px;
        border-radius: 14px;
    }
    .onet-search-icon { width: 17px; height: 17px; }
    .onet-search-input { font-size: 15px; }
    .onet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }
    .onet-card {
        padding: 13px 16px;
        gap: 11px;
        border-radius: 11px;
    }
    .onet-card-initial {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        font-size: 13px;
    }
    .onet-card-name { font-size: 13px; }
    .onet-footer {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        padding-top: 20px;
        text-align: center;
    }
    .onet-footer-text { font-size: 11.5px; }
    .onet-request-btn { font-size: 12.5px; }
    .bg-fade-band { height: 360px; }
}

/* Mobile */
@media (max-width: 480px) {
    #outlet-network-section { padding: 48px 12px; }
    .onet-top { margin-bottom: 24px; }
    .onet-eyebrow {
        font-size: 8.5px;
        letter-spacing: 0.15em;
        margin-bottom: 8px;
    }
    .onet-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .onet-desc {
        font-size: 12.5px;
        line-height: 1.55;
        padding: 0 4px;
    }
    .onet-search-wrap {
        margin-bottom: 20px;
        height: 48px;
        padding: 0 16px;
        gap: 10px;
        border-radius: 12px;
    }
    .onet-search-icon { width: 16px; height: 16px; }
    .onet-search-input { font-size: 14px; }
    .onet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
        margin-bottom: 20px;
    }
    .onet-card {
        padding: 11px 13px;
        gap: 9px;
        border-radius: 10px;
    }
    .onet-card-initial {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        font-size: 12px;
    }
    .onet-card-name { font-size: 12.5px; }
    .onet-empty-msg { padding: 24px 16px; font-size: 13px; }
    .onet-footer { padding-top: 16px; gap: 12px; }
    .onet-footer-text { font-size: 11px; }
    .onet-request-btn { font-size: 12px; }
    .onet-request-icon { width: 12px; height: 12px; }
    .bg-fade-band { height: 300px; }
}

/* Small mobile */
@media (max-width: 380px) {
    .onet-title { font-size: 23px; }
    .onet-desc { font-size: 12px; }
    .onet-search-wrap { height: 46px; padding: 0 14px; }
    .onet-search-input { font-size: 13.5px; }
    .onet-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .onet-card { padding: 12px 14px; }
    .onet-card-name { font-size: 13px; }
    .bg-fade-band { height: 260px; }
}
/* ================================
   ENTERPRISE — SCROLL INTERACTIVE
   ================================ */

/* ---- TOP ---- */
.ent-top {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 48px;
    margin-bottom: 48px;
}

.ent-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 14px;
}

.ent-eyebrow-icon { width: 13px; height: 13px; }

.ent-title {
    font-family: 'Instrument Serif', serif;
    font-size: 44px;
    font-weight: 400;
    color: #0a0a0a;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0;
}

.ent-title span {
    color: rgb(0, 43, 255);
    font-style: italic;
}

/* ---- GRAPH ---- */
.ent-graph {
    margin-bottom: 48px;
}

.ent-graph-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Smooth transitions for nodes/labels */
.ent-node {
    transition: fill 0.4s ease;
}

.ent-label {
    transition: fill 0.4s ease;
}

.ent-ring {
    transition: stroke 0.4s ease;
}

#ent-active-path {
    transition: stroke-dashoffset 0.15s linear;
}

/* ---- BOTTOM ---- */
.ent-bottom {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.ent-desc {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.8;
    margin: 0;
}

.ent-bottom-right {
    width: 320px;
    flex-shrink: 0;
}

.ent-note {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: #0a0a0a;
    margin: 0 0 28px;
    padding-left: 16px;
    border-left: 3px solid #0a0a0a;
    line-height: 1.6;
}

.ent-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0a0a0a;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 14px;
    border: 2px solid #0a0a0a;
    transition: all 0.25s ease;
}

.ent-cta:hover {
    background: #0a0a0a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.ent-cta-icon { width: 15px; height: 15px; }

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .ent-top { padding-top: 44px; margin-bottom: 44px; }
    .ent-title { font-size: 40px; }
    .ent-desc { font-size: 15.5px; }
    .ent-bottom { gap: 64px; }
    .ent-bottom-right { width: 300px; }
}

/* Tablet */
@media (max-width: 1024px) {
    #enterprise-section { padding: 80px 20px; }
    .ent-top { padding-top: 40px; margin-bottom: 40px; }
    .ent-eyebrow {
        font-size: 12px;
        letter-spacing: 0.18em;
        margin-bottom: 12px;
    }
    .ent-eyebrow-icon { width: 12px; height: 12px; }
    .ent-title { font-size: 36px; }
    .ent-graph { margin-bottom: 40px; }
    .ent-bottom {
        gap: 48px;
        padding-top: 32px;
    }
    .ent-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }
    .ent-bottom-right { width: 260px; }
    .ent-note { font-size: 13px; margin-bottom: 24px; }
    .ent-cta { padding: 15px 30px; font-size: 13.5px; }
}

/* Large mobile */
@media (max-width: 768px) {
    #enterprise-section { padding: 64px 16px; }

    .ent-top {
        padding-top: 32px;
        margin-bottom: 32px;
    }
    .ent-eyebrow {
        font-size: 10px;
        letter-spacing: 0.16em;
        margin-bottom: 12px;
        padding: 5px 12px;
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 100px;
    }
    .ent-eyebrow-icon { width: 11px; height: 11px; }
    .ent-title {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -0.03em;
    }

    /* Graph - tighter on mobile */
    .ent-graph { margin-bottom: 32px; }
    .ent-graph-svg {
        /* Allow SVG viewBox to scale properly */
        min-height: 160px;
    }

    /* Bottom stacks */
    .ent-bottom {
        flex-direction: column;
        gap: 24px;
        padding-top: 28px;
    }
    .ent-desc {
        font-size: 14px;
        line-height: 1.7;
    }
    .ent-bottom-right { width: 100%; }
    .ent-note {
        font-size: 13px;
        margin-bottom: 22px;
        padding-left: 14px;
        border-left-width: 3px;
        line-height: 1.55;
    }
    .ent-cta {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
        font-size: 13.5px;
        border-radius: 12px;
        border-width: 2px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #enterprise-section { padding: 48px 12px; }

    .ent-top {
        padding-top: 28px;
        margin-bottom: 28px;
    }
    .ent-eyebrow {
        font-size: 9px;
        letter-spacing: 0.14em;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    .ent-eyebrow-icon { width: 10px; height: 10px; }
    .ent-title {
        font-size: 24px;
        letter-spacing: -0.025em;
    }

    .ent-graph { margin-bottom: 24px; }
    .ent-graph-svg { min-height: 140px; }

    .ent-bottom { gap: 20px; padding-top: 24px; }
    .ent-desc {
        font-size: 13px;
        line-height: 1.65;
    }
    .ent-note {
        font-size: 12px;
        margin-bottom: 18px;
        padding-left: 12px;
        border-left-width: 2px;
    }
    .ent-cta {
        padding: 13px 22px;
        font-size: 12.5px;
        border-radius: 10px;
    }
    .ent-cta-icon { width: 13px; height: 13px; }
}

/* Small mobile */
@media (max-width: 380px) {
    #enterprise-section { padding: 40px 10px; }
    .ent-top { padding-top: 24px; margin-bottom: 24px; }
    .ent-eyebrow { font-size: 8.5px; }
    .ent-title { font-size: 21px; }
    .ent-graph-svg { min-height: 120px; }
    .ent-desc { font-size: 12.5px; }
    .ent-note { font-size: 11.5px; }
    .ent-cta { padding: 12px 18px; font-size: 12px; }
}
/* ================================
   OUTLET LIBRARY
   ================================ */

/* Stats bar */
.ol-stats {
    display: flex;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ol-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(0,0,0,0.06);
}

.ol-stat:last-child { border-right: none; }

.ol-stat-num {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    font-weight: 400;
    color: #0a0a0a;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ol-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0,0,0,0.4);
    margin-top: 6px;
}

/* Header */
.ol-header {
    text-align: center;
    margin-bottom: 40px;
}

.ol-title {
    font-family: 'Instrument Serif', serif;
    font-size: 40px;
    font-weight: 400;
    color: #0a0a0a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 auto 16px;
    max-width: 700px;
}

.ol-title em {
    color: rgb(0, 43, 255);
    font-style: italic;
}

.ol-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,0.4);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 560px;
}

/* Logo grid */
.ol-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
}

.ol-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s ease;
}

.ol-logo:nth-child(5n) { border-right: none; }

.ol-logo:hover { background: rgba(0,0,0,0.015); }

.ol-logo img {
    max-height: 32px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ol-logo:hover img { opacity: 1; }

.ol-logo img.ol-invert { filter: invert(1); }
.ol-logo img.ol-bigger { max-height: 44px; max-width: 150px; }
.ol-logo img.ol-invert.ol-bigger { filter: invert(1); max-height: 44px; max-width: 150px; }

/* Hidden state */
.ol-hidden {
    display: none;
}

/* See more button */
.ol-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.ol-more-btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ol-more-btn:hover {
    color: #0a0a0a;
    border-color: rgba(0,0,0,0.25);
    background: rgba(0,0,0,0.02);
}

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .ol-title { font-size: 36px; }
    .ol-stat-num { font-size: 32px; }
}

/* Tablet */
@media (max-width: 1024px) {
    #outlet-library-section { padding: 80px 20px; }
    .ol-stats { margin-bottom: 40px; max-width: 700px; }
    .ol-stat { padding: 24px 16px; }
    .ol-stat-num { font-size: 30px; }
    .ol-stat-label { font-size: 11.5px; }
    .ol-header { margin-bottom: 36px; }
    .ol-title { font-size: 34px; max-width: 620px; }
    .ol-sub { font-size: 13.5px; max-width: 500px; }
    .ol-grid { grid-template-columns: repeat(4, 1fr); }
    .ol-logo:nth-child(5n) { border-right: 1px solid rgba(0,0,0,0.05); }
    .ol-logo:nth-child(4n) { border-right: none; }
    .ol-logo { padding: 24px 18px; }
    .ol-logo img { max-height: 28px; max-width: 100px; }
    .ol-logo img.ol-bigger { max-height: 38px; max-width: 130px; }
    .ol-logo img.ol-invert.ol-bigger { max-height: 38px; max-width: 130px; }
}

/* Large mobile */
@media (max-width: 768px) {
    #outlet-library-section { padding: 64px 16px; }

    /* Stats - horizontal 3-col grid instead of stacked vertical */
    .ol-stats {
        flex-direction: row;
        margin-bottom: 36px;
        max-width: 100%;
        border-radius: 14px;
    }
    .ol-stat {
        padding: 18px 8px;
        border-right: 1px solid rgba(0,0,0,0.06);
        border-bottom: none;
    }
    .ol-stat:last-child { border-right: none; }
    .ol-stat-num { font-size: 24px; }
    .ol-stat-label { font-size: 10px; letter-spacing: 0.04em; margin-top: 4px; text-align: center; }

    .ol-header { margin-bottom: 28px; }
    .ol-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
        max-width: 100%;
        padding: 0 8px;
    }
    .ol-sub {
        font-size: 13px;
        line-height: 1.55;
        max-width: 100%;
        padding: 0 8px;
    }

    .ol-grid {
        grid-template-columns: repeat(3, 1fr);
        border-radius: 14px;
    }
    .ol-logo:nth-child(4n) { border-right: 1px solid rgba(0,0,0,0.05); }
    .ol-logo:nth-child(3n) { border-right: none; }
    .ol-logo { padding: 20px 14px; }
    .ol-logo img { max-height: 24px; max-width: 82px; }
    .ol-logo img.ol-bigger { max-height: 32px; max-width: 105px; }
    .ol-logo img.ol-invert.ol-bigger { max-height: 32px; max-width: 105px; }

    .ol-more-wrap { margin-top: 20px; }
    .ol-more-btn {
        padding: 12px 28px;
        font-size: 13.5px;
        border-radius: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #outlet-library-section { padding: 48px 12px; }

    /* Stats - allow vertical stack if truly cramped but keep row first */
    .ol-stats {
        margin-bottom: 28px;
        border-radius: 12px;
    }
    .ol-stat { padding: 14px 4px; }
    .ol-stat-num { font-size: 20px; }
    .ol-stat-label { font-size: 9px; margin-top: 3px; }

    .ol-header { margin-bottom: 24px; }
    .ol-title {
        font-size: 23px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .ol-sub { font-size: 12px; line-height: 1.5; }

    .ol-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }
    .ol-logo:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.05); }
    .ol-logo:nth-child(2n) { border-right: none; }
    .ol-logo { padding: 18px 12px; }
    .ol-logo img { max-height: 22px; max-width: 80px; }
    .ol-logo img.ol-bigger { max-height: 28px; max-width: 100px; }
    .ol-logo img.ol-invert.ol-bigger { max-height: 28px; max-width: 100px; }

    .ol-more-wrap { margin-top: 18px; }
    .ol-more-btn {
        padding: 11px 24px;
        font-size: 13px;
        border-radius: 9px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    #outlet-library-section { padding: 40px 10px; }
    .ol-stats { margin-bottom: 22px; }
    .ol-stat { padding: 12px 3px; }
    .ol-stat-num { font-size: 18px; }
    .ol-stat-label { font-size: 8px; letter-spacing: 0.02em; }

    .ol-title { font-size: 20px; }
    .ol-sub { font-size: 11.5px; }

    .ol-logo { padding: 16px 10px; }
    .ol-logo img { max-height: 20px; max-width: 70px; }
    .ol-logo img.ol-bigger { max-height: 24px; max-width: 85px; }
    .ol-logo img.ol-invert.ol-bigger { max-height: 24px; max-width: 85px; }
    .ol-more-btn { padding: 10px 20px; font-size: 12px; }
}/* ================================
   CASE STUDIES CTA
   ================================ */

.cs-card {
    position: relative;
    border-radius: 24px;
    background: #0a0a0a;
    padding: 64px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

/* Giant background text */
.cs-bg-text {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

/* Content */
.cs-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cs-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 14px;
    display: block;
}

.cs-title {
    font-family: 'Instrument Serif', serif;
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
}

.cs-title span {
    color: rgb(0, 43, 255);
    font-style: italic;
}

.cs-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 420px;
}

.cs-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(180deg, #2878e8 0%, #35a0ee 40%, #44bcf0 70%, #5cd6f4 100%);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 0 #1e6abf, 0 6px 18px rgba(37, 120, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.cs-cta:hover {
    background: linear-gradient(180deg, #3585ef 0%, #3cacf2 40%, #4ec2f2 70%, #66dcf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #1e6abf, 0 10px 26px rgba(37, 120, 235, 0.4);
}

.cs-cta:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 #1e6abf, 0 2px 8px rgba(37, 120, 235, 0.2);
}

.cs-cta-icon { width: 16px; height: 16px; }

/* Stats column */
.cs-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cs-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.cs-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.cs-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .cs-card { padding: 56px; gap: 40px; }
    .cs-title { font-size: 36px; }
    .cs-bg-text { font-size: 170px; }
    .cs-stat-num { font-size: 32px; }
}

/* Tablet */
@media (max-width: 1024px) {
    #casestudies-cta { padding: 56px 20px; }
    .cs-card {
        padding: 48px;
        gap: 36px;
        border-radius: 22px;
    }
    .cs-title { font-size: 32px; }
    .cs-desc {
        font-size: 14.5px;
        max-width: 380px;
        margin-bottom: 28px;
    }
    .cs-bg-text { font-size: 130px; }
    .cs-stats { gap: 20px; }
    .cs-stat-num { font-size: 28px; }
    .cs-stat-label { font-size: 10.5px; }
    .cs-cta { padding: 16px 32px; font-size: 14px; }
}

/* Large mobile */
@media (max-width: 768px) {
    #casestudies-cta { padding: 48px 16px; }
    .cs-card {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 28px;
        border-radius: 20px;
        gap: 32px;
    }
    .cs-bg-text {
        font-size: 90px;
        top: 20px;
        right: -10px;
        transform: none;
        opacity: 0.7;
    }
    .cs-eyebrow {
        font-size: 9px;
        letter-spacing: 0.18em;
        margin-bottom: 12px;
        padding: 5px 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        color: rgba(255, 255, 255, 0.5);
        display: inline-flex;
        align-items: center;
        width: fit-content;
    }
    .cs-title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 14px;
    }
    .cs-desc {
        font-size: 13.5px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 0;
    }

    /* Stats — horizontal 3-col row with dividers */
    .cs-stats {
        flex-direction: row;
        gap: 0;
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: space-around;
    }
    .cs-stat {
        align-items: center;
        flex: 1;
        gap: 4px;
        padding: 0 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }
    .cs-stat:last-child { border-right: none; }
    .cs-stat-num { font-size: 24px; }
    .cs-stat-label {
        font-size: 9.5px;
        letter-spacing: 0.06em;
        text-align: center;
        line-height: 1.3;
    }

    .cs-cta {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #casestudies-cta { padding: 40px 12px; }
    .cs-card {
        padding: 32px 22px;
        border-radius: 18px;
        gap: 26px;
    }
    .cs-bg-text { font-size: 64px; top: 12px; right: -4px; }
    .cs-eyebrow {
        font-size: 8.5px;
        letter-spacing: 0.16em;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    .cs-title {
        font-size: 23px;
        margin-bottom: 12px;
    }
    .cs-desc {
        font-size: 12.5px;
        line-height: 1.55;
    }
    .cs-stats { padding: 16px 0; }
    .cs-stat { padding: 0 4px; gap: 3px; }
    .cs-stat-num { font-size: 20px; }
    .cs-stat-label { font-size: 8.5px; letter-spacing: 0.04em; }
    .cs-cta {
        padding: 13px 22px;
        font-size: 12.5px;
        border-radius: 10px;
        box-shadow: 0 3px 0 0 #1e6abf, 0 5px 14px rgba(37, 120, 235, 0.25);
    }
    .cs-cta-icon { width: 14px; height: 14px; }
}

/* Small mobile */
@media (max-width: 380px) {
    #casestudies-cta { padding: 32px 10px; }
    .cs-card { padding: 26px 18px; }
    .cs-bg-text { font-size: 52px; }
    .cs-title { font-size: 20px; }
    .cs-desc { font-size: 12px; }
    .cs-stats { padding: 14px 0; }
    .cs-stat { padding: 0 2px; }
    .cs-stat-num { font-size: 17px; }
    .cs-stat-label { font-size: 8px; }
    .cs-cta { padding: 12px 18px; font-size: 12px; }
}

/* ================================
   FAQ
   ================================ */

/* ---- TOP ---- */
.faq-top {
    text-align: center;
    margin-bottom: 36px;
}

.faq-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    display: block;
}

.faq-title {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    font-weight: 400;
    color: #0a0a0a;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
}

.faq-title span {
    color: rgb(0, 43, 255);
    font-style: italic;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.35);
    margin: 0;
}

/* ---- TABS ---- */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.faq-tab {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.35);
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-tab:hover {
    color: rgba(0, 0, 0, 0.6);
}

.faq-tab.active {
    color: #0a0a0a;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ---- PANELS ---- */
.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
}

/* ---- ACCORDION ITEM ---- */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Question button */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
}

.faq-q-text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.4;
}

.faq-badge {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

/* Answer */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0 0;
}

.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 0 24px 0;
}

.faq-a p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.7;
    margin: 0 0 12px;
    max-width: 640px;
}

.faq-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.faq-link:hover {
    opacity: 0.6;
}

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .faq-title { font-size: 34px; }
}

/* Tablet */
@media (max-width: 1024px) {
    #faq-section { padding: 80px 20px; }
    .faq-top { margin-bottom: 32px; }
    .faq-title { font-size: 32px; }
    .faq-subtitle { font-size: 14.5px; }
    .faq-tabs { margin-bottom: 28px; }
    .faq-tab { padding: 10px 20px; font-size: 12.5px; }
    .faq-q { padding: 18px 0; gap: 12px; }
    .faq-q-text { font-size: 14.5px; }
    .faq-a p { font-size: 13.5px; line-height: 1.65; }
}

/* Large mobile */
@media (max-width: 768px) {
    #faq-section { padding: 64px 16px; }

    .faq-top { margin-bottom: 28px; }
    .faq-label {
        font-size: 9px;
        letter-spacing: 0.16em;
        margin-bottom: 10px;
        padding: 4px 11px;
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 100px;
        color: rgba(0, 0, 0, 0.45);
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .faq-title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 10px;
        padding: 0 8px;
    }
    .faq-subtitle {
        font-size: 13.5px;
        line-height: 1.55;
        padding: 0 8px;
    }

    /* Tabs - scrollable pill row */
    .faq-tabs {
        width: 100%;
        margin-bottom: 24px;
        padding: 3px;
        border-radius: 11px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 2px;
    }
    .faq-tabs::-webkit-scrollbar { display: none; }
    .faq-tab {
        flex: 1 0 auto;
        padding: 10px 18px;
        font-size: 12.5px;
        text-align: center;
        white-space: nowrap;
        border-radius: 9px;
    }

    .faq-item { padding: 6px 0; }
    .faq-q {
        padding: 18px 0;
        gap: 10px;
    }
    .faq-q-text {
        font-size: 14px;
        line-height: 1.4;
    }
    .faq-badge { display: none; }
    .faq-chevron { width: 17px; height: 17px; }

    .faq-item.open .faq-a { padding: 0 0 20px 0; }
    .faq-a p {
        font-size: 13.5px;
        line-height: 1.65;
        margin: 0 0 10px;
        max-width: 100%;
    }
    .faq-link { font-size: 12.5px; }
}

/* Mobile */
@media (max-width: 480px) {
    #faq-section { padding: 48px 12px; }

    .faq-top { margin-bottom: 22px; }
    .faq-label {
        font-size: 8.5px;
        letter-spacing: 0.14em;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    .faq-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .faq-subtitle {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .faq-tabs {
        margin-bottom: 20px;
        padding: 2px;
        border-radius: 10px;
    }
    .faq-tab {
        padding: 9px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    .faq-item { padding: 4px 0; }
    .faq-q {
        padding: 16px 0;
        gap: 10px;
    }
    .faq-q-text {
        font-size: 13.5px;
        line-height: 1.35;
    }
    .faq-chevron { width: 16px; height: 16px; }

    .faq-item.open .faq-a { padding: 0 0 18px 0; }
    .faq-a p {
        font-size: 13px;
        line-height: 1.6;
        margin: 0 0 10px;
    }
    .faq-link { font-size: 12px; }
}

/* Small mobile */
@media (max-width: 380px) {
    #faq-section { padding: 40px 10px; }
    .faq-label { font-size: 8px; padding: 3px 9px; }
    .faq-title { font-size: 21px; }
    .faq-subtitle { font-size: 12px; }
    .faq-tabs { padding: 2px; }
    .faq-tab { padding: 8px 12px; font-size: 11.5px; }
    .faq-q { padding: 14px 0; gap: 8px; }
    .faq-q-text { font-size: 13px; }
    .faq-chevron { width: 14px; height: 14px; }
    .faq-item.open .faq-a { padding: 0 0 16px 0; }
    .faq-a p { font-size: 12.5px; }
    .faq-link { font-size: 11.5px; }
}
/* ================================
   PARTNERSHIPS — LIGHT MODE
   ================================ */

.ptr-top {
    margin-bottom: 32px;
}

.ptr-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    display: block;
}

.ptr-title {
    font-family: 'Instrument Serif', serif;
    font-size: 40px;
    font-weight: 400;
    color: #0a0a0a;
    letter-spacing: -0.04em;
    margin: 0 0 8px;
}

.ptr-title span {
    color: rgb(0, 43, 255);
    font-style: italic;
}

.ptr-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.35);
    margin: 0;
}

/* ---- HERO VIDEO ---- */
.ptr-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.ptr-hero-vid {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.ptr-hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.ptr-hero-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ptr-hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.ptr-hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.ptr-hero:hover .ptr-hero-arrow {
    background: #ffffff;
}

.ptr-hero-arrow-icon {
    width: 18px;
    height: 18px;
    color: #ffffff;
    transition: color 0.25s ease;
}

.ptr-hero:hover .ptr-hero-arrow-icon {
    color: #0a0a0a;
}

/* ---- CARD GRID ---- */
.ptr-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.ptr-card {
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.25s ease;
}

.ptr-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.ptr-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ptr-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f4f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.ptr-card:hover .ptr-icon-wrap {
    background: #0a0a0a;
}

.ptr-icon {
    width: 18px;
    height: 18px;
    color: rgba(0, 0, 0, 0.35);
    transition: color 0.25s ease;
}

.ptr-card:hover .ptr-icon {
    color: #ffffff;
}

.ptr-card-go {
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

.ptr-card:hover .ptr-card-go {
    color: #0a0a0a;
    transform: translate(2px, -2px);
}

.ptr-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.ptr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.35);
    line-height: 1.5;
    margin: 0;
}

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .ptr-grid { grid-template-columns: repeat(3, 1fr); }
    .ptr-title { font-size: 38px; }
}

/* Tablet */
@media (max-width: 1024px) {
    #partnerships-section { padding: 80px 20px; }
    .ptr-top { margin-bottom: 28px; }
    .ptr-title { font-size: 34px; }
    .ptr-subtitle { font-size: 14.5px; }

    .ptr-hero-vid { height: 280px; }
    .ptr-hero { border-radius: 18px; }
    .ptr-hero-inner { padding: 24px 28px; }
    .ptr-hero-label { font-size: 17px; }
    .ptr-hero-arrow { width: 38px; height: 38px; }
    .ptr-hero-arrow-icon { width: 17px; height: 17px; }

    .ptr-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .ptr-card { padding: 22px 20px; }
    .ptr-icon-wrap { width: 38px; height: 38px; border-radius: 11px; }
    .ptr-icon { width: 17px; height: 17px; }
    .ptr-card-title { font-size: 14.5px; }
    .ptr-card-desc { font-size: 11.5px; }
}

/* Large mobile */
@media (max-width: 768px) {
    #partnerships-section { padding: 64px 16px; }

    .ptr-top { margin-bottom: 24px; }
    .ptr-eyebrow {
        font-size: 9px;
        letter-spacing: 0.16em;
        margin-bottom: 10px;
        padding: 4px 11px;
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 100px;
        color: rgba(0, 0, 0, 0.45);
        width: fit-content;
    }
    .ptr-title {
        font-size: 30px;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    .ptr-subtitle {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .ptr-hero-vid { height: 220px; }
    .ptr-hero { border-radius: 16px; }
    .ptr-hero-inner {
        padding: 22px 20px;
    }
    .ptr-hero-label {
        font-size: 18px;
        letter-spacing: -0.01em;
    }
    .ptr-hero-arrow { width: 36px; height: 36px; }
    .ptr-hero-arrow-icon { width: 16px; height: 16px; }

    .ptr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .ptr-card {
        padding: 20px 18px;
        border-radius: 14px;
    }
    .ptr-card-top { margin-bottom: 14px; }
    .ptr-icon-wrap {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .ptr-icon { width: 16px; height: 16px; }
    .ptr-card-go { width: 15px; height: 15px; }
    .ptr-card-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .ptr-card-desc {
        font-size: 11.5px;
        line-height: 1.45;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #partnerships-section { padding: 48px 12px; }

    .ptr-top { margin-bottom: 20px; }
    .ptr-eyebrow {
        font-size: 8.5px;
        letter-spacing: 0.14em;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    .ptr-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .ptr-subtitle {
        font-size: 12.5px;
    }

    .ptr-hero-vid { height: 180px; }
    .ptr-hero { border-radius: 14px; }
    .ptr-hero-inner {
        padding: 18px 16px;
    }
    .ptr-hero-label {
        font-size: 14.5px;
    }
    .ptr-hero-arrow { width: 32px; height: 32px; }
    .ptr-hero-arrow-icon { width: 14px; height: 14px; }

    .ptr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }
    .ptr-card {
        padding: 16px 14px;
        border-radius: 12px;
    }
    .ptr-card-top { margin-bottom: 12px; }
    .ptr-icon-wrap {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }
    .ptr-icon { width: 15px; height: 15px; }
    .ptr-card-go { width: 13px; height: 13px; }
    .ptr-card-title {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .ptr-card-desc {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    #partnerships-section { padding: 40px 10px; }
    .ptr-title { font-size: 21px; }
    .ptr-subtitle { font-size: 12px; }
    .ptr-hero-vid { height: 150px; }
    .ptr-hero-label { font-size: 13px; }
    .ptr-grid { grid-template-columns: 1fr; gap: 6px; }
    .ptr-card { padding: 16px 16px; }
    .ptr-card-title { font-size: 13.5px; }
    .ptr-card-desc { font-size: 11.5px; }
}
/* ================================
   FOOTER — EDITORIAL GRID
   ================================ */

.ft {
    position: relative;
    z-index: 30;
    background: #eceef4;
    color: #002bff;
    font-family: 'Inter', sans-serif;
}

/* ---- EMAIL CAPTURE ---- */
.ft-capture {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 56px 56px;
    border-bottom: 1px solid rgba(0, 43, 255, 0.1);
}

.ft-capture-title {
    font-size: 28px;
    font-weight: 900;
    color: #002bff;
    letter-spacing: -0.03em;
    margin: 0 0 6px;
    line-height: 1.2;
}

.ft-capture-desc {
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 43, 255, 0.4);
    margin: 0;
    line-height: 1.5;
}

.ft-capture-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.ft-input {
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 43, 255, 0.15);
    background: rgba(0, 43, 255, 0.03);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #002bff;
    width: 180px;
    outline: none;
    transition: all 0.2s ease;
}

.ft-input::placeholder { color: rgba(0, 43, 255, 0.25); }
.ft-input:focus { border-color: #002bff; background: rgba(0, 43, 255, 0.06); }

.ft-capture-btn {
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    background: #002bff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ft-capture-btn:hover { background: #0024d4; transform: translateY(-1px); }

/* ---- GRID ---- */
.ft-grid-wrap {
    padding: 0 56px;
}

.ft-row {
    display: grid;
    border-bottom: 1px solid rgba(0, 43, 255, 0.1);
}

.ft-row-7 {
    grid-template-columns: repeat(7, 1fr);
}

.ft-cell {
    display: flex;
    flex-direction: column;
    padding: 28px 20px 28px 0;
    border-right: 1px solid rgba(0, 43, 255, 0.06);
}

.ft-cell:last-child { border-right: none; }

.ft-cell-title {
    font-size: 13px;
    font-weight: 800;
    color: #002bff;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ft-red { color: #e03030; }

.ft-cell-sub {
    font-size: 10px;
    font-weight: 500;
    color: rgba(0, 43, 255, 0.3);
    margin-bottom: 14px;
    line-height: 1.4;
}

.ft-cell-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 43, 255, 0.5);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px dotted rgba(0, 43, 255, 0.1);
    transition: all 0.15s ease;
}

.ft-cell-link:last-of-type { border-bottom: none; }

.ft-cell-link span {
    font-size: 11px;
    opacity: 0.3;
    transition: opacity 0.15s ease;
}

.ft-cell-link:hover { color: #002bff; }
.ft-cell-link:hover span { opacity: 1; }

/* Crisis */
.ft-crisis {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #e03030;
    text-decoration: none;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(224, 48, 48, 0.2);
    background: rgba(224, 48, 48, 0.04);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ft-crisis:hover { background: rgba(224, 48, 48, 0.1); }

/* ---- SOCIAL + CTA BAR ---- */
.ft-bar {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 43, 255, 0.1);
}

.ft-bar-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 32px 0;
}

.ft-bar-cta {
    font-size: 14px;
    font-weight: 800;
    color: #002bff;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 2px solid #002bff;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.ft-bar-cta:hover {
    background: #002bff;
    color: #ffffff;
}

.ft-bar-socials {
    display: flex;
    border-left: 1px solid rgba(0, 43, 255, 0.1);
}

.ft-social-big {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    font-size: 22px;
    font-weight: 800;
    color: #002bff;
    text-decoration: none;
    border-left: 1px solid rgba(0, 43, 255, 0.06);
    transition: all 0.2s ease;
}

.ft-social-big:first-child { border-left: none; }
.ft-social-big:hover { background: rgba(0, 43, 255, 0.06); }

/* ---- GIANT BRAND ---- */
.ft-brand {
    padding: 40px 56px 0;
    overflow: hidden;
}

.ft-brand-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- BOTTOM ---- */
.ft-bottom {
    padding: 20px 56px 32px;
    display: flex;
    justify-content: flex-end;
}

.ft-copy {
    font-size: 11px;
    font-weight: 500;
    color: rgba(0, 43, 255, 0.2);
}

/* ================================
   RESPONSIVE
   ================================ */

/* Small desktop / large tablet */
@media (max-width: 1280px) {
    .ft-row-7 { grid-template-columns: repeat(4, 1fr); }
    .ft-cell:nth-child(4n) { border-right: none; }
    .ft-cell:nth-child(n+5) { border-top: 1px solid rgba(0, 43, 255, 0.06); padding-top: 24px; margin-top: 20px; }
    .ft-capture { padding: 48px 40px; gap: 36px; }
    .ft-grid-wrap { padding: 0 40px; }
    .ft-brand { padding: 36px 40px 0; }
    .ft-bottom { padding: 18px 40px 28px; }
}

/* Tablet */
@media (max-width: 1024px) {
    .ft-row-7 { grid-template-columns: repeat(3, 1fr); }
    .ft-cell { padding: 24px 16px 24px 0; }
    .ft-cell:nth-child(3n) { border-right: none; }
    .ft-cell:nth-child(4n) { border-right: 1px solid rgba(0, 43, 255, 0.06); }
    .ft-cell:nth-child(n+4) { border-top: 1px solid rgba(0, 43, 255, 0.06); padding-top: 20px; margin-top: 16px; }

    .ft-capture {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 40px 32px;
    }
    .ft-capture-left { width: 100%; }
    .ft-capture-title { font-size: 26px; }
    .ft-capture-form { width: 100%; }
    .ft-input { flex: 1; width: auto; min-width: 0; }

    .ft-grid-wrap { padding: 0 32px; }
    .ft-brand { padding: 32px 32px 0; }
    .ft-bottom { padding: 16px 32px 28px; }

    .ft-bar-left { padding: 28px 0; }
    .ft-social-big { width: 64px; height: 64px; }
}

/* Large mobile */
@media (max-width: 768px) {
    /* Capture */
    .ft-capture {
        padding: 32px 20px;
        gap: 20px;
    }
    .ft-capture-title {
        font-size: 22px;
        line-height: 1.2;
    }
    .ft-capture-desc {
        font-size: 12.5px;
        line-height: 1.55;
    }
    .ft-capture-form {
        flex-direction: column;
        gap: 8px;
    }
    .ft-input {
        width: 100%;
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 11px;
    }
    .ft-capture-btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 13px;
        border-radius: 11px;
    }

    /* Grid — 2 columns, reset nth-child rules */
    .ft-row-7 { grid-template-columns: repeat(2, 1fr); }
    .ft-cell {
        padding: 22px 14px 22px 0;
        border-right: 1px solid rgba(0, 43, 255, 0.06);
        border-top: none !important;
        margin-top: 0 !important;
    }
    .ft-cell:nth-child(2n) { border-right: none; }
    .ft-cell:nth-child(3n), .ft-cell:nth-child(4n), .ft-cell:nth-child(n+3) {
        border-top: 1px solid rgba(0, 43, 255, 0.06) !important;
        padding-top: 20px !important;
        margin-top: 14px !important;
    }
    .ft-cell:nth-child(1), .ft-cell:nth-child(2) {
        border-top: none !important;
        padding-top: 22px !important;
        margin-top: 0 !important;
    }

    .ft-cell-title { font-size: 12.5px; }
    .ft-cell-sub { font-size: 10px; margin-bottom: 12px; }
    .ft-cell-link { font-size: 11.5px; padding: 5px 0; }
    .ft-cell-link span { font-size: 10px; }

    .ft-grid-wrap { padding: 0 20px; }

    /* Bar stacks */
    .ft-bar { flex-direction: column; }
    .ft-bar-left {
        padding: 24px 0;
        width: 100%;
    }
    .ft-bar-cta {
        width: 100%;
        text-align: center;
        font-size: 13px;
        padding: 15px 32px;
        border-radius: 11px;
    }
    .ft-bar-socials {
        border-left: none;
        border-top: 1px solid rgba(0, 43, 255, 0.1);
        width: 100%;
    }
    .ft-social-big {
        flex: 1;
        width: auto;
        height: 56px;
        border-left: none;
        border-right: 1px solid rgba(0, 43, 255, 0.06);
    }
    .ft-social-big:last-child { border-right: none; }
    .ft-social-big svg { width: 22px; height: 22px; }

    .ft-brand { padding: 28px 20px 0; }
    .ft-bottom {
        padding: 16px 20px 24px;
        justify-content: center;
    }
    .ft-copy { font-size: 10.5px; text-align: center; }
}

/* Mobile */
@media (max-width: 480px) {
    .ft-capture {
        padding: 28px 16px;
        gap: 18px;
    }
    .ft-capture-title { font-size: 20px; }
    .ft-capture-desc { font-size: 12px; }
    .ft-input { padding: 12px 16px; font-size: 13.5px; }
    .ft-capture-btn { padding: 13px 24px; font-size: 12.5px; }

    .ft-cell { padding: 18px 12px 18px 0; }
    .ft-cell:nth-child(n+3) { padding-top: 18px !important; margin-top: 12px !important; }
    .ft-cell-title { font-size: 12px; }
    .ft-cell-sub { font-size: 9.5px; margin-bottom: 10px; }
    .ft-cell-link { font-size: 11px; padding: 4px 0; }
    .ft-cell-link span { font-size: 9.5px; }
    .ft-crisis { font-size: 9.5px; padding: 7px 12px; }

    .ft-grid-wrap { padding: 0 16px; }

    .ft-bar-left { padding: 20px 0; }
    .ft-bar-cta {
        font-size: 12px;
        padding: 13px 24px;
        letter-spacing: 0.06em;
    }
    .ft-social-big {
        height: 50px;
    }
    .ft-social-big svg { width: 20px; height: 20px; }

    .ft-brand { padding: 24px 16px 0; }
    .ft-bottom { padding: 14px 16px 22px; }
    .ft-copy { font-size: 10px; }
}

/* Small mobile */
@media (max-width: 380px) {
    .ft-capture { padding: 24px 14px; }
    .ft-capture-title { font-size: 18px; }
    .ft-capture-desc { font-size: 11.5px; }
    .ft-input { padding: 11px 14px; font-size: 13px; }
    .ft-capture-btn { padding: 12px 22px; font-size: 12px; }

    /* Single column grid on tiny screens */
    .ft-row-7 { grid-template-columns: 1fr; }
    .ft-cell {
        padding: 16px 0 16px 0 !important;
        border-right: none !important;
        border-top: 1px solid rgba(0, 43, 255, 0.06) !important;
        margin-top: 0 !important;
    }
    .ft-cell:first-child { border-top: none !important; }

    .ft-grid-wrap { padding: 0 14px; }
    .ft-bar-cta { font-size: 11.5px; padding: 12px 20px; }
    .ft-social-big { height: 46px; }
    .ft-social-big svg { width: 18px; height: 18px; }
    .ft-brand { padding: 20px 14px 0; }
    .ft-bottom { padding: 12px 14px 20px; }
}
/* ================================
   AEO — APPLE INTELLIGENCE INWARD GLOW
   ================================ */

/* Outer = glow wrapper with padding */
.aeo-outer {
    position: relative;
    border-radius: 30px;
    padding: 3px;
    overflow: hidden;
}

/* Spinning rainbow gradient fills the wrapper */
.aeo-glow-ring {
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    z-index: 0;
    background: conic-gradient(
        from 0deg,
        #3b82f6, #6366f1, #8b5cf6, #a855f7,
        #d946ef, #ec4899, #f43f5e, #ef4444,
        #f97316, #eab308, #f97316, #ef4444,
        #f43f5e, #ec4899, #d946ef, #a855f7,
        #8b5cf6, #6366f1, #3b82f6
    );
    animation: aeo-spin 4s linear infinite;
}

@keyframes aeo-spin {
    100% { transform: rotate(360deg); }
}

/* Inner card sits on top — solid black, clips everything inside */
.aeo-inner {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    background: #050510;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    box-shadow:
        inset 0 0 120px rgba(139, 92, 246, 0.12),
        inset 0 0 80px rgba(236, 72, 153, 0.08),
        inset 0 0 60px rgba(59, 130, 246, 0.06),
        inset 0 0 40px rgba(249, 115, 22, 0.04),
        inset 80px 0 120px -60px rgba(59, 130, 246, 0.08),
        inset -80px 0 120px -60px rgba(236, 72, 153, 0.08),
        inset 0 80px 120px -60px rgba(139, 92, 246, 0.1),
        inset 0 -80px 120px -60px rgba(249, 115, 22, 0.06);
}

/* ---- VIDEO ---- */
.aeo-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aeo-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- GRADIENT ---- */
.aeo-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 10, 0.97) 0%,
            rgba(5, 5, 10, 0.93) 20%,
            rgba(5, 5, 10, 0.78) 36%,
            rgba(5, 5, 10, 0.45) 50%,
            rgba(5, 5, 10, 0.15) 65%,
            transparent 80%
        ),
        linear-gradient(180deg,
            rgba(5, 5, 10, 0.5) 0%,
            transparent 25%,
            transparent 70%,
            rgba(5, 5, 10, 0.6) 100%
        );
    pointer-events: none;
}

/* ---- EDGE GLOW — sits on top of video, bleeds color inward ---- */
.aeo-edge-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: 28px;
    box-shadow:
        inset 0 0 150px 30px rgba(139, 92, 246, 0.12),
        inset 0 0 80px 20px rgba(236, 72, 153, 0.1),
        inset 0 0 50px 10px rgba(59, 130, 246, 0.08),
        inset 0 0 30px rgba(249, 115, 22, 0.05),
        inset 100px 0 140px -40px rgba(59, 130, 246, 0.12),
        inset -100px 0 140px -40px rgba(236, 72, 153, 0.12),
        inset 0 100px 140px -40px rgba(139, 92, 246, 0.14),
        inset 0 -100px 140px -40px rgba(249, 115, 22, 0.08);
}

/* ---- CONTENT ---- */
.aeo-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 60px 64px;
    width: 50%;
    justify-content: center;
}

/* Badge row */
.aeo-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.aeo-badge-new,
.aeo-badge-hot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 6px 14px;
}

.aeo-badge-new {
    color: #f9a8d4;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.18);
}

.aeo-badge-hot {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.aeo-badge-icon { width: 13px; height: 13px; }

/* Title */
.aeo-title {
    font-family: 'Inter', sans-serif;
    font-size: 120px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
    margin: 0 0 8px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #fce7f3 15%, #f9a8d4 35%, #ec4899 55%, #be185d 80%, #831843 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.15));
}

/* Subtitle */
.aeo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 20px;
}

/* Description */
.aeo-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 420px;
}

/* Feature pills */
.aeo-features {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.aeo-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(236, 72, 153, 0.04);
    border: 1px solid rgba(236, 72, 153, 0.08);
}

.aeo-feature-icon {
    width: 14px;
    height: 14px;
    color: #f472b6;
}

/* CTA — pink Shopify 3D */
.aeo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 48px;
    border-radius: 16px;
    background: linear-gradient(180deg, #be185d 0%, #db2777 30%, #ec4899 65%, #f472b6 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 5px 0 0 #9d174d,
                0 8px 24px rgba(236, 72, 153, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 18px;
}

.aeo-cta:hover {
    background: linear-gradient(180deg, #c9226a 0%, #e33c85 30%, #f05da6 65%, #f587c0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 0 0 #9d174d, 0 14px 36px rgba(236, 72, 153, 0.45);
}

.aeo-cta:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 0 #9d174d, 0 2px 8px rgba(236, 72, 153, 0.2);
}

.aeo-cta-icon { width: 17px; height: 17px; }

/* Learn link */
.aeo-learn {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.aeo-learn:hover {
    color: rgba(255, 255, 255, 0.6);
    text-decoration-color: rgba(255, 255, 255, 0.25);
}

/* ================================
   RESPONSIVE
   ================================ */

/* Large tablet / Small desktop — keep side-by-side */
@media (max-width: 1280px) {
    .aeo-inner { min-height: 560px; }
    .aeo-content {
        width: 52%;
        padding: 52px 48px;
    }
    .aeo-title { font-size: 100px; }
    .aeo-desc { font-size: 14px; }
    /* Tighten gradient to match content width */
    .aeo-gradient {
        background:
            linear-gradient(90deg,
                rgba(5, 5, 10, 0.97) 0%,
                rgba(5, 5, 10, 0.95) 30%,
                rgba(5, 5, 10, 0.8) 46%,
                rgba(5, 5, 10, 0.4) 60%,
                transparent 75%
            ),
            linear-gradient(180deg,
                rgba(5, 5, 10, 0.5) 0%,
                transparent 25%,
                transparent 70%,
                rgba(5, 5, 10, 0.6) 100%
            );
    }
}

/* Tablet landscape and below — STACK vertically */
@media (max-width: 1024px) {
    .aeo-inner {
        flex-direction: column;
        min-height: auto;
        border-radius: 22px;
    }
    .aeo-outer { border-radius: 24px; }
    .aeo-video {
        position: relative;
        width: 100%;
        height: 320px;
        inset: auto;
    }
    .aeo-gradient { display: none; }
    .aeo-content {
        width: 100%;
        padding: 40px 40px 48px;
        align-items: center;
        text-align: center;
    }
    .aeo-desc { max-width: 520px; }
    .aeo-title { font-size: 88px; }
    .aeo-subtitle { font-size: 14px; }
    .aeo-features { justify-content: center; }
    .aeo-cta {
        padding: 18px 40px;
        font-size: 15px;
    }
}

/* Tablet portrait / Large mobile */
@media (max-width: 768px) {
    .aeo-outer { border-radius: 20px; }
    .aeo-inner { border-radius: 18px; }
    .aeo-video { height: 240px; }
    .aeo-content {
        padding: 32px 24px 36px;
    }
    .aeo-badge-row { margin-bottom: 20px; }
    .aeo-badge-new,
    .aeo-badge-hot {
        font-size: 10px;
        padding: 5px 12px;
    }
    .aeo-title {
        font-size: 64px;
        margin-bottom: 6px;
    }
    .aeo-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
        letter-spacing: 0.1em;
    }
    .aeo-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .aeo-features {
        justify-content: center;
        gap: 8px;
        margin-bottom: 28px;
    }
    .aeo-feature {
        font-size: 11px;
        padding: 6px 12px;
    }
    .aeo-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 12px;
    }
    .aeo-learn { font-size: 12px; }
}

/* Mobile */
@media (max-width: 480px) {
    .aeo-outer {
        border-radius: 16px;
        padding: 2px;
    }
    .aeo-inner { border-radius: 14px; }
    .aeo-video { height: 200px; }
    .aeo-content {
        padding: 24px 16px 28px;
    }
    .aeo-badge-row {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    .aeo-badge-new,
    .aeo-badge-hot {
        font-size: 9px;
        padding: 4px 10px;
    }
    .aeo-badge-icon { width: 11px; height: 11px; }
    .aeo-title {
        font-size: 48px;
        letter-spacing: -0.04em;
    }
    .aeo-subtitle {
        font-size: 11px;
        margin-bottom: 14px;
    }
    .aeo-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .aeo-features { gap: 6px; margin-bottom: 22px; }
    .aeo-feature {
        font-size: 10px;
        padding: 5px 10px;
        border-radius: 8px;
    }
    .aeo-feature-icon { width: 12px; height: 12px; }
    .aeo-cta {
        padding: 14px 20px;
        font-size: 13px;
        border-radius: 10px;
        box-shadow: 0 4px 0 0 #9d174d, 0 6px 16px rgba(236, 72, 153, 0.3);
    }
    .aeo-cta-icon { width: 14px; height: 14px; }
}

/* Small mobile */
@media (max-width: 380px) {
    .aeo-video { height: 170px; }
    .aeo-content {
        padding: 20px 12px 24px;
    }
    .aeo-title { font-size: 40px; }
    .aeo-subtitle { font-size: 10px; }
    .aeo-desc { font-size: 12px; }
    .aeo-feature { font-size: 9px; padding: 4px 8px; }
    .aeo-cta {
        padding: 12px 16px;
        font-size: 12px;
    }
}