@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
    /* Color Palette — Preserved */
    --glam-bg: #0A0806;
    --glam-bg-accent: #14110E;
    --glam-bg-card: #1C1712;
    --glam-gold: #C9A84C;
    --glam-gold-light: #E5C96E;
    --glam-gold-dark: #A38736;
    --glam-cyan: #2EEAA3;
    --glam-cyan-soft: rgba(46, 234, 163, 0.1);
    --glam-white: #FFFFFF;
    --glam-text: #C4BDB2;
    --glam-text-muted: #7A746A;
    
    /* Layout Tokens — Refined & Compact */
    --gutter: clamp(20px, 4vw, 40px);
    --nav-height: 80px;
    --border-radius-lg: 32px;
    --border-radius-md: 20px;
    --glass-bg: rgba(28, 23, 18, 0.7);
    --glass-border: rgba(201, 168, 76, 0.15);
}

/* ============ CORE RESET ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--glam-bg);
    color: var(--glam-text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .glam-font {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.04em;
}

a { text-decoration: none; color: inherit; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============ GLOBAL CLASSES ============ */
.container-fluid {
    width: 100%;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.text-gold { color: var(--glam-gold); }
.text-cyan { color: var(--glam-cyan); }
.bg-gold { background-color: var(--glam-gold); }

/* ============ PRELOADER ============ */
.glam-preloader {
    position: fixed;
    inset: 0;
    background: var(--glam-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.glam-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), visibility 1s;
}

.loader-logo {
    width: 120px;
    height: 120px;
    color: var(--glam-gold);
    animation: loaderSpin 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ============ ASYMMETRICAL LAYOUT UTILS ============ */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.section-spacer {
    padding: clamp(100px, 15vh, 250px) 0;
}

/* ============ NAVIGATION ============ */
.nav-editorial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    z-index: 1000;
    transition: background 0.4s;
}

.nav-editorial.scrolled {
    background: rgba(10, 8, 6, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--glam-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-cta {
    background: var(--glam-cyan);
    color: var(--glam-bg);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 11px;
}

/* ============ EDITORIAL SPLIT SYSTEM ============ */
.split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-visual {
    position: sticky;
    top: 0;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
}

.split-content {
    padding: 120px 60px;
}

/* ============ HERO — REFINED ============ */
.hero-editorial {
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-big-title {
    font-size: clamp(60px, 14vw, 180px);
    font-weight: 900;
    color: var(--glam-white);
    position: relative;
    z-index: 2;
    margin-bottom: -0.05em;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--gutter);
    align-items: center;
}

.hero-desc-block {
    max-width: 400px;
}

.hero-desc-block h2 {
    font-size: clamp(20px, 3.5vw, 36px);
    color: var(--glam-gold);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-image-editorial {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 60vh;
}

.hero-image-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
}

/* ============ SECTION: LAYERED VOICEVAULT ============ */
.layered-section {
    position: relative;
    overflow: hidden;
}

.layered-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
}

.layered-text {
    grid-column: 1 / 7;
    z-index: 3;
    background: var(--glam-bg);
    padding: 60px var(--gutter);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    border: 1px solid var(--glass-border);
    border-left: none;
    box-shadow: 30px 0 60px rgba(0,0,0,0.5);
}

.layered-visual {
    grid-column: 5 / 13;
    height: 60vh;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.layered-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ SECTION: STAGGERED EARLYBIRD ============ */
.earlybird-editorial {
    display: flex;
    align-items: center;
    gap: 100px;
}

.earlybird-visual-staggered {
    width: 35%;
    position: relative;
}

.earlybird-visual-staggered img {
    border-radius: 160px 160px 0 0;
    height: 450px;
    object-fit: cover;
}

.floating-price-badge {
    position: absolute;
    top: 15%;
    right: -40px;
    background: var(--glam-cyan);
    color: var(--glam-bg);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    transform: rotate(15deg);
    box-shadow: 0 15px 30px rgba(46, 234, 163, 0.3);
}

/* ============ FEATURE HUB — NON-STANDARD ============ */
.feature-hub {
    padding: 150px 0;
}

.feature-grid-editorial {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
}

.feature-cell {
    background: var(--glam-bg);
    padding: 40px 30px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
}

.feature-cell:hover {
    background: var(--glam-bg-accent);
}

.feature-cell:hover .feature-num {
    color: var(--glam-cyan);
    transform: translateX(10px);
    opacity: 1;
}

.feature-num {
    font-size: 72px;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.2);
    transition: all 0.5s ease;
}

.feature-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--glam-white);
}

/* ============ CTA — OVERSIZED ============ */
.cta-massive {
    text-align: center;
    padding: 120px 0;
}

.cta-massive h2 {
    font-size: clamp(40px, 10vw, 120px);
    margin-bottom: 40px;
}

.btn-movement-editorial {
    display: inline-block;
    padding: 20px 50px;
    border: 2px solid var(--glam-cyan);
    color: var(--glam-cyan);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-movement-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--glam-cyan);
    z-index: -1;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-movement-editorial:hover {
    color: var(--glam-bg);
}

.btn-movement-editorial:hover::before {
    left: 0;
}

/* ============ RESPONSIVE — REBUILT ============ */
@media (max-width: 1024px) {
    :root {
        --gutter: 24px;
        --nav-height: 70px;
    }

    .split-screen {
        grid-template-columns: 1fr;
    }

    .split-visual {
        height: 40vh;
        position: relative;
        padding: 40px var(--gutter);
    }

    .split-content {
        padding: 40px var(--gutter);
    }

    .hero-big-title {
        font-size: clamp(40px, 12vw, 80px);
    }

    .layered-text {
        padding: 40px var(--gutter);
        margin-top: -60px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .earlybird-visual-staggered {
        width: 100%;
    }

    .earlybird-visual-staggered img {
        height: 350px;
    }

    .floating-price-badge {
        width: 100px;
        height: 100px;
        right: -10px;
    }

    .feature-grid-editorial {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .feature-grid-editorial {
        grid-template-columns: 1fr;
    }

    .nav-links a:not(.nav-cta) {
        display: none; /* Hide regular links, keep CTA */
    }

    .dash-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-card-clean {
        padding: 20px;
    }

    .stat-card-clean p:last-child {
        font-size: 28px;
    }

    .dash-main {
        padding-bottom: 100px; /* Space for mobile nav */
    }
}

/* ============ PREMIUM DASHBOARD (Simplified) ============ */
.dash-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.dash-sidebar {
    background: var(--glam-bg-accent);
    border-right: 1px solid var(--glass-border);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.dash-main {
    padding: 40px var(--gutter);
    background: radial-gradient(circle at top right, #120F0C, #070605);
}

.dash-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.stat-card-clean {
    background: var(--glam-bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.stat-card-clean:hover {
    border-color: var(--glam-gold);
    background: #241D17;
}

.opp-card-clean {
    background: linear-gradient(135deg, var(--glam-bg-card), #14110E);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, border-color 0.3s;
}

.opp-card-clean:hover {
    transform: translateY(-5px);
    border-color: var(--glam-cyan);
}

.opp-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--glam-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
}

@media (max-width: 1024px) {
    .dash-wrapper { grid-template-columns: 1fr; }
    .dash-sidebar { display: none; }
    .mobile-dash-header { display: flex !important; }
    .mobile-dash-nav { display: flex !important; }
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}