/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo a {
    text-decoration: none;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: #ff4444;
}

.logo-tagline {
    display: block;
    font-size: 0.75rem;
    color: #ccc;
    font-weight: 300;
    margin-top: 0.25rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff4444;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ff4444;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ff4444;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23grad)"/></svg>') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 68, 68, 0.1) 0%, transparent 50%, rgba(255, 68, 68, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.fire-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.feature-text strong {
    color: white;
    font-weight: 700;
}

.cta-section {
    margin-top: 2rem;
}

.cta-button-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(10px);
    }
    60% {
        transform: translateX(5px);
    }
}

.cta-button {
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    color: white;
    border: none;
    padding: 1.5rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
    text-align: center;
    line-height: 1.3;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.4);
    background: linear-gradient(135deg, #ff5555 0%, #dd4444 100%);
}

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

.athlete-silhouette {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.8) 0%, rgba(255, 68, 68, 0.4) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.athlete-silhouette::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C13.1 2 14 2.9 14 4C14 5.1 13.1 6 12 6C10.9 6 10 5.1 10 4C10 2.9 10.9 2 12 2M21 9V7L15 7.5V9M15 11.5C15.8 11.5 16.5 12.2 16.5 13S15.8 14.5 15 14.5 13.5 13.8 13.5 13 14.2 11.5 15 11.5M9.5 13.5C10.3 13.5 11 14.2 11 15S10.3 16.5 9.5 16.5 8 15.8 8 15 8.7 13.5 9.5 13.5M12 7.5C11.2 7.5 10.5 8.2 10.5 9S11.2 10.5 12 10.5 13.5 9.8 13.5 9 12.8 7.5 12 7.5M12 11C10.9 11 10 11.9 10 13V22H14V13C14 11.9 13.1 11 12 11Z"/></svg>') center/contain no-repeat;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Newsletter Form Section */
.newsletter-form {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad2" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ff4444;stop-opacity:0.05"/><stop offset="100%" style="stop-color:%23ff4444;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23grad2)"/></svg>') center/cover;
}

.form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.mailerlite-form {
    margin-bottom: 2rem;
}

/* Custom styles for MailerLite form */
#mlb2-5852802 .ml-form-embedWrapper {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

#mlb2-5852802 .ml-form-fieldRow input {
    padding: 1rem 1.5rem !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    backdrop-filter: blur(10px) !important;
    margin-bottom: 1rem !important;
}

#mlb2-5852802 .ml-form-fieldRow input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

#mlb2-5852802 .ml-form-fieldRow input:focus {
    border-color: #ff4444 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2) !important;
}

#mlb2-5852802 .ml-form-embedSubmit button.primary {
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3) !important;
    width: 100% !important;
    margin-top: 1rem !important;
}

#mlb2-5852802 .ml-form-embedSubmit button.primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.4) !important;
    background: linear-gradient(135deg, #ff5555 0%, #dd4444 100%) !important;
}

.form-disclaimer {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 3rem 0;
    border-top: 1px solid #333;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4444;
}

.footer-text {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .cta-button-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .athlete-silhouette {
        width: 250px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .benefits {
        padding: 4rem 0;
    }
    
    .newsletter-form {
        padding: 4rem 0;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

