:root {
    --primary-red: #DC2626;
    --jackpot-gold: #FBBF24;
    --dark-navy: #0F172A;
    --charcoal: #1F2937;
    --off-white: #F9FAFB;
    --text-white: #ffffff;
    --text-gray: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--charcoal);
    background-color: var(--off-white);
}

/* 1. CONTAINER WIDTH */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--dark-navy);
    padding: 0.75rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--jackpot-gold);
    text-decoration: none;
    letter-spacing: -0.025em;
    transition: opacity 0.2s;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.brand-red {
    color: var(--primary-red);
}


.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--charcoal) 100%);
    color: var(--text-white);
    padding-top: 6rem;
    padding-bottom: 8rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e0f2fe;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #ffffff, var(--jackpot-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--jackpot-gold);
    color: var(--dark-navy);
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 2. HERO SECTION IMAGE */
.hero-image-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-screenshot {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-red);
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (min-width: 768px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 10rem;
    }

    .hero h1 {
        font-size: 3.75rem;
    }

    .hero .subheadline {
        font-size: 1.5rem;
    }
}

.mobile-break {
    display: block;
}

.desktop-break {
    display: none;
}

@media (min-width: 768px) {
    .mobile-break {
        display: none;
    }

    .desktop-break {
        display: block;
    }
}

/* 3. STATS BAR */
.stats-bar {
    background-color: var(--dark-navy);
    padding: 3rem 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--jackpot-gold);
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--jackpot-gold);
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.feature-benefit {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* 4. HOW IT WORKS SECTION */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--off-white);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    flex: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: var(--jackpot-gold);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 250px;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jackpot-gold);
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .step-arrow {
        transform: rotate(0deg);
        margin-top: 2rem;
    }
}

/* GALLERY SECTION */
.gallery {
    padding: 8rem 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5rem;
    color: #111827;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    row-gap: 5rem;
}

.gallery-item {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.02);
}

.caption {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #4b5563;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 7. CTA BAR */
.cta-bar {
    background-color: var(--primary-red);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-bar h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.btn-white {
    background-color: white;
    color: var(--primary-red);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    background-color: var(--off-white);
    color: var(--primary-red);
}

@media (min-width: 768px) {
    .cta-content {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }
}

/* 6. TESTIMONIAL */
.testimonial {
    padding: 8rem 0;
    background-color: var(--off-white);
}

.testimonial-card {
    background: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 4rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.testimonial-stars {
    color: var(--jackpot-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.25rem;
}

.testimonial blockquote {
    font-size: 1.75rem;
    font-style: italic;
    color: var(--dark-navy);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial blockquote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: var(--jackpot-gold);
    opacity: 0.2;
    font-family: serif;
    z-index: -1;
}

.testimonial cite {
    font-weight: 800;
    color: var(--charcoal);
    font-style: normal;
    display: block;
    font-size: 1.25rem;
    line-height: 1.4;
}

.testimonial cite span {
    color: #6b7280;
    font-weight: 500;
    font-size: 1rem;
}

/* PRICING SECTION */
.pricing {
    padding: 8rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.pricing-card.primary {
    border: 2px solid var(--primary-red);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.15), 0 10px 10px -5px rgba(220, 38, 38, 0.1);
    transform: scale(1.02);
    z-index: 10;
}

.pricing-card.secondary {
    background: #fdfdfe;
}

.badge-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge.available {
    background-color: var(--jackpot-gold);
    color: var(--dark-navy);
}

.badge.coming-soon {
    background-color: #e0e7ff;
    color: #3730a3;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.period {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
}

.subtext {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 1.25rem;
    color: #374151;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.check {
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.secondary .check {
    color: #818cf8;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-secondary {
    background-color: #6366f1;
    color: white;
}

.btn-secondary:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.email-capture {
    background-color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px dashed #cbd5e1;
}

.email-capture h4 {
    color: #111827;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.small-text {
    font-size: 0.875rem;
    color: #ef4444;
    margin-bottom: 1rem;
    font-weight: 600;
}

.email-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.email-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 450px);
        justify-content: center;
        align-items: center;
    }
}

/* Footer Section */
.footer {
    background-color: var(--dark-navy);
    color: var(--text-gray);
    padding: 6rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--jackpot-gold);
}

.brand h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--jackpot-gold);
}

.brand p {
    color: #94a3b8;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.social-icon:hover {
    background-color: var(--jackpot-gold);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

.footer-disclaimer {
    max-width: 100%;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-version {
    font-weight: 700;
    color: var(--jackpot-gold);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}