:root {
    --blue: #005b92;
    --blue-dark: #003f68;
    --blue-deep: #032f4c;
    --orange: #ff9718;
    --ink: #123044;
    --muted: #5d7180;
    --surface: rgba(255, 255, 255, 0.92);
    --border: rgba(0, 91, 146, 0.12);
    --shadow: 0 30px 80px rgba(3, 47, 76, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 151, 24, 0.12), transparent 30%),
        radial-gradient(circle at 88% 72%, rgba(0, 91, 146, 0.18), transparent 34%),
        linear-gradient(135deg, #edf7fb 0%, #f8fbfc 52%, #e7f4f8 100%);
}

.energy-background,
.energy-background > span {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.grid {
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(0, 91, 146, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 91, 146, 0.055) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.glow {
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    filter: blur(1px);
}

.glow-one {
    top: -12rem;
    left: -10rem;
    background: rgba(255, 151, 24, 0.16);
    animation: float-one 12s ease-in-out infinite;
}

.glow-two {
    right: -12rem;
    bottom: -13rem;
    left: auto;
    top: auto;
    background: rgba(0, 91, 146, 0.17);
    animation: float-two 14s ease-in-out infinite;
}

.energy-line {
    width: 44rem;
    height: 44rem;
    border: 1px solid rgba(0, 91, 146, 0.11);
    border-radius: 44% 56% 61% 39% / 45% 38% 62% 55%;
}

.energy-line-one {
    top: -25rem;
    right: -10rem;
    left: auto;
    animation: rotate-slow 30s linear infinite;
}

.energy-line-two {
    left: -28rem;
    bottom: -24rem;
    top: auto;
    animation: rotate-slow 36s linear infinite reverse;
}

.page-shell {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px;
}

.construction-card {
    width: min(980px, 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 30px;
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px 44px 28px;
    border-bottom: 1px solid var(--border);
}

.brand-logo {
    display: block;
    width: min(370px, 56vw);
    height: auto;
}

.brand-tag {
    margin: 0;
    padding: 9px 14px;
    border: 1px solid rgba(0, 91, 146, 0.14);
    border-radius: 999px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    background: rgba(0, 91, 146, 0.055);
}

.content {
    padding: 66px 44px 54px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 7px rgba(255, 151, 24, 0.12);
}

.status-dot::after {
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(255, 151, 24, 0.42);
    border-radius: 50%;
    content: "";
    animation: pulse 2.2s ease-out infinite;
}

h1 {
    max-width: 800px;
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(2.45rem, 6.1vw, 5.15rem);
    font-weight: 760;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: balance;
}

h1 span {
    color: var(--blue);
}

.intro {
    max-width: 690px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    line-height: 1.72;
}

.progress {
    position: relative;
    width: min(460px, 100%);
    height: 6px;
    margin-top: 38px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 91, 146, 0.1);
}

.progress-bar {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), #1286ba, var(--orange));
    animation: energy-flow 3.2s ease-in-out infinite alternate;
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.values span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #335367;
    font-size: 0.92rem;
    font-weight: 650;
}

.values span:not(:last-child)::after {
    width: 4px;
    height: 4px;
    margin-left: 2px;
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 44px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem;
    background: rgba(237, 247, 251, 0.58);
}

.footer p {
    margin: 0;
}

.copyright {
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        opacity: 0.75;
        transform: scale(0.65);
    }
    80%,
    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

@keyframes energy-flow {
    from {
        width: 58%;
        filter: saturate(0.95);
    }
    to {
        width: 76%;
        filter: saturate(1.2);
    }
}

@keyframes float-one {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(36px, 24px, 0);
    }
}

@keyframes float-two {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-28px, -18px, 0);
    }
}

@keyframes rotate-slow {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 700px) {
    .page-shell {
        padding: 18px;
    }

    .construction-card {
        border-radius: 23px;
    }

    .brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 28px 25px 24px;
    }

    .brand-logo {
        width: min(340px, 82vw);
    }

    .brand-tag {
        white-space: normal;
    }

    .content {
        padding: 48px 25px 42px;
    }

    h1 {
        font-size: clamp(2.4rem, 12vw, 4rem);
        line-height: 1.02;
    }

    .intro {
        margin-top: 24px;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 22px 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
