:root {
    --color-primary: #C18146;
    --color-primary-dark: #A16C17;
    --color-primary-light: #E0A66D;
    
    --color-bg-dark: #050505;
    --color-bg-panel: rgba(15, 23, 42, 0.6);
    --color-text-light: #F8FAFC;
    --color-text-dim: #94A3B8;
    
    --color-glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Splash Screen Component */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeOutSplash 1s forwards;
    animation-delay: 2.5s;
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: slowPulse 2s infinite ease-in-out;
}

.splash-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.splash-text {
    font-family: var(--font-heading);
    color: white;
    font-size: 24px;
    letter-spacing: 4px;
    font-weight: 600;
}

@keyframes fadeOutSplash {
    0% { opacity: 1; pointer-events: auto; }
    100% { opacity: 0; pointer-events: none; visibility: hidden; }
}

@keyframes slowPulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(193, 129, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 129, 70, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-glass-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-glass-border);
    padding: 12px 0;
}

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

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

.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

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

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(193, 129, 70, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    z-index: -1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-chip {
    background: rgba(193, 129, 70, 0.1);
    border: 1px solid rgba(193, 129, 70, 0.3);
    color: var(--color-primary-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-dim);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

/* Glassmorphism Generic Panel */
.glass-panel {
    background: var(--color-bg-panel);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 32px;
}

/* Faux Dashboard Preview */
.hero-preview-wrapper {
    width: 100%;
    max-width: 900px;
    perspective: 1000px;
}

.dashboard-preview {
    padding: 0;
    overflow: hidden;
    transform: rotateX(10deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.faux-ui-header {
    background: rgba(0,0,0,0.4);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faux-ui-dots {
    display: flex;
    gap: 6px;
}

.faux-ui-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4B5563;
}

.faux-ui-dots span:nth-child(1) { background: #EF4444; }
.faux-ui-dots span:nth-child(2) { background: #F59E0B; }
.faux-ui-dots span:nth-child(3) { background: #10B981; }

.faux-ui-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #94A3B8;
    background: rgba(255,255,255,0.05);
    margin: 0 40px;
    padding: 4px;
    border-radius: 4px;
}

.faux-ui-body {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(15, 23, 42, 0.4);
}

.faux-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.faux-title {
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 8px;
    font-weight: 600;
}

.faux-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.faux-amber { color: #F59E0B; }

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-dark {
    background: #000;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-dim);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-gold { background: rgba(193, 129, 70, 0.1); color: var(--color-primary); }
.icon-blue { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-dim);
    font-size: 15px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.pricing-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.pricing-popular {
    border-color: var(--color-primary);
    transform: scale(1.05);
    background: rgba(193, 129, 70, 0.05);
    position: relative;
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.text-purple { color: #8B5CF6; }

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    line-height: 1;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-dim);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    font-size: 14px;
    color: #CBD5E1;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.color-gold { color: var(--color-primary) !important; }
.color-purple { color: #A78BFA !important; }
.text-bold { font-weight: 700; }


/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 20px;
    background: #000;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Scroll Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.scroll-observe {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-observe.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-links { display: none; }
    
    .hero-title { font-size: 40px; }
    
    .hero-actions { flex-direction: column; width: 100%; }
    
    .hero-actions .btn { width: 100%; }

    .faux-ui-body { grid-template-columns: 1fr; }
    
    .features-grid { grid-template-columns: 1fr; }
    
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .pricing-popular { transform: none; }
    
    .footer-container { flex-direction: column; gap: 24px; }
}
