:root {
    --bit-accent: #6366f1;
    --bit-accent-glow: rgba(99, 102, 241, 0.5);
    --bit-secondary: #f43f5e;
    --bit-bg: #030712;
    --bit-card: rgba(17, 24, 39, 0.7);
    --bit-border: rgba(255, 255, 255, 0.1);
    --bit-text: #f9fafb;
    --bit-text-dim: #9ca3af;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background: var(--bit-bg);
    color: var(--bit-text);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Aurora Background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(244, 63, 94, 0.1) 0%, transparent 50%);
    filter: blur(80px);
}

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

/* Header */
.creative-header {
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--bit-border);
    backdrop-filter: var(--glass-blur);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--bit-accent), var(--bit-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--bit-accent-glow);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--bit-text-dim);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Hero */
.hero {
    padding: 120px 0;
    text-align: center;
}

.hero-h1 {
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 32px;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-p {
    font-size: 20px;
    color: var(--bit-text-dim);
    max-width: 600px;
    margin: 0 auto 48px;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--bit-border);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Dashboard Mockup */
.mockup-container {
    margin-top: 80px;
    background: var(--bit-card);
    border: 1px solid var(--bit-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.mockup-card {
    background: var(--glass-bg);
    border: 1px solid var(--bit-border);
    padding: 24px;
    border-radius: 16px;
    transition: transform 0.3s;
}

.mockup-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

/* Animated Features */
.features-interactive {
    padding: 120px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 140px;
}

.feature-row:nth-child(even) { flex-direction: row-reverse; }

.feature-content { flex: 1; }
.feature-visual { 
    flex: 1; 
    height: 400px;
    background: var(--glass-bg);
    border-radius: 32px;
    border: 1px solid var(--bit-border);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Floating Elements Animation */
.float-box {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--bit-accent), var(--bit-secondary));
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* Orbit Animation */
.orbit-container {
    width: 200px;
    height: 200px;
    position: relative;
}

.center-node {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px white;
}

.orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--bit-border);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.orbit-node {
    width: 20px;
    height: 20px;
    background: var(--bit-accent);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
}

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

/* CTA Section */
.cta-creative {
    padding: 140px 0;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.05));
}

/* New Content Modules */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 24px;
    margin-bottom: 120px;
}

.bento-item {
    background: var(--glass-bg);
    border: 1px solid var(--bit-border);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s;
}

.bento-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}

.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 120px;
}

.scenario-card {
    background: var(--bit-card);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--bit-border);
    transition: all 0.4s;
}

.scenario-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.step-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 60px 0 120px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--bit-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 1px;
    background: var(--bit-border);
}

.node-map {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1), transparent);
    padding: 100px 0;
    text-align: center;
    border-radius: 40px;
    border: 1px solid var(--bit-border);
    margin-bottom: 120px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--bit-accent);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 8px;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bit-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Footer */
.creative-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--bit-border);
}

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

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: var(--bit-text-dim);
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Download Page Specific */
.dl-hero {
    padding: 100px 0;
    text-align: center;
}

.dl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.dl-card {
    background: var(--glass-bg);
    border: 1px solid var(--bit-border);
    padding: 48px 32px;
    border-radius: 32px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.4s;
    text-align: center;
}

.dl-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--bit-accent);
    transform: translateY(-10px);
}

.dl-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

@media (max-width: 900px) {
    .hero-h1 { font-size: 52px; }
    .feature-row { flex-direction: column !important; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dl-grid { grid-template-columns: 1fr; }
}
