        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --green-dark: #1a3a2a;
            --green-mid: #2d6a4f;
            --green-light: #52b788;
            --green-pale: #b7e4c7;
            --gold: #d4a843;
            --gold-light: #f0d68a;
            --cream: #faf8f0;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            background: var(--green-dark);
            color: var(--cream);
        }

        /* Background */
        .bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .bg-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(26, 58, 42, 0.85) 0%,
                rgba(26, 58, 42, 0.7) 30%,
                rgba(26, 58, 42, 0.6) 60%,
                rgba(26, 58, 42, 0.9) 100%
            );
            z-index: 1;
        }

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0;
            animation: floatUp linear infinite;
        }

        @keyframes floatUp {
            0% {
                opacity: 0;
                transform: translateY(100vh) scale(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-10vh) scale(1);
            }
        }

        /* Main content */
        .main-content {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        /* Logo area */
        .logo-section {
            text-align: center;
            margin-bottom: 1rem;
            animation: fadeInDown 1s ease-out;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 4px 12px rgba(82, 183, 136, 0.4));
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(82, 183, 136, 0.15);
            border: 1px solid rgba(82, 183, 136, 0.3);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--green-pale);
            margin-bottom: 1.5rem;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--green-light);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        /* Title */
        .title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            animation: fadeInDown 1s ease-out 0.2s both;
        }

        .title .highlight {
            background: linear-gradient(135deg, var(--green-light), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            font-weight: 300;
            color: rgba(250, 248, 240, 0.75);
            max-width: 600px;
            margin: 1rem auto 2.5rem;
            line-height: 1.7;
            animation: fadeInDown 1s ease-out 0.4s both;
        }

        /* Countdown */
        .countdown-section {
            animation: fadeInUp 1s ease-out 0.6s both;
            margin-bottom: 3rem;
        }

        .countdown-label {
            text-align: center;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .countdown {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .countdown-item {
            text-align: center;
            position: relative;
        }

        .countdown-item::after {
            content: ':';
            position: absolute;
            right: -1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: rgba(212, 168, 67, 0.4);
            font-weight: 300;
        }

        .countdown-item:last-child::after {
            display: none;
        }

        .countdown-value {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(82, 183, 136, 0.2);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--white);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .countdown-value::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px 16px 0 0;
        }

        .countdown-item:hover .countdown-value {
            border-color: rgba(82, 183, 136, 0.5);
            box-shadow: 0 8px 32px rgba(82, 183, 136, 0.15);
            transform: translateY(-4px);
        }

        .countdown-unit {
            margin-top: 0.75rem;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(250, 248, 240, 0.5);
            font-weight: 500;
        }

        /* Email form */
        .form-section {
            width: 100%;
            max-width: 520px;
            animation: fadeInUp 1s ease-out 0.8s both;
            margin-bottom: 3rem;
        }

        .form-text {
            text-align: center;
            font-size: 0.95rem;
            color: rgba(250, 248, 240, 0.6);
            margin-bottom: 1.25rem;
        }

        .form-wrapper {
            display: flex;
            gap: 0;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(82, 183, 136, 0.2);
            border-radius: 14px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .form-wrapper:focus-within {
            border-color: rgba(82, 183, 136, 0.6);
            box-shadow: 0 0 40px rgba(82, 183, 136, 0.1);
        }

        .form-wrapper input[type="email"] {
            flex: 1;
            padding: 1rem 1.5rem;
            background: transparent;
            border: none;
            outline: none;
            color: var(--cream);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            min-width: 0;
        }

        .form-wrapper input[type="email"]::placeholder {
            color: rgba(250, 248, 240, 0.35);
        }

        .form-wrapper button {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--green-mid), var(--green-light));
            border: none;
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .form-wrapper button:hover {
            background: linear-gradient(135deg, var(--green-light), #74c69d);
            box-shadow: 0 4px 20px rgba(82, 183, 136, 0.3);
        }

        .form-wrapper button:active {
            transform: scale(0.97);
        }

        .success-message {
            text-align: center;
            margin-top: 1rem;
            color: var(--green-pale);
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.5s ease;
        }

        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Features */
        .features {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 1s ease-out 1s both;
            margin-bottom: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.25rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            font-size: 0.85rem;
            color: rgba(250, 248, 240, 0.7);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(82, 183, 136, 0.3);
            transform: translateY(-2px);
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            color: var(--green-light);
            flex-shrink: 0;
        }

        /* Footer */
        .footer {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 2rem;
            font-size: 0.8rem;
            color: rgba(250, 248, 240, 0.3);
        }

        .footer a {
            color: rgba(250, 248, 240, 0.5);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--green-light);
        }

        /* 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: 640px) {
            .countdown {
                gap: 0.75rem;
            }

            .countdown-value {
                width: 70px;
                height: 70px;
                font-size: 1.6rem;
            }

            .countdown-item::after {
                font-size: 1.5rem;
                right: -0.6rem;
            }

            .form-wrapper {
                flex-direction: column;
            }

            .form-wrapper button {
                padding: 1rem;
                border-radius: 0 0 14px 14px;
            }

            .form-wrapper input[type="email"] {
                border-radius: 14px;
            }

            .features {
                gap: 0.75rem;
            }

            .feature-item {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
            }
        }

        /* Leaf decoration */
        .leaf-decoration {
            position: fixed;
            z-index: 3;
            pointer-events: none;
            opacity: 0.06;
        }

        .leaf-decoration.top-left {
            top: -50px;
            left: -50px;
            width: 300px;
            height: 300px;
            animation: rotateSlow 60s linear infinite;
        }

        .leaf-decoration.bottom-right {
            bottom: -80px;
            right: -80px;
            width: 400px;
            height: 400px;
            animation: rotateSlow 80s linear infinite reverse;
        }

        @keyframes rotateSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            animation: fadeInUp 1s ease-out 1.5s both;
        }

        .scroll-indicator span {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(250, 248, 240, 0.3);
        }

        .scroll-mouse {
            width: 24px;
            height: 38px;
            border: 2px solid rgba(250, 248, 240, 0.2);
            border-radius: 12px;
            position: relative;
        }

        .scroll-mouse::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 8px;
            background: rgba(250, 248, 240, 0.4);
            border-radius: 2px;
            animation: scrollBounce 2s ease-in-out infinite;
        }

        @keyframes scrollBounce {
            0%, 100% { top: 6px; opacity: 1; }
            50% { top: 18px; opacity: 0.3; }
        }

        /* Progress bar for countdown */
        .progress-container {
            width: 100%;
            max-width: 520px;
            margin-top: 1.5rem;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .progress-bar {
            height: 3px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--green-mid), var(--green-light), var(--gold));
            border-radius: 2px;
            transition: width 1s linear;
        }

        .progress-text {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.7rem;
            color: rgba(250, 248, 240, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }