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

:root {
    /* Brand Colors */
    --moss-green: #6B8E23;
    --sand-beige: #F5F0E6;
    --copper-brown: #B87333;
    --white: #FFFFFF;
    --dark-text: #2C2C2C;
    --light-text: #666666;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-small: 8px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Buttons */
.cta-primary, .cta-button {
    background: var(--moss-green);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-primary:hover, .cta-button:hover {
    background: #5a7a1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-secondary {
    color: var(--moss-green);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cta-secondary:hover {
    border-bottom-color: var(--moss-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sand-beige) 0%, #f0ebe0 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="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23F5F0E6" stop-opacity="0.8"/><stop offset="100%" stop-color="%236B8E23" stop-opacity="0.1"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="600" r="400" fill="url(%23a)"/><circle cx="600" cy="100" r="200" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.logo h1 {
    font-size: 2.5rem;
    color: var(--moss-green);
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-bold);
}

.tagline {
    font-size: 1.1rem;
    color: var(--copper-brown);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 3.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--dark-text);
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    padding: 40px 24px;
    height: 100%;
    background: linear-gradient(180deg, var(--sand-beige) 0%, var(--white) 100%);
}

.app-header {
    text-align: center;
    margin-bottom: 40px;
}

.app-logo {
    width: 60px;
    height: 60px;
    background: var(--moss-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto 16px;
}

.app-header h3 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 0;
}

.app-content p {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 24px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(107, 142, 35, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 30%;
    height: 100%;
    background: var(--moss-green);
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--moss-green);
    border-radius: 2px;
}

/* How It Works Section */
.how-it-works {
    background: var(--sand-beige);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.step-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.step-card h3 {
    color: var(--dark-text);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.step-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Six Systems Section */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.system-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.system-card:hover {
    border-color: var(--copper-brown);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.system-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.system-card h3 {
    color: var(--copper-brown);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

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

/* What You'll Get Section */
.what-youll-get {
    background: var(--sand-beige);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-beige);
    border-radius: 50%;
}

.benefit-text h3 {
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.benefit-text p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* Social Proof Section */
.authority-badge {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--sand-beige);
    border-radius: var(--border-radius);
}

.authority-badge h3 {
    color: var(--moss-green);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--light-text);
    font-size: 1.1rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--moss-green);
    border-radius: 50%;
}

.author-info h4 {
    color: var(--dark-text);
    margin-bottom: 4px;
    font-size: 1rem;
}

.author-info p {
    color: var(--copper-brown);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--moss-green) 0%, #5a7a1f 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--white);
    color: var(--dark-text);
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.success-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: var(--border-radius);
    margin-top: 24px;
}

.success-message h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--moss-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .steps-grid,
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}
