:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --accent-red: #ff416c;
    --accent-glow: rgba(0, 242, 254, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
}
.bg-glow.top-left {
    top: -200px;
    left: -200px;
    background: rgba(0, 242, 254, 0.15);
}
.bg-glow.bottom-right {
    bottom: -200px;
    right: -200px;
    background: rgba(79, 172, 254, 0.1);
}
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 15px 45px 0 rgba(0, 242, 254, 0.15);
}

/* Typography Utilities */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.highlight-red {
    color: var(--accent-red);
}
.text-large {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 500;
}
p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
    transform: scale(1.05);
}
.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.x-mark {
    color: var(--text-muted);
    font-weight: 400;
    margin: 0 0.5rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}
.bg-darker {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.center {
    text-align: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px 0; /* Space for navbar */
    text-align: center;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column for better centering control */
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00f2fe;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 400px;
}
.floating-card {
    position: absolute;
    width: 200px;
    padding: 1rem;
    animation: float 6s ease-in-out infinite;
}
.floating-card .card-header {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.floating-card .card-body {
    font-weight: 600;
    font-size: 0.9rem;
}
.status.online {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #00ff88;
    margin-top: 0.5rem;
}
.status.online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.card-1 { top: 10%; left: 0; animation-delay: 0s; }
.card-2 { top: 40%; left: 30%; animation-delay: 2s; border-color: rgba(0, 242, 254, 0.5); box-shadow: 0 0 20px rgba(0,242,254,0.1); }
.card-3 { top: 70%; left: 60%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.animated-path {
    stroke-dashoffset: 100;
    animation: dash 5s linear infinite;
}
@keyframes dash {
    to { stroke-dashoffset: 0; }
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.stats-list {
    list-style: none;
    margin-top: 2rem;
}
.stats-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-red);
}
.feature-pills {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.pill {
    padding: 0.5rem 1rem;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #00f2fe;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    text-align: left;
}
.feature-card .card-icon {
    font-size: 2rem;
    color: #00f2fe;
    margin-bottom: 1.5rem;
    background: rgba(0, 242, 254, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}
.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--card-border);
}
.timeline::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: var(--scroll-fill, 0%);
    background: var(--primary-gradient);
    transition: height 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--bg-color);
    border: 2px solid #00f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #00f2fe;
    z-index: 1;
}

/* CTA Card */
.cta-card {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 242, 254, 0.05), rgba(0, 0, 0, 0));
    border-color: rgba(0, 242, 254, 0.2);
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Revenue Split Infographic */
.revenue-split-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.split-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
}
.split-card:hover {
    box-shadow: 0 15px 45px 0 rgba(0, 242, 254, 0.15);
}
.split-card.digital-b {
    border-top: 3px solid #ff416c;
}
.split-card.dripoff {
    border-top: 3px solid #00f2fe;
}
.split-card .icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.split-card.digital-b .icon-wrap { color: #ff416c; }
.split-card.dripoff .icon-wrap { color: #00f2fe; }
.split-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.split-card .role {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.split-card .duties {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}
.split-card .duties li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.split-card .duties li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: #00ff88;
    font-size: 0.8rem;
}
.split-card .percentage {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}
.split-card.digital-b .percentage { color: #ff416c; }
.split-card.dripoff .percentage { color: #00f2fe; }
.split-card .profit {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}
.split-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--card-border);
    font-size: 1.5rem;
    color: var(--text-muted);
    z-index: 2;
}

/* Responsive */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 120px 2rem 60px 2rem !important;
    text-align: center !important;
}
.hero .container {
    max-width: 900px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}
.hero-content {
    width: 100% !important;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        padding: 1rem !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        height: auto !important;
        text-align: center !important;
    }
    .logo {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    .hero {
        padding-top: 140px !important;
    }
    .hero-title {
        font-size: 2.2rem !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
        max-width: 100% !important;
    }
    .section-title {
        font-size: 2rem !important;
    }
    .grid-3, .split-layout {
        grid-template-columns: 1fr !important;
    }
    .revenue-split-container {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .split-divider {
        transform: rotate(90deg) !important;
        margin: 0.5rem 0 !important;
    }
}

@media (max-width: 600px) {
    .timeline {
        padding-top: 3rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .timeline::before, .timeline::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .timeline-item {
        padding-left: 0 !important;
        padding-top: 5rem !important;
        margin-bottom: 4rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    .timeline-marker {
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 0 !important;
    }
    .section {
        padding: 4rem 0 !important;
    }
}
