/* 
   ========================================
   IKIKÉ COLLECTIVE: CORE DESIGN SYSTEM
   ========================================
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
    --primary: #0a0a0a;
    --secondary: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #f1e5ac;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --bg-dark: #050505;
    /* v2.1 Data-First Tokens */
    --bg-primary: #0a0c10;
    --bg-secondary: #121418;
    --accent-green: #00e676;
    --accent-yellow: #ffeb3b;
    --accent-red: #ff1744;
    --text-primary: #e0e0e0;
    --text-secondary: #9e9e9e;
    --border-color: #2a2d35;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, .font-playfair { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; box-sizing: border-box; }
.text-gold { color: var(--gold); }
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- NAVIGATION --- */
.glass-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 1.5rem 0; background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; text-decoration: none; color: white; letter-spacing: 2px; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.nav-link:hover { color: var(--gold); }

/* --- HERO --- */
.hero {
    height: 100vh; display: flex; align-items: center; position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    overflow: hidden;
    padding-top: 100px; /* Prevent fixed navbar overlap */
}
.hero-content { max-width: 800px; position: relative; z-index: 10; }
.hero h1 { font-size: 5rem; line-height: 1.1; margin-bottom: 2rem; font-weight: 900; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 600px; }
.hero-subtitle { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-weight: 700; margin-bottom: 1rem; }

/* --- CARDS & GRIDS --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
.premium-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    padding: 3rem; border-radius: 2rem; transition: var(--transition);
    position: relative; overflow: hidden;
}
.premium-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.05); border-color: var(--gold); }
.card-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }

/* --- BUTTONS --- */
.btn {
    padding: 1rem 2.5rem; border-radius: 5rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; transition: var(--transition); border: none; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--gold); color: var(--primary); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }
.btn-primary:hover { background: var(--gold-light); transform: scale(1.05); }
.btn-outline-light { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: white; }
.btn-outline-light:hover { background: white; color: black; }

/* --- SECTIONS --- */
.py-32 { padding: 8rem 0; }
.bg-light { background: #0a0a0a; }
.section-header h2 { font-size: 3.5rem; margin-bottom: 1rem; }
.subtitle { font-size: 1.2rem; color: var(--text-muted); }

/* --- MIRROR ROOM WORKSPACE (v2.1 Data-First) --- */
.workspace-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: var(--bg-primary);
}

/* KPI Bar - Top Navigation */
.kpi-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0 1rem;
    height: 64px;
    flex-shrink: 0;
    z-index: 10005;
    gap: 1rem;
}

.kpi-left, .kpi-center, .kpi-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.kpi-center {
    flex: 1;
    justify-content: center;
    gap: 2rem;
}

.kpi-brand {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    white-space: nowrap;
}

.kpi-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.kpi-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
}

.kpi-value {
    font-weight: 700;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.kpi-green { background: rgba(0, 230, 118, 0.1); color: var(--accent-green); border: 1px solid rgba(0, 230, 118, 0.2); }
.kpi-yellow { background: rgba(255, 235, 59, 0.1); color: var(--accent-yellow); border: 1px solid rgba(255, 235, 59, 0.2); }
.kpi-red { background: rgba(255, 23, 68, 0.1); color: var(--accent-red); border: 1px solid rgba(255, 23, 68, 0.2); }

/* Main split-pane workspace */
.zen-main-content {
    flex: 1;
    display: flex;
    flex-direction: row; /* Horizontal split */
    overflow: hidden;
    position: relative;
}

.zen-chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-right: 1px solid var(--border-color);
    position: relative;
    background: var(--bg-primary);
}

.research-pane {
    width: 400px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
}

