/* Coming Soon Pages — Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #000000;
    --dark: #1a1a1a;
    --gray-500: #6b6b6b;
    --gray-300: #eeeeee;
    --gray-100: #f6f6f6;
    --white: #ffffff;
    --green: #16a34a;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.5;
}

.cs-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.cs-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 600px;
}

.cs-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cs-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cs-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cs-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cs-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
}

.cs-form button {
    padding: 14px 24px;
    background: var(--green);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.cs-form button:hover { background: #15803d; }

.cs-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
}

.cs-nav-back {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    opacity: 0.8;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.cs-nav-back:hover { opacity: 1; background: rgba(255,255,255,0.25); }

.cs-footer {
    text-align: center;
    padding: 40px 24px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.cs-footer a {
    color: var(--green);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cs-hero { height: 100vh; min-height: 500px; }
    .cs-nav { padding: 16px; }
    .cs-form { flex-direction: column; border-radius: 12px; }
    .cs-form input { border-bottom: 1px solid var(--gray-300); }
    .cs-form button { padding: 14px; border-radius: 0 0 12px 12px; }
}
