:root {
    /* Color Palette */
    --color-orange: #FF6A00;
    --color-orange-dark: #E65C00;
    --color-orange-light: #FF8533;
    --color-orange-alpha: rgba(255, 106, 0, 0.1);
    --color-white: #FFFFFF;
    --color-bg: #FAFAFA;
    --color-text-dark: #1F2937;
    --color-text-muted: #6B7280;
    --color-border: #E5E7EB;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1100px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-orange-alpha) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
}

.bg-shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-orange-alpha) 0%, rgba(255,255,255,0) 70%);
    bottom: -200px;
    right: -100px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography Utilities */
.text-orange {
    color: var(--color-orange);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0 60px;
    max-width: 800px;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--color-orange-alpha);
    color: var(--color-orange-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.countdown-wrapper {
    margin-bottom: 48px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
    min-width: 90px;
    border: 1px solid var(--color-border);
    transition: transform var(--transition-fast);
}

.time-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 106, 0, 0.08);
}

.time-block .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 4px;
}

.time-block .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-muted);
    opacity: 0.5;
    margin-top: -24px;
}

.pulse {
    animation: pulseGlow 1s ease;
}

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 0 rgba(255, 106, 0, 0)); }
    50% { filter: drop-shadow(0 0 12px rgba(255, 106, 0, 0.4)); }
    100% { filter: drop-shadow(0 0 0 rgba(255, 106, 0, 0)); }
}

/* Form and CTA */
.email-form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.input-group {
    display: flex;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: var(--border-radius-sm);
    background: var(--color-white);
    padding: 6px;
    border: 1px solid var(--color-border);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input-group:focus-within {
    border-color: var(--color-orange-light);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.1);
}

.input-group input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: transparent;
    outline: none;
    color: var(--color-text-dark);
}

.input-group input::placeholder {
    color: #9CA3AF;
}

.cta-button {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    padding: 0 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
}

.cta-button.outline {
    background-color: transparent;
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    padding: 14px 40px;
    border-radius: var(--border-radius-sm);
}

.cta-button.outline:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.urgency-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 16px;
    font-weight: 500;
}

.success-message {
    margin-top: 16px;
    padding: 12px;
    background-color: #DEF7EC;
    color: #03543F;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid #84E1BC;
}

/* Value Props */
.value-prop {
    width: 100%;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.feature-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--color-orange-alpha);
    color: var(--color-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Social Proof */
.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    text-align: center;
}

.avatars {
    display: flex;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--color-bg);
    margin-left: -12px;
    background-color: var(--color-white);
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.more {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-orange-alpha);
    color: var(--color-orange-dark);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.social-proof p {
    color: var(--color-text-muted);
}

.social-proof strong {
    color: var(--color-text-dark);
}

/* Secondary CTA */
.secondary-cta {
    text-align: center;
    padding: 60px 0 100px;
}

.secondary-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    width: 100%;
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding: 40px 5%;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a, .contact-email {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.social-links a:hover, .contact-email:hover {
    color: var(--color-orange);
}

.copyright {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    width: 100%;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .time-block {
        min-width: 70px;
        padding: 12px 10px;
    }
    
    .time-block .number {
        font-size: 2rem;
    }
    
    .separator {
        font-size: 1.5rem;
        margin-top: -16px;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 12px;
    }

    .input-group input {
        width: 100%;
        background: var(--color-white);
        border: 1px solid var(--color-border);
        border-radius: var(--border-radius-sm);
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }

    .cta-button {
        width: 100%;
        padding: 16px;
        border-radius: var(--border-radius-sm);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