.research-pane h4 {
    color: var(--text-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.menu-toggle {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.menu-toggle:hover { 
    background: var(--accent-green); 
    color: black; 
    border-color: var(--accent-green);
}

.zen-messages-area {
    flex: 1; 
    overflow-y: scroll; /* Force scrollbar visibility */
    padding: 3rem;
    display: flex; 
    flex-direction: column; 
    gap: 2rem;
    padding-bottom: 200px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Premium Feel */
.zen-messages-area::-webkit-scrollbar { width: 6px; }
.zen-messages-area::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.zen-messages-area::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 10px; }
.zen-messages-area::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.message {
    padding: 1.5rem 2rem; border-radius: 1.8rem;
    max-width: 80%; font-size: 1.1rem; line-height: 1.7;
    animation: fadeIn 0.4s ease;
}
.message.system { 
    background: rgba(255,255,255,0.03); color: #f0f0f0; 
    align-self: flex-start; border-top-left-radius: 0.3rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.message.user { 
    background: var(--gold); color: #000; font-weight: 600;
    align-self: flex-end; border-top-right-radius: 0.3rem;
}

.zen-input-wrapper {
    padding: 1.5rem; background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    z-index: 10001;
}
.zen-input-group {
    max-width: 900px; margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem; border-radius: 12px;
    display: flex; gap: 0.8rem; align-items: center;
}
.zen-input-group input { 
    flex: 1; background: transparent; border: none; color: white; 
    padding: 0.8rem 1rem; font-size: 1rem; font-family: 'Inter', sans-serif;
}
.zen-input-group input:focus { outline: none; }

.mic-btn, .voice-btn {
    width: 50px; height: 50px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.05); color: var(--white);
    display: flex; align-items: center; justify-content: center; 
    cursor: pointer; transition: var(--transition);
}
.mic-btn:hover, .voice-btn:hover { background: rgba(255,255,255,0.1); }

.voice-btn.active { 
    background: var(--gold); 
    color: var(--primary); 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); 
}
.voice-btn.active i, .voice-btn.active svg { color: var(--primary); }

.mic-btn.recording {
    background: #ff4d4d;
    color: white;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.4);
}

/* Vault Sidebar Toggle */
.vault-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 6px;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-secondary);
    z-index: 10010;
    font-weight: 700;
    border-radius: 8px 0 0 8px;
    transition: var(--transition);
}
.vault-toggle:hover { color: var(--accent-green); background: var(--bg-primary); }

.vault-sidebar {
    position: fixed;
    right: -400px;
    top: 60px;
    width: 400px;
    height: calc(100vh - 60px);
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 2rem;
    overflow-y: auto;
    z-index: 10009;
}

.vault-sidebar.open {
    right: 0;
}

.health-tracker-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.health-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.health-bar-fill {
    height: 100%;
    background: var(--accent-green);
    transition: width 0.8s ease;
}

#health-status {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Blinking Strategic Cursor */
.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background-color: var(--gold);
    margin-left: 4px;
    vertical-align: middle;
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- THE PATH TO POWER: DYNAMIC JOURNEY --- */
.journey-steps {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    padding: 4rem 0;
    max-width: 1100px;
    margin: 4rem auto 0;
}

/* The Connecting Path */
.journey-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 0;
    opacity: 0.3;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 2rem;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.step-card:hover .step-num {
    color: var(--gold);
    -webkit-text-stroke: 1px var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.step-status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.step-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.step-card.active .step-status {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .journey-steps { flex-direction: column; gap: 2rem; }
    .journey-steps::before { display: none; }
}

/* --- BACK THE VISION: INVESTMENT DASHBOARD --- */
.investment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2.5rem;
    padding: 4rem;
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.investment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.inv-header h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border-radius: 5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.contribution-slider-area { margin-top: 4rem; }
.contribution-slider-area label { display: block; margin-bottom: 2rem; font-weight: 600; opacity: 0.6; letter-spacing: 2px; text-transform: uppercase; }

/* Custom Slider */
#contribution-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    outline: none;
    margin-bottom: 2rem;
}

#contribution-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transition: var(--transition);
}

#contribution-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.investment-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.metric-box h4 { font-size: 0.8rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.metric-box span { font-size: 2.5rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }

#slider-value { display: block; font-size: 3rem; font-weight: 900; margin-bottom: 1rem; color: white; }

/* --- THE ACADEMY: MODULAR CURRICULUM --- */
.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.academy-module {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.academy-module::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 0;
    background: var(--gold);
    transition: var(--transition);
}

.academy-module:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
}

.academy-module:hover::before { height: 100%; }

.module-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.academy-module h3 { font-size: 1.8rem; margin-bottom: 1rem; color: white; }
.academy-module p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

.module-action {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.academy-module:hover .module-action {
    opacity: 1;
    transform: translateX(0);
}

.col-span-full { grid-column: 1 / -1; }

/* Animations */
.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   PHASED ROLLOUT: GLASSMORPHIC TEASER OVERLAYS
   ========================================================================== */

.gated-overlay-container {
    position: relative;
    overflow: hidden; /* prevents backdrop bleed */
}

/* Glassmorphism teaser overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 16, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
}

.coming-soon-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

.teaser-card {
    background: rgba(18, 20, 24, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35); /* gold border */
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    animation: teaserFloat 6s ease-in-out infinite;
}

