:root {
    --primary-bg: #121212;
    --secondary-bg: #1A1A1A;
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --brand-orange: #FF7A00;
    --brand-blue: #00E5FF;
    --brand-yellow: #FFE600;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.bg-darker {
    background-color: #0A0A0A;
}

.bg-gradient {
    /* Subtle radial gradient to make the section pop */
    background: radial-gradient(circle at top right, rgba(255,122,0,0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0,229,255,0.05), transparent 50%);
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.section-title span {
    color: var(--brand-orange);
}

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

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: var(--font-body);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
    background-color: #ff8c26;
}

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

.btn-secondary:hover {
    background-color: var(--text-main);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(18, 18, 18, 0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-orange);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Sections */
section {
    padding: 6rem 0;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

/* Decorative blur circles */
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--brand-orange);
    border-radius: 50%;
    filter: blur(150px);
    top: -200px;
    left: -200px;
    z-index: -1;
    opacity: 0.15;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--brand-blue);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    width: 480px;
    border-radius: 20px;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* The Problem */
.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-yellow);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Meet Slump */
.solution-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.slump-image {
    flex: 1;
}

.slump-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 0 50px rgba(255, 122, 0, 0.2);
    border: 5px solid var(--secondary-bg);
}

.slump-content {
    flex: 1;
}

.slump-quote {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--brand-yellow);
    margin-bottom: 2rem;
    border-left: 4px solid var(--brand-yellow);
    padding-left: 1.5rem;
}

/* Benefits */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: var(--brand-blue);
    font-size: 1.5rem;
}

/* How It Works */
.steps {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding: 3rem 2rem;
    background: var(--secondary-bg);
    border-radius: 20px;
    text-align: center;
    border-top: 4px solid transparent;
    transition: border-color 0.3s;
}

.step:hover {
    border-top-color: var(--brand-orange);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-orange);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Products */
.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-orange) !important;
}

/* UGC */
.ugc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.ugc-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}

.ugc-image:hover {
    transform: scale(1.05);
}

.ugc-placeholder {
    height: 350px;
    background: var(--secondary-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.2);
    border: 2px dashed rgba(255,255,255,0.1);
}

.ugc-placeholder.style-2 {
    background: var(--brand-orange);
    color: white;
    border: none;
    opacity: 0.8;
}

/* Footer CTA */
.footer {
    padding: 6rem 0 2rem;
    background: linear-gradient(180deg, transparent, rgba(255,122,0,0.1));
}

.footer-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

.email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    background: var(--secondary-bg);
    color: white;
    font-size: 1rem;
}

.email-form input:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.2);
}

.footer-bottom {
    margin-top: 5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .solution-split {
        flex-direction: column;
        text-align: center;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .footer-title { font-size: 2rem; }
}
