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

:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dark: #a0822a;
    --navy: #0a0e1a;
    --navy-light: #121830;
    --navy-lighter: #1a2340;
    --slate: #1e293b;
    --cream: #f8f6f0;
    --text: #e8e4dc;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --success: #22c55e;
    --accent: #3b82f6;
    --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e8d5a3 50%, #a0822a 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #121830 100%);
    --shadow-elevated: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(201, 168, 76, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.accent-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cream);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-mark {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-diamond {
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    transform: rotate(45deg) scale(0.7);
    border-radius: 4px;
}

.logo-diamond::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--navy);
    border-radius: 2px;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-gold);
    color: var(--navy) !important;
    padding: 10px 24px !important;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    transition: var(--transition) !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.btn-nav::after { display: none !important; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.floating-graphs {
    position: absolute;
    right: 5%;
    top: 20%;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    opacity: 0.15;
    pointer-events: none;
}

.graph-bar {
    width: 40px;
    background: var(--gradient-gold);
    border-radius: 4px 4px 0 0;
    height: var(--h);
    animation: graphFloat 3s ease-in-out infinite;
    animation-delay: var(--d);
}

@keyframes graphFloat {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-20px); opacity: 1; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.eyebrow-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    margin-bottom: 16px;
}

.title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    color: var(--cream);
}

.title-line.accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.btn-ghost:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

.btn-icon {
    font-size: 0.8rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 76, 0.2);
}

/* Hero Visual - Building */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.building-showcase {
    position: relative;
    width: 320px;
    height: 420px;
    perspective: 1000px;
}

.building-layer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.building-layer.back {
    bottom: 60px;
    transform: translateX(-50%) translateZ(-80px) scale(0.85);
    opacity: 0.4;
    filter: blur(2px);
}

.building-layer.mid {
    bottom: 40px;
    transform: translateX(-50%) translateZ(-30px) scale(0.92);
    opacity: 0.7;
}

.building-layer.front {
    bottom: 0;
    transform: translateX(-50%) translateZ(0);
}

.office-floor {
    width: 200px;
    height: 50px;
    background: linear-gradient(180deg, var(--navy-lighter), var(--navy-light));
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.office-floor.active {
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(180deg, var(--navy-lighter), rgba(201, 168, 76, 0.05));
}

.floor-window {
    width: 28px;
    height: 28px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 2px;
    transition: var(--transition);
}

.floor-window.lit {
    background: rgba(201, 168, 76, 0.6);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
    animation: windowFlicker 4s ease-in-out infinite;
}

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

.building-entrance {
    width: 200px;
    height: 60px;
    background: linear-gradient(180deg, var(--navy-lighter), var(--navy));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.entrance-glass {
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.entrance-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.building-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.15), transparent 70%);
    filter: blur(20px);
}

.visual-caption {
    display: flex;
    gap: 16px;
    align-items: center;
}

.caption-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.caption-value {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-hint span {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-elevated), var(--shadow-glow);
}

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

.feature-card.large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-card.wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-building {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.viz-floor {
    height: 40px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.1));
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.viz-floor:nth-child(1) { width: 160px; }
.viz-floor:nth-child(2) { width: 180px; }
.viz-floor:nth-child(3) { width: 140px; }
.viz-floor:nth-child(4) { width: 200px; }

.feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.feature-icon-wrap.gold { background: rgba(201, 168, 76, 0.1); border-color: rgba(201, 168, 76, 0.2); }
.feature-icon-wrap.blue { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }
.feature-icon-wrap.purple { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.2); }
.feature-icon-wrap.green { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.feature-icon-wrap.red { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2); }

.f-icon {
    font-size: 1.5rem;
}

.feature-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fd-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--success);
    flex-shrink: 0;
}

