:root {
    --primary-green: #2d6a4f;
    --accent-green: #52b788;
    --soft-leaf: #d8f3dc;
    --dark-forest: #081c15;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-main: #1b4332;
    --text-muted: #406343;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f4f9f5;
    /* Candyleaf / botanical subtle layered background */
    background-image: 
        radial-gradient(at 10% 20%, rgba(82, 183, 136, 0.25) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(183, 228, 199, 0.4) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(45, 106, 79, 0.1) 0px, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232d6a4f' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M40 40c0-11.046-8.954-20-20-20S0 28.954 0 40s8.954 20 20 20 20-8.954 20-20zm40 0c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    position: relative;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo .brand-text span {
    color: var(--accent-green);
}

.navbar nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.2s ease;
}

.navbar nav .nav-btn {
    background: var(--primary-green);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.navbar nav .nav-btn:hover {
    background: var(--accent-green);
    transform: translateY(-1px);
}

/* Hero Content */
.hero-container {
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 800px;
    margin: auto;
}

.badge {
    display: inline-block;
    background: var(--soft-leaf);
    color: var(--primary-green);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(45, 106, 79, 0.15);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark-forest);
    margin-bottom: 1.2rem;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.time-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.08);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    min-width: 85px;
}

.time-box .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
}

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

.time-divider {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-top: -1rem;
}

/* Form */
.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 460px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #cce3de;
    outline: none;
    font-size: 0.95rem;
    font-family: inherit;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.subscribe-form input:focus {
    border-color: var(--accent-green);
}

.subscribe-form button {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.subscribe-form button:hover {
    background: var(--accent-green);
    transform: scale(1.02);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    h1 { font-size: 2.1rem; }
    .countdown { gap: 0.4rem; }
    .time-box { min-width: 65px; padding: 0.8rem 0.6rem; }
    .time-box .number { font-size: 1.6rem; }
    .time-divider { font-size: 1.2rem; }
    .subscribe-form { flex-direction: column; }
}