@keyframes teaserFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.teaser-icon {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(214, 175, 55, 0.2) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #d4af37;
    border: 1px solid rgba(214, 175, 55, 0.5);
    animation: lockPulse 2s infinite ease-in-out;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(214, 175, 55, 0.2); }
    50% { transform: scale(1.08); box-shadow: 0 0 20px rgba(214, 175, 55, 0.4); }
}

.teaser-phase {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.teaser-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.teaser-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.teaser-prereq {
    background: rgba(214, 175, 55, 0.08);
    border: 1px dashed rgba(214, 175, 55, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Premium Gated Navigation Indicators */
.gated-feature.disabled {
    opacity: 0.55;
    filter: grayscale(80%);
    position: relative;
    cursor: not-allowed !important;
}

.gated-feature.disabled::after {
    content: ' 🔒';
    font-size: 0.8em;
    display: inline-block;
    vertical-align: middle;
}

/* Toast popup notifications */
.phase-gate-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid #d4af37; /* gold */
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    z-index: 12000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.phase-gate-toast.active {
    transform: translateY(0);
}

/* --- Beta Waitlist & Countdown --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.countdown-box {
    background: rgba(214, 175, 55, 0.1);
    border: 1px solid rgba(214, 175, 55, 0.3);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}
.countdown-box span[class^="cd-"] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.cd-label {
    font-size: 0.7rem !important;
    color: var(--text-muted) !important;
    text-transform: uppercase;
    margin-top: 0.25rem;
}
.small-countdown {
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.small-countdown .countdown-box {
    padding: 0.25rem 0.5rem;
    min-width: 45px;
}
.small-countdown .countdown-box span[class^="cd-"] {
    font-size: 1rem;
}
.iki-reward-msg {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.waitlist-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-family: inherit;
    transition: var(--transition);
}
.waitlist-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.8);
}
.waitlist-submit {
    background: var(--gold);
    color: var(--primary);
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.waitlist-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.compact-form {
    flex-direction: row;
    margin-bottom: 1rem;
}
.compact-form .waitlist-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
}
.compact-form .waitlist-submit {
    padding: 0.5rem 1rem;
}
.waitlist-success {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 230, 118, 0.3);
}
.hidden {
    display: none !important;
}
.mt-4 {
    margin-top: 1rem;
}

/* ========================================
   ACTION HUB STYLING (GLASSMORPHISM & PANE CONTROLLER)
   ======================================== */
.action-hub-container {
    background: rgba(18, 22, 28, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 2.5rem;
    padding: 4rem 3rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    overflow: hidden;
}

.action-hub-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Switchboard Grid */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hidden-hub {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

/* Choice Cards */
.choice-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.8rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.choice-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.choice-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.08);
}

.choice-card:hover::before {
    opacity: 1;
}

.choice-card.active-card {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.choice-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.choice-card:hover .choice-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.choice-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    z-index: 2;
}

.choice-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    z-index: 2;
}

/* Panes Wrapper & Panes */
.panes-wrapper {
    position: relative;
}

.hub-pane {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.hub-pane.active-pane {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Back Button */
.back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.back-btn i, .back-btn svg {
    transition: transform 0.3s ease;
}

.back-btn:hover i, .back-btn:hover svg {
    transform: translateX(-4px);
}

/* Elite Roles Grids (2 Col) */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gap-8 {
    gap: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

/* Opportunity Cards */
.vault-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1.8rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.vault-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vault-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.vault-card .module-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

/* Success Indicator */
.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 2rem;
    animation: successPulse 2s infinite ease-in-out;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
    50% { transform: scale(1.06); box-shadow: 0 0 30px rgba(212, 175, 55, 0.45); }
}

.max-w-xl {
    max-width: 36rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Form Styles inside Action Hub */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .grid-3-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .action-hub-container {
        padding: 3rem 1.5rem;
    }
}

/* ========================================
   NAVIGATION BAR & TOKEN STATS SYSTEM
   ======================================== */
.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-action-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.user-stats-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-xp-pill, .user-token-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.user-xp-pill {
    color: #ffffff;
}

.user-xp-pill i, .user-xp-pill svg {
    color: var(--gold);
}

.user-token-pill {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.06);
}

.user-token-pill i, .user-token-pill svg {
    color: var(--gold);
}

.user-xp-pill:hover, .user-token-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.nav-btn-compact {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
    border-radius: 5rem !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2) !important;
}

/* Intermediate Tablet & Desktop Responsive Layout fixes for Navbar */
@media (min-width: 769px) and (max-width: 1250px) {
    .nav-content {
        gap: 1rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    .nav-action-group {
        gap: 0.75rem;
    }
    .user-token-pill {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    .nav-btn-compact {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
}




/* =========================================
   AUTH & KYC OVERLAYS
   ========================================= */

/* Auth Page */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: url('https://images.unsplash.com/photo-1639322537228-f710d846310a?q=80&w=2532&auto=format&fit=crop') center/cover no-repeat; }
.auth-page::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,12,0.85); backdrop-filter: blur(20px); z-index: 0; }
.auth-container { position: relative; z-index: 1; width: 100%; max-width: 480px; padding: 2rem; }
.auth-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); text-decoration: none; margin-bottom: 2rem; transition: var(--transition); }
.auth-back:hover { color: var(--gold); }
.auth-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.2); border-radius: 24px; padding: 3rem; backdrop-filter: blur(20px); }
.auth-tabs { display: flex; gap: 1rem; margin: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.auth-tab-btn { flex: 1; padding: 1rem; background: none; border: none; color: var(--text-secondary); cursor: pointer; border-bottom: 2px solid transparent; font-weight: 600; transition: var(--transition); }
.auth-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.auth-pane { display: none; animation: fadeIn 0.3s ease; }
.auth-pane.active { display: block; }

/* KYC Overlay */
.kyc-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.kyc-overlay.active { opacity: 1; pointer-events: all; }
.kyc-card { background: var(--bg-secondary); border: 1px solid rgba(212,175,55,0.3); width: 100%; max-width: 600px; border-radius: 24px; overflow: hidden; transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.19,1,0.22,1); box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.kyc-overlay.active .kyc-card { transform: translateY(0); }

.kyc-progress { height: 4px; background: rgba(255,255,255,0.05); }
.kyc-prog-bar { height: 100%; background: var(--gold); transition: width 0.6s ease; }

.kyc-header { padding: 3rem 3rem 1.5rem; text-align: center; }
.kyc-logo-mark { margin-bottom: 1.5rem; }
.kyc-title { font-size: 2rem; font-family: 'Playfair Display', serif; color: var(--white); margin-bottom: 0.5rem; }
.kyc-sub { color: var(--text-secondary); font-size: 1rem; }

.kyc-body { padding: 0 3rem 2rem; }
.kyc-step { animation: slideInFade 0.4s ease forwards; }

.kyc-field-group { margin-bottom: 1.5rem; }
.kyc-label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 0.8rem; }
.kyc-input { width: 100%; padding: 1rem 1.2rem; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; font-family: 'Inter', sans-serif; font-size: 1rem; transition: var(--transition); }
.kyc-input:focus { outline: none; border-color: var(--gold); background: rgba(212,175,55,0.05); }
select.kyc-select { appearance: none; background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23d4af37%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; }
.kyc-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }

