:root {
    --background: #f7f8fb;
    --background-soft: #eef3fb;
    --card: rgba(255, 255, 255, 0.88);
    --card-border: rgba(22, 52, 95, 0.1);
    --text: #13294b;
    --muted: #5d6e85;
    --accent: #ff6b0a;
    --accent-soft: rgba(255, 107, 10, 0.12);
    --navy: #1f4d8f;
    --navy-deep: #102746;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 12%, rgba(31, 77, 143, 0.16), transparent 32%),
        radial-gradient(circle at 85% 82%, rgba(255, 107, 10, 0.14), transparent 30%),
        linear-gradient(145deg, var(--background), var(--background-soft));
}

.background-shape {
    position: fixed;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.24;
    pointer-events: none;
}

.shape-one {
    top: -220px;
    left: -160px;
    background: rgba(31, 77, 143, 0.42);
}

.shape-two {
    right: -220px;
    bottom: -220px;
    background: rgba(255, 107, 10, 0.34);
}

.shape-three {
    top: 36%;
    right: 18%;
    width: 220px;
    height: 220px;
    background: rgba(255, 145, 86, 0.22);
}

.coming-soon {
    position: relative;
    width: min(1120px, 100%);
    padding: 30px 30px 26px;
    border: 1px solid var(--card-border);
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(243,247,253,0.9));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 30px 100px rgba(20, 44, 78, 0.12);
    overflow: hidden;
}

.coming-soon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,10,0.8), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
}

.brand-panel {
    position: relative;
}

.logo-frame {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(31, 77, 143, 0.08);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,253,0.92));
    box-shadow: 0 18px 55px rgba(18, 39, 70, 0.08);
}

.logo-frame::after {
    content: "";
    position: absolute;
    inset: auto 20px -14px 20px;
    height: 28px;
    border-radius: 999px;
    background: rgba(31, 77, 143, 0.08);
    filter: blur(12px);
}

.logo-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.top-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border: 1px solid rgba(255,107,10,0.16);
    border-radius: 100px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow:
        0 0 0 5px rgba(255,107,10,0.12),
        0 0 18px rgba(255,107,10,0.32);
    animation: pulse 2s infinite;
}

.content {
    padding: 26px 12px 10px 0;
}

.eyebrow {
    display: block;
    margin: 22px 0 18px;
    color: rgba(19,41,75,0.5);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 700;
}

h1 span {
    display: block;
    background: linear-gradient(90deg, var(--accent), #ff9b57);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    max-width: 650px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.description strong {
    color: var(--navy-deep);
    font-weight: 600;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.info-chip {
    padding: 11px 16px;
    border: 1px solid rgba(31, 77, 143, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.divider {
    width: 100%;
    height: 1px;
    margin: 45px 0 30px;
    background: linear-gradient(90deg, rgba(31,77,143,0.16), transparent);
}

.bottom-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.message-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.message strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy-deep);
    font-size: 15px;
}

.message p {
    max-width: 480px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(31,77,143,0.08);
    color: rgba(93,110,133,0.78);
    font-size: 12px;
    letter-spacing: 0.04em;
}

footer span:first-child {
    color: var(--navy-deep);
    font-weight: 600;
}

.footer-dot {
    color: var(--accent);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,107,10,0.3);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255,107,10,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,107,10,0);
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .content {
        padding: 6px 4px 4px;
    }
}

@media (max-width: 700px) {
    body {
        padding: 18px;
    }

    .coming-soon {
        padding: 22px 18px 20px;
        border-radius: 24px;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .description {
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.7;
    }

    .bottom-content {
        align-items: flex-start;
    }

    footer {
        margin-top: 45px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .shape-three {
        display: none;
    }
}