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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: #333;
    background-color: #fffaf3;
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
}

/* Fade-in Animation for Soul */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Monitoring Indicator with Ping Animation */
.monitoring-indicator {
    display: inline-block;
    color: #ce6d06;
    animation: ping 3s infinite;
}

@keyframes ping {
    0%, 90%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    45% {
        opacity: 0.7;
        transform: scale(1.1);
        text-shadow: 0 0 8px rgba(206, 109, 6, 0.6);
    }
}

/* Hero Section with Gradient Depth */
.hero {
    background: linear-gradient(180deg, #fff2e0 0%, #ffe6cc 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin-bottom: 0;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ce6d06;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 6px rgba(227, 73, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
}

.hero-cta {
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.hero-trust {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.limited-badge {
    background-color: #e34900;
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Note - Reassurance Lines */
.cta-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

/* Section Layouts with Enhanced Contrast and Rhythm */
.section-white {
    background-color: #ffffff;
    padding: 5rem 2rem;
    border-top: 1px solid #f5d7b3;
}

.section-cream {
    background-color: #ffe3ca;
    padding: 5rem 2rem;
    border-top: 1px solid #f5d7b3;
}

/* Special Launch Offer Section with Warm Spotlight */
.launch-offer {
    background: linear-gradient(180deg, #fff0e0 0%, #ffe0c7 100%) !important;
    border-radius: 12px;
    margin: 0 1rem;
}

/* Typography Hierarchy with Better Contrast */
h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
}

/* Section Headers with Accent Underlines */
h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: rgba(227, 73, 0, 0.15);
    margin-top: 0.5rem;
}

/* Special styling for "HOW IT WORKS" */
.section-white h2:first-child {
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #777;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-white h2:first-child::after {
    width: 60px;
    background-color: rgba(119, 119, 119, 0.3);
}

p {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.1rem;
}

/* Ensure better contrast on cream backgrounds */
.section-cream p {
    color: #333;
}

ul, ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1.05rem;
}

strong {
    color: #222;
    font-weight: 600;
}

/* Links with Enhanced Action Colors */
a {
    color: #ce6d06;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

a:hover {
    color: #e34900;
    text-decoration: underline;
}

/* Enhanced CTA Button with Strong Visual Presence */
.cta {
    background: #e34900;
    color: white;
    padding: 1.25rem 1.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    margin: 3rem auto 0.5rem auto;
    max-width: 320px;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(227, 73, 0, 0.25);
    transform: translateY(0);
}

.cta:hover {
    background-color: #c93f00;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(227, 73, 0, 0.35);
    color: white;
    text-decoration: none;
}

/* Micro-Accent Elements */
.highlight {
    background: #fff0e0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: #ce6d06;
    font-weight: 600;
}

.urgency {
    text-align: center;
    font-size: 0.95rem;
    color: #e34900;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 600;
}

/* Code Elements */
code {
    background: #fdf7ef;
    color: #ce6d06;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
}

/* Video Section */
.video-container {
    text-align: center;
    margin: 2rem 0;
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.video-caption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Enhanced Footer with Brand Fingerprint */
hr {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 2rem 0;
    position: relative;
}

/* Orange accent line above footer */
hr::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: rgba(227, 73, 0, 0.3);
}

.small {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    padding: 2.5rem 2rem 1rem 2rem;
    margin-bottom: 0;
}

.small a {
    color: #ce6d06;
    font-weight: 500;
}

.small a:hover {
    color: #e34900;
    text-decoration: underline;
}

/* Brand Signature */
.signature {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0 2rem 2rem 2rem;
}

.signature a {
    color: #ce6d06;
    font-weight: 500;
}

.signature a:hover {
    color: #e34900;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-white,
    .section-cream {
        padding: 4rem 1.5rem;
    }

    .launch-offer {
        margin: 0 0.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

    li {
        font-size: 1rem;
    }

    .video-container iframe {
        height: 220px;
    }

    .cta {
        margin: 2rem auto 0.5rem auto;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .small {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .signature {
        padding: 0 1.5rem 2rem 1.5rem;
    }
}

/* Additional Polish for Small Screens */
@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .section-white,
    .section-cream {
        padding: 3rem 1rem;
    }

    .launch-offer {
        margin: 0;
        border-radius: 0;
    }

    .video-container iframe {
        height: 200px;
    }

    .small {
        padding: 1.5rem 1rem 1rem 1rem;
    }

    .signature {
        padding: 0 1rem 2rem 1rem;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    .cta {
        transform: none;
        transition: background-color 0.2s ease;
    }

    .cta:hover {
        transform: none;
    }

    .fade-in {
        animation: none;
    }

    .monitoring-indicator {
        animation: none;
    }

    * {
        scroll-behavior: auto;
    }
}