:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(20, 20, 20, 0.7);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    
    --neon-pink: #ff0055;
    --neon-green: #aaff00;
    --neon-yellow: #ffcc00;
    
    --glow-pink: 0 0 15px rgba(255, 0, 85, 0.6), 0 0 30px rgba(255, 0, 85, 0.3);
    --glow-green: 0 0 15px rgba(170, 255, 0, 0.6), 0 0 30px rgba(170, 255, 0, 0.3);
    --glow-yellow: 0 0 15px rgba(255, 204, 0, 0.6), 0 0 30px rgba(255, 204, 0, 0.3);
    
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'Clash Display', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Noise overlay for grunge vibe */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; letter-spacing: 1px; }

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

.text-pink { color: var(--neon-pink); text-shadow: 0 0 10px rgba(255,0,85,0.4); }
.text-green { color: var(--neon-green); text-shadow: 0 0 10px rgba(170,255,0,0.4); }
.text-yellow { color: var(--neon-yellow); text-shadow: 0 0 10px rgba(255,204,0,0.4); }

.text-center { text-align: center; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-large { padding: 1rem 2.5rem; font-size: 1.2rem; }
.btn-huge { padding: 1.2rem 3rem; font-size: 1.4rem; }

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

.btn.glow-pink { border-color: var(--neon-pink); box-shadow: var(--glow-pink); }
.btn.glow-pink:hover { background-color: rgba(255,0,85,0.1); box-shadow: 0 0 25px rgba(255, 0, 85, 0.8), inset 0 0 15px rgba(255,0,85,0.5); }

.btn.glow-green { border-color: var(--neon-green); box-shadow: var(--glow-green); color: #000; background-color: var(--neon-green); }
.btn.glow-green:hover { box-shadow: 0 0 35px rgba(170, 255, 0, 0.9); transform: translateY(-2px); }

.btn-secondary {
    background-color: rgba(255,255,255,0.05);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background-color: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(5,5,5,0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 1.8rem; font-weight: 700; letter-spacing: 2px; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255,0,85,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(170, 255, 0, 0.1);
    border: 1px solid rgba(170, 255, 0, 0.3);
    color: var(--neon-green);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.plugin-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255,0,85,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.plugin-mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    mix-blend-mode: screen;
}

.mockup-overlay {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

/* Features */
.features {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: transparent;
    transition: all 0.4s ease;
}

.feature-card:nth-child(3n+1):hover::before { background: var(--neon-pink); box-shadow: var(--glow-pink); }
.feature-card:nth-child(3n+2):hover::before { background: var(--neon-green); box-shadow: var(--glow-green); }
.feature-card:nth-child(3n+3):hover::before { background: var(--neon-yellow); box-shadow: var(--glow-yellow); }

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: rgba(30, 30, 30, 0.8);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Post-Video Statement */
.post-video-statement {
    padding: 5rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-darker), #0d0d0d);
    position: relative;
    overflow: hidden;
}

.post-video-statement::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(170,255,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.statement-big {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 40px rgba(170,255,0,0.15);
}

.statement-sub {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Presets Section */
.presets {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.presets-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.preset-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 2px solid var(--neon-green);
    transition: transform 0.3s ease;
}

.preset-list li:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.05);
}

.preset-list i { font-size: 1.5rem; margin-top: 2px; }
.preset-list strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; color: #fff; margin-bottom: 0.3rem; }
.preset-list span { color: var(--text-muted); font-size: 0.95rem; }

.preset-interface {
    background: #111;
    border: 1px solid rgba(255,0,85,0.3);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--glow-pink);
}

.preset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.preset-header span { color: var(--neon-pink); font-weight: 700; letter-spacing: 1px; }
.preset-selector { background: #222; padding: 0.5rem 1rem; border-radius: 4px; border: 1px solid #444; color: #fff; font-family: monospace; }
.power-btn { width: 12px; height: 12px; border-radius: 50%; background: var(--neon-green); box-shadow: var(--glow-green); }

.preset-body {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
}

.fake-knob {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(from 180deg at 50% 50%, #222 0deg, #333 180deg, #222 360deg);
    border: 2px solid #000;
    position: relative;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.1);
}

.fake-knob::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 15px;
    background: currentColor;
    border-radius: 2px;
    transform: translateX(-50%);
    box-shadow: 0 0 10px currentColor;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item-open {
    border-color: rgba(170, 255, 0, 0.25);
    box-shadow: 0 0 20px rgba(170, 255, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-green);
}

.faq-item-open .faq-question {
    color: var(--neon-green);
}

.faq-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.35s ease, color 0.3s ease;
    color: var(--text-muted);
}

.faq-icon-open {
    transform: rotate(45deg);
    color: var(--neon-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.5, 0, 0, 1);
}

.faq-answer p {
    padding: 0 2rem 1.8rem;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, rgba(170,255,0,0.1) 0%, var(--bg-darker) 70%);
}

.cta-price {
    margin: 2rem 0 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.price-currency { font-size: 2rem; font-weight: 600; margin-top: 1rem; margin-right: 0.5rem; color: var(--neon-green); }
.price-value { font-size: 6rem; font-family: var(--font-heading); font-weight: 700; line-height: 1; }
.price-cents { font-size: 2rem; font-weight: 600; margin-top: 1rem; }

.guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ccc;
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-logo p { margin-top: 1rem; font-size: 0.9rem; max-width: 300px; }

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }

.reveal-active { opacity: 1; transform: translate(0); }

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .presets-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-actions { justify-content: center; }
    .preset-list li { text-align: left; }
    .hero::before { width: 80vw; height: 80vw; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.3rem; line-height: 1.2; }
    h1 .text-pink { display: block; }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; align-items: center; }
    .footer-links { justify-content: center; width: 100%; flex-wrap: wrap; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .navbar .container { flex-direction: column; gap: 1rem; }
    .nav-center-logo { position: static !important; transform: none !important; margin: 0 auto; display: block; height: 80px !important; }
    .logo-text { display: none; }
    
    /* Mobile refinements */
    .navbar .btn { width: auto; padding: 0.6rem 1.2rem; font-size: 0.9rem; }
    .demo { padding-bottom: 2rem !important; }
    .features { padding: 4rem 0 3rem; }
    .section-header { margin: 0 auto 3rem; }
    
    .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .feature-card { padding: 1.5rem 1rem; }
    .feature-icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .feature-card h3 { font-size: 1rem; }
    .feature-card p { font-size: 0.85rem; }
    
    .preset-list li { padding: 1rem; margin-bottom: 1rem; gap: 0.8rem; }
    .preset-list i { font-size: 1.2rem; }
    .preset-list strong { font-size: 1.05rem; }
    .preset-list span { font-size: 0.85rem; }
    
    .cta-section .btn-huge { padding: 1rem 1rem; font-size: 1.1rem; white-space: nowrap; }

    .statement-big { font-size: 1.8rem; }
    .statement-sub { font-size: 0.75rem; letter-spacing: 2px; }
    .post-video-statement { padding: 3rem 0 2.5rem; }

    .faq-question { padding: 1.2rem 1.2rem; font-size: 0.9rem; }
    .faq-answer p { padding: 0 1.2rem 1.4rem; }
}
