:root {
    --bg-dark: #0a0a0a;
    --bg-card: #171717;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --accent-primary: #8b5cf6;
    /* Violet */
    --accent-secondary: #22c55e;
    /* Green */
    --accent-glow: rgba(139, 92, 246, 0.5);
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

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

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

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-display);
    font-weight: 700;
}

.accent {
    color: var(--accent-primary);
}

.strike {
    text-decoration: line-through;
    color: var(--text-secondary);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-dark {
    background-color: var(--bg-dark);
}

.section-light {
    background-color: #111;
    /* Slightly lighter than bg-dark */
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
}

.eyebrow {
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.glitch-text {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
    flex-shrink: 0;
}

.step.highlight .step-number {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Manager Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.role {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.manager-info .section-title {
    text-align: left;
}

.stats {
    list-style: none;
    margin-top: 2rem;
}

.stats li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.manager-quote blockquote {
    font-size: 1.5rem;
    font-family: var(--font-display);
    border-left: 4px solid var(--accent-primary);
    padding-left: 2rem;
    color: var(--text-secondary);
}

/* Pricing Path */
.pricing-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens if not mobile yet, or keep row */
}

.path-step {
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    border: 1px solid var(--accent-primary);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    color: var(--accent-primary);
    white-space: nowrap;
}

.connector {
    color: var(--text-secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.price-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sub-label {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin: 0.5rem 0;
}

.period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.features li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

/* Success Card */
.success-card {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), var(--bg-card));
    border-color: var(--accent-secondary);
    justify-content: center;
    align-items: center;
}

.success-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-secondary);
}

.success-icon {
    font-size: 3rem;
    margin-top: 1rem;
}

/* Responsive Path */
@media (max-width: 1200px) {
    .pricing-path {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .path-step {
        width: 100%;
        max-width: 400px;
    }

    .connector {
        transform: rotate(90deg);
        margin: -1rem 0;
    }
}

.experiment-note {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--accent-secondary);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    color: #86efac;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .glitch-text {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .timeline::before {
        left: 19px;
    }
}