/* ═══════════════════════════════════════════════════════════════════════
   👁️ GOLDEN LAND LUXURY DESIGN SYSTEM
   "Minimalism meets Financial Intelligence"
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #e0e0e0;
    --text-muted: #888;
    --accent: #1a1a1a;
}

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

body.luxury-dark {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.serif {
    font-family: 'Playfair Display', serif;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   💎 COMPONENTS: GLASS CARDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}

.luxury-card {
    padding: 2rem;
    transition: all 0.4s ease;
}

.luxury-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.luxury-card label {
    display: block;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.luxury-card h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

.subtext {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🏗️ LAYOUT: TRADER EYE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.luxury-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    border-bottom: 1px solid var(--glass-border);
}

.gold-text {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 4px;
}

.observer-tag {
    font-size: 0.6rem;
    background: var(--gold);
    color: black;
    padding: 2px 6px;
    margin-left: 10px;
    vertical-align: middle;
}

.dashboard-grid {
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.chart-container {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.placeholder-chart {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spectrum-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: sweep 3s infinite ease-in-out;
}

@keyframes sweep {
    0% { transform: scaleX(0.1); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 0.8; }
    100% { transform: scaleX(0.1); opacity: 0.3; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🏗️ LAYOUT: CLIENT SIGHT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.client-sight {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.client-container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.minimal-header {
    margin-bottom: 4rem;
}

.hash-id-display {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 1rem;
}

.progression-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-circle {
    width: 12px;
    height: 12px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.step.active .step-circle {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold);
}

.step-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.step.active .step-label {
    color: var(--text-main);
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background: var(--glass-border);
    margin: 0 10px;
    margin-bottom: 1.5rem;
}

.read-only-notice {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ✨ ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.animate-fade-in {
    animation: fadeIn 1s forwards;
}

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

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.shimmer {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    animation: rotate 2s infinite linear;
    margin-bottom: 1rem;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
