/* ========================================
   ACETERNITY 3D MARQUEE HERO - CLEANFOLDZ (UNUSED - KEPT FOR REFERENCE)
   ======================================== */

/* COMMENTED OUT - OLD DESKTOP HERO
.aceternity-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: #AAEBCF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aceternity-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(170, 235, 207, 0.15) 0%,
        rgba(170, 235, 207, 0.55) 45%,
        rgba(170, 235, 207, 0.9) 100%
    );
    pointer-events: none;
    z-index: 1;
}
*/

/* ========================================
   NEW DESKTOP HERO - EDITORIAL STYLE (SAME AS MOBILE)
   ======================================== */

/* Premium editorial hero background - Off-white base */
.aceternity-hero {
    height: 89vh;
    max-height: 89vh;
    background: linear-gradient(to bottom, #f8fbfa 0%, #ffffff 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Atmospheric lighting layers - Behind grid */
.aceternity-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 15% 20%, rgba(41, 171, 226, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 700px 700px at 85% 45%, rgba(170, 235, 207, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 600px 400px at 50% 85%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: atmosphericBreathing 22s ease-in-out infinite;
}

@keyframes atmosphericBreathing {
    0%, 100% { 
        opacity: 0.6;
    }
    50% { 
        opacity: 0.85;
    }
}

/* Premium blueprint grid - On top of lighting */
.aceternity-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(41, 171, 226, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 171, 226, 0.18) 1px, transparent 1px),
        radial-gradient(circle at 0% 0%, rgba(41, 171, 226, 0.25) 2px, transparent 2px),
        radial-gradient(circle at 50px 0%, rgba(41, 171, 226, 0.25) 2px, transparent 2px),
        radial-gradient(circle at 0% 50px, rgba(41, 171, 226, 0.25) 2px, transparent 2px),
        radial-gradient(circle at 50px 50px, rgba(41, 171, 226, 0.25) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.75;
    animation: blueprintGlow 12s ease-in-out infinite;
}

@keyframes blueprintGlow {
    0%, 100% { 
        opacity: 0.65;
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    33% { 
        opacity: 0.85;
        background-position: 0 0, 0 0, 2px 2px, 0 0, 0 0, 2px 2px;
    }
    66% { 
        opacity: 0.7;
        background-position: 0 0, 0 0, 0 0, 2px 2px, 2px 2px, 0 0;
    }
}

/* Aceternity Perspective Wrapper - HIDDEN (using new editorial hero) */
.marquee-perspective-wrapper {
    display: none;
}

/* ========================================
   DESKTOP CINEMATIC MEDIA WALL HERO
   ======================================== */

/* Desktop hero container - Asymmetrical editorial layout */
.desktop-hero-container {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 60px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
    position: relative;
    z-index: 3;
}

/* Left side - Editorial content */
.desktop-hero-content {
    max-width: 580px;
    justify-self: start;
}

/* Right side - Premium editorial image frame */
.desktop-hero-image-container {
    position: relative;
    width: 100%;
    height: 60vh;
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(248, 251, 250, 0.6) 0%,
        rgba(255, 255, 255, 0.4) 100%
    );
    border-radius: 32px;
    padding: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(41, 171, 226, 0.06);
    overflow: visible;
}

/* Atmospheric glow behind image */
.desktop-hero-image-container::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(
        ellipse at center,
        rgba(41, 171, 226, 0.08) 0%,
        transparent 70%
    );
    z-index: -1;
    pointer-events: none;
}

.desktop-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 24px;
    animation: imageFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

@keyframes imageFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-6px) scale(1.01);
    }
}

/* Hide old media wall */
.desktop-media-wall {
    display: none;
}

/* Mobile hero editorial - Hidden on desktop */
.mobile-hero-editorial {
    display: none;
}

/* Desktop Media Wall Fragments - Layered Editorial Collage */
.desktop-media-fragment {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(41, 171, 226, 0.1);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, opacity 0.4s ease;
    cursor: pointer;
}

.desktop-media-fragment:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.04);
}

/* Fragment 1 - Large article (top-right) */
.desktop-fragment-1 {
    top: 8%;
    right: 5%;
    width: 320px;
    transform: rotate(-2deg);
    z-index: 5;
    animation: floatDesktop1 20s ease-in-out infinite;
}

/* Fragment 2 - LinkedIn post (mid-left) */
.desktop-fragment-2 {
    top: 35%;
    left: -5%;
    width: 280px;
    transform: rotate(1.5deg);
    z-index: 4;
    opacity: 0.85;
    animation: floatDesktop2 22s ease-in-out infinite;
}

/* Fragment 3 - YouTube preview (bottom-right) */
.desktop-fragment-3 {
    bottom: 10%;
    right: -8%;
    width: 300px;
    transform: rotate(-1deg);
    z-index: 3;
    opacity: 0.9;
    animation: floatDesktop3 24s ease-in-out infinite;
}

/* Fragment 4 - Instagram reel (top-left, faded) */
.desktop-fragment-4 {
    top: 15%;
    left: 8%;
    width: 200px;
    transform: rotate(3deg) scale(0.9);
    z-index: 2;
    opacity: 0.65;
    animation: floatDesktop4 26s ease-in-out infinite;
}

/* Fragment 5 - Deep background article (center-back) */
.desktop-fragment-5 {
    top: 50%;
    right: 25%;
    width: 240px;
    transform: rotate(-1.5deg) scale(0.85);
    z-index: 1;
    opacity: 0.5;
    animation: floatDesktop5 28s ease-in-out infinite;
}

/* Fragment content styling */
.fragment-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.fragment-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.4;
    margin-bottom: 8px;
}

