:root {
    --bg-primary: #FDF8F7; /* Warm cream */
    --bg-secondary: #F4EBE8; /* Slightly darker cream for alt sections */
    --text-main: #1A1A1A;
    --text-secondary: #4A4A4A;
    
    --primary: #2D5016; /* Deep Forest Green */
    --primary-light: #3D6620;
    --secondary: #B5863A; /* Brass Gold */
    --secondary-light: #C99948;
    
    --divider: #EBE7E6;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Switzer', sans-serif; 
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.highlight {
    font-weight: 500;
    color: var(--primary);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-secondary);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(253, 248, 247, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--divider);
}

.logo {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.dot {
    color: var(--secondary);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--divider);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    background-color: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.waitlist-form input:focus {
    border-color: var(--secondary);
}

.waitlist-msg {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    height: 20px;
}

.success-msg { color: var(--primary); }
.error-msg { color: #d32f2f; }

/* Sections */
.section-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.text-content {
    max-width: 800px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--divider);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card .icon {
    font-size: 32px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    margin-bottom: 0;
}

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

.footer h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 16px;
}

.footer p {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.card-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 768px) {
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-form button {
        width: 100%;
    }
    
    .section {
        padding: 60px 0;
    }
}
