/* FilterCapture — Cyberpunk/Miami/Rave Aesthetic */

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

:root {
    /* Miami/Cyberpunk palette */
    --primary: #00ff88;      /* Neon green */
    --secondary: #ff006e;    /* Hot pink */
    --accent: #00d4ff;       /* Cyan */
    --dark-bg: #0a0e27;      /* Deep navy */
    --darker-bg: #050813;    /* Almost black */
    --text-light: #f0f0f0;
    --text-muted: #b0b0b0;
    --border: #1a1f3a;       /* Subtle borders */

    --font-mono: 'Menlo', 'Monaco', 'Courier New', monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-sans);
    background: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h2, h3, h4, h5, h6 {
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 8, 19, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
}

.logo a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-nav {
    background: var(--primary);
    color: var(--darker-bg) !important;
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-mono);
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.cta-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content h1 br {
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-mono);
    transition: var(--transition);
    border: 1px solid;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--darker-bg);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 400px;
}

@keyframes gridScan {
    0% {
        background-position: 0 0, 0 0, 0 -100%;
    }
    100% {
        background-position: 0 0, 0 0, 0 100%;
    }
}

@keyframes gridGlow {
    0%, 100% {
        border-color: rgba(0, 255, 136, 0.2);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    }
    50% {
        border-color: rgba(0, 255, 136, 0.5);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    }
}

.grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(0deg, rgba(0, 212, 255, 0.05) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.05) 2px, transparent 2px),
        linear-gradient(0deg, rgba(0, 255, 136, 0.15) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 100% 60px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    animation: gridScan 4s linear infinite, gridGlow 3s ease-in-out infinite;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(5, 8, 19, 0.5) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--accent);
    letter-spacing: 0.3px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card {
    padding: 2.5rem;
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--primary);
    background: rgba(26, 31, 58, 0.9);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
}

.solution h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary);
}

.intro-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.offerings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offering {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.6) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.offering:hover {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(26, 31, 58, 1) 0%, rgba(10, 14, 39, 0.8) 100%);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
    transform: translateY(-4px);
}

.offering-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.offering h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.offering p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    list-style: none;
}

.features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(5, 8, 19, 0.5) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--darker-bg);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-card {
    padding: 2.5rem;
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--secondary);
    background: rgba(26, 31, 58, 0.9);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
    transform: translateY(-4px);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.price {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.price-subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* CTA Section */
.cta {
    padding: 8rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About */
.about {
    padding: 4rem 0;
}

.about h1 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.about-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.beliefs {
    list-style: none;
}

.beliefs li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(26, 31, 58, 0.6);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    color: var(--text-muted);
}

.beliefs strong {
    color: var(--primary);
}

.cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.cta-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    color: var(--text-muted);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer p {
    margin: 0;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .offerings {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}