.kyc-intent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.kyc-intent-btn { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 1rem; border-radius: 16px; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; cursor: pointer; transition: var(--transition); color: var(--text-secondary); }
.kyc-intent-btn:hover { background: rgba(255,255,255,0.08); }
.kyc-intent-btn.selected { background: rgba(212,175,55,0.1); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(212,175,55,0.1); }
.kyc-intent-icon { font-size: 1.8rem; }
.kyc-intent-label { font-size: 0.85rem; font-weight: 600; text-align: center; }

.kyc-tags { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.kyc-tag { background: rgba(255,255,255,0.05); border: 1px solid transparent; padding: 0.6rem 1.2rem; border-radius: 30px; color: var(--text-secondary); cursor: pointer; transition: var(--transition); }
.kyc-tag:hover { background: rgba(255,255,255,0.1); }
.kyc-tag.selected { background: var(--gold); color: black; font-weight: 600; }

.kyc-footer { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 3rem 3rem; }
.kyc-skip-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.9rem; text-decoration: underline; transition: var(--transition); }
.kyc-skip-btn:hover { color: white; }

@keyframes slideInFade { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* =========================================
   INTERACTIVE FEATURE WINDOWS
   ========================================= */
.feature-window { background: rgba(15,15,18,0.95); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; margin-top: 3rem; box-shadow: 0 30px 60px rgba(0,0,0,0.5); backdrop-filter: blur(20px); position: relative; }
.feature-window-chrome { background: rgba(0,0,0,0.4); padding: 0.8rem 1.5rem; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.window-dots { display: flex; gap: 6px; }
.window-dot { width: 12px; height: 12px; border-radius: 50%; }
.window-dot.r { background: #ff5f56; } .window-dot.y { background: #ffbd2e; } .window-dot.g { background: #27c93f; }
.window-title { flex: 1; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); font-family: monospace; }
.feature-window-body { padding: 2rem; position: relative; }
.feature-window-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); z-index: 10; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.feature-window:hover .feature-window-overlay { opacity: 1; pointer-events: all; }

/* Interactive Bounties / Ecosystem Jobs */
.jobs-grid { display: grid; gap: 1rem; }
.job-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 1.5rem; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); cursor: pointer; }
.job-card:hover { border-color: var(--accent-green); background: rgba(14, 255, 145, 0.05); transform: translateY(-2px); }
.job-info h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.job-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.job-reward { color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.job-match { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--accent-green); color: var(--accent-green); font-weight: 800; font-size: 0.9rem; }
.job-match span { font-size: 0.6rem; text-transform: uppercase; opacity: 0.8; }

