* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(255, 240, 245, 0.95), rgba(255, 228, 237, 0.4)),
        url("../images/background.jpeg") center/cover;
    color: #3b1f2b;
}

.page-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.hero-card {
    width: min(100%, 720px);
    padding: 48px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.85rem;
    font-weight: 700;
    color: #d45a8f;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: #2e1320;
}

.lead {
    margin: 0 auto 28px;
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6a4a5b;
}

.pill-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pill {
    min-width: 120px;
    background: linear-gradient(135deg, #ff7ab5, #ff4d8f);
    color: white;
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(255, 77, 143, 0.24);
}

.pill span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.pill strong {
    font-size: 1.05rem;
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.notify-form input {
    min-width: 260px;
    padding: 12px 14px;
    border: 1px solid #f0c7d9;
    border-radius: 999px;
    outline: none;
    font-size: 1rem;
}

.notify-form button {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: #2e1320;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.small-note {
    margin: 0;
    color: #8d6472;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .hero-card {
        padding: 32px 20px;
    }

    .notify-form {
        flex-direction: column;
        align-items: center;
    }

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