/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-green: #22c55e;
    --primary-green-dark: #16a34a;
    --primary-green-light: #4ade80;
    --primary-green-lighter: #86efac;
    --accent-green: #10b981;
    --accent-lime: #84cc16;
    --bg-primary: #0a0f0a;
    --bg-secondary: #0f1810;
    --text-primary: #f0fdf4;
    --text-secondary: #bbf7d0;
    --text-muted: #86efac;
    --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.3);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative
}

/* ===== BACKGROUND ===== */
.bg-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    clip-path: path('M30,0 Q45,15 45,30 Q45,45 30,60 Q15,45 15,30 Q15,15 30,0');
    opacity: 0.1;
    animation: float 20s infinite ease-in-out
}

.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s
}

.leaf-2 {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 20s
}

.leaf-3 {
    top: 30%;
    right: 15%;
    animation-delay: 8s;
    animation-duration: 18s
}

.leaf-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 22s
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    opacity: 0.05;
    animation: pulse 8s infinite ease-in-out
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation-delay: 3s
}

.circle-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    25% {
        transform: translateY(-30px) rotate(5deg)
    }

    50% {
        transform: translateY(-60px) rotate(-5deg)
    }

    75% {
        transform: translateY(-30px) rotate(3deg)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.05
    }

    50% {
        transform: scale(1.2);
        opacity: 0.08
    }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    position: relative;
    z-index: 1
}

/* ===== HEADER ===== */
.header {
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
    animation: fadeInDown 1.2s ease-out
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    position: relative
}

.logo-icon {
    width: 80px;
    height: 80px;
    animation: gentleFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(34, 197, 94, 0.4));
    transition: all 0.4s ease
}

.logo-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 30px rgba(34, 197, 94, 0.6))
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-8px)
    }
}

.brand-identity {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1;
    margin: 0;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center
}

.brand-letter {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--accent-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.1em;
    position: relative;
    display: inline-block;
    animation: letterGlow 3s ease-in-out infinite
}

.brand-rest {
    color: var(--text-primary);
    font-weight: 600;
    opacity: 0.95
}

.brand-letter::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
    opacity: 0.6
}

@keyframes letterGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4))
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.7))
    }
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.8;
    margin-left: 2px;
    position: relative
}

.brand-tagline::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--primary-green);
    opacity: 0.6
}


/* ===== MAIN ===== */
.main-content {
    text-align: center;
    padding: var(--spacing-xl) 0
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    color: var(--primary-green-lighter);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.3s backwards;
    backdrop-filter: blur(10px)
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-lime);
    animation: sparkle 2s infinite ease-in-out
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8
    }
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.5s backwards;
    color: var(--text-primary)
}

.highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
    border-radius: var(--radius-full);
    animation: shimmer 3s infinite
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(0.8)
    }

    50% {
        opacity: 1;
        transform: scaleX(1)
    }
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.7s backwards
}

/* ===== COUNTDOWN ===== */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-2xl) 0;
    animation: fadeInUp 1s ease-out 0.9s backwards;
    flex-wrap: wrap
}

.countdown-item {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    min-width: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s
}

.countdown-item:hover::before {
    left: 100%
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow)
}

.countdown-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--spacing-xs)
}

.countdown-separator {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-green);
    font-weight: 700;
    animation: blink 2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
    animation: fadeInUp 1s ease-out 1.1s backwards
}

.feature-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s
}

.feature-card:hover::before {
    opacity: 1
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2)
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    transition: all 0.3s ease
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4)
}

.feature-icon svg {
    width: 30px;
    height: 30px
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green-lighter);
    margin-bottom: var(--spacing-sm)
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6
}

/* ===== NOTIFY ===== */
.notify-section {
    max-width: 600px;
    margin: var(--spacing-2xl) auto;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 1.3s backwards;
    position: relative;
    overflow: hidden
}

.notify-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    animation: slide 3s infinite
}

@keyframes slide {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
}

.notify-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-green-lighter);
    margin-bottom: var(--spacing-sm)
}

.notify-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6
}

.notify-form {
    display: flex;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.input-wrapper {
    flex: 1;
    min-width: 250px;
    position: relative
}

.input-icon {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    pointer-events: none
}

.notify-form input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) calc(var(--spacing-md) + 30px);
    background: rgba(15, 24, 16, 0.8);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease
}

.notify-form input::placeholder {
    color: var(--text-muted)
}

.notify-form input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1)
}

.notify-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s
}

.notify-btn:hover::before {
    width: 300px;
    height: 300px
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4)
}

.notify-btn:active {
    transform: translateY(0)
}

.btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1
}

.notify-btn span {
    position: relative;
    z-index: 1
}

.success-message {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid var(--primary-green);
    border-radius: var(--radius-md);
    color: var(--primary-green-lighter);
    font-weight: 500;
    animation: slideInUp 0.5s ease-out
}

.success-message.show {
    display: flex
}

.success-message svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green)
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    text-align: center;
    animation: fadeInUp 1s ease-out 1.5s backwards
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg)
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-lighter);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s
}

.social-link:hover::before {
    width: 100%;
    height: 100%
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3)
}

.social-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: color 0.3s
}

.social-link:hover svg {
    color: white
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6
}

/* ===== ANIMATIONS ===== */
@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)
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem
    }

    .container {
        padding: var(--spacing-md)
    }

    .logo-wrapper {
        flex-direction: column;
        gap: var(--spacing-md)
    }

    .logo-icon {
        width: 65px;
        height: 65px
    }

    .brand-identity {
        align-items: center;
        text-align: center
    }

    .brand-tagline::before {
        display: none
    }

    .countdown {
        gap: var(--spacing-sm)
    }

    .countdown-item {
        min-width: 80px;
        padding: var(--spacing-sm) var(--spacing-md)
    }

    .countdown-separator {
        display: none
    }

    .features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md)
    }

    .notify-form {
        flex-direction: column
    }

    .input-wrapper {
        min-width: 100%
    }

    .notify-btn {
        width: 100%;
        justify-content: center
    }

    .social-links {
        gap: var(--spacing-sm)
    }

    .social-link {
        width: 45px;
        height: 45px
    }
}

@media (max-width:480px) {
    .countdown-item {
        min-width: 70px;
        padding: var(--spacing-xs) var(--spacing-sm)
    }

    .countdown-value {
        font-size: 1.5rem
    }

    .countdown-label {
        font-size: 0.75rem
    }

    .feature-card {
        padding: var(--spacing-lg)
    }

    .feature-icon {
        width: 50px;
        height: 50px
    }

    .feature-icon svg {
        width: 25px;
        height: 25px
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important
    }
}