:root {
    --c-primary: #1B3C35;
    --c-accent: #C5A059;
    --c-bg: #FDFCF8;
    --c-bg-dark: #0D1B16;
    --c-text: #222222;
    --c-muted: #666666;
    --c-white: #FFFFFF;
    --f-main: 'Outfit', sans-serif;
    --f-accent: 'Playfair Display', serif;
    --f-quote: 'Cormorant Garamond', serif;
    --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--f-main);
    background-color: var(--c-bg);
    color: var(--c-text);
    overflow-x: hidden;
    scroll-behavior: auto !important;
    /* Managed by Lenis */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden !important;
}

i {
    font-family: var(--f-accent);
    font-style: italic;
}

.container {
    max-width: 1400px;
    margin: 0;
    padding: 0 4vw;
}

/* --- Loader --- */
.loader-wrap {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left, rgb(61 215 187) 0%, transparent 40%), radial-gradient(circle at bottom right, rgb(139 44 132) 0%, #000000 40%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    color: white;
    font-size: 5vw;
    font-weight: 900;
    margin-bottom: 30px;
}

.loader-logo span {
    font-size: 35px;
    color: #0aa355;
}

.loader-progress {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #0aa355;
}

.loader-status {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* --- Navigation --- */
.master-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 0;
    transition: all 0.6s var(--ease-lux);
}

.master-nav.scrolled {
    padding: 20px 0;
    background: rgba(253, 252, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    color: var(--c-primary);
    letter-spacing: -1.5px;
    transition: all 0.4s var(--ease-lux);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo span {
    font-size: 18px;
    color: #0aa355;
    transition: color 0.4s var(--ease-lux);
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo:hover span {
    color: var(--c-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--c-text);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
    transition: color 0.4s var(--ease-lux);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease-lux);
}

.nav-links a:hover {
    color: var(--c-primary);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary-lux {
    background: var(--c-primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: 100px;
}

.btn-portal-glow {
    background: linear-gradient(135deg, #0aa355 0%, #064e2b 100%);
    color: white !important;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(10, 163, 85, 0.2);
    transition: all 0.5s var(--ease-lux);
}

.btn-portal-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s var(--ease-lux);
}

.btn-portal-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(10, 163, 85, 0.4), 0 0 15px rgba(10, 163, 85, 0.6);
    letter-spacing: 3px !important;
}

.btn-portal-glow:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.menu-open-lux {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.menu-open-lux span {
    width: 30px;
    height: 2px;
    background: var(--c-primary);
    transition: all 0.4s var(--ease-lux);
    transform-origin: center;
}

.menu-open-lux.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    background: white;
}

.menu-open-lux.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
    background: white;
}

.mobile-menu-lux {
    display: none;
}

@media (max-width: 768px) {
    .menu-open-lux {
        display: flex;
    }
}


/* --- Section Utils --- */
section,
header,
footer {
    will-change: transform, opacity;
}

.v-tag {
    color: var(--c-accent);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 25px;
}

.v-title {
    font-family: var(--f-accent);
    font-size: 6vw;
    line-height: 0.95;
    margin-bottom: 35px;
    color: inherit;
    letter-spacing: -2px;
}

.v-desc {
    color: inherit;
    opacity: 0.6;
    line-height: 1.8;
    margin-bottom: 50px;
    font-size: 1.1vw;
}

/* --- 1. Hero --- */
.hero-v2 {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--c-bg) 20%, transparent 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--c-accent);
    color: white;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 10vw;
    line-height: 0.85;
    font-weight: 900;
    color: var(--c-primary);
    letter-spacing: -6px;
}

.hero-title span {
    display: block;
    overflow: hidden;
}

.hero-sub {
    max-width: 500px;
    font-size: 1.1vw;
    color: var(--c-muted);
    margin: 40px 0;
    line-height: 1.8;
}

.btn-main-lux {
    background: var(--c-primary);
    color: white;
    border: none;
    padding: 24px 50px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 4vw;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hint-line {
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hint-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-accent);
    animation: scrollLine 2s infinite var(--ease-lux);
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* --- 2. Philosophy (NEW) --- */
/* --- 2. Bio-Digital Archive (Philosophy v3) --- */
.philosophy-v3 {
    padding: 12vw 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.phil-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 120px;
    align-items: center;
}

.theory-stamp {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #0aa355;
    margin-bottom: 25px;
    opacity: 0.6;
}

.phil-title-lux {
    font-family: var(--f-accent);
    font-size: 5.5vw;
    line-height: 1;
    margin-bottom: 40px;
    color: var(--c-primary);
    letter-spacing: -2px;
}

.phil-title-lux i {
    font-weight: 400;
}

.description-text {
    font-size: 1.2vw;
    color: var(--c-muted);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 500px;
}

.theory-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.tf-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.tf-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0aa355;
    font-size: 20px;
    flex-shrink: 0;
}

