:root {
    --brand-blue: #004aad;
    --brand-blue-soft: #1b72df;
    --brand-blue-deep: #083b83;
    --white: #ffffff;
    --text-dark: #10224d;
    --text-mid: #55709a;
    --surface: rgba(255, 255, 255, 0.16);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --border-soft: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 20px 50px rgba(0, 58, 145, 0.14);
    --shadow-strong: 0 30px 70px rgba(0, 48, 117, 0.2);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --container-width: 1120px;
    --transition: 260ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(125, 188, 255, 0.2), transparent 28%),
        radial-gradient(circle at top right, rgba(0, 74, 173, 0.18), transparent 28%),
        linear-gradient(180deg, #eef5ff 0%, #dcebff 40%, #eaf3ff 100%);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 2rem), var(--container-width));
    margin: 0 auto;
}

.page-backdrop {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.top-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(28px);
    opacity: 0.42;
}

.top-glow-left {
    top: -14rem;
    left: -10rem;
    width: 28rem;
    height: 28rem;
    background: rgba(121, 180, 255, 0.35);
}

.top-glow-right {
    top: -12rem;
    right: -12rem;
    width: 34rem;
    height: 34rem;
    background: rgba(0, 74, 173, 0.3);
}

.particle-field {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(132, 190, 255, 0.7));
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
    opacity: 0.55;
    animation: drift var(--duration, 16s) linear infinite;
    animation-delay: var(--delay, 0s);
}

.coming-soon-page {
    position: relative;
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    padding: 2rem 0 1.5rem;
}

.coming-soon-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 74, 173, 0.98) 0%, rgba(10, 96, 210, 0.95) 58%, rgba(93, 164, 255, 0.88) 100%);
    clip-path: ellipse(125% 100% at 50% 0%);
    z-index: -1;
}

.coming-soon-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.5rem, 4vw, 3.6rem);
    align-items: center;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.logo-panel {
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(14px);
}

.logo-panel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(18rem, 38vw, 26rem);
    padding: 1.5rem;
    border-radius: calc(var(--radius-xl) - 8px);
    background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 74, 173, 0.08);
}

.logo-panel-inner img {
    width: min(100%, 20rem);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.1));
}

.content-panel {
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.content-panel h1 {
    margin: 1.2rem 0 1rem;
    font-size: clamp(2.9rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.lead {
    max-width: 34rem;
    margin: 0;
    font-size: clamp(1.02rem, 2vw, 1.15rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
}

.service-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.service-line span {
    padding: 0.78rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.92rem;
}

.coming-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.8rem;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--brand-blue);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 28px rgba(0, 23, 62, 0.18);
}

.site-footer {
    padding: 0 0 1.6rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 74, 173, 0.08);
    box-shadow: var(--shadow-soft);
    color: var(--text-mid);
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes drift {
    0% {
        transform: translate3d(0, 0, 0) scale(0.7);
        opacity: 0;
    }
    12% {
        opacity: 0.5;
    }
    85% {
        opacity: 0.42;
    }
    100% {
        transform: translate3d(var(--x-move, 40px), var(--y-move, -150px), 0) scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 980px) {
    .coming-soon-card {
        grid-template-columns: 1fr;
        max-width: 44rem;
        margin: 0 auto;
    }

    .content-panel,
    .logo-panel {
        text-align: center;
    }

    .service-line {
        justify-content: center;
    }

    .coming-pill {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 1.2rem), var(--container-width));
    }

    .coming-soon-page {
        min-height: auto;
        padding: 1.4rem 0 1.4rem;
    }

    .coming-soon-page::before {
        clip-path: ellipse(132% 100% at 50% 0%);
    }

    .coming-soon-card {
        padding: 0.2rem 0;
    }

    .logo-panel {
        padding: 0.85rem;
    }

    .logo-panel-inner {
        min-height: 14.5rem;
        padding: 1rem;
    }

    .logo-panel-inner img {
        width: min(100%, 13rem);
    }

    .content-panel h1 {
        font-size: clamp(2.35rem, 10vw, 3.7rem);
    }

    .service-line {
        flex-direction: column;
        align-items: stretch;
    }

    .service-line span,
    .coming-pill {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
