/* 
   Naganta Design System v2.0 
   Based on Neural-Labs Aesthetic
*/

:root {
    /* Colors - Evolución Corporativa */
    --primary-color: #3771f5;
    /* Electric Blue (Studio/Video) */
    --secondary-color: #dc2aec;
    /* Electric Magenta (IA/Nova) */
    --accent-color: #FFD700;
    /* Gold/Yellow (Dev/Systems) */
    --color-bg: #121212;
    /* Obsidian Black */

    --color-text-main: #f5f5f5;
    --color-text-sec: #f0f0f0;
    /* Higher contrast for readability */

    /* Fonts */
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-padding: 20px;
    --section-spacing: 120px;
    --header-height: 120px;

    /* Card Variables */
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);

    /* --- MODULE: Producción Audiovisual & IA --- */

    /* Hero Banner */
    .prod-hero {
        position: relative;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .video-bg-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradient animado como placeholder de video */
        background: linear-gradient(45deg, #050505, #1a1a1a, #050505);
        background-size: 400% 400%;
        animation: gradientBG 15s ease infinite;
        z-index: 1;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(5, 5, 5, 0.6);
        z-index: 2;
    }

    .prod-hero-content {
        position: relative;
        z-index: 3;
        max-width: 900px;
        padding: 0 20px;
    }

    .prod-hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 30px;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    }

    /* Quick Nav Grid */
    .quick-nav-section {
        padding: 40px 0;
        background: #080808;
        position: relative;
        z-index: 10;
        margin-top: -80px;
        /* Overlap effect */
    }

    .quick-nav-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .nav-card {
        text-align: center;
        padding: 25px 15px;
        background: rgba(30, 30, 30, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-card:hover {
        background: rgba(50, 50, 50, 0.9);
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .nav-icon {
        font-size: 2rem;
        margin-bottom: 15px;
        display: block;
    }

    /* Zig-Zag Content Blocks */
    .prod-block {
        padding: 100px 0;
        background: #050505;
        overflow: hidden;
    }

    .zig-zag-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .prod-block.reverse .zig-zag-grid {
        direction: rtl;
        /* Trick to swap columns visually */
    }

    .prod-block.reverse .zig-zag-grid>* {
        direction: ltr;
        /* Reset text direction */
    }

    .block-text {
        padding: 0 20px;
    }

    .block-visual {
        position: relative;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        /* Placeholder styles */
        background: #111;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .block-visual img,
    .block-visual video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
    }

    /* IA Factory */
    .ia-factory-section {
        padding: 150px 0;
        text-align: center;
        background: radial-gradient(circle at center, #1a2a1a 0%, #000 100%);
        position: relative;
        overflow: hidden;
    }

    .hex-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-opacity='0.05' fill='%23ccff00' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: pulseHex 4s infinite alternate;
    }

    @keyframes pulseHex {
        0% {
            opacity: 0.2;
            transform: scale(1);
        }

        100% {
            opacity: 0.4;
            transform: scale(1.05);
        }
    }

    /* Responsive */
    @media (max-width: 960px) {
        .prod-hero-title {
            font-size: 2.2rem;
        }

        .quick-nav-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .zig-zag-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .prod-block.reverse .zig-zag-grid {
            direction: ltr;
        }

        .block-visual {
            height: 250px;
            order: -1;
            /* Visual first on mobile */
        }
    }

    /* Producción Audiovisual Module Colors */
    --neon-cyan: #00f3ff;
    --neon-lime: #ccff00;
    --neon-magenta-hot: #ff00ff;
    --neon-gold: #FFD700;
}

/* Producción Module Utilities */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00f3ff 0%, #00aaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-magenta {
    background: linear-gradient(135deg, #ff00ff 0%, #bc13fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card-neon {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.glass-card-neon:hover {
    background: rgba(20, 20, 30, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.btn-neon-gold {
    background: transparent;
    border: 2px solid var(--neon-gold);
    color: var(--neon-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.btn-neon-gold:hover {
    background: var(--neon-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    /* Rounded but disciplined */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 48px;
    /* Mobile Thumb Rule */
}

/* Primary Button - High Conversion (Orange/Gold) */
.btn-primary {
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    color: #121212;
    /* Dark text for max contrast */
    border: none;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    /* Orange Glow */
    border-radius: 50px;
    /* Modern rounded pill shape */
    font-weight: 800;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    transform: translateY(-2px);
    color: #000;
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Secondary Button - Glassmorphism */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text-main);
    transform: translateY(-2px);
}

/* Header */
.main-header {
    position: fixed;
    /* Sticky/Fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(18, 18, 18, 0.7);
    /* More transparent for glassmorphism */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color)) 1;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container .logo {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
    mix-blend-mode: screen;
    /* Removes black background */
}

.logo-container .logo:hover {
    transform: scale(1.05);
}

/* Navigation - Center */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 10px 0;
    /* Increase touch area/hover safe zone */
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-main);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    cursor: pointer;
    display: block;
}

/* Brand Colors Interactions - Hover Logic */
.group-studio:hover .nav-link {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(44, 84, 236, 0.5);
}

.group-nova:hover .nav-link {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(220, 42, 236, 0.5);
}

.group-systems:hover .nav-link {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 10px 0;

    /* Animation States */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

    z-index: 1100;
}

/* Pillar Specific Borders for Dropdowns */
/* Pillar Specific Borders for Dropdowns (Gradient Effect) */
.group-studio .dropdown-menu {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) 1 0 0 0;
}

.group-nova .dropdown-menu {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--secondary-color), var(--accent-color)) 1 0 0 0;
}

.group-systems .dropdown-menu {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #FF4500, var(--accent-color)) 1 0 0 0;
}

