/* =========================================
   MOBILE 3D PREMIUM STYLESHEET
   Ultra-Modern Layout with 3D Visuals
   ========================================= */

.desktop-only {
    display: block;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {

    /* Hide Desktop */
    .desktop-only,
    #desktop-view,
    .cursor-dot,
    .cursor-circle {
        display: none !important;
    }

    /* Show Mobile */
    .mobile-only,
    #mobile-view {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        min-height: 100vh;
        background: #050505;
        color: #f0f0f0;
        overflow-x: hidden;
        position: relative;
        font-family: var(--font-body);
    }

    /* Smooth scrolling for anchor links */
    html {
        scroll-behavior: smooth;
    }

    body {
        cursor: auto !important;
        background: #050505;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-font-smoothing: antialiased;
        -webkit-tap-highlight-color: transparent;
        /* CRITICAL: Ensure touch scrolling is never blocked */
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure all sections allow vertical scroll */
    section,
    .m-hero,
    .m-manifesto,
    .m-services-section,
    .m-school-section,
    .m-subs-section,
    .m-originals-section,
    .m-team-section,
    .m-form-section,
    .m-inspiration-section {
        touch-action: pan-y;
    }

    /* Variables */
    :root {
        --m-accent: #ff3333;
        --m-secondary: #7000ff;
        --m-bg: #050505;
        --m-surface: #111111;
        --m-border: rgba(255, 255, 255, 0.1);
        --font-heading: 'Syne', sans-serif;
        --font-body: 'Space Grotesk', sans-serif;
        --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* ===== PERFORMANCE OPTIMIZATIONS ===== */
    /* Isolate layout for heavy sections */
    .m-services-section,
    .m-school-section,
    .m-subs-section,
    .m-originals-section,
    .m-team-section,
    .m-inspiration-section {
        contain: content;
        /* Massive perf boost */
    }

    /* REMOVED will-change - causes GPU memory pressure on mobile leading to jank */
    /* Browser handles GPU acceleration automatically when transform is used */
    .m-3d-card,
    .kinetic-card-m,
    .sub-card-3d,
    .original-glass-card,
    .m-btn-3d,
    .team-card-m {
        transform: translateZ(0);
        /* will-change removed - it reserves GPU memory for ALL these elements at once */
    }

    /* ========================================================
       NUCLEAR OPTION: DISABLE ALL ANIMATIONS FOR SMOOTH SCROLL
       ======================================================== */
    /* This completely removes ALL CSS animations on mobile */
    *,
    *::before,
    *::after {
        animation: none !important;
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        transition-duration: 0.1s !important;
        /* Keep minimal transitions for tap feedback */
    }

    /* Hide animated elements that are now useless */
    .m-hero-3d,
    .m-hero-glow,
    .m-hero-bg-text,
    .hero-particles,
    .visual-pulse,
    .card-shine,
    .tag-glow,
    .btn-glow-trail,
    .form-glow-orb,
    .scroll-indicator::before,
    .manifesto-gradient,
    .loader-progress-bar {
        display: none !important;
    }

    /* Simplify scroll indicator */
    .scroll-indicator {
        margin-top: 3rem;
    }

    .scroll-mouse,
    .scroll-arrow {
        display: none;
    }

    .scroll-text {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    /* --- HERO ENTRANCE ANIMATION --- */
    /* CSS-based animation to prevent layout thrashing */
    @keyframes heroFadeIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- HERO ENTRANCE ANIMATION (Simplified) --- */
    .hero-animate-in {
        opacity: 1;
        /* Force visible immediately */
        transform: none;
    }

    /* Additional scroll performance optimizations */
    /* REMOVED content-visibility:auto which causes scroll jerks on first view */
    /* Using contain: layout style instead for smooth performance */
    .m-services-section,
    .m-school-section,
    .m-subs-section,
    .m-originals-section,
    .m-team-section,
    .m-inspiration-section,
    .m-form-section {
        contain: layout style;
    }

    /* Disable pointer events during scroll for smoother experience */
    .m-hero-3d,
    .hero-particles,
    .m-hero-glow,
    .m-hero-bg-text {
        pointer-events: none;
        display: none !important;
        /* Force hide unused elements */
    }

    /* Reduce paint complexity for background elements */
    .m-grid-overlay,
    .manifesto-gradient {
        will-change: auto;
        contain: strict;
    }

    /* --- ANIMATION UTILITIES --- */
    /* ===== HEADER ===== */
    .m-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        background: transparent;
        transition: background 0.2s ease;
    }

    .m-header.scrolled {
        background: rgba(5, 5, 5, 0.95);
        border-bottom: 1px solid var(--m-border);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .m-logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .m-logo img {
        height: 24px;
    }

    .m-logo span {
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.15rem;
        letter-spacing: -0.5px;
        color: #fff;
    }

    /* Header Button */
    .m-header-btn {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.4rem 1rem;
        background: transparent;
        border: 1px solid var(--m-accent);
        border-radius: 50px;
        color: var(--m-accent);
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 700;
        font-family: var(--font-heading);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }

    .m-header-btn:active {
        color: #000;
        background: var(--m-accent);
        transform: scale(0.95);
    }

    .m-header-btn span {
        position: relative;
        z-index: 1;
    }

    /* ===== HERO SECTION (Static optimized) ===== */
    .m-hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 1.5rem;
        padding-top: 80px;
        position: relative;
        overflow: hidden;
        width: 100%;
        background: radial-gradient(circle at 50% 40%, #1f0505 0%, #050505 80%);
    }

    .m-hero-bg-text {
        display: none;
        /* Hide heavy text element */
    }

    .m-hero-glow {
        display: none;
        /* Hide glow */
    }

    /* 3D Canvas */
    .m-hero-3d {
        display: none;
        /* Hide canvas */
    }

    .m-hero-content {
        z-index: 2;
        width: 100%;
        max-width: 500px;
        text-align: center;
        padding: 0 0.5rem;
    }

    .m-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.65rem;
        font-weight: 600;
        color: var(--m-accent);
        border: 1px solid rgba(255, 51, 51, 0.3);
        background: rgba(255, 51, 51, 0.05);
        padding: 0.6rem 1.2rem;
        border-radius: 100px;
        margin-bottom: 2rem;
        letter-spacing: 2px;
        position: relative;
        overflow: hidden;
    }

    .tag-glow {
        display: none;
        /* Removed animation */
    }

    .m-title {
        font-family: var(--font-heading);
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: #fff;
        letter-spacing: -0.02em;
        text-align: center;
        max-width: 100%;
        display: block;
        width: 100%;
    }

    .title-gradient {
        background: linear-gradient(135deg, #fff, #ff3333);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        width: 100%;
        padding: 0.2rem 1rem;
        box-sizing: border-box;
        overflow: visible;
        font-size: 1.15em;
    }

    .m-desc {
        color: #fff;
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 3rem;
    }

    .m-desc strong {
        color: var(--m-accent);
    }

    /* 3D Buttons */
    .m-cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .m-btn-3d {
        position: relative;
        padding: 1.2rem 2rem;
        border-radius: 50px;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        text-align: center;
    }

    /* --- ANIMATION CLASSES (Simplified to static) --- */
    .fade-up-on-scroll,
    .scale-on-scroll,
    .section-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .fade-up-on-scroll.scroll-active,
    .scale-on-scroll.scroll-active,
    .section-reveal.active {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Live background animation REMOVED */

    .hero-particles {
        display: none;
    }

    .m-btn-3d:active {
        transform: scale(0.95);
    }

    .m-btn-primary {
        background: var(--m-accent);
        color: #000;
        border: none;
    }

    .btn-glow-trail {
        display: none;
        /* Removed animation */
    }

    .m-btn-secondary {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Static Scroll Indicator */
    .scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 6rem;
        margin-bottom: 3rem;
        opacity: 1;
    }

    /* Hide complex scroll animations */
    .scroll-indicator::before,
    .scroll-mouse,
    .scroll-wheel,
    .scroll-arrow {
        display: none;
    }

    .scroll-text {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 700;
    }

    .scroll-arrow i:nth-child(2) {
        animation-delay: 0.2s;
    }

    @keyframes chevron-wave {

        0%,
        100% {
            opacity: 0.3;
            transform: translateY(-8px) scale(0.8);
        }

        50% {
            opacity: 1;
            transform: translateY(4px) scale(1);
        }
    }

    /* Additional glitch effect */
    .scroll-indicator::after {
        content: 'SCROLL';
        position: absolute;
        bottom: -30px;
        font-size: 0.6rem;
        color: var(--m-accent);
        letter-spacing: 4px;
        font-weight: 900;
        opacity: 0;
        animation: glitch-appear 4s ease-in-out infinite;
    }

    @keyframes glitch-appear {

        0%,
        85%,
        100% {
            opacity: 0;
            transform: translateY(0);
        }

        88% {
            opacity: 1;
            transform: translateY(-3px) translateX(-2px);
        }

        90% {
            opacity: 1;
            transform: translateY(-3px) translateX(2px);
        }

        92% {
            opacity: 1;
            transform: translateY(-3px) translateX(0);
        }

        94% {
            opacity: 0;
        }
    }

    /* Floating Particles - HIDDEN on mobile (only sphere visible) */
    .hero-particles {
        display: none !important;
        /* Hidden to keep only sphere visible on mobile */
    }

    /* ===== MANIFESTO (Stable Mobile Layout) ===== */
    .m-manifesto {
        position: relative;
        padding: 4rem 1.5rem;
        background: #050505;
        overflow: hidden;
        min-height: 40vh;
        /* Prevent collapse */
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Ensure no layout thrashing */
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Particles are hidden - no styles needed */
    .particle {
        display: none;
    }

    /* ===== MANIFESTO ===== */
    .m-manifesto {
        padding: 4rem 1.5rem;
        position: relative;
        text-align: center;
    }

    .manifesto-gradient {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, #111 0%, #050505 70%);
        z-index: 0;
    }

    .m-section-inner {
        position: relative;
        z-index: 1;
    }

    .m-reveal-title {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 9vw, 4rem);
        font-weight: 800;
        line-height: 1;
        margin-bottom: 2rem;
        /* REMOVED perspective and transform-style - causes scroll jank */
    }

    .reveal-line {
        display: block;
        color: #fff;
        /* REMOVED will-change - pre-allocates GPU memory causing jank */
    }

    .reveal-line.accent {
        color: var(--m-accent);
        /* REMOVED text-shadow glow - causes repaint on scroll */
    }

    .m-lead-text {
        font-size: 1.2rem;
        color: #ddd;
        margin-bottom: 2rem;
    }

    .divider-glow {
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--m-accent), transparent);
        margin: 2rem auto;
        /* REMOVED box-shadow glow - causes repaint */
    }

    .m-body-text {
        font-size: 0.95rem;
        color: #888;
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto;
    }

    .text-highlight {
        color: #fff;
        font-weight: 600;
    }

    /* Desktop-style Word Reveal Animation */
    .m-statement-reveal {
        font-size: 1.15rem;
        color: #666;
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .m-statement-reveal .word {
        display: inline-block;
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }

    .m-statement-reveal .word.active {
        opacity: 1;
        color: #ddd;
    }

    .m-statement-reveal .text-highlight {
        color: var(--m-accent);
        font-weight: 600;
        opacity: 1 !important;
    }

    /* ===== SERVICES - 3D CARDS ===== */
    .m-services-section {
        padding: 3rem 0;
    }

    .m-section-header {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }

    .m-mega-title {
        font-family: var(--font-heading);
        font-size: clamp(3rem, 8vw, 4rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 1rem;
        letter-spacing: -2px;
        text-transform: uppercase;
    }

    .m-subtitle {
        font-size: 1rem;
        color: #666;
        letter-spacing: 1px;
    }

    .m-3d-card-stack {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .m-3d-card {
        position: relative;
        border-radius: 24px;
        perspective: 1000px;
        transform-style: preserve-3d;
        transition: transform 0.6s var(--ease-out-expo);
    }

    .card-shine {
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
        z-index: 10;
    }

    .m-3d-card:active .card-shine {
        opacity: 1;
    }

    .card-border {
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255, 51, 51, 0.5), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: exclude;
        mask-composite: exclude;
    }

    .card-inner {
        position: relative;
        background: #0808 08;
        border-radius: 24px;
        overflow: hidden;
    }

    .card-visual {
        height: 200px;
        position: relative;
        overflow: hidden;
    }

    .card-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .m-3d-card:active .card-visual img {
        transform: scale(1.1);
    }

    .visual-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, #080808 0%, transparent 60%);
    }

    .card-number {
        position: absolute;
        top: 15px;
        right: 15px;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.1);
        z-index: 2;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }

    .service-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 1.5rem;
    }

    .tag-pill {
        font-size: 0.75rem;
        padding: 6px 14px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--m-border);
        border-radius: 100px;
        color: #aaa;
        font-weight: 500;
    }

    .card-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0.8rem 1.5rem;
        background: transparent;
        border: 1px solid var(--m-accent);
        color: var(--m-accent);
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s;
    }

    .card-cta:active {
        background: var(--m-accent);
        color: #000;
        transform: scale(0.95);
    }

    /* ===== SCHOOL - KINETIC CAROUSEL ===== */
    .m-school-section {
        padding: 3rem 0;
        position: relative;
    }

    .m-school-section .m-mega-title {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0 1.5rem;
        line-height: 0.9;
        position: relative;
    }

    .m-school-section .m-mega-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--m-accent), transparent);
        margin: 1.5rem auto 0;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
    }

    .kinetic-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 1.5rem 2rem;
        scroll-snap-type: none;
        /* Disable snap for seamless scroll */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: auto;
        /* Instant for smooth animation control */
        will-change: scroll-position;
    }

    .kinetic-carousel::-webkit-scrollbar {
        display: none;
    }

    .carousel-track {
        display: flex;
        gap: 1.5rem;
        will-change: transform;
    }

    .kinetic-card-m {
        flex: 0 0 85%;
        height: 420px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        scroll-snap-align: none;
        /* Disable snap points */
        border: 1px solid var(--m-border);
        transition: transform 0.3s ease;
    }

    .kinetic-card-m:active {
        transform: scale(0.98);
    }

    .kc-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.7;
    }

    .kc-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, #000 10%, transparent 60%);
    }

    .kc-content {
        position: absolute;
        bottom: 2rem;
        left: 0;
        right: 0;
        z-index: 2;
        padding: 0 0.5rem;
    }

    .kc-num {
        font-family: var(--font-heading);
        font-size: 0.8rem;
        color: #666;
        font-weight: 700;
        margin-bottom: 0.5rem;
        display: block;
    }

    .kc-content h3 {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        color: #fff;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .kc-content p {
        font-size: 0.85rem;
        color: #ccc;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .kc-btn {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        background: var(--m-accent);
        color: #000;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.2s;
    }

    .kc-btn:active {
        transform: scale(0.95);
    }

    /* ===== SUBSCRIPTIONS ===== */
    .m-subs-section {
        padding: 3rem 1.5rem;
    }

    .m-sub-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .sub-card-3d {
        position: relative;
        border-radius: 20px;
        background: #0a0a0a;
        border: 1px solid var(--m-border);
        overflow: hidden;
        transition: transform 0.3s;
    }

    .sub-card-3d.featured {
        border-color: var(--m-accent);
        transform: scale(1.02);
    }

    .sub-card-3d .active {
        transform: scale(0.98);
    }

    .sub-glow {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 51, 51, 0.1), transparent 70%);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .sub-card-3d.featured .sub-glow {
        opacity: 1;
    }

    .sub-inner {
        padding: 2rem 1.5rem;
    }

    .sub-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .sub-header h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
    }

    .sub-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 100px;
        color: #fff;
        font-weight: 700;
    }

    .sub-badge.accent {
        background: var(--m-accent);
        color: #000;
    }

    .sub-features {
        list-style: none;
        margin-bottom: 2rem;
    }

    .sub-features li {
        font-size: 0.95rem;
        color: #aaa;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sub-features i {
        color: var(--m-accent);
        font-size: 0.8rem;
    }

    .sub-cta {
        display: block;
        width: 100%;
        padding: 1rem;
        background: transparent;
        border: 1px solid var(--m-border);
        color: #fff;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s;
    }

    .sub-cta:active {
        background: var(--m-accent);
        color: #000;
        border-color: var(--m-accent);
    }

    /* ===== ORIGINALS - GLASSMORPHIC ===== */
    .m-originals-section {
        padding: 2rem 1.5rem;
        /* Reduced padding */
    }

    .originals-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        /* Reduced gap */
    }

    .original-glass-card {
        position: relative;
        min-height: 220px;
        border-radius: 20px;
        overflow: hidden;
        /* REMOVED backdrop-filter: blur(20px) - causes major scroll jank on mobile */
        background: rgba(15, 15, 15, 0.95);
        /* Solid background instead of blur effect */
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1rem;
        transition: background 0.3s ease, border-color 0.3s ease;
        /* Simpler transition */
    }

    .original-glass-card:active {
        border-color: rgba(255, 51, 51, 0.3);
        background: rgba(20, 20, 20, 0.98);
    }

    .glass-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at bottom right, rgba(255, 51, 51, 0.05), transparent);
    }

    .og-visual {
        position: relative;
        width: 50px;
        /* Smaller icon box */
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }

    .og-visual i {
        font-size: 1.2rem;
        /* Smaller icon */
        color: var(--m-accent);
    }

    .visual-pulse {
        /* REMOVED - infinite animation causes scroll jank */
        display: none;
    }

    .og-content h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.4rem;
        letter-spacing: -0.5px;
    }

    .og-content p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .og-label {
        display: inline-block;
        font-size: 0.7rem;
        color: #666;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    /* Claim Interest Button for Originals Cards - Redesigned */
    .og-claim-btn {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1rem;
        background: rgba(255, 0, 0, 0.05);
        border: 1px solid rgba(255, 51, 51, 0.2);
        border-radius: 12px;
        color: #fff;
        font-size: 0.8rem;
        font-weight: 700;
        font-family: var(--font-heading);
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-top: auto;
    }

    .og-claim-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(255, 51, 51, 0.2), transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .og-claim-btn:active {
        background: var(--m-accent);
        color: #000;
        border-color: var(--m-accent);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 51, 51, 0.3);
    }

    .og-claim-btn:active i {
        transform: translateX(5px);
    }

    .og-claim-btn span,
    .og-claim-btn i {
        position: relative;
        z-index: 1;
    }

    /* ===== INSPIRATION / THE REASON ===== */
    .m-inspiration-section {
        padding: 3rem 1.5rem;
        background: linear-gradient(to bottom, #050505 0%, #0a0a0a 50%, #050505 100%);
        position: relative;
        overflow: hidden;
    }

    .m-inspiration-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .m-inspiration-visual {
        position: relative;
        width: 100%;
        height: 350px;
        border-radius: 20px;
        overflow: hidden;
        background: #000;
    }

    .m-inspiration-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        border-radius: 20px;
        filter: grayscale(20%);
    }

    .img-glow {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(255, 51, 51, 0.2), transparent 70%);
        pointer-events: none;
    }

    .m-reason-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .m-reason-content .m-mega-title {
        text-align: left;
        margin-bottom: 0;
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .m-quote-box {
        position: relative;
        padding: 2rem 1.5rem;
        background: rgba(15, 15, 15, 0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        border-left: 3px solid var(--m-accent);
    }

    .m-quote-icon {
        font-size: 2rem;
        color: var(--m-accent);
        opacity: 0.3;
        margin-bottom: 1rem;
        display: block;
    }

    .m-quote-text {
        font-size: 1rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.8);
        font-style: italic;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .m-quote-author {
        font-size: 0.9rem;
        color: var(--m-accent);
        font-weight: 700;
        text-align: right;
        font-style: normal;
        letter-spacing: 1px;
    }


    /* ===== TEAM ===== */
    .m-team-section {
        padding: 3rem 1.5rem;
    }

    .team-grid-m {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-card-m {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--m-border);
        border-radius: 16px;
        transition: all 0.3s;
    }

    .team-card-m:active {
        transform: translateX(5px);
        border-color: var(--m-accent);
    }

    .tm-num {
        font-family: var(--font-heading);
        font-size: 0.9rem;
        color: #555;
        font-weight: 700;
    }

    .tm-info {
        flex: 1;
    }

    .tm-info h4 {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.3rem;
    }

    .tm-role {
        font-size: 0.7rem;
        color: #666;
        font-weight: 600;
    }

    .tm-icon {
        color: #fff;
        opacity: 0.3;
        transition: opacity 0.3s;
    }

    .team-card-m:active .tm-icon {
        opacity: 1;
    }

    /* ===== FORM (3D Floating) ===== */
    .m-form-section {
        padding: 3rem 1.5rem;
        position: relative;
    }

    .form-3d-container {
        position: relative;
        perspective: 1000px;
    }

    .form-glow-orb {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 51, 51, 0.2), transparent 70%);
        filter: blur(60px);
        pointer-events: none;
    }

    .form-inner {
        position: relative;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(20px);
        border: 1px solid var(--m-border);
        border-radius: 24px;
        padding: 2.5rem 1.5rem;
    }

    .m-mega-title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 5vw, 2.5rem);
        /* Reduced from 3.5rem */
        font-weight: 800;
        line-height: 0.9;
        margin-bottom: 2rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: -1px;
    }

    /* ... skipped ... */

    .form-title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 6vw, 2.8rem);
        /* Reduced from 3.5rem */
        font-weight: 800;
        line-height: 0.9;
        margin-bottom: 1rem;
        color: #fff;
    }

    .form-title span {
        color: var(--m-accent);
    }

    .form-subtitle {
        font-size: 0.95rem;
        color: #888;
        margin-bottom: 2.5rem;
        line-height: 1.5;
    }

    .premium-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-field {
        position: relative;
    }

    .form-field input {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid #333;
        padding: 1rem 0;
        color: #fff;
        font-size: 1.1rem;
        font-family: var(--font-body);
        outline: none;
        transition: border-color 0.3s;
    }

    .form-field input:focus {
        border-bottom-color: var(--m-accent);
    }

    .form-field label {
        position: absolute;
        left: 0;
        top: 1rem;
        font-size: 0.85rem;
        color: #666;
        transition: all 0.3s;
        pointer-events: none;
        letter-spacing: 1px;
    }

    .form-field input:focus+label,
    .form-field input:not(:placeholder-shown)+label {
        top: -10px;
        font-size: 0.7rem;
        color: var(--m-accent);
    }

    .field-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--m-accent);
        transition: width 0.3s;
    }

    .form-field input:focus~.field-line {
        width: 100%;
    }

    .form-submit-3d {
        position: relative;
        width: 100%;
        padding: 1.2rem;
        background: var(--m-accent);
        border: none;
        border-radius: 50px;
        color: #000;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        overflow: hidden;
        transition: transform 0.2s;
    }

    .form-submit-3d:active {
        transform: scale(0.98);
    }

    .submit-glow {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        transform: translateX(-100%);
        animation: submit-shine 3s infinite;
    }

    @keyframes submit-shine {
        to {
            transform: translateX(100%);
        }
    }

    /* Creative Form Styles (Desktop Match) */
    .creative-form {
        width: 100%;
    }

    .input-group {
        position: relative;
        margin-bottom: 2rem;
    }

    .input-group input {
        width: 100%;
        padding: 1rem 0;
        background: transparent;
        border: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 1rem;
        font-family: var(--font-body);
        transition: border-color 0.3s;
    }

    .input-group input:focus {
        outline: none;
        border-bottom-color: var(--m-accent);
    }

    .input-group label {
        position: absolute;
        top: 1rem;
        left: 0;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        pointer-events: none;
        transition: all 0.3s;
    }

    .input-group input:focus~label,
    .input-group input:not(:placeholder-shown)~label {
        top: -1.2rem;
        font-size: 0.7rem;
        color: var(--m-accent);
    }

    .line-glow {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--m-accent), #ff6666);
        transition: width 0.3s;
        box-shadow: 0 0 10px var(--m-accent);
    }

    .input-group input:focus~.line-glow {
        width: 100%;
    }

    /* Interest Tags */
    .interest-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .interest-tags .tag {
        padding: 0.6rem 1.2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: #999;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s;
        user-select: none;
    }

    .interest-tags .tag:active {
        transform: scale(0.95);
    }

    .interest-tags .tag.active {
        background: var(--m-accent);
        border-color: var(--m-accent);
        color: #000;
        box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
    }

    /* Transmit Button */
    .btn-transmit {
        position: relative;
        width: 100%;
        padding: 1.2rem;
        background: var(--m-accent);
        border: none;
        border-radius: 50px;
        color: #000;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
    }

    .btn-transmit:active {
        transform: scale(0.98);
    }

    .btn-transmit span {
        position: relative;
        z-index: 1;
    }

    .btn-glitch {
        display: none !important;
    }


    /* ===== MODERN BLENDED FOOTER ===== */
    .m-footer-premium {
        padding: 4rem 1.5rem 2rem;
        background: #020202;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
    }

    .footer-particles {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 30px 30px;
        pointer-events: none;
        opacity: 0.5;
    }

    .footer-content {
        position: relative;
        z-index: 2;
    }

    /* Footer Main Grid */
    .footer-main-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    /* Brand Column */
    .brand-col .footer-logo {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.5rem;
        letter-spacing: 2px;
        background: linear-gradient(to right, #fff, #555);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-tagline {
        color: #888;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 200px;
    }



    /* Column Headings */
    .footer-col h4 {
        font-family: var(--font-heading);
        font-size: 0.8rem;
        color: var(--m-accent);
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* Navigation */
    .footer-nav {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer-nav a {
        color: #aaa;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s;
    }

    .footer-nav a:active {
        color: var(--m-accent);
    }

    /* Contact Section */
    /* Modern Contact Section */
    .footer-contact-modern {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .m-contact-card {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        text-decoration: none;
        transition: all 0.3s;
        backdrop-filter: blur(8px);
    }

    .m-contact-card .card-icon {
        width: 48px;
        height: 48px;
        background: rgba(255, 51, 51, 0.1);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--m-accent);
        font-size: 1.2rem;
    }

    .m-contact-card .card-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .m-contact-card .label {
        font-size: 0.65rem;
        color: #777;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .m-contact-card .value {
        font-size: 0.95rem;
        color: #fff;
        font-weight: 500;
    }

    .m-contact-card:active {
        background: rgba(255, 51, 51, 0.05);
        border-color: var(--m-accent);
        transform: scale(0.98);
    }

    /* Phone Stack */
    .m-phone-stack {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .m-phone-item {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        padding: 1rem 1.2rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        color: #eee;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s;
    }

    .m-phone-item .p-tag {
        font-size: 0.6rem;
        font-weight: 800;
        background: rgba(255, 51, 51, 0.15);
        color: var(--m-accent);
        padding: 3px 6px;
        border-radius: 4px;
        letter-spacing: 1px;
    }

    .m-phone-item:active {
        background: rgba(255, 51, 51, 0.05);
        border-color: var(--m-accent);
        color: #fff;
        transform: translateX(5px);
    }



    @keyframes prismatic-wipe {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    @keyframes liquid-shine {
        to {
            background-position: 200% center;
        }
    }

    /* Bottom Meta */
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        /* Reduced gap */
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .copyright {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.6);
        /* White (slightly dimmed for hierarchy) */
        letter-spacing: 1px;
    }

    /* Modern Social Pills */
    .footer-social-inline {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-top: 0.5rem;
        /* Tighter spacing */
        width: 100%;
    }

    .m-social-pill {
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        color: #fff;
        font-size: 1.4rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(5px);
    }

    .m-social-pill:active {
        transform: scale(0.9) translateY(-6px);
        border-color: var(--m-accent);
        background: rgba(255, 51, 51, 0.1);
        box-shadow: 0 10px 25px rgba(255, 51, 51, 0.25);
    }

    .m-social-pill:active i {
        color: var(--m-accent);
        text-shadow: 0 0 15px var(--m-accent);
    }

    /* --- 6. SMALL SCREEN OPTIMIZATIONS (iPhone SE / 375x667) --- */
    @media (max-width: 380px) {

        /* Hero Scaling */
        .m-hero-title {
            font-size: 15vw;
        }

        .m-hero-sub {
            font-size: 1rem;
        }

        .m-brand-mark {
            top: 1.5rem;
            left: 1.5rem;
        }

        .m-menu-trig {
            top: 1.5rem;
            right: 1.5rem;
        }

        /* Tighter Spacing */
        .m-section {
            padding: 3rem 1rem;
        }

        /* Services Accordion */
        .m-acc-item {
            min-height: 60px;
        }

        .m-acc-item.active {
            min-height: 280px;
        }

        .m-acc-title {
            font-size: 1.5rem;
        }

        /* Typography */
        .m-mega-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .m-manifesto-text p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Team List */
        .m-team-name {
            font-size: 1.3rem;
        }

        .m-role-tag {
            font-size: 0.6rem;
            padding: 2px 6px;
        }

        /* Footer */
        .m-contact-card {
            padding: 1rem;
        }

        .m-phone-item {
            padding: 0.8rem;
            font-size: 0.85rem;
        }

        .footer-social-inline {
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .m-social-pill {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }
    }

    /* ===== HERO BUTTON GLASS FLASH ANIMATION ===== */
    .m-hero .m-btn-primary {
        background: rgba(255, 30, 30, 0.85) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 100, 100, 0.4) !important;
        color: #fff !important;
        overflow: hidden;
        position: relative;
        box-shadow: 0 4px 30px rgba(255, 0, 0, 0.2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .m-hero .m-btn-primary:active {
        transform: scale(0.95);
        background: rgba(255, 50, 50, 1) !important;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    }

    .m-hero .m-btn-primary span {
        z-index: 2;
        position: relative;
    }

    /* Flash Animation Element */
    .m-hero .m-btn-primary .btn-glow-trail {
        content: '';
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 300%;
        height: 100%;
        background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.9) 50%, transparent 60%);
        transform: skewX(-20deg) translateX(-150%);
        animation: glass-flash 2.5s infinite linear !important;
        z-index: 1;
        pointer-events: none;
        will-change: transform;
    }

    @keyframes glass-flash {
        0% {
            transform: skewX(-20deg) translateX(-150%);
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        80% {
            opacity: 1;
        }

        100% {
            transform: skewX(-20deg) translateX(150%);
            opacity: 0;
        }
    }

    /* ===== MOBILE LITE SCROLL REVEAL ===== */
    .m-scroll-reveal {
        opacity: 0 !important;
        transform: translateY(30px) !important;
        transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
        will-change: opacity, transform;
    }

    .m-scroll-reveal.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}