:root {
    --black: #050505;
    --red: #e30613;
    --dark-red: #b7000b;
    --text: #1d1d1f;
    --muted: #6f6f76;
    --line: rgba(5, 5, 5, 0.08);
    --soft: #f7f7f8;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(227, 6, 19, 0.13), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(5, 5, 5, 0.08), transparent 28rem),
        linear-gradient(135deg, #ffffff 0%, #f5f5f6 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(5, 5, 5, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 78%);
}

.maintenance-page {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 48px 20px;
}

.hero-card {
    position: relative;
    width: min(1080px, 100%);
    padding: clamp(28px, 5vw, 66px);
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.hero-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.10);
}

.brand {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
}

.brand-logo {
    display: block;
    width: min(430px, 82vw);
    height: auto;
    object-fit: contain;
}

.status-pill {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border: 1px solid rgba(227, 6, 19, 0.16);
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.07);
    color: var(--dark-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 7px rgba(227, 6, 19, 0.13);
}

h1 {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    color: var(--black);
    text-align: center;
    font-size: clamp(36px, 6.2vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.lead {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--muted);
    text-align: center;
    font-size: clamp(17px, 2.1vw, 22px);
    line-height: 1.6;
}

.promise-box {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 30px auto 0;
    padding: 18px 22px;
    border-left: 5px solid var(--red);
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(227, 6, 19, 0.10), rgba(227, 6, 19, 0.03));
}

.promise-box p {
    margin: 0;
    color: var(--black);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.5;
}

.audience-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.audience-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.055);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--black);
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
}

.audience-card:nth-child(2) .card-icon {
    background: var(--red);
}

.audience-card h2 {
    margin: 0 0 10px;
    color: var(--black);
    font-size: 21px;
    letter-spacing: -0.03em;
}

.audience-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.coming-soon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.coming-soon span {
    color: var(--black);
    font-size: 18px;
    font-weight: 900;
}

.coming-soon small {
    color: var(--red);
    font-size: 15px;
    font-weight: 800;
}

@media (max-width: 760px) {
    .maintenance-page {
        padding: 24px 14px;
    }

    .hero-card {
        border-radius: 26px;
    }

    .brand {
        margin-bottom: 26px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 22px;
    }
}

@media (max-width: 430px) {
    .hero-card {
        padding: 26px 18px;
    }

    .status-pill {
        font-size: 13px;
        text-align: center;
    }

    h1 {
        letter-spacing: -0.045em;
    }

    .lead {
        font-size: 16px;
    }
}
