/* ==========================================================================
   Coming Soon Page
   ========================================================================== */

/* Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Coming Soon Wrapper
   ========================================================================== */

.coming-soon-page {
    background-color: #0b2c6b;
    background-image:
        radial-gradient( ellipse at center, #1a3a8a 0%, #0b2c6b 55%, #071d4a 100% );
    color: #ffffff;
    min-height: 100vh;
    font-family: Georgia, 'Times New Roman', Times, serif;
    -webkit-font-smoothing: antialiased;
}
.coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem;
}

/* Header / Brand
   ========================================================================== */

.coming-soon-header {
    display: flex;
    align-items: flex-start;
}

.site-brand {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d8a62a;
    opacity: 0.9;
}

/* Hero Section
   ========================================================================== */

.coming-soon-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 2rem;
}

.coming-soon-content {
    text-align: center;
    max-width: 720px;
    width: 100%;
}

.coming-soon-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8a96e;
    margin-bottom: 1.5rem;
}

.coming-soon-title {
    font-size: clamp( 2.5rem, 7vw, 4.25rem );
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}
.coming-soon-subtitle {
    font-size: clamp( 0.95rem, 2vw, 1.1rem );
    color: rgba( 255, 255, 255, 0.78 );
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Timer
   ========================================================================== */

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    background: rgba( 255, 255, 255, 0.07 );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 12px;
    padding: 1.25rem 1rem 1rem;
}

.countdown-number {
    font-size: clamp( 2rem, 5vw, 3.25rem );
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    color: #ffffff;
}

.countdown-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba( 255, 255, 255, 0.45 );
    margin-top: 0.6rem;
}
/* Email Signup
   ========================================================================== */

.email-signup {
    text-align: center;
    padding: 2.5rem 1rem 3rem;
}

.signup-heading {
    font-size: clamp( 1.1rem, 2.5vw, 1.5rem );
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.signup-subtext {
    font-size: 0.9rem;
    color: rgba( 255, 255, 255, 0.55 );
    margin-bottom: 1.75rem;
}

.signup-form {
    display: flex;
    justify-content: center;
}

.signup-field-group {
    display: flex;
    width: 100%;
    max-width: 460px;
    background: rgba( 255, 255, 255, 0.07 );
    border: 1px solid rgba( 255, 255, 255, 0.2 );
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.signup-field-group:focus-within {
    border-color: rgba( 216, 166, 42, 0.6 );
}

.signup-field-group:focus-within {
    border-color: rgba( 200, 169, 110, 0.5 );
}

.signup-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.875rem 1.125rem;
    outline: none;
}

.signup-input::placeholder {
    color: rgba( 255, 255, 255, 0.35 );
}

.signup-button {
    background: #d8a62a;
    color: #0b2c6b;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.signup-button:hover {
    background: #e6b93a;
}

.signup-button:hover {
    background: #d9bc87;
}

/* Feedback Messages
   ========================================================================== */

.signup-message {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.signup-message--success {
    background: rgba( 200, 169, 110, 0.08 );
    border: 1px solid rgba( 200, 169, 110, 0.25 );
    color: #c8a96e;
}

.signup-message--error {
    background: rgba( 255, 80, 80, 0.06 );
    border: 1px solid rgba( 255, 80, 80, 0.18 );
    color: #ff8080;
}

/* Footer
   ========================================================================== */

.coming-soon-footer {
    text-align: center;
    padding: 1.5rem 1rem 2rem;
    border-top: 1px solid rgba( 255, 255, 255, 0.08 );
    margin-top: auto;
}

.footer-credit {
    font-size: 0.75rem;
    color: rgba( 255, 255, 255, 0.35 );
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.footer-location {
    font-size: 0.75rem;
    color: rgba( 255, 255, 255, 0.25 );
    letter-spacing: 0.04em;
}

/* Accessibility
   ========================================================================== */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect( 0, 0, 0, 0 );
    white-space: nowrap;
    border: 0;
}

/* Responsive
   ========================================================================== */

@media ( max-width: 480px ) {
    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-unit {
        min-width: 60px;
        padding: 1rem 0.75rem 0.75rem;
    }

    .signup-field-group {
        flex-direction: column;
        border-radius: 6px;
    }

    .signup-input {
        border-bottom: 1px solid rgba( 255, 255, 255, 0.08 );
        border-radius: 6px 6px 0 0;
    }

    .signup-button {
        border-radius: 0 0 6px 6px;
        padding: 0.875rem;
        width: 100%;
    }
}