.tf-text h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--c-primary);
}

.tf-text p {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.5;
}

.phil-stat-line {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.mini-stat {
    font-size: 12px;
    color: var(--c-muted);
    letter-spacing: 1px;
}

.mini-stat b {
    color: var(--c-primary);
    font-size: 16px;
    margin-right: 5px;
}

/* Specimen Chamber Visual */
.phil-visual-container {
    position: relative;
    z-index: 2;
}

.specimen-chamber {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
    line-height: 0;
}

.chamber-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.specimen-img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.8) contrast(1.1);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #0aa355, transparent);
    box-shadow: 0 0 20px rgba(10, 163, 85, 0.5);
    z-index: 3;
    animation: scanMove 4s infinite linear;
}

@keyframes scanMove {
    0% {
        top: -2%;
    }

    100% {
        top: 102%;
    }
}

/* Data Tags */
.data-tag {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tag-dot {
    width: 12px;
    height: 12px;
    background: #0aa355;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(10, 163, 85, 0.6);
    cursor: pointer;
}

.tag-info {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(10, 163, 85, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-width: 140px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.5s var(--ease-lux);
}

.data-tag:hover .tag-info {
    transform: translateX(0);
    opacity: 1;
}

/* Always show Info on scroll reveal (controlled by JS) */
.data-tag.is-visible .tag-info {
    transform: translateX(0);
    opacity: 1;
}

.tag-info .label {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--c-muted);
}

.tag-info .value {
    font-size: 13px;
    font-weight: 800;
    color: var(--c-primary);
}

.visual-deco {
    position: absolute;
    inset: -40px;
    z-index: -1;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 1px solid rgba(10, 163, 85, 0.05);
    border-radius: 50%;
}

.deco-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(10, 163, 85, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* --- 3. Core 3D --- */
.core-3d-section {
    padding: 15vw 0;
    position: relative;
    background: var(--c-bg-dark);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#three-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.core-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.core-features {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.feat-item h3 {
    font-size: 40px;
    color: var(--c-accent);
    display: inline-block;
}

.feat-item .suffix {
    font-size: 20px;
    color: var(--c-accent);
}

.feat-item p {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
}

/* --- 4. Synthesis (NEW) --- */
.synthesis-lux {
    padding: 15vw 0;
    background: #F8F7F2;
}

.section-head-lux {
    text-align: center;
    margin-bottom: 100px;
}

.synthesis-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: white;
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.step-num {
    font-size: 40px;
    font-family: var(--f-accent);
    color: var(--c-accent);
    margin-bottom: 30px;
    opacity: 0.3;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--c-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Themes Section (The Ethereal Horizon) --- */
.themes-section-lux {
    padding: 10vw 0;
    background: #000;
    overflow: hidden;
    position: relative;
    background-image:
        radial-gradient(circle at 0% 0%, rgb(10 163 85) 0%, transparent 40%), radial-gradient(circle at 100% 100%, rgb(10 163 85) 0%, transparent 40%)
}

.themes-section-lux .v-title {
    color: white;
    font-size: 7vw;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.themes-section-lux .v-desc {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1vw;
    letter-spacing: 2px;
}

.themes-section-lux .v-title {
    color: white;
}

.themes-section-lux .v-desc {
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 20px auto 0;
}

.themes-section-lux .v-title {
    color: white;
}

.themes-section-lux .v-desc {
    color: rgba(255, 255, 255, 0.5);
}

.phones-display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
    height: 600px;
    position: relative;
    width: 100%;
    perspective: 2000px;
    /* Enhanced perspective for 3D fan out */
}

.phone-item {
    position: relative;
    width: 200px;
    /* Slightly slimmer for tighter grouping */
    height: 420px;
    transition: transform 0.6s var(--ease-lux), filter 0.6s var(--ease-lux);
    cursor: pointer;
    margin: 0 -70px;
    /* Increased overlap to reduce gaps */
    transform-style: preserve-3d;
    will-change: transform, opacity;
    /* Performance boost */
}

/* Theme Secondary Glows - Simplified for performance */
.phone-item::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--theme-color) 0%, transparent 70%);
    opacity: 0.1;
    transition: opacity 0.6s;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
}

