:root {
    --bg-color: #05050A;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --primary: #6366F1;
    --primary-hover: #4F46E5;
    --secondary: #EC4899;
    --gradient-1: linear-gradient(135deg, #6366F1, #EC4899);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

/* Effects */
.glow-bg {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(5, 5, 10, 0) 70%);
    z-index: -1;
    filter: blur(60px);
}
.glow-bg-2 {
    top: auto;
    bottom: -10%;
    left: auto;
    right: -10%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(5, 5, 10, 0) 70%);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-main); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.login-btn {
    font-weight: 500;
}
.primary-btn {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.primary-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.large-btn {
    padding: 15px 32px;
    font-size: 16px;
}
.small-btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 50px;
    gap: 50px;
}
.hero-content {
    flex: 1;
    max-width: 600px;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 30px;
    color: #818CF8;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}
.email-input:focus { border-color: var(--primary); }
.hero-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dashboard-preview-card {
    width: 100%;
    max-width: 650px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.dashboard-preview-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.card-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}
.window-controls {
    display: flex;
    gap: 6px;
}
.window-controls span {
    width: 10px; height: 10px; border-radius: 50%;
}
.window-controls span:nth-child(1) { background: #FF5F56; }
.window-controls span:nth-child(2) { background: #FFBD2E; }
.window-controls span:nth-child(3) { background: #27C93F; }
.window-title {
    margin-left: 20px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
}

.mockup-body {
    display: flex;
    height: calc(100% - 37px);
    background: rgba(10, 10, 15, 0.6);
}
.mock-sidebar {
    width: 120px;
    border-right: 1px solid var(--glass-border);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mock-line {
    height: 8px; width: 100%; border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}
.mock-line.short { width: 60%; }

.mock-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mock-top-cards {
    display: flex;
    gap: 15px;
}
.mock-card {
    flex: 1;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mock-circle {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--primary); opacity: 0.8;
}
.mock-chart-area {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.mock-chart-line {
    position: absolute;
    bottom: 20px; left: 0; right: 0; height: 50px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.2), transparent);
    filter: blur(5px);
}

.floating-element {
    position: absolute;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 20;
    animation: float 6s ease-in-out infinite;
}
.float-1 {
    top: 50px; right: -20px;
    animation-delay: 0s;
}
.float-2 {
    bottom: 70px; left: -40px;
    animation-delay: 3s;
}
.meta-icon { color: #1877F2; font-size: 24px; }
.fire-icon { color: #FF6B6B; font-size: 24px; }
.float-title { font-size: 14px; font-weight: 600; }
.float-desc { font-size: 12px; color: var(--text-muted); }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 1024px) {
    .hero-section { flex-direction: column; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-cta { flex-direction: column; }
    .nav-links { display: none; }
}
