:root {
    --background: #0a0a0a;
    --foreground: #f8fafc;
    --card: #111111;
    --card-border: #262626;
    --primary: #ff5500;
    --primary-foreground: #ffffff;
    --secondary: #1e293b;
    --muted: #171717;
    --muted-foreground: #94a3b8;
    --destructive: #dc2626;
    --border: #262626;
    --radius: 4px;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Oswald', sans-serif;
}

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

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px; /* Space for sticky mobile CTA */
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-destructive { color: var(--destructive); }
.text-muted-foreground { color: var(--muted-foreground); }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 641px) {
    .grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(255, 85, 0, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 85, 0, 0.7); }
    100% { box-shadow: 0 0 15px rgba(255, 85, 0, 0.4); }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Components */
.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 85, 0, 0.2);
    color: var(--primary);
    border: 1px solid rgba(255, 85, 0, 0.5);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    white-space: normal;
    text-align: center;
}

@media (min-width: 640px) {
    .badge {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.5rem 3rem;
    border-radius: var(--radius);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    animation: pulse-glow 2s infinite;
}

@media (min-width: 640px) {
    .btn-cta {
        width: auto;
    }
}

.btn-cta:hover {
    background-color: #e64d00;
    transform: translateY(-2px);
}

.btn-cta svg {
    margin-left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.card {
    background-color: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}

.card-content {
    display: flex;
    flex-direction: column;
}

/* Section Styles */
section {
    position: relative;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 6rem;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: luminosity;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), rgba(10, 10, 10, 0.8), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
        padding: 0;
    }
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--muted-foreground);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero p {
        font-size: 1.25rem;
        padding: 0;
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .hero-features {
        gap: 2rem;
        font-size: 1rem;
    }
}

.hero-features div {
    display: flex;
    align-items: center;
    color: var(--muted-foreground);
}

.hero-features svg {
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Pain Section */
.bg-secondary-30 { background-color: rgba(30, 41, 59, 0.3); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.pain-card {
    background-color: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(4px);
    text-align: center;
}

.pain-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pain-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
    color: var(--destructive);
}

.pain-highlight {
    padding: 2rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Solution Section */
.solution-img-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 85, 0, 0.2);
    aspect-ratio: 4/3;
    box-shadow: 0 25px 50px -12px rgba(255, 85, 0, 0.1);
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.solution-item {
    display: flex;
    align-items: flex-start;
}

.solution-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.solution-quote {
    padding: 1rem;
    border-left: 4px solid var(--primary);
    background: rgba(255, 85, 0, 0.05);
    margin-bottom: 2rem;
}

/* Learn Section */
.bg-secondary-20 { background-color: rgba(30, 41, 59, 0.2); }

.section-heading {
    font-size: 1.875rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 3rem;
    }
}

.body-text {
    font-size: 1rem;
}

@media (min-width: 640px) {
    .body-text {
        font-size: 1.25rem;
    }
}

.pricing-offer-subline {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .pricing-offer-subline {
        font-size: 1.125rem;
    }
}

.learn-item {
    background-color: var(--background);
    border-color: var(--border);
    transition: border-color 0.3s ease;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.learn-item:hover {
    border-color: rgba(255, 85, 0, 0.5);
}

.learn-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 85, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.learn-icon-wrapper svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

/* Income Section */
.income-card {
    background-color: var(--secondary);
    border: 1px solid rgba(255, 85, 0, 0.2);
    text-align: center;
}

.income-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--border);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.income-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

/* For Who Section */
.who-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}

.who-item svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Testimonials */
.testimonial-card {
    background-color: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
}

.stars {
    display: flex;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

/* Bonus Section */
.bg-secondary-40 { background-color: rgba(30, 41, 59, 0.4); }

.bonus-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 85, 0, 0.3);
}

.bonus-bg-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.bonus-card:hover .bonus-bg-icon {
    opacity: 0.2;
}

.bonus-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

/* Guarantee Section */
.guarantee-box {
    background: linear-gradient(to bottom right, var(--secondary), var(--background));
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        padding: 3rem;
    }
}

.guarantee-icon {
    width: 8rem;
    height: 8rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 85, 0, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-card {
    background-color: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(8px);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 85, 0, 0.15);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-header {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.pricing-content {
    padding: 2rem;
    text-align: center;
}

.old-price {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    text-decoration-color: var(--destructive);
    text-decoration-thickness: 2px;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
    .new-price {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .new-price {
        font-size: 4.5rem;
    }
}

.new-price span {
    font-size: 2rem;
    color: var(--primary);
}

.pricing-tagline {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: black;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    .access-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.access-item svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.footer-bottom {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
}

.footer-disclaimer {
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* Sticky Mobile Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}

@media (min-width: 769px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-price {
    font-weight: 900;
    color: white;
    font-size: 1.25rem;
}

.sticky-price .old {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.sticky-cta .btn-cta {
    padding: 0.75rem 1.5rem;
    width: auto;
    font-size: 1rem;
    animation: none;
}