/* Show Dropdown on Hover */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--color-text-sec);
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.dropdown-menu li a:hover {
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 24px;
    /* Slight nudge effect */
}

/* Header Right - CTA & Mobile Btn */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-cta-header {
    padding: 10px 24px;
    font-size: 0.85rem;
    min-height: auto;
    /* Override default if needed */
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    text-align: center;
    overflow: hidden;
}

/* Abstract Background Glow */
.hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle at center, rgba(220, 42, 236, 0.1) 0%, rgba(44, 84, 236, 0.1) 40%, rgba(18, 18, 18, 0) 70%);
    z-index: -1;
    filter: blur(60px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-title {
    font-size: 2.5rem;
    /* Reduced to ~half size as requested */
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--color-text-main);
    max-width: 900px;
    text-transform: uppercase;
}



.hero-concept {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-sec);
    max-width: 700px;
    font-family: var(--font-body);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

/* Services Section */
.services-section {
    padding: var(--section-spacing) 0;
    position: relative;
    z-index: 10;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    border: 2.5px solid transparent;
    /* Neon Gradient Border */
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    /* Aligned like reference */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;

    /* Advanced Gradient Border Technique */
    background-image: linear-gradient(var(--color-bg), var(--color-bg)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
}

.service-card h2 {
    font-size: 1.25rem;
    color: var(--color-text-main);
    margin: 0;
    text-transform: none;
    /* More modern than total uppercase */
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--color-text-sec);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.btn-text {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Cinematic Hover Effects (Glow + Lift) */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.service-card:hover .card-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.service-card:hover .btn-text {
    opacity: 1;
    transform: translateX(5px);
}

/* Specific Card Branding - The Portal Effect */

/* Studio (Royal Blue) */
.card-studio {
    background-image: linear-gradient(var(--color-bg), var(--color-bg)),
        linear-gradient(135deg, rgba(44, 84, 236, 0.1), var(--primary-color));
}

.card-studio .card-icon {
    color: var(--primary-color);
}

.card-studio:hover {
    box-shadow: 0 0 50px rgba(55, 113, 245, 0.3), inset 0 0 20px rgba(55, 113, 245, 0.2);
    transform: translateY(-8px);
}


/* Nova (Electric Magenta) */
.card-nova {
    background-image: linear-gradient(var(--color-bg), var(--color-bg)),
        linear-gradient(135deg, rgba(220, 42, 236, 0.1), var(--secondary-color));
}

.card-nova .card-icon {
    color: var(--secondary-color);
}

.card-nova:hover {
    box-shadow: 0 0 40px rgba(220, 42, 236, 0.25), inset 0 0 20px rgba(220, 42, 236, 0.15);
    transform: translateY(-8px);
}


/* Systems (Gold/Yellow) */
.card-systems {
    background-image: linear-gradient(var(--color-bg), var(--color-bg)),
        linear-gradient(135deg, rgba(255, 215, 0, 0.1), var(--accent-color));
}

.card-systems .card-icon {
    color: var(--accent-color);
}

.card-systems:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.25), inset 0 0 20px rgba(255, 215, 0, 0.15);
    transform: translateY(-8px);
}

/* Mobile Responsiveness */
@media (max-width: 960px) {

    /* Tablet Breakpoint */
    .mobile-menu-btn {
        display: flex;
    }

    .btn-cta-header {
        display: none;
        /* Hide header CTA on mobile/tablet to save space, rely on menu one or hero */
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 20px;
        display: block;
    }


    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        opacity: 1;
        visibility: visible;
        display: none;
        /* Hidden by default on mobile */
        border: none;
        border-radius: 0;
        padding: 0;
    }

    /* Show dropdown when active class triggered (JS) or just simply list them */
    .nav-item.active .dropdown-menu {
        display: block;
    }

    /* Make mobile Interaction easier: just list them for simplicity or use specific class */
    .dropdown-menu li a {
        padding: 15px;
        font-size: 1rem;
        color: var(--color-text-sec);
    }

    /* Reuse standard animations for hamburger */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.2rem;
        /* Adjusted for mobile */
    }

    .hero-subtitle-line {
        font-size: 0.9rem;
    }

    .hero-concept {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .btn {
        width: 100%;
        /* Full width rule */
    }
}

/* ADN Corporativo (Glass & Geometry Redesign) */
.adn-section {
    padding: var(--section-spacing) 0;
    background: #121212;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.adn-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.adn-glass-card {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 1100px;
    margin: 0 auto;
}

.adn-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.adn-text-col {
    text-align: left;
}

.adn-tag {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.adn-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.25;
}

.adn-description {
    font-size: 1.05rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 40px;
}

.adn-pillars {
    display: flex;
    gap: 32px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pillar-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.pillar-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

/* Visual Column / Abstract Orb */
.adn-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-orb {
    width: 280px;
    height: 280px;
    position: relative;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(55, 113, 245, 0.1) 0%, rgba(220, 42, 236, 0.05) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatingOrb 6s ease-in-out infinite;
}

.orb-inner {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px dashed rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: rotateOrb 15s linear infinite;
}

.chip-svg {
    width: 120px;
    height: 120px;
    color: #fff;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(55, 113, 245, 0.5));
}

@keyframes floatingOrb {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotateOrb {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Manifesto */
@media (max-width: 960px) {
    .adn-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .adn-text-col {
        text-align: center;
    }

    .adn-pillars {
        justify-content: center;
        flex-wrap: wrap;
    }

    .adn-visual-col {
        display: none;
        /* Hide visual on mobile for clarity */
    }

    .adn-glass-card {
        padding: 40px 20px;
    }
}