:root {
    --primary: #2D5A27;
    --primary-light: #4A8C41;
    --secondary: #E49B51;
    --bg-color: #FDFCF5;
    --text-color: #1A2E1A;
    --text-muted: #5C6B5C;
    --glass: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
}

/* Background Elements */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(45, 90, 39, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(228, 155, 81, 0.03) 0%, transparent 40%);
    z-index: -1;
}

.blob {
    position: fixed;
    filter: blur(80px);
    z-index: -2;
    border-radius: 50%;
    opacity: 0.5;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: move 20s infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation: move 25s infinite alternate-reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: move 30s infinite linear;
}

@keyframes move {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(10%, 10%); }
}

/* Container & Layout */
.container {
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
    padding: 3rem 2rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: var(--shadow);
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(45, 90, 39, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    margin-bottom: 3.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-color);
}

.hero-title .accent {
    color: var(--primary);
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Countdown */
.countdown {
    margin-bottom: 4rem;
}

.timer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.timer-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 0.25rem;
}

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

/* Newsletter */
.newsletter {
    margin-bottom: 3rem;
}

.newsletter h3 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.05);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.2);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
    margin-top: 2rem;
}

.developer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.zayvik-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
}

.z-icon {
    width: 24px;
    height: 24px;
    background: var(--text-color);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.z-text {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.7rem;
    color: var(--text-color);
}

/* Animations */
.animate-fade-in { animation: fadeIn 1s ease-out forwards; }
.animate-fade-up { animation: fadeUp 1s ease-out forwards; opacity: 0; }
.animate-fade-down { animation: fadeDown 1s ease-out forwards; opacity: 0; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .container {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .logo-text { font-size: 2rem; }
    .hero-title { font-size: 2.2rem; }
    
    .timer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }

    .number { font-size: 2rem; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 1.8rem; }
}