.phone-item:hover::before {
    opacity: 0.3;
}

.theme-forest {
    --theme-color: #00ff7e;
    --theme-rgb: 0, 255, 126;
}

.theme-volcanic {
    --theme-color: #ff4500;
    --theme-rgb: 255, 69, 0;
}

.theme-snow {
    --theme-color: #00f2ff;
    --theme-rgb: 0, 242, 255;
}

.theme-mist {
    --theme-color: #f0f0f0;
    --theme-rgb: 240, 240, 240;
}

.theme-original {
    --theme-color: #c5a059;
    --theme-rgb: 197, 160, 89;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    /* More opaque, less filter needed */
    backdrop-filter: blur(10px);
    /* Reduced blur for performance */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, background 0.4s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.phone-item:hover .phone-frame {
    border-color: var(--theme-color);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(var(--theme-rgb), 0.2);
    background: rgba(10, 10, 10, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    filter: brightness(0.6);
    transition: filter 0.6s, transform 0.6s;
    margin: 3px;
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    will-change: transform, filter;
}

.phone-item:hover .phone-screen {
    filter: brightness(1) grayscale(0);
    transform: scale(1.02);
}

/* Top Notch / Dynamic Island */
.phone-frame::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* External HUD Labels */
.phone-hud {
    position: absolute;
    top: -40px;
    left: 20px;
    color: var(--theme-color);
    font-family: var(--f-main);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.5s var(--ease-lux);
    text-shadow: 0 0 10px var(--theme-color);
    white-space: nowrap;
}

.phone-item:hover .phone-hud {
    opacity: 1;
    transform: translateY(0);
}

.hud-details {
    position: absolute;
    bottom: -50px;
    right: 20px;
    text-align: right;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.5s var(--ease-lux);
}

.phone-item:hover .hud-details {
    opacity: 0.6;
    transform: translateY(0);
}

.hud-details span {
    display: block;
    font-size: 8px;
    color: white;
    letter-spacing: 1px;
}

.screen-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-lux);
}

.phone-item:hover .screen-overlay {
    opacity: 1;
    transform: translateY(0);
}

.screen-overlay h4 {
    color: white;
    font-size: 32px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.screen-overlay p {
    color: var(--theme-color);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
}

.biome-index {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.02);
    line-height: 0.8;
    pointer-events: none;
    transition: 1s var(--ease-lux);
}

.phone-item:hover .biome-index {
    color: rgba(var(--theme-rgb), 0.05);
    transform: translate(-50%, -50%) scale(1.2);
}

.eco-showcase-lux {
    padding: 15vw 0;
    position: relative;
    background: #020604;
    color: white;
    overflow: hidden;
}

#universe-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

.universe-overlay {
    position: relative;
    z-index: 2;
}

.eco-grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    perspective: 2000px;
}

.eco-card-v3 {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 80px 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.8s var(--ease-lux);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.eco-card-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(10, 163, 85, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 1;
}

.eco-card-v3::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 40%, rgba(10, 163, 85, 0.2));
    -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: xor;
    mask-composite: exclude;
    transition: all 0.6s var(--ease-lux);
}

.eco-card-v3:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg);
    border-color: rgba(10, 163, 85, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(10, 163, 85, 0.1);
}

.eco-card-v3:hover::before {
    opacity: 1;
}