.feature-stat {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.fs-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.fs-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.feature-visual-comp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rank-badge {
    text-align: center;
    padding: 24px 40px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
}

.rb-tier {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.rb-rank {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cream);
}

/* ===== GAMEPLAY / TIMELINE ===== */
.gameplay {
    padding: 120px 0;
    background: var(--navy-light);
    position: relative;
}

.timeline {
    margin-bottom: 80px;
    position: relative;
}

.timeline-track {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(201, 168, 76, 0.1);
}

.timeline-progress {
    height: 100%;
    width: 25%;
    background: var(--gradient-gold);
    transition: width 0.6s ease;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.t-step {
    text-align: center;
    cursor: pointer;
}

.t-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-lighter);
    border: 2px solid rgba(201, 168, 76, 0.2);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.t-step.active .t-dot {
    background: var(--gradient-gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.t-step.active .t-dot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
}

.t-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.t-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.t-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Showcase Panels */
.gameplay-showcase {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.showcase-tabs {
    display: flex;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.showcase-tab {
    flex: 1;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.showcase-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.showcase-tab.active {
    color: var(--cream);
}

.showcase-tab.active::after {
    width: 40%;
}

.showcase-tab:hover {
    color: var(--cream);
}

.showcase-panels {
    padding: 48px;
}

.showcase-panel {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.showcase-panel.active {
    display: grid;
}

.panel-mockup {
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
    box-shadow: var(--shadow-elevated);
}

.mockup-frame {
    overflow: hidden;
}

.mf-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.mf-dots {
    display: flex;
    gap: 8px;
}

.mf-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mf-dots span:nth-child(1) { background: #ef4444; }
.mf-dots span:nth-child(2) { background: #f59e0b; }
.mf-dots span:nth-child(3) { background: #22c55e; }

.mf-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.mf-body {
    padding: 28px;
    min-height: 320px;
}

/* Office Editor */
.office-editor {
    display: flex;
    gap: 20px;
}

.oe-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.oe-cell {
    aspect-ratio: 1;
    border-radius: 6px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.oe-cell.desk { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }
.oe-cell.desk.occupied { background: rgba(59, 130, 246, 0.2); }
.oe-cell.meeting { background: rgba(201, 168, 76, 0.1); border-color: rgba(201, 168, 76, 0.2); }
.oe-cell.lounge { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.oe-cell.plant { background: rgba(34, 197, 94, 0.05); border-color: rgba(34, 197, 94, 0.1); }

.oe-sidebar {
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oe-tool {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.oe-tool.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--gold);
}

/* Market View */
.market-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-chart {
    height: 180px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.mv-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.1));
    clip-path: polygon(0 80%, 20% 60%, 40% 70%, 60% 30%, 80% 40%, 100% 20%, 100% 100%, 0 100%);
}

.mv-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.15), transparent);
    clip-path: polygon(0 80%, 20% 60%, 40% 70%, 60% 30%, 80% 40%, 100% 20%, 100% 100%, 0 100%);
}

.mv-tickers {
    display: flex;
    gap: 12px;
}

.mv-ticker {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mv-ticker span:first-child {
    font-weight: 700;
    color: var(--cream);
    font-size: 0.9rem;
}

.mv-ticker.up span:last-child { color: var(--success); }
.mv-ticker.down span:last-child { color: #ef4444; }

/* Team View */
.team-view {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tv-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.tv-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    flex-shrink: 0;
}

.tv-info {
    flex: 1;
}

.tv-name {
    display: block;
    font-weight: 600;
    color: var(--cream);
    font-size: 0.95rem;
}

.tv-role {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.tv-skills {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.tv-skill {
    padding: 3px 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--accent);
}

.tv-happiness {
    font-size: 1.2rem;
}

/* Reports View */
.reports-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.rv-metric {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
}

.rv-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rv-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
}

.rv-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.rv-change.up { color: var(--success); }

.rv-chart-mini {
    grid-column: span 3;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.rv-bar {
    flex: 1;
    height: var(--h);
    background: rgba(201, 168, 76, 0.2);
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

.rv-bar.active {
    background: var(--gradient-gold);
}

/* Panel Description */
.panel-desc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.panel-desc p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.pd-stats {
    display: flex;
    gap: 24px;
}

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

.pds-val {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.pds-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: 80px 0;
    background: var(--navy);
    overflow: hidden;
}

.industries-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.im-track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.im-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 100px;
    white-space: nowrap;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.im-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--cream);
}

.im-item span {
    font-size: 1.3rem;
}

/* ===== SHOWCASE ===== */
.showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.showcase-item.featured {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.showcase-item.wide {
    grid-column: span 2;
}

.si-visual {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.si-tech { background: linear-gradient(135deg, #1a2340, #3b82f6, #1a2340); }
.si-finance { background: linear-gradient(135deg, #1a2340, #c9a84c, #1a2340); }
.si-energy { background: linear-gradient(135deg, #1a2340, #22c55e, #1a2340); }
.si-retail { background: linear-gradient(135deg, #1a2340, #ef4444, #1a2340); }

.si-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(10, 14, 26, 0.95));
}

.si-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-gold);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.si-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 4px;
}

.si-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.si-founder {
    font-size: 0.8rem;
    color: var(--gold);
}

/* ===== COMMUNITY ===== */
.community {
    padding: 120px 0;
    background: var(--navy-light);
}

.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.2);
}

.review-card.featured {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(201, 168, 76, 0.15);
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 28px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ra-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
}

.ra-info {
    display: flex;
    flex-direction: column;
}

.ra-name {
    font-weight: 600;
    color: var(--cream);
    font-size: 0.95rem;
}

.ra-title {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.sb-item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    transition: var(--transition);
}

.sb-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.sb-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.sb-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== DOWNLOAD ===== */
.download {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}

.download-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 24px;
    padding: 60px;
}

.dc-visual {
    display: flex;
    justify-content: center;
}

.dc-phone {
    width: 240px;
    height: 480px;
    background: var(--navy);
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 32px;
    padding: 12px;
    position: relative;
}

.dc-phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--navy);
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.dc-screen {
    width: 100%;
    height: 100%;
    background: var(--navy-light);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dcs-header {
    padding: 40px 16px 16px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.dcs-chart {
    flex: 1;
    position: relative;
    padding: 20px;
}

.dcs-line {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    height: 120px;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.2), transparent);
    clip-path: polygon(0 70%, 25% 50%, 50% 60%, 75% 20%, 100% 30%, 100% 100%, 0 100%);
}

.dcs-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.dcs-stats div {
    text-align: center;
}

.dcs-stats span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.dcs-stats small {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dc-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dc-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.dc-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cream);
}

.dc-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.dc-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.dc-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.dc-btn:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-2px);
}

.dc-btn span {
    font-size: 1.6rem;
}

.dc-btn div {
    display: flex;
    flex-direction: column;
}

.dc-btn small {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.dc-btn strong {
    font-size: 0.95rem;
    color: var(--cream);
}

.dc-trust {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.dc-trust span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--navy-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.15);
}

.faq-q {
    width: 100%;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: var(--transition);
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 32px 24px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--navy);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .fb-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.6;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-links-col h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 24px;
}

.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 14px; }

.footer-links-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-description { margin: 0 auto; }
    .hero-cta-group { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card.large, .feature-card.wide { grid-column: span 2; }
    .timeline-steps { grid-template-columns: repeat(2, 1fr); }
    .timeline-track { display: none; }
    .showcase-panel { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-item.featured { grid-column: span 2; }
    .reviews { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .download-card { grid-template-columns: 1fr; }
    .dc-visual { order: -1; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
    .section-header h2 { font-size: 2.2rem; }
    .title-line { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.large, .feature-card.wide { grid-template-columns: 1fr; grid-column: span 1; }
    .timeline-steps { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-item.featured, .showcase-item.wide { grid-column: span 1; }
    .stats-bar { grid-template-columns: 1fr; }
    .dc-platforms { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .section-header h2 { font-size: 1.8rem; }
    .title-line { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .dc-content h2 { font-size: 2rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card,
.review-card,
.sb-item,
.faq-item {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}
