:root {
    --primary-green: #2E4E30;
    --light-green: #5A8C57;
    --accent-yellow: #F2C94C;
    --earth-brown: #4A3219;
    --text-light: #F4F1EA;
    --text-dark: #2C2C2C;
}

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

body, html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(46, 78, 48, 0.85) 0%, rgba(74, 50, 25, 0.75) 100%);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 3rem 1.5rem 2rem 1.5rem;
    text-align: center;
}

header {
    animation: fadeInDown 1.2s ease-out;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.growth-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3.5rem;
    width: 100%;
    max-width: 850px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease-out 0.4s both;
    margin: 2rem 0;
}

.tracker-container {
    margin-bottom: 3.5rem;
}

.stage-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0 15px;
    position: relative;
}

.stage {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.25);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    background: transparent;
}

.stage.active {
    color: var(--accent-yellow);
    text-shadow: 0 0 20px rgba(242, 201, 76, 0.8);
    transform: scale(1.3) translateY(-5px);
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--light-green), var(--accent-yellow));
    border-radius: 5px;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.6);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 110px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
}

.time {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    font-weight: 500;
}

.launch-date {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.9;
    margin-top: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.cta-section {
    margin-top: 1rem;
    animation: fadeInUp 1.2s ease-out 0.7s both;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

.subscribe-form input {
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 40px;
    border: 2px solid transparent;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    background: #fff;
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 35px rgba(242, 201, 76, 0.4);
}

.subscribe-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
    border: none;
    border-radius: 34px;
    padding: 0 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 78, 48, 0.4);
}

.subscribe-form button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(46, 78, 48, 0.6);
    background: linear-gradient(135deg, #6aa067, var(--light-green));
}

#form-message {
    margin-top: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--accent-yellow);
    transition: opacity 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    min-height: 24px;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

footer {
    width: 100%;
    animation: fadeInUp 1.2s ease-out 1s both;
    padding-bottom: 2rem;
}

.contact-info {
    font-weight: 300;
    background: rgba(0,0,0,0.15);
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-info a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    color: #fff;
    transform: translateX(5px);
}

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

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

@media (max-width: 768px) {
    .logo-title {
        font-size: 3rem;
    }
    .growth-section {
        padding: 2.5rem 1.5rem;
    }
    .time-box {
        min-width: 80px;
        padding: 1.2rem;
        gap: 0.5rem;
    }
    .countdown-container {
        gap: 1rem;
    }
    .time {
        font-size: 2.5rem;
    }
    .subscribe-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
    }
    .subscribe-form input {
        border-radius: 15px;
        margin-bottom: 1rem;
    }
    .subscribe-form button {
        position: static;
        border-radius: 15px;
        padding: 1.2rem;
        width: 100%;
    }
    .contact-info {
        padding: 1.5rem;
        width: 90%;
    }
}