.eco-card-v3:hover::after {
    background: linear-gradient(135deg, #0aa355, transparent 50%, #C5A059);
}

.card-visual-lux {
    width: 80px;
    height: 80px;
    background: rgba(10, 163, 85, 0.05);
    border: 1px solid rgba(10, 163, 85, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--c-accent);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    transition: all 0.5s var(--ease-lux);
}

.eco-card-v3:hover .card-visual-lux {
    background: #0aa355;
    color: white;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(10, 163, 85, 0.3);
}

.card-body {
    position: relative;
    z-index: 2;
}

.eco-card-v3 h3 {
    font-family: var(--f-accent);
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-weight: 500;
}

.eco-card-v3 p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.card-link {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-accent);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.card-link i {
    font-size: 12px;
    transition: transform 0.4s var(--ease-lux);
}

.eco-card-v3:hover .card-link {
    color: #fff;
    letter-spacing: 6px;
}

.eco-card-v3:hover .card-link i {
    transform: translateX(15px);
}

/* --- 6. Impact (NEW) --- */
.impact-v4 {
    padding: 10vw 0;
    background: radial-gradient(circle at top right, #8b8b8b 10%, white 85%);
    position: relative;
    overflow: hidden;
}

.impact-header {
    text-align: center;
    margin-bottom: 80px;
}

.impact-grid-lux {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.impact-card {
    opacity: 1 !important;
    background: #f8fbf9;
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(10, 163, 85, 0.05);
    transition: all 0.6s var(--ease-lux);
    position: relative;
}

.impact-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-color: rgba(10, 163, 85, 0.1);
}

.impact-card.active {
    background: var(--c-primary);
    color: white;
}

.impact-card.active .impact-label {
    color: rgba(255, 255, 255, 0.6);
}

.impact-card.active .impact-detail {
    color: rgba(255, 255, 255, 0.4);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 163, 85, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0aa355;
    margin-bottom: 30px;
    transition: 0.5s;
}

.impact-card.active .impact-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #00ff95;
}

.impact-val-wrap {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.huge-stat {
    font-size: 5vw;
    font-weight: 950;
    line-height: 1;
    color: var(--c-primary);
}

.impact-card.active .huge-stat {
    color: white;
}

.stat-suffix {
    font-size: 2vw;
    font-weight: 800;
    color: #0aa355;
}

.impact-card.active .stat-suffix {
    color: #00ff95;
}

.impact-label {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 15px;
}

.impact-detail {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-muted);
}

.impact-bar-lux {
    max-width: 800px;
    margin: 0 auto;
}

.bar-progress-container {
    width: 100%;
    height: 6px;
    background: #f0f4f2;
    border-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.bar-fill-lux {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, #0aa355, #00ff95);
    border-radius: 100px;
    transform: scaleX(0);
    transform-origin: left;
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--c-muted);
}

/* --- 7. Final Reveal --- */
/* --- 7. Final Reveal (Premium Light Theme) --- */
.final-reveal-lux {
    padding: 10vw 0;
    background: radial-gradient(circle at top left, #00adff 29%, #fff 30%);
    color: var(--c-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reveal-blobs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(120px);
    opacity: 0.12;
    border-radius: 50%;
}

.b-1 {
    width: 800px;
    height: 800px;
    background: #0aa355;
    top: -300px;
    left: -200px;
    animation: blobMove 25s infinite alternate ease-in-out;
}

.b-2 {
    width: 600px;
    height: 600px;
    background: var(--c-accent);
    bottom: -200px;
    right: -100px;
    animation: blobMove 30s infinite alternate-reverse ease-in-out;
}

@keyframes blobMove {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(100px, 80px) scale(1.1) rotate(30deg);
    }
}

.reveal-inner {
    position: relative;
    z-index: 2;
}

.reveal-title-lux {
    font-family: var(--f-accent);
    font-size: 9vw;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 40px;
    color: var(--c-primary);
    text-transform: none;
}

.reveal-title-lux i {
    color: #0aa355;
    font-family: var(--f-accent);
    font-style: italic;
    font-weight: 400;
}

.reveal-desc-lux {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.3vw;
    color: var(--c-muted);
    line-height: 1.7;
    opacity: 0.7;
}

.reveal-cta-group {
    margin-bottom: 100px;
}

.reveal-inner .btn-main-lux {
    margin: 0 auto;
    background: var(--c-primary);
    color: white;
    border: none;
    padding: 26px 65px;
    font-size: 15px;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(27, 60, 53, 0.15);
    transition: all 0.6s var(--ease-lux);
}

.reveal-inner .btn-main-lux:hover {
    background: #0aa355;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 35px 70px rgba(10, 163, 85, 0.2);
    color: white;
}

.reveal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.metric-item {
    background: rgba(27, 60, 53, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(27, 60, 53, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.5s var(--ease-lux);
}

.metric-item:hover {
    background: rgba(27, 60, 53, 0.05);
    transform: translateY(-5px);
    border-color: rgba(10, 163, 85, 0.2);
}

.m-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--c-muted);
    text-transform: uppercase;
}

.m-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--c-primary);
    font-family: var(--f-accent);
    letter-spacing: -2px;
}

.metric-divider {
    display: none;
}

/* --- Footer --- */
.footer-lux {
    padding: 15vw 0 0;
    background: #000000;
    color: white;
    position: relative;
}

.footer-grid-lux {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 3vw;
}

.f-brand p {
    margin-top: 25px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 300px;
}

.logo-lux {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
}

.logo-lux span {
    font-size: 25px;
    color: #0aa355;

}

.f-socials {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.f-socials a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.4s var(--ease-lux);
}

.f-socials a:hover {
    background: var(--c-accent);
    color: black;
    border-color: var(--c-accent);
    transform: translateY(-5px);
}

.f-nav-lux h5 {
    font-family: var(--f-main);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-accent);
    margin-bottom: 40px;
}

.f-nav-lux a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.f-nav-lux a:hover {
    color: white;
}

.f-newsletter h5 {
    font-family: var(--f-main);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-accent);
    margin-bottom: 40px;
}

.f-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
}

.news-line {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.news-line input {
    background: transparent;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.news-line button {
    background: transparent;
    border: none;
    color: var(--c-accent);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-bottom-lux {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

.footer-bottom-lux .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links-lux {
    display: flex;
    gap: 40px;
}

.legal-links-lux a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links-lux a:hover {
    color: white;
}

/* --- Name Reveal Section --- */
/* --- 7.5 The Zenith Protocol (PREMIUM PERFECTION) --- */
.zenith-section-lux {
    padding: 15vw 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.zenith-arch-bg {
    position: absolute;
    inset: 0;
    background-size: 30px 30px, 100% 100%, 100% 100%;
    background-image: radial-gradient(circle, rgb(0 0 0) 0.8px, #ffffff00 1px), radial-gradient(circle at left top, #00a651 0%, #ffffff00 50%), radial-gradient(circle at right bottom, #00a651 0%, #ffffff00 50%);

}

.zenith-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8vw;
    align-items: center;
}

.zenith-stamp {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #000000;
    margin-bottom: 25px;
}

.zenith-specs {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #56ff00;
    width: 300px;
}

.s-label {
    font-size: 9px;
    font-weight: 900;
    color: #000000;
    letter-spacing: 2px;
}

.s-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-primary);
}

.zenith-live-status {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 60px;
}

.zenith-pulse {
    position: relative;
    width: 14px;
    height: 14px;
}

.pulse-core {
    width: 100%;
    height: 100%;
    background: #0aa355;
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

.pulse-wave {
    position: absolute;
    inset: -100%;
    background: rgba(10, 163, 85, 0.2);
    border-radius: 50%;
    animation: zenithPulse 2.5s infinite;
}

@keyframes zenithPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.zenith-status-text h6 {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--c-primary);
    margin-bottom: 4px;
}

.zenith-status-text p {
    font-size: 10px;
    color: #999;
}

/* --- THE DEVICE: PIXEL-PERFECT HARDWARE --- */
.zenith-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zenith-phone-system {
    position: relative;
    z-index: 10;
}

.zenith-device {
    width: 320px;
    height: 660px;
    position: relative;
    background: #e5e5e5;
    border-radius: 60px;
    padding: 1px;
    box-shadow:
        0 80px 150px rgba(0, 0, 0, 0.08),
        inset 0 0 4px rgba(255, 255, 255, 1);
    transition: transform 0.8s var(--ease-lux);
}

.device-buttons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.btn {
    position: absolute;
    background: #e0e0e0;
    border-radius: 2px;
}

.power {
    right: -2px;
    top: 180px;
    width: 3px;
    height: 60px;
}

.volume-up {
    left: -2px;
    top: 140px;
    width: 3px;
    height: 35px;
}

.volume-down {
    left: -2px;
    top: 185px;
    width: 3px;
    height: 35px;
}

.device-body {
    width: 130%;
    height: 115%;
    background: #ffffff;
    /* Titanium White Finish */
    border-radius: 53px;
    padding: 7px;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.device-screen-container {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.screen-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 30px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notch-lens {
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1);
}

.screen-glass-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 50;
    pointer-events: none;
}

.zenith-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
    opacity: 0;
    /* JS reveal */
}

/* Booting Perfection */
.zenith-boot-loader {
    position: absolute;
    inset: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 80;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.boot-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--c-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.boot-logo span {
    color: #0aa355;
}

.boot-bar {
    width: 80px;
    height: 2px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.boot-fill {
    width: 0%;
    height: 100%;
    background: #0aa355;
}

/* Glass HUD perfection */
.zenith-hud {
    position: absolute;
    z-index: 120;
    pointer-events: none;
}

.hud-box-lux {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hud-top-left {
    top: 15%;
    left: -60px;
}

.hud-bottom-right {
    bottom: 15%;
    right: -60px;
}

.h-tag {
    font-size: 8px;
    font-weight: 900;
    color: #aaa;
    letter-spacing: 2px;
}

.h-val {
    font-size: 12px;
    font-weight: 700;
    color: #0aa355;
}

.zenith-device-shadow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
}

.name-reveal-section {
    padding: 300px 0;
    background: radial-gradient(circle at bottom left, rgb(0 255 126) 50%, transparent 50%), radial-gradient(circle at calc(100% - 129px) 136px, rgb(241 255 35) 7%, #25252500 10%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.name-reveal-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 58%, #000000 200%);
    pointer-events: none;
}

.name-wrap {
    perspective: 2000px;
    position: relative;
    z-index: 2;
    padding: 60px 100px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.massive-name {
    font-size: clamp(100px, 18vw, 240px);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.9;
    display: flex;
    align-items: baseline;
    text-transform: uppercase;
    transform-style: preserve-3d;
    background: linear-gradient(180deg, #111 0%, #000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 1s var(--ease-lux);
}

.bd-elevate {
    font-size: 0.5em;
    color: #0aa355;
    margin-left: 0.024em;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(10, 163, 85, 0.3));
    font-style: normal;
    -webkit-text-fill-color: #0aa355;
    /* Ensure color shows up */
    transform: translate(0px, 0px) rotate(10deg);
}

/* --- Media Queries (Mobile Perfection) --- */
@media (max-width: 1024px) {

    .grid-split,
    .synthesis-steps,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .eco-grid-v3 {
        grid-template-columns: 1fr;
    }

    #three-container {
        width: 100%;
        opacity: 0.2;
    }
}

@media (max-width: 768px) {

    /* Hide heavy/complex sections on mobile as requested */
    #core-3d,
    #zenith-protocol,
    #three-container,
    .visual-deco {
        display: none !important;
    }

    .container {
        padding: 0 6vw;
    }

    /* Hero Responsive */
    .hero-title {
        font-size: 16vw;
        letter-spacing: -2px;
    }

    .hero-sub {
        font-size: 16px;
        max-width: 100%;
    }

    .btn-main-lux {
        width: 100%;
        justify-content: center;
        padding: 20px 30px;
    }

    /* Navigation Mobile */
    .nav-links {
        display: none;
        /* Can be toggled with JS menu */
    }

    .master-nav {
        padding: 20px 0;
        background: rgba(253, 252, 248, 0.9);
        backdrop-filter: blur(10px);
    }

    /* Philosophy Stack */
    .phil-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .phil-title-lux {
        font-size: 12vw;
    }

    .description-text {
        font-size: 16px;
        max-width: 100%;
    }

    .specimen-chamber {
        border-radius: 12px;
    }

    .scan-line {
        display: none !important;
    }

    .blob {
        animation: none !important;
        display: none !important;
    }

    /* Sequence Process (Silicon-Soil Sync) Mobile */
    .synthesis-lux {
        padding: 80px 0;
        background: #F8F7F2;
    }

    .synthesis-steps {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .step-card {
        padding: 30px !important;
        background: #ffffff !important;
        border-radius: 8px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 25px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
        transform: none !important;
        transition: transform 0.4s var(--ease-lux) !important;
    }

    .step-num {
        font-size: 24px !important;
        margin: 0 !important;
        color: var(--c-accent) !important;
        opacity: 0.8 !important;
        font-family: var(--f-main) !important;
        font-weight: 900 !important;
        min-width: 40px;
    }

    .step-card h4 {
        font-size: 18px !important;
        margin-bottom: 4px !important;
        font-family: var(--f-accent) !important;
        font-weight: 700 !important;
        font-style: italic !important;
        color: var(--c-primary) !important;
    }

    .step-card p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        opacity: 0.6 !important;
        margin: 0 !important;
    }

    .step-card:active {
        transform: scale(0.98) !important;
        background: #fafafa !important;
    }

    /* --- Unique Mobile Themes: Atmosphere Spectrum --- */
    .phones-display {
        height: auto;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        perspective: none;
    }

    .phone-item {
        margin: 0;
        width: 100%;
        max-width: 100%;
        height: 140px;
        background: linear-gradient(90deg, rgba(var(--theme-rgb), 0.1) 0%, transparent 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-left: 4px solid var(--theme-color);
        border-radius: 4px 20px 20px 4px;
        transform: none !important;
        opacity: 1 !important;
        display: flex;
        align-items: center;
        padding: 0 30px;
        overflow: hidden;
        position: relative;
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    }

    .phone-item::after {
        content: '';
        position: absolute;
        right: -30px;
        top: 0;
        width: 120px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(var(--theme-rgb), 0.1));
        filter: blur(15px);
        pointer-events: none;
    }

    .phone-frame {
        width: 100%;
        height: 100%;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        position: static !important;
        display: flex;
        align-items: center;
    }

    .phone-frame::after {
        display: none !important;
        /* Hide Notch */
    }

    .phone-screen {
        background-image: none !important;
        /* No phones/images on mobile */
        background: transparent !important;
        filter: none !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        transform: none !important;
    }

    .screen-overlay {
        position: relative !important;
        inset: auto !important;
        padding: 0 !important;
        opacity: 1 !important;
        display: grid !important;
        grid-template-columns: 80px 1fr;
        align-items: center;
        gap: 20px;
        width: 100% !important;
    }

    .biome-index {
        font-size: 40px !important;
        font-weight: 900 !important;
        color: var(--theme-color) !important;
        opacity: 0.4 !important;
        font-family: var(--f-main) !important;
        margin: 0 !important;
    }

    .screen-overlay h4 {
        font-size: 28px !important;
        font-family: var(--f-accent) !important;
        font-weight: 400 !important;
        font-style: italic !important;
        color: white !important;
        margin: 0 !important;
        letter-spacing: 0 !important;
    }

    .screen-overlay .v-tag,
    .screen-overlay p {
        display: none !important;
        /* Keep it clean */
    }

    .phone-hud,
    .hud-details {
        display: none !important;
        /* Remove HUD clutter */
    }

    /* Animation for mobile scroll */
    .phone-item {
        transition: background 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
    }

    .phone-item:active {
        background: rgba(var(--theme-rgb), 0.3);
        transform: scale(0.98);
    }

    .themes-section-lux .v-title {
        font-size: 14vw;
        text-align: center;
    }

    .themes-section-lux .v-desc {
        font-size: 14px;
        text-align: center;
    }

    /* Ecosystem Stack - Premium Small Boxes */
    #universe-canvas {
        display: none !important;
    }

    .eco-showcase-lux {
        padding: 80px 0;
        background: #030806;
        /* Solid luxury dark background for mobile */
    }

    .eco-grid-v3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .eco-card-v3 {
        padding: 25px 20px;
        border-radius: 12px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transform: none !important;
        box-shadow: none !important;
    }

    .card-visual-lux {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .eco-card-v3 h3 {
        font-size: 16px;
        margin-bottom: 8px;
        letter-spacing: 0;
    }

    .eco-card-v3 p {
        font-size: 11px;
        line-height: 1.4;
        opacity: 0.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-link {
        display: none !important;
        /* Keep it as a simple tappable box */
    }

    .eco-card-v3:active {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--theme-color);
        transform: scale(0.97) !important;
    }

    /* Impact Stack - High Density Info Boxes */
    .impact-header .v-title {
        font-size: 12vw;
    }

    .impact-v4 {
        padding: 80px 0;
        background: #ffffff !important;
        /* Clean white backdrop for mobile impact */
    }

    .impact-grid-lux {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 50px;
    }

    /* Make the second card span full width for odd-number count if needed, 
       but here let's make them all uniform or a unique layout */
    .impact-card:nth-child(3) {
        grid-column: span 2;
        flex-direction: row !important;
        justify-content: center;
        gap: 25px;
        padding: 30px !important;
    }

    .impact-card {
        padding: 25px 20px !important;
        border-radius: 12px !important;
        background: #fcfdfc !important;
        border: 1px solid rgba(10, 163, 85, 0.08) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: none !important;
        box-shadow: none !important;
    }

    .impact-card.active {
        background: var(--c-primary) !important;
    }

    .impact-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
        margin-bottom: 15px !important;
        border-radius: 10px !important;
    }

    .impact-val-wrap {
        gap: 4px !important;
        margin-bottom: 5px !important;
    }

    .huge-stat {
        font-size: 32px !important;
    }

    .stat-suffix {
        font-size: 14px !important;
    }

    .impact-label {
        font-size: 9px !important;
        letter-spacing: 1px !important;
        margin-bottom: 5px !important;
    }

    .impact-detail {
        font-size: 11px !important;
        line-height: 1.4 !important;
        opacity: 0.4 !important;
    }

    .impact-bar-lux {
        padding: 0 10px;
    }

    /* Final Reveal */
    .final-reveal-lux {
        padding: 80px 0;
        background: #FDFCF8 !important;
        /* Standard clean background */
    }

    .reveal-title-lux {
        font-size: 15vw;
        margin-bottom: 25px;
    }

    .reveal-desc-lux {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .reveal-metrics {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 50px !important;
    }

    .metric-item {
        padding: 25px !important;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        background: rgba(27, 60, 53, 0.05) !important;
    }

    .m-label {
        letter-spacing: 2px !important;
        font-size: 8px !important;
        margin: 0 !important;
    }

    .m-value {
        font-size: 24px !important;
        margin: 0 !important;
    }

    .metric-divider {
        display: none !important;
    }

    /* Massive Name Reveal */
    .massive-name {
        font-size: 22vw;
    }

    /* Footer Responsive */
    .footer-grid-lux {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .f-brand p,
    .f-newsletter p {
        margin-left: auto;
        margin-right: auto;
    }

    .f-socials {
        justify-content: center;
    }

    .news-line {
        justify-content: center;
    }

    .footer-bottom-lux .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links-lux {
        gap: 20px;
    }

    /* Mobile Menu Overlay Styles - HYPER PREMIUM */
    .mobile-menu-lux {
        position: fixed;
        inset: 0;
        background: #3f3f3f;
        /* Dark Portal Theme for Mobile wow factor */
        z-index: 1500;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 120px 6vw 350px;
        transform: translateX(100%);
        transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    }

    .mobile-menu-lux.active {
        transform: translateX(0);
    }

    .menu-header-lux {
        position: absolute;
        top: 40px;
        left: 6vw;
    }

    .loader-logo {
        color: white;
        font-size: 35px;
        font-weight: 900;
        margin-bottom: 30px;
    }

    .loader-logo span {
        font-size: 23px;
        color: #0aa355;
    }

    .m-menu-logo {
        font-size: 24px;
        font-weight: 950;
        color: white;
        letter-spacing: -1px;
    }

    .m-menu-logo span {
        font-size: 15px;
        color: #0aa355;
    }

    .menu-links-lux {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .m-link {
        text-decoration: none;
        color: white;
        font-size: 38px;
        /* Slightly smaller for better screen fit */

        font-weight: 500;
        display: flex;
        align-items: baseline;
        /* Better alignment with index */
        gap: 15px;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.6s var(--ease-lux);
    }

    .m-link span {
        font-family: var(--f-main);
        font-size: 9px;
        font-weight: 900;
        color: #0aa355;
        letter-spacing: 2px;
        opacity: 0.5;
        min-width: 25px;
    }

    .mobile-menu-lux.active .m-link {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-menu-lux .btn-portal-glow {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
    }

    .mobile-menu-lux.active .btn-portal-glow {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.6s var(--ease-lux) 0.8s;
    }

    /* Staggered Entrance */
    .mobile-menu-lux.active .m-link:nth-child(1) {
        transition-delay: 0.3s;
    }

    .mobile-menu-lux.active .m-link:nth-child(2) {
        transition-delay: 0.4s;
    }

    .mobile-menu-lux.active .m-link:nth-child(3) {
        transition-delay: 0.5s;
    }

    .mobile-menu-lux.active .m-link:nth-child(4) {
        transition-delay: 0.6s;
    }

    .menu-footer-lux {
        display: flex;
        flex-direction: column;
        gap: 30px;
        opacity: 0;
        transition: all 1s var(--ease-lux) 1s;
    }

    .mobile-menu-lux.active .menu-footer-lux {
        opacity: 1;
    }

    .m-socials {
        display: flex;
        gap: 25px;
    }

    .m-socials a {
        color: rgba(255, 255, 255, 0.4);
        font-size: 20px;
        transition: color 0.3s;
    }

    .m-socials a:hover {
        color: #0aa355;
    }

    .m-contact {
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
    }

    /* Ambient Blobs */
    .menu-deco {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: -1;
        overflow: hidden;
    }

    .m-blob {
        position: absolute;
        width: 150vw;
        height: 150vw;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.05;
    }

    .b-1 {
        top: -50vw;
        right: -50vw;
        background: #0aa355;
    }

    .b-2 {
        bottom: -50vw;
        left: -50vw;
        background: #C5A059;
    }

    /* Refined Burger Transition */
    .menu-open-lux.active span {
        background: white;
    }

    .menu-open-lux.active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-open-lux.active span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }
}