/* ==================================================
   Nuclear Fancy Pants Edition™ — NUCLEAR+++
   File: /wp-content/themes/kadence-child/coming-soon.css
   Description: Coming Soon page styles — AutoMarketer AI waitlist
   Last Edited: 2026-03-30
   ================================================== */

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
    src: url('/wp-content/plugins/automarketer-ai/assets/fonts/nunito-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('/wp-content/plugins/automarketer-ai/assets/fonts/dm-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html, body {
    height: 100%;
}

.amai-cs-body {
    min-height: 100vh;
    background: #FAF7F4;
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1C1917;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.amai-cs-wrap {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ---- Logo ---- */
.amai-cs-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amai-cs-wordmark {
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #1C1917;
    letter-spacing: -0.01em;
}

/* ---- Card ---- */
.amai-cs-card {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid #E7DDD5;
    border-radius: 20px;
    padding: 48px 44px 44px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.amai-cs-eyebrow {
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D97757;
}

.amai-cs-headline {
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1C1917;
}

.amai-cs-sub {
    font-size: 0.975rem;
    line-height: 1.65;
    color: #57534E;
}

/* ---- Feature row ---- */
.amai-cs-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    background: #FAF7F4;
    border-radius: 12px;
    border: 1.5px solid #E7DDD5;
}

.amai-cs-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.amai-cs-feature-icon {
    width: 36px;
    height: 36px;
    background: #FFF7F4;
    border: 1.5px solid #F3C9B8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amai-cs-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}

.amai-cs-feature-title {
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #1C1917;
}

.amai-cs-feature-desc {
    font-size: 0.85rem;
    color: #78716C;
    line-height: 1.4;
}

/* ---- Form ---- */
.amai-cs-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 4px;
}

.amai-cs-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amai-cs-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.amai-cs-field label {
    font-size: 0.825rem;
    font-weight: 500;
    color: #44403C;
}

.amai-cs-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #E7DDD5;
    border-radius: 10px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #1C1917;
    background: #FDFAF8;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.amai-cs-field input::placeholder {
    color: #A8A29E;
}

.amai-cs-field input:focus {
    border-color: #D97757;
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.12);
    background: #FFFFFF;
}

.amai-cs-btn {
    width: 100%;
    padding: 13px 20px;
    background: #D97757;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.975rem;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    margin-top: 4px;
}

.amai-cs-btn:hover:not(:disabled) {
    background: #C4673F;
}

.amai-cs-btn:active:not(:disabled) {
    transform: scale(0.99);
}

.amai-cs-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ---- Notice ---- */
.amai-cs-notice {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 3px solid transparent;
}

.amai-cs-notice--success {
    background: #F0FDF4;
    border-left-color: #22C55E;
    color: #15803D;
}

.amai-cs-notice--error {
    background: #FFF7ED;
    border-left-color: #D97757;
    color: #9A3412;
}

/* ---- Fine print ---- */
.amai-cs-fine {
    font-size: 0.8rem;
    color: #A8A29E;
    text-align: center;
    margin-top: -4px;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
    .amai-cs-card {
        padding: 32px 24px 28px;
    }

    .amai-cs-headline {
        font-size: 1.6rem;
    }
}