@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Marcellus&family=Cinzel:wght@400;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* --- LUKUL OBSIDIAN PALETTE --- */
    --bg-dark-grad: linear-gradient(135deg, #022c22 0%, #011812 100%);
    --text-color-dark: #E6E6E6;
    --text-muted: #888888;
    --accent-gold: #e6b34a;
    --tenant-primary-gradient: linear-gradient(135deg, #e6b34a 0%, #b89643 100%);

    /* --- TYPOGRAPHY --- */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
    --font-data: 'Space Mono', monospace;

    --border-radius-btn: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: var(--bg-dark-grad);
    background-color: #011812;
    /* Fallback */
    color: var(--text-color-dark);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* THE GHOST GRID (Extracted from B2B) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(230, 179, 74, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(230, 179, 74, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 10%, transparent 80%);
    mask-image: radial-gradient(circle at 50% 50%, black 10%, transparent 80%);
}

.landing-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 650px;
    padding: 40px 20px 80px 20px;
    z-index: 10;
    position: relative;
}

/* --- NAVIGATION --- */
.private-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(230, 179, 74, 0.15);
    padding-bottom: 15px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 3px;
}

.status-badge {
    font-family: var(--font-data);
    font-size: 10px;
    color: var(--accent-gold);
    letter-spacing: 2px;
    font-weight: 700;
}

/* --- HERO TYPOGRAPHY --- */
.hero-section {
    text-align: left;
    margin-bottom: 50px;
}

.kicker {
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.sub-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* --- THE GOLD BUTTON --- */
.btn-gold-solid {
    display: inline-block;
    background: var(--tenant-primary-gradient);
    color: #1a1a1a;
    padding: 16px 32px;
    font-family: var(--font-data);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius-btn);
    transition: all 0.3s ease;
    border: none;
}

.btn-gold-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(230, 179, 74, 0.4);
}

/* --- EXECUTIVE AXIOMS (DARK CARDS) --- */
.action-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.action-card {
    background: rgba(2, 8, 6, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--accent-gold);
    padding: 24px;
    transition: all 0.3s ease;
}

.action-card:hover {
    background: rgba(2, 8, 6, 0.9);
    border-color: rgba(230, 179, 74, 0.2);
    transform: translateX(5px);
}

.card-label {
    font-family: var(--font-data);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.data-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 600px) {
    .tagline {
        font-size: 32px;
    }

    .private-nav {
        margin-bottom: 50px;
    }
}

/* =========================================
   VELVET ROPE NAVIGATION (DUAL-ROW ARCHITECTURE)
   ========================================= */
.private-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(230, 179, 74, 0.15);
    padding-bottom: 20px;
}

.nav-top,
.nav-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.lang-toggle-vr {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
}

.lang-toggle-vr a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

.lang-toggle-vr a:hover {
    opacity: 0.5;
}

.dossier-btn {
    font-family: var(--font-data);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid rgba(230, 179, 74, 0.2);
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dossier-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(230, 179, 74, 0.04);
}

/* --- MOBILE BREAKPOINT --- */
@media (max-width: 650px) {
    .nav-top {
        margin-bottom: 0px;
    }

    .nav-bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .status-badge {
        justify-self: end;
        order: -1;
        /* Pulls the text up directly under the language toggle */
        margin-top: -5px;
        /* Tucks it slightly closer for a cohesive text cluster */
    }

    .nav-buttons {
        display: grid;
        grid-template-columns: 1fr;
        /* Or 1fr 1fr if it's the IronSilk dual-button */
        gap: 10px;
        width: 100%;
        order: 2;
        /* Pushes the button(s) to the bottom */
    }

    .dossier-btn {
        font-size: 9px;
        width: 100%;
        padding: 10px 4px;
        letter-spacing: 1px;
    }
}