/* ==========================================================================
   IKIKÉ CHAT: OVERLAY & MOBILE & AUTH FORMS STYLING
   ========================================================================== */

/* Fullscreen Mirror Room Overlay */
.mirror-room {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none; /* Controlled by .active class */
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mirror-room.active {
    display: flex;
    opacity: 1;
}

.mirror-layout {
    display: flex;
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.mirror-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-right: 1px solid var(--border-color);
}

.mirror-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    height: 70px;
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.mirror-status .status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    display: inline-block;
}

/* Mobile Nav Styles & Desktop Duplication Fix */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Auth Pages Styling */
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-error {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 8px;
    color: var(--accent-red);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.w-full {
    width: 100%;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.mt-4 {
    margin-top: 1rem;
}

.text-center {
    text-align: center;
}

/* =========================================
   MOBILE RESPONSIVENESS & ANDROID OPTIMIZATION
   ========================================= */

@media (max-width: 768px) {
    /* 1. Typography Scaling */
    .hero h1 { font-size: 3rem !important; }
    .hero p { font-size: 1rem !important; }
    .section-header h2 { font-size: 2.2rem !important; }
    
    /* 2. Premium Card Padding */
    .premium-card { padding: 1.5rem !important; }
    
    /* 3. KPI Navigation Bar Horizontal Scroll */
    .kpi-bar {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px; /* space for scrollbar */
        justify-content: flex-start;
    }
    
    .kpi-bar::-webkit-scrollbar { height: 4px; }
    .kpi-bar::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 4px; }
    
    /* 4. Zen Workspace Splitting */
    .zen-main-content {
        flex-direction: column !important;
        overflow-y: auto;
    }
    
    /* Let the chat container fill the height naturally */
    .zen-chat-container {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
        flex: 1 1 auto;
        min-height: 60vh;
    }
    
    /* Research pane stacks below the chat */
    .research-pane {
        width: 100% !important;
        border-left: none !important;
        height: auto;
        padding-bottom: 4rem; /* Buffer for scrolling */
    }
    
    /* 5. Touch Target Sizes */
    .btn, .nav-btn-compact { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
    .form-group input { min-height: 48px; }
    
    /* 6. Fix Hero Overflow & Spacing */
    .hero h1 { font-size: 2.2rem !important; word-wrap: break-word; }
    .hero-btns { flex-direction: column; gap: 1rem; padding: 0 1rem; }
    
    /* 7. Fix Platform Stats Row Spacing Issue */
    .platform-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }
    .platform-stats .stat-block {
        border-left: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-left: 0 !important;
        padding-bottom: 1.5rem;
    }
    .platform-stats .stat-block:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* 8. Fix Navbar Elements Overlap */
    .nav-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .lang-selector {
        margin-right: 0.5rem;
    }
    
    /* Add a small toggle button visibility */
    .mobile-research-toggle {
        display: block !important;
        width: 100%;
        text-align: center;
        background: var(--bg-secondary);
        padding: 10px;
        color: var(--gold);
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-top: 1px solid var(--border-color);
        cursor: pointer;
    }

    /* 9. Fix Job Card Overflow */
    .job-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem;
    }
    .job-card > div:last-child {
        width: 100%;
        justify-content: space-between;
    }
}
