:root {
    --primary-green: #2D8A3E;
    --primary-dark: #1F5F2C;
    --primary-light: #4CAF50;
    --accent-green: #76C893;
    --background: #FAFAFA;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --shadow: rgba(45, 138, 62, 0.1);
    --shadow-lg: rgba(45, 138, 62, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(45, 138, 62, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px var(--shadow));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: fadeIn 1s ease-out 0.4s both;
}

.coming-soon {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.coming-soon h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.countdown-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow-lg);
}

.countdown-item:hover::before {
    transform: scaleX(1);
}

.countdown-value {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    opacity: 0.3;
}

.notify-section {
    max-width: 550px;
    margin: 0 auto 3rem;
    animation: fadeIn 1s ease-out 1s both;
}

.notify-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1.125rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 6px 30px var(--shadow-lg);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.notify-button {
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.notify-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.notify-button:active {
    transform: translateY(-1px);
}

.notify-button svg {
    transition: transform 0.3s ease;
}

.notify-button:hover svg {
    transform: translateX(4px);
}

.notify-message {
    font-size: 0.875rem;
    color: var(--primary-green);
    font-weight: 500;
    min-height: 1.25rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-green);
    text-decoration: none;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.social-link:hover svg {
    color: var(--white);
    transform: scale(1.1);
}

.footer {
    animation: fadeIn 1s ease-out 1.4s both;
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .countdown {
        gap: 0.75rem;
    }
    
    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 90px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        display: none;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-button {
        justify-content: center;
        width: 100%;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 75px;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
