* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    height: 24px;
    width: 24px;
    border-radius: 8px;
    background: #fff;
}

.logo-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 1;
}

.get-hax-btn {
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: transform 0.2s;
}

.get-hax-btn:hover {
    transform: scale(1.05);
}

.get-hax-btn:active {
    transform: scale(0.95);
}

/* Hero */
.hero {
    padding: 5rem 1rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.download-btn {
    border-radius: 9999px;
    background: #fff;
    padding: 0.75rem 1.5rem;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-icon {
    width: 1rem;
    height: 1rem;
}

.see-features-btn {
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: background-color 0.3s;
}

.see-features-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Stats */
.stats {
    background: #000;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Card */
.card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Features */
.features {
    padding: 4rem 1rem;
}

.section-title {
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.features .card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.features .card p {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Promo Video */
.promo {
    padding: 4rem 1rem;
    text-align: center;
}

.promo-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-frame {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Fumo Zone */
.fumo {
    padding: 4rem 1rem;
    text-align: center;
}

.fumo-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.fumo-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.fumo .card {
    text-align: center;
}

.fumo .card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.fumo-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fumo-link:hover {
    color: #ec4899;
    text-decoration: underline;
}

/* Pricing */
.pricing {
    padding: 4rem 1rem;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pricing-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.pricing-card.highlight {
    border: 2px solid rgba(255, 255, 255, 0.8);
    transform: scale(1.02);
}

.pricing-card.highlight:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
}

.pricing-price {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-perks {
    margin-top: 1rem;
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.check-icon {
    margin-top: 2px;
    height: 1rem;
    width: 1rem;
    flex-shrink: 0;
    color: #10b981;
}

/* Testimonials */
.testimonials {
    padding: 4rem 1rem;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    color: #fbbf24;
}

.star {
    height: 1rem;
    width: 1rem;
    fill: currentColor;
}

.star-empty {
    height: 1rem;
    width: 1rem;
    color: #fbbf24;
}

.testimonial-quote {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.testimonial-author {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* FAQ */
.faq {
    padding: 4rem 1rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.faq-question {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.faq-answer {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.footer-content {
    padding: 2.5rem 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-top {
        flex-direction: row;
        align-items: center;
    }

    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}