:root {
    --green-dark: #0d6738;
    --green: #3e8a44;
    --green-light: #8fbe70;
    --green-pale: #edf6e8;
    --text: #173426;
    --muted: #607468;
    --white: #ffffff;
    --shadow: 0 28px 70px rgba(22, 72, 42, 0.16);
}

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

body {
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 12%, rgba(143, 190, 112, 0.24), transparent 28%),
        radial-gradient(circle at 86% 82%, rgba(13, 103, 56, 0.14), transparent 30%),
        linear-gradient(135deg, #fbfdf9 0%, #eff7ea 100%);
    overflow-x: hidden;
}

.coming-soon {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 24px 24px;
    isolation: isolate;
}

.background-shape {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    filter: blur(1px);
}

.shape-one {
    width: 340px;
    height: 340px;
    top: -140px;
    right: -100px;
    border: 50px solid rgba(143, 190, 112, 0.2);
}

.shape-two {
    width: 260px;
    height: 260px;
    left: -110px;
    bottom: -90px;
    border: 42px solid rgba(13, 103, 56, 0.12);
}

.content-card {
    width: min(1120px, 100%);
    min-height: 610px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(143, 190, 112, 0.28);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.logo-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px;
    background: white;
}

.logo-panel2::after {
    content: "";
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    border: 1px solid rgba(62, 138, 68, 0.16);
    border-radius: 50%;
}

.logo {
    position: relative;
    z-index: 1;
    width: min(390px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(13, 103, 56, 0.12));
}

.content-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 72px;
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,250,240,0.94));
}

.eyebrow {
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

h1 {
    max-width: 610px;
    margin-bottom: 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 5vw, 5.3rem);
    line-height: 0.98;
    color: var(--green-dark);
}

.intro {
    max-width: 620px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

.notify-form {
    display: flex;
    max-width: 610px;
    margin-top: 34px;
    padding: 7px;
    background: var(--white);
    border: 1px solid #d8e8d1;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(28, 86, 48, 0.08);
}

.notify-form:focus-within {
    border-color: var(--green-light);
    box-shadow: 0 0 0 4px rgba(143, 190, 112, 0.16);
}

.notify-form input {
    min-width: 0;
    flex: 1;
    padding: 0 18px;
    font: inherit;
    color: var(--text);
    border: 0;
    outline: 0;
    background: transparent;
}

.notify-form input::placeholder {
    color: #8fa096;
}

.notify-form button {
    min-height: 52px;
    padding: 0 25px;
    font: inherit;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(13, 103, 56, 0.22);
}

.form-message {
    min-height: 22px;
    margin-top: 10px;
    color: var(--green-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 27px;
    color: #52695b;
    font-size: 0.84rem;
    font-weight: 600;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: var(--green-pale);
    border-radius: 50%;
}

footer {
    padding-top: 24px;
    color: #6c8074;
    font-size: 0.82rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .coming-soon {
        justify-content: flex-start;
    }

    .content-card {
        grid-template-columns: 1fr;
    }

    .logo-panel {
        min-height: 360px;
        padding: 40px;
    }

    .logo {
        width: min(300px, 76vw);
    }

    .content-panel {
        padding: 54px 40px 58px;
        text-align: center;
        align-items: center;
    }

    .features {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .coming-soon {
        padding: 18px 14px;
    }

    .content-card {
        border-radius: 22px;
    }

    .logo-panel {
        min-height: 290px;
        padding: 28px;
    }

    .content-panel {
        padding: 42px 22px 46px;
    }

    h1 {
        font-size: 3rem;
    }

    .intro {
        font-size: 0.94rem;
    }

    .notify-form {
        width: 100%;
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }

    .notify-form input {
        min-height: 48px;
        text-align: center;
    }

    .notify-form button {
        width: 100%;
    }

    .features {
        flex-direction: column;
        align-items: flex-start;
    }
}