.fragment-source {
    font-size: 10px;
    color: rgba(41, 171, 226, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fragment-platform {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    margin-top: 6px;
}

/* Desktop fragment float animations - micro-motion */
@keyframes floatDesktop1 {
    0%, 100% { 
        transform: rotate(-2deg) translateY(0px);
    }
    50% { 
        transform: rotate(-2deg) translateY(-8px);
    }
}

@keyframes floatDesktop2 {
    0%, 100% { 
        transform: rotate(1.5deg) translateY(0px);
        opacity: 0.85;
    }
    50% { 
        transform: rotate(1.5deg) translateY(6px);
        opacity: 0.9;
    }
}

@keyframes floatDesktop3 {
    0%, 100% { 
        transform: rotate(-1deg) translateY(0px);
        opacity: 0.9;
    }
    50% { 
        transform: rotate(-1deg) translateY(-6px);
        opacity: 0.95;
    }
}

@keyframes floatDesktop4 {
    0%, 100% { 
        transform: rotate(3deg) scale(0.9) translateY(0px);
        opacity: 0.65;
    }
    50% { 
        transform: rotate(3deg) scale(0.9) translateY(5px);
        opacity: 0.7;
    }
}

@keyframes floatDesktop5 {
    0%, 100% { 
        transform: rotate(-1.5deg) scale(0.85) translateY(0px);
        opacity: 0.5;
    }
    50% { 
        transform: rotate(-1.5deg) scale(0.85) translateY(4px);
        opacity: 0.55;
    }
}

/* Desktop content layer */
.desktop-content-layer {
    position: relative;
    z-index: 2;
}

/* Mobile content layer (for mobile view) */
.hero-content-layer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 10px;
}

/* Desktop hero typography */
.desktop-hero-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #29abe2;
    margin-bottom: 20px;
    opacity: 0.85;
    animation: labelFadeIn 1s ease-out;
}

.desktop-hero-heading {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 22px;
    letter-spacing: -1.8px;
    animation: headingFadeIn 1.2s ease-out 0.15s both;
}

.desktop-hero-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
    font-weight: 450;
    animation: textFadeIn 1.4s ease-out 0.3s both;
}

.desktop-hero-cta {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: ctaFadeIn 1.6s ease-out 0.45s both;
}

.desktop-cta-primary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    background: #29abe2;
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(41, 171, 226, 0.2);
}

.desktop-cta-primary:hover {
    background: #1a9ad1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 171, 226, 0.3);
}

.desktop-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.desktop-cta-secondary:hover {
    opacity: 1;
    gap: 10px;
}

.desktop-cta-arrow {
    transition: transform 0.3s ease;
}

.desktop-cta-secondary:hover .desktop-cta-arrow {
    transform: translateX(4px);
}

@keyframes labelFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 0.85; transform: translateY(0); }
}

@keyframes headingFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ctaFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile hero typography (for mobile view) */
.mobile-hero-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #29abe2;
    margin-bottom: 32px;
    opacity: 0.75;
}

.mobile-hero-heading {
    font-size: 41px;
    font-weight: 800;
    line-height: 1.22;
    color: #0a0a0a;
    margin-bottom: 32px;
    letter-spacing: -1.2px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-hero-text {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 28px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 450;
}

.mobile-hero-recognition {
    font-size: 11.5px;
    line-height: 1.6;
    color: #666;
    margin-top: 36px;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.2px;
}

/* Marquee Grid - 4 Column Layout */
.marquee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
    padding: 0 80px;
}

/* Marquee Columns */
.marquee-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Media Cards - Premium White Theme */
.media-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(41, 171, 226, 0.6);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                0 4px 16px rgba(0, 0, 0, 0.08),
                0 0 20px rgba(41, 171, 226, 0.3),
                inset 0 0 0 1px rgba(41, 171, 226, 0.1);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Mobile GPU Optimization - Featured In */
@media (max-width: 768px) {
    .media-card {
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
                    0 2px 8px rgba(0, 0, 0, 0.06),
                    0 0 12px rgba(41, 171, 226, 0.2),
                    inset 0 0 0 1px rgba(41, 171, 226, 0.1);
    }
}

/* Reduce opacity of center column cards (behind title zone) */
.marquee-column:nth-child(2) .media-card,
.marquee-column:nth-child(3) .media-card {
    opacity: 0.78;
}

/* Card Hover State */
.media-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(41, 171, 226, 0.8);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
                0 8px 24px rgba(0, 0, 0, 0.1),
                0 0 30px rgba(41, 171, 226, 0.5),
                inset 0 0 0 1px rgba(41, 171, 226, 0.2);
}

/* Mobile GPU Optimization - Marquee Hover */
@media (max-width: 768px) {
    .media-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
                    0 4px 12px rgba(0, 0, 0, 0.08),
                    0 0 20px rgba(41, 171, 226, 0.3),
                    inset 0 0 0 1px rgba(41, 171, 226, 0.15);
    }
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.card-source {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Card Header */
.social-card {
    gap: 8px;
}

.social-icon {
    font-size: 1.2rem;
}

.social-icon.instagram {
    filter: grayscale(0.3);
}

.social-icon.youtube {
    color: #ff0000;
    font-size: 1rem;
}

.social-icon.linkedin {
    background: #0077b5;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Card Content */
.card-headline {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.card-caption {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.card-handle {
    font-size: 0.8rem;
    color: #29abe2;
    font-weight: 600;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #29abe2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #2199cc;
    transform: translateX(4px);
}

/* Center Hero Content - Above Marquee */
.hero-center-content {
    isolation: isolate;
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-center-content::before {
    content: '';
    position: absolute;
    inset: -80px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.78) 0%,
        rgba(255, 255, 255, 0.42) 45%,
        rgba(255, 255, 255, 0) 75%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.center-glass-card {
    position: relative;
    z-index: 1000;
    text-align: center;
    max-width: 520px;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111111;
    margin: 0 0 14px 0;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.45);
}

.gradient-text {
    color: #67B85F;
    text-shadow: 0 2px 10px rgba(103, 184, 95, 0.25);
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: #4a5a6d;
    line-height: 1.65;
    margin: 0 0 22px 0;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(41, 171, 226, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a202c;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(41, 171, 226, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(41, 171, 226, 0.4);
    box-shadow: 0 8px 24px rgba(41, 171, 226, 0.2);
    background: rgba(41, 171, 226, 0.04);
}

.cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* ========================================
   SHARED SECTION STYLES - BASE
   Mobile-first, scaled for desktop
   ======================================== */

/* About Section - Base */
.mobile-about-section {
    padding: 50px 20px;
    background: white;
    text-align: center;
}

.mobile-about-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mobile-about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Press Section - Base */
.press-section {
    padding: 50px 20px;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* News Cards - Base */
.news-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: block;
}

.news-card-source {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* View More Button - Base */
.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    border-color: #29abe2;
    color: #29abe2;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

/* Stories Section - Base */
.stories-section {
    padding: 50px 20px;
    background: white;
}

.story-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: block;
}

.story-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

.story-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #29abe2;
}

.story-info {
    padding: 20px;
}

.creator-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.creator-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.creator-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.story-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 6px;
}

.story-platform {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Final CTA Section - Base */
.final-cta {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(41, 171, 226, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(106, 168, 47, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

.cta-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.cta-btn.primary {
    background: #29abe2;
    color: white;
    border: 2px solid #29abe2;
}

.cta-btn.primary:hover {
    background: #1a9ad1;
    border-color: #1a9ad1;
}

.cta-btn.secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
}

.cta-btn.secondary:hover {
    border-color: #29abe2;
    color: #29abe2;
}

/* ========================================
   DESKTOP SCALING - MEDIA QUERIES
   Same design language, expanded spacing
   ======================================== */

/* About Section - Desktop (scaled from mobile) */
@media (min-width: 769px) {
    .mobile-about-section {
        padding: 100px 40px;
    }
    
    .mobile-about-heading {
        font-size: 36px;
        margin-bottom: 24px;
        max-width: 800px;
    }
    
    .mobile-about-text {
        font-size: 18px;
        line-height: 1.8;
        max-width: 700px;
    }
}

/* Press Section - Desktop Editorial Newsroom */
@media (min-width: 769px) {
    .press-section {
        padding: 60px 60px 40px;
        background: white;
    }
    
    /* Hide filter tabs on desktop - more specific */
    .press-section .filter-tabs {
        display: none !important;
    }
    
    /* Hide mobile news grid on desktop - more specific */
    .press-section .news-grid {
        display: none !important;
    }
    
    /* Hide view more button on desktop - more specific */
    .press-section .view-more-container {
        display: none !important;
    }
    
    /* Single column layout for press section */
    .press-section .container {
        max-width: 800px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    /* Centered header for press section */
    .press-section .section-header {
        text-align: center;
        margin-bottom: 0;
        position: static;
        max-width: 950px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header::before {
        content: 'FEATURED COVERAGE';
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #29abe2;
        margin-bottom: 24px;
        opacity: 0.85;
    }
    
    .section-title {
        font-size: 44px;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.1;
        margin-bottom: 32px;
        letter-spacing: -1px;
        text-align: center;
        max-width: 950px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-subtitle {
        font-size: 17px;
        font-weight: 400;
        color: #666;
        line-height: 1.6;
        text-align: center;
        max-width: 660px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.85;
    }
    
    .section-header::after {
        content: 'Recognition across media, platforms, and franchise ecosystems.';
        display: block;
        font-size: 13px;
        color: #999;
        line-height: 1.6;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    /* RIGHT SIDE - Editorial Stream */
    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
        max-width: none;
    }
    
    /* ARTICLE CARDS - Premium & Substantial */
    .news-card[data-type="article"] {
        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 16px;
        padding: 40px;
        transition: all 0.4s ease;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    }
    
    .news-card[data-type="article"]:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        border-color: #29abe2;
    }
    
    .news-card[data-type="article"] .news-card-source {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #29abe2;
        margin-bottom: 16px;
        display: block;
    }
    
    .news-card[data-type="article"] .news-card-title {
        font-size: 26px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.3;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }
    
    .news-card[data-type="article"] .news-card-excerpt {
        font-size: 16px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .news-card[data-type="article"] .news-card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 600;
        color: #29abe2;
        text-decoration: none;
        transition: gap 0.3s ease;
    }
    
    .news-card[data-type="article"]:hover .news-card-link {
        gap: 10px;
    }
    
    /* LINKEDIN BLOCKS - Sharp & Conversational */
    .news-card[data-type="linkedin"] {
        background: #f9fafb;
        border: 1px solid #e8eaed;
        border-radius: 12px;
        padding: 28px 32px;
        transition: all 0.3s ease;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.02);
    }
    
    .news-card[data-type="linkedin"]:hover {
        background: white;
        border-color: #29abe2;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
    
    .news-card[data-type="linkedin"] .news-card-source {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #0077b5;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .news-card[data-type="linkedin"] .news-card-source::before {
        content: 'in';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        background: #0077b5;
        color: white;
        border-radius: 3px;
        font-size: 11px;
        font-weight: 700;
    }
    
    .news-card[data-type="linkedin"] .news-card-title {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .news-card[data-type="linkedin"] .news-card-author {
        font-size: 14px;
        color: #666;
        font-weight: 500;
        margin-bottom: 12px;
    }
    
    .news-card[data-type="linkedin"] .news-card-link {
        font-size: 13px;
        font-weight: 600;
        color: #0077b5;
        text-decoration: none;
    }
}

@media (min-width: 769px) {
    /* Hide filter tabs on desktop */
    .filter-tabs {
        display: none;
    }
    
    /* Hide news grid on desktop */
    .news-grid {
        display: none;
    }
    
    /* Hide view more button on desktop */
    .view-more-container {
        display: none;
    }
}

/* Stories Section - Desktop Premium Media Viewer */
@media (min-width: 769px) {
    .stories-section {
        padding: 100px 60px;
        background: #fafafa;
    }
    
    /* Editorial 2-column layout - 50/50 split (left dominant) */
    .stories-section .container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 40px;
        align-items: start;
    }
    
    /* LEFT SIDE - Sticky Editorial Block */
    .stories-section .section-header {
        position: sticky;
        top: 120px;
        text-align: left;
        margin-bottom: 0;
    }
    
    .stories-section .section-header::before {
        content: 'STORE STORIES';
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #29abe2;
        margin-bottom: 24px;
        opacity: 0.85;
    }
    
    .stories-section .section-title {
        font-size: 44px;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.15;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }
    
    .stories-section .section-subtitle {
        font-size: 17px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .stories-section .section-header::after {
        content: 'Real stories from across the CleanFoldz ecosystem.';
        display: block;
        font-size: 13px;
        color: #999;
        line-height: 1.6;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    /* RIGHT SIDE - Immersive Media Viewer */
    .stories-carousel-wrapper {
        position: relative;
        max-width: none;
    }
    
    /* Hide carousel nav arrows */
    .carousel-nav {
        display: none;
    }
    
    /* Active Media Card - Compact Focus */
    .active-media-card {
        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        margin-bottom: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1;
        transform: scale(1);
    }
    
    .active-media-card.fade-out {
        opacity: 0;
        transform: scale(0.95);
    }
    
    .active-media-card.fade-in {
        opacity: 1;
        transform: scale(1);
    }
    
    .active-media-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-1px) scale(1.003);
    }
    
    .active-media-thumbnail {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: #f3f4f6;
    }
    
    .active-media-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Zoom out Laundry empire image to show full content */
    .active-media-thumbnail img[src*="Laundry empire - featured in page.webp"] {
        object-fit: contain;
        object-position: center;
        background: #f3f4f6;
    }
    
    .active-media-card:hover .active-media-thumbnail img {
        transform: scale(1.03);
    }
    
    .active-media-thumbnail .play-overlay {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .active-media-card:hover .play-overlay {
        transform: translate(-50%, -50%) scale(1.06);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    }
    
    .active-media-info {
        padding: 16px;
    }
    
    .active-media-platform {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #29abe2;
        margin-bottom: 8px;
        display: block;
    }
    
    .active-media-title {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.3;
        margin-bottom: 8px;
        letter-spacing: -0.2px;
    }
    
    .active-media-description {
        font-size: 12px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .active-media-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        font-weight: 600;
        color: #29abe2;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 8px 16px;
        border: 2px solid #29abe2;
        border-radius: 6px;
        background: transparent;
    }
    
    .active-media-link:hover {
        background: #29abe2;
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(41, 171, 226, 0.2);
    }
    
    /* Integrated Navigation Controls - HIDE SIDE ARROWS */
    .media-navigation {
        display: none; /* Hide side arrows */
    }
    
    /* Show bottom carousel arrows */
    .carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid #e5e5e5;
        background: white;
    }
    
    .carousel-nav:hover {
        background: #29abe2;
        color: white;
        border-color: #29abe2;
    }
    
    /* Premium Press Wall - Editorial Recognition Cards */
    .press-section .press-wall {
        max-width: 1000px;
        margin: 32px auto 0;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    /* Press Card Base - 70/30 Layout */
    .press-section .press-card {
        display: grid;
        grid-template-columns: 70% 30%;
        gap: 32px;
        align-items: center;
        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 16px;
        padding: 40px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        position: relative;
    }
    
    /* Image Right Layout */
    .press-section .press-card.image-right {
        grid-template-columns: 70% 30%;
    }
    
    /* Image Left Layout */
    .press-section .press-card.image-left {
        grid-template-columns: 30% 70%;
    }
    
    .press-section .press-card.image-left .press-card-content {
        order: 2;
    }
    
    .press-section .press-card.image-left .press-card-image {
        order: 1;
    }
    
    /* No Image Layout - Full Width Content */
    .press-section .press-card.no-image {
        grid-template-columns: 1fr;
        padding: 48px 56px;
    }
    
    /* Hover Effects */
    .press-section .press-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        border-color: #29abe2;
    }
    
    .press-section .press-card.linkedin-card:hover {
        border-color: #0077b5;
    }
    
    /* Left Accent Bar on Hover */
    .press-section .press-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: #29abe2;
        border-radius: 16px 0 0 16px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .press-section .press-card:hover::before {
        opacity: 1;
    }
    
    .press-section .press-card.linkedin-card::before {
        background: #0077b5;
    }
    
    /* Content - Left Aligned */
    .press-section .press-card-content {
        text-align: left;
    }
    
    .press-section .press-card-content.full-width {
        max-width: 700px;
    }
    
    .press-section .press-card-label {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #29abe2;
        margin-bottom: 16px;
        display: block;
    }
    
    .press-section .linkedin-card .press-card-label {
        color: #0077b5;
    }
    
    .press-section .press-card-title {
        font-size: 26px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.3;
        margin-bottom: 16px;
        letter-spacing: -0.4px;
    }
    
    .press-section .press-card-excerpt {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 24px;
        display: block;
    }
    
    .press-section .press-card-author {
        font-size: 15px;
        font-weight: 600;
        color: #666;
        margin-bottom: 24px;
        display: block;
        font-style: italic;
    }
    
    .press-section .press-card-cta {
        font-size: 14px;
        font-weight: 600;
        color: #29abe2;
        display: inline-block;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .press-section .linkedin-card .press-card-cta {
        color: #0077b5;
    }
    
    .press-section .press-card-cta::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #29abe2;
        transition: width 0.3s ease;
    }
    
    .press-section .linkedin-card .press-card-cta::after {
        background: #0077b5;
    }
    
    .press-section .press-card:hover .press-card-cta::after {
        width: 100%;
    }
    
    /* Image Styling - Editorial Accent (Not Dominant) */
    .press-section .press-card-image {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background: #f8f9fa;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .press-section .press-card-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        padding: 16px;
    }
    
    /* Publication Clipping Style - The Blunt Times */
    .press-section .image-left .press-card-image img {
        padding: 20px;
        object-fit: contain;
    }
    
    /* Logo Panel Style - Dailyhunt */
    .press-section .logo-panel {
        background: #fafafa;
        border: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 140px;
    }
    
    .press-section .logo-panel img {
        padding: 24px;
        max-height: 120px;
        object-fit: contain;
    }
    
    /* Founder Image Style - Darshan Joshi */
    .press-section .founder-image {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .press-section .founder-image img {
        padding: 12px;
        object-fit: cover;
    }
    
    /* Typography-Led Card Enhancement */
    .press-section .no-image .press-card-title {
        font-size: 30px;
        max-width: 600px;
    }
    
    .press-section .no-image .press-card-author {
        font-size: 16px;
    }
    
    /* Thumbnail Previews - Minimal Dots */
    .media-thumbnails {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin-top: 16px;
    }
    
    .media-thumbnail-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e5e5e5;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .media-thumbnail-dot:hover {
        background: #29abe2;
        transform: scale(1.2);
    }
    
    .media-thumbnail-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #29abe2;
    }
    
    /* Hide old carousel structure */
    .stories-carousel {
        display: none;
    }
    
    .story-card {
        display: none;
    }
}

/* Final CTA Section - Desktop (scaled from mobile) */
@media (min-width: 769px) {
    .final-cta {
        padding: 120px 40px;
    }
    
    .cta-content {
        max-width: 700px;
    }
    
    .cta-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
    }
    
    .cta-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .cta-btn.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(41, 171, 226, 0.3);
    }
    
    .cta-btn.secondary:hover {
        transform: translateY(-2px);
    }
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    /* 
     * MOBILE-ONLY FIXES
     * All changes below are mobile-only (max-width: 768px)
     * Desktop remains completely untouched
     */
    
    /* FIX 1 - Account for fixed navbar */
    .aceternity-hero {
        height: calc(100dvh - 72px);
        min-height: calc(100dvh - 72px);
        padding-top: 72px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }
    
    /* Remove 3D perspective on mobile */
    .marquee-perspective-wrapper {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        z-index: 5;
    }
    
    /* Horizontal marquee rows structure */
    .marquee-grid {
        display: flex;
        flex-direction: column;
        position: static;
        width: 100%;
        height: auto;
        padding: 0;
        gap: 0;
    }
    
    /* Marquee rows - single horizontal strip */
    .marquee-column {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        position: relative;
        width: max-content;
        overflow: visible;
        gap: 8px;
        padding: 0 20px;
        white-space: nowrap;
        transform: none;
        min-width: 100vw;
    }
    
    /* Top row - above hero */
    .marquee-column:nth-child(1) {
        order: 1;
        margin-bottom: 36px;
    }
    
    /* Bottom row - below hero */
    .marquee-column:nth-child(2) {
        order: 3;
        margin-top: 36px;
    }
    
    /* Hide columns 3 and 4 */
    .marquee-column:nth-child(3),
    .marquee-column:nth-child(4) {
        display: none;
    }
    
    /* Hero content - positioned between rows */
    .hero-center-content {
        order: 2;
        margin: 0;
        z-index: 20;
    }
    
    /* Edge fade masks removed for cleaner composition */
    
    /* Mobile Cards - Horizontal marquee sizing */
    .media-card {
        padding: 2px;
        border-radius: 6px;
        font-size: 0.48rem;
        width: 82px;
        flex-shrink: 0;
        position: relative;
        white-space: normal;
        transform: none;
    }
    
    /* Show all cards for infinite scroll - JavaScript handles cloning */
    .marquee-column:nth-child(1) .media-card,
    .marquee-column:nth-child(2) .media-card {
        display: block;
    }
    
    /* Card Content Sizing - Ultra compact for mobile */
    .card-headline {
        font-size: 0.42rem;
        line-height: 1.0;
        margin: 1px 0;
    }
    
    .card-caption {
        font-size: 0.38rem;
        line-height: 1.05;
        margin: 1px 0;
    }
    
    .card-link {
        font-size: 0.40rem;
    }
    
    .card-handle {
        font-size: 0.36rem;
    }
    
    .card-source {
        font-size: 0.32rem;
    }
    
    .card-image {
        border-radius: 4px;
        margin: 1px 0;
        max-height: 26px;
        object-fit: cover;
    }
    
    /* Reduce card header spacing */
    .card-header {
        margin-bottom: 1px;
        gap: 2px;
    }
    
    /* Reduce logo sizes */
    .card-logo {
        max-height: 10px;
    }
    
    /* Social icon sizing for mobile */
    .social-icon {
        font-size: 0.32rem;
        line-height: 1;
    }
    
    /* Hero Content - Centered between marquee rows */
    .hero-center-content {
        order: 2;
        position: static;
        transform: none;
        z-index: 20;
        padding: 0 20px;
    }
    
    /* Hero Content - Optimized width and spacing */
    .center-glass-card {
        max-width: 290px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    
    /* Compact bold title */
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 0.92;
        letter-spacing: -2px;
        margin-bottom: 0;
        font-weight: 700;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    /* Readable subtitle with proper wrapping */
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 290px;
        margin: 0 auto;
        color: #374151;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }
    
    /* Prominent CTA */
    .hero-cta {
        padding: 10px 24px;
        font-size: 0.85rem;
        text-shadow: none;
    }
    
    /* Remove blur strips - text-shadow only for readability */
    .hero-center-content::before {
        display: none;
    }
    
    /* Ensure backdrop blur is removed on mobile */
    .center-glass-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* Reduce center column opacity on mobile */
    .marquee-column:nth-child(2) .media-card,
    .marquee-column:nth-child(3) .media-card {
        opacity: 1;
    }
    
    /* Additional mobile responsive styles */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .story-card {
        flex: 0 0 320px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 24px;
    }
    
    .timeline-item {
        flex: 1;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn {
        justify-content: center;
    }
}

/* Press Section */
.press-section {
    padding: 100px 20px;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: #29abe2;
    color: #29abe2;
}

.filter-tab.active {
    background: linear-gradient(135deg, #29abe2 0%, #1a8fc4 100%);
    color: white;
    border-color: transparent;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
}

.news-card.featured .news-image-wrapper {
    height: 320px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image {
    transform: scale(1.08);
}

.news-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.publication-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.news-year {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 600;
}

.news-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.news-excerpt {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-article-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #29abe2;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-article-btn:hover {
    gap: 12px;
}

.view-more-container {
    text-align: center;
    margin-top: 60px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #29abe2 0%, #1a8fc4 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(41, 171, 226, 0.2);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(41, 171, 226, 0.3);
}

/* Stories Section */
.stories-section {
    padding: 100px 20px;
    background: white;
}

.stories-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.stories-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

.story-card {
    flex: 0 0 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.story-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f3f4f6;
}

.story-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card:hover .story-thumbnail {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #29abe2;
    transition: all 0.3s ease;
}

.story-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.story-info {
    padding: 24px;
}

.creator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.creator-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.platform-icon {
    font-size: 1.2rem;
}

.store-location {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.story-caption {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.carousel-nav:hover {
    background: #29abe2;
    color: white;
    border-color: #29abe2;
}

.carousel-nav.prev {
    left: -24px;
}

.carousel-nav.next {
    right: -24px;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 20px;
    background: #f9fafb;
}

.timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 0;
    scrollbar-width: thin;
}

.timeline-item {
    flex: 0 0 280px;
    position: relative;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #29abe2 0%, #6aa82f 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.2);
}

.timeline-content {
    text-align: center;
    background: white;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #29abe2 0%, #6aa82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(41, 171, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(106, 168, 47, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #29abe2 0%, #1a8fc4 100%);
    color: white;
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #6aa82f 0%, #5a9626 100%);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-card.featured {
        grid-column: span 1;
    }
    
    .carousel-nav {
        display: none;
    }
}


@media (max-width: 480px) {
    .featured-hero-scattered {
        min-height: 500px;
    }
    
    .floating-card {
        width: 180px;
        padding: 14px;
    }
    
    .floating-card:nth-child(n+4) {
        display: none;
    }
    
    .center-glass-card {
        padding: 32px 24px;
        max-width: 95%;
    }
    
    .center-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }
    
    .center-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .center-cta-button {
        padding: 11px 24px;
        font-size: 0.9rem;
    }
    
    .card-image {
        height: 120px;
    }
    
    .card-headline {
        font-size: 0.8rem;
    }
    
    .card-logo {
        width: 28px;
        height: 28px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .story-card {
        flex: 0 0 280px;
    }
}

/* ========================================
   MOBILE-ONLY EDITORIAL CLEANUP
   Premium Static Architecture
   ======================================== */

@media (max-width: 768px) {
    
    /* Hide desktop 3D marquee on mobile */
    .marquee-perspective-wrapper {
        display: none;
    }
    
    /* Hide desktop hero on mobile */
    .desktop-hero-container {
        display: none !important;
    }
    
    /* Show mobile hero on mobile */
    .mobile-hero-editorial {
        display: flex !important;
        max-width: 500px;
        margin: 0 auto;
        position: relative;
        min-height: 70vh;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }
    
    /* Premium editorial hero background - Off-white base */
    .aceternity-hero {
        height: auto;
        min-height: 100vh;
        background: #f8fbfa;
        padding: 80px 20px 60px;
        position: relative;
        overflow: hidden;
    }
    
    /* Atmospheric lighting layers - Behind grid */
    .aceternity-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(ellipse 800px 600px at 15% 20%, rgba(41, 171, 226, 0.06) 0%, transparent 50%),
            radial-gradient(ellipse 700px 700px at 85% 45%, rgba(170, 235, 207, 0.08) 0%, transparent 55%),
            radial-gradient(ellipse 600px 400px at 50% 85%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
        pointer-events: none;
        z-index: 1;
        animation: atmosphericBreathing 22s ease-in-out infinite;
    }
    
    @keyframes atmosphericBreathing {
        0%, 100% { 
            opacity: 0.6;
        }
        50% { 
            opacity: 0.85;
        }
    }
    
    /* Premium blueprint grid - On top of lighting */
    .aceternity-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: 
            linear-gradient(rgba(41, 171, 226, 0.18) 1px, transparent 1px),
            linear-gradient(90deg, rgba(41, 171, 226, 0.18) 1px, transparent 1px),
            radial-gradient(circle at 0% 0%, rgba(41, 171, 226, 0.25) 2px, transparent 2px),
            radial-gradient(circle at 50px 0%, rgba(41, 171, 226, 0.25) 2px, transparent 2px),
            radial-gradient(circle at 0% 50px, rgba(41, 171, 226, 0.25) 2px, transparent 2px),
            radial-gradient(circle at 50px 50px, rgba(41, 171, 226, 0.25) 2px, transparent 2px);
        background-size: 50px 50px;
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
        pointer-events: none;
        z-index: 2;
        opacity: 0.75;
        animation: blueprintGlow 12s ease-in-out infinite;
    }
    
    @keyframes blueprintGlow {
        0%, 100% { 
            opacity: 0.65;
            background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
        }
        33% { 
            opacity: 0.85;
            background-position: 0 0, 0 0, 2px 2px, 0 0, 0 0, 2px 2px;
        }
        66% { 
            opacity: 0.7;
            background-position: 0 0, 0 0, 0 0, 2px 2px, 2px 2px, 0 0;
        }
    }
    
    /* Mobile editorial hero container */
    .mobile-hero-editorial {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }
    
    /* Floating Media Fragments - Editorial Clarity */
    .media-fragment {
        position: absolute;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(1.5px);
        -webkit-backdrop-filter: blur(1.5px);
        border: 1px solid rgba(41, 171, 226, 0.08);
        border-radius: 14px;
        padding: 11px 13px;
        box-shadow: 
            0 6px 24px rgba(0, 0, 0, 0.04),
            0 2px 12px rgba(0, 0, 0, 0.02);
        z-index: 1;
        pointer-events: none;
        transform: scale(0.95);
    }
    
    /* Fragment 1 - Article headline (top-right, no overlap) */
    .fragment-1 {
        top: -3%;
        right: -15%;
        max-width: 160px;
        transform: rotate(-6deg) scale(0.95);
        animation: floatFragment1 18s ease-in-out infinite;
        opacity: 0.68;
    }
    
    .fragment-text {
        font-size: 9.5px;
        line-height: 1.5;
        color: rgba(0, 0, 0, 0.65);
        margin: 0 0 5px 0;
        font-weight: 600;
        letter-spacing: -0.1px;
    }
    
    .fragment-source {
        font-size: 7.5px;
        color: rgba(41, 171, 226, 0.85);
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    /* Fragment 2 - LinkedIn snippet (bottom-left, no overlap) */
    .fragment-2 {
        bottom: -5%;
        left: -3%;
        max-width: 150px;
        opacity: 0.68;
        transform: rotate(5deg) scale(0.95);
        animation: floatFragment2 20s ease-in-out infinite;
    }
    
    .fragment-author {
        font-size: 8.5px;
        font-weight: 700;
        color: rgba(0, 0, 0, 0.7);
        margin: 0 0 4px 0;
        letter-spacing: -0.1px;
    }
    
    .fragment-snippet {
        font-size: 8px;
        line-height: 1.4;
        color: rgba(0, 0, 0, 0.55);
        margin: 0;
        font-weight: 500;
    }
    
    /* Barely-there float animations - atmospheric drift with depth */
    @keyframes floatFragment1 {
        0%, 100% { 
            transform: rotate(-6deg) scale(0.95) translateY(0px);
            opacity: 0.68;
        }
        50% { 
            transform: rotate(-6deg) scale(0.95) translateY(-2px);
            opacity: 0.75;
        }
    }
    
    @keyframes floatFragment2 {
        0%, 100% { 
            transform: rotate(5deg) scale(0.95) translateY(0px);
            opacity: 0.68;
        }
        50% { 
            transform: rotate(5deg) scale(0.95) translateY(2px);
            opacity: 0.75;
        }
    }
    
    /* Main content layer */
    .hero-content-layer {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 10px;
    }
    
    .mobile-hero-label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #29abe2;
        margin-bottom: 32px;
        opacity: 0.75;
        animation: labelFadeIn 1.2s ease-out;
    }
    
    @keyframes labelFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 0.75; transform: translateY(0); }
    }
    
    .mobile-hero-heading {
        font-size: 41px;
        font-weight: 800;
        line-height: 1.22;
        color: #0a0a0a;
        margin-bottom: 32px;
        letter-spacing: -1.2px;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        animation: headingFadeIn 1.4s ease-out 0.2s both;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    @keyframes headingFadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .mobile-hero-text {
        font-size: 15px;
        line-height: 1.65;
        color: #444;
        margin-bottom: 28px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 450;
        animation: textFadeIn 1.6s ease-out 0.4s both;
    }
    
    @keyframes textFadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .mobile-hero-recognition {
        font-size: 11.5px;
        line-height: 1.6;
        color: #666;
        margin-top: 36px;
        font-weight: 500;
        opacity: 0.7;
        letter-spacing: 0.2px;
        animation: recognitionFadeIn 1.8s ease-out 0.6s both;
    }
    
    @keyframes recognitionFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 0.7; transform: translateY(0); }
    }
    
    /* About section */
    .mobile-about-section {
        padding: 50px 20px;
        background: white;
        text-align: center;
    }
    
    .mobile-about-heading {
        font-size: 24px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .mobile-about-text {
        font-size: 15px;
        line-height: 1.7;
        color: #666;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Hide metrics */
    .metrics-section {
        display: none;
    }
    
    /* Press section */
    .press-section {
        padding: 40px 20px;
        background: #fafafa;
    }
    
    /* Hide desktop press wall on mobile */
    .press-section .press-wall {
        display: none;
    }
    
    .press-section .section-header {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .press-section .section-title {
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.25;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }
    
    .press-section .section-subtitle {
        font-size: 15px;
        color: #666;
        line-height: 1.5;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .filter-tabs {
        display: none;
    }
    
    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Editorial cards - Horizontal layout for mobile */
    .news-card {
        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        padding: 12px;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 12px;
        align-items: center;
    }
    
    .news-card-thumbnail {
        width: 72px;
        height: 72px;
        border-radius: 8px;
        overflow: hidden;
        background: #f8f8f8;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .news-card-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }
    
    .news-card-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .news-card-source {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #666;
        margin-bottom: 2px;
    }
    
    .news-card-title {
        font-size: 14px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.25;
        margin-bottom: 2px;
    }
    
    .news-card-excerpt {
        font-size: 12px;
        color: #666;
        line-height: 1.4;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .news-card-link {
        font-size: 11px;
        color: #29abe2;
        font-weight: 500;
    }
    
    /* LinkedIn cards - Horizontal layout for mobile */
    .linkedin-card {
        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        padding: 12px;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 12px;
        align-items: center;
    }
    
    .linkedin-card-thumbnail {
        width: 72px;
        height: 72px;
        border-radius: 8px;
        overflow: hidden;
        background: #f8f8f8;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .linkedin-card-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .linkedin-card-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .linkedin-card-header {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 2px;
    }
    
    .linkedin-icon {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #666;
    }
    
    .linkedin-card-title {
        font-size: 14px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.25;
        margin-bottom: 2px;
    }
    
    .linkedin-card-author {
        font-size: 12px;
        color: #666;
    }
    
    .linkedin-card-cta {
        font-size: 11px;
        color: #0077b5;
        font-weight: 500;
    }
    
    /* Video section */
    .stories-section {
        padding: 40px 20px;
        background: white;
    }
    
    .stories-section .section-header {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .stories-section .section-title {
        font-size: 26px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.25;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }
    
    .stories-section .section-subtitle {
        font-size: 15px;
        color: #666;
        line-height: 1.5;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Hide legacy carousel on mobile */
    .carousel-nav {
        display: none;
    }
    
    .stories-carousel {
        display: none;
    }
    
    /* Mobile media viewer fixes */
    .stories-carousel-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .active-media-card {
        position: relative;
        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .active-media-thumbnail {
        position: relative;
        width: 100%;
        aspect-ratio: 2/1;
        background: #f0f0f0;
    }
    
    .active-media-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Play button overlay on mobile */
    .active-media-thumbnail .play-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.9);
        z-index: 10;
        font-size: 20px;
        color: #29abe2;
    }
    
    .active-media-info {
        padding: 14px;
    }
    
    .active-media-platform {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #666;
        margin-bottom: 6px;
    }
    
    .active-media-title {
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.35;
    }
    
    /* Mobile navigation - centered below card */
    .media-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        margin-top: 20px;
    }
    
    .media-nav-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #e5e5e5;
        background: white;
        color: #29abe2;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        transition: all 0.2s ease;
    }
    
    .media-nav-btn:active {
        background: #f8f8f8;
        transform: scale(0.95);
    }
    
    /* Hide thumbnail dots on mobile */
    .media-thumbnails {
        display: none;
    }
    
    .stories-carousel {
        display: none !important;
    }
    
    .video-card {
        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .video-card-thumbnail {
        width: 100%;
        aspect-ratio: 2/1;
        object-fit: cover;
        background: #f0f0f0;
    }
    
    .video-card-content {
        padding: 14px;
    }
    
    .video-card-platform {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #666;
        margin-bottom: 6px;
    }
    
    .video-card-caption {
        font-size: 15px;
        font-weight: 500;
        color: #1a1a1a;
        line-height: 1.35;
    }
    
    /* Hide timeline */
    .timeline-section {
        display: none;
    }
    
    /* CTA section */
    .final-cta {
        padding: 60px 20px;
        background: linear-gradient(135deg, #f7fffb 0%, #f8fbff 100%);
        text-align: center;
    }
    
    .cta-particles {
        display: none;
    }
    
    .cta-title {
        font-size: 26px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 15px;
        color: #666;
        margin-bottom: 28px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-btn {
        padding: 16px 24px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .cta-btn.primary {
        background: linear-gradient(135deg, #29abe2, #1a8bb8);
        color: white;
        border: none;
    }
    
    .cta-btn.secondary {
        background: white;
        color: #29abe2;
        border: 2px solid #29abe2;
    }
    
    .view-more-container {
        display: none;
    }
}

/* ========================================
   EDITORIAL CREDIBILITY SECTION
   ======================================== */

.credibility-section {
    padding: 80px 24px;
    background: white;
}

.credibility-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.credibility-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.credibility-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.credibility-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Insight Cards - Desktop: 4 in a row */
.insight-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.insight-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.insight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #29abe2;
}

.insight-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.insight-heading {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
}

.insight-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .credibility-section {
        padding: 60px 20px;
    }
    
    .credibility-header {
        margin-bottom: 40px;
    }
    
    .credibility-title {
        font-size: 26px;
    }
    
    .credibility-subtitle {
        font-size: 15px;
    }
    
    .insight-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .insight-card {
        padding: 28px 20px;
    }
}
