:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --text-main: #f5f5f5;
    --text-muted: #a3a3a3;
    --accent: #00f0ff; /* Electric Cyan */
    --accent-glow: rgba(0, 240, 255, 0.4);
    --primary: #3b82f6; /* Modern Blue */
    --danger: #ef4444;
    --success: #22c55e;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Orbs (Glassmorphism) */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: 20%;
    right: -150px;
    opacity: 0.3;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(5, 5, 5, 0.7);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
}
.logo-text .accent {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--accent-glow);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}
.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--accent);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.gradient-text {
    background: linear-gradient(90deg, var(--text-main), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Glass Cards */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
}
.hover-lift {
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    padding: 2.5rem;
}
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}
.feature-list {
    list-style: none;
}
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}
.card-bad h3 { color: var(--text-main); }
.card-good.highlight-card {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}
.card-good h3 { color: var(--accent); }
.card-good .feature-list li { color: var(--text-main); }

/* B2B Explainer Section */
.b2b-section {
    margin: 2rem auto;
    max-width: 1200px;
    border: 1px solid var(--accent-glow);
    background: rgba(0, 240, 255, 0.02);
}
.b2b-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.b2b-text {
    flex: 1;
}
.b2b-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.b2b-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.b2b-text strong {
    color: var(--text-main);
}
.b2b-video {
    flex: 1;
    width: 100%;
}
.video-wrapper {
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: #000;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.video-placeholder {
    text-align: center;
    color: var(--text-main);
}
.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    cursor: pointer;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform 0.3s ease;
}
.play-btn:hover {
    transform: scale(1.1);
}

/* Modules */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.module-card {
    padding: 2rem;
}
.module-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.module-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.module-card p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    max-width: 800px;
    margin: 4rem auto 8rem;
    padding: 4rem 2rem;
    text-align: center;
}
.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .comparison-grid { grid-template-columns: 1fr; }
    .b2b-content { flex-direction: column; }
}
