:root {
    --navy: #062338;
    --navy-deep: #031726;
    --navy-soft: #0a5b83;
    --green: #7cc242;
    --green-bright: #a4d65e;
    --orange: #ff6b2c;
    --white: #ffffff;
    --text: #d7e4ec;
    --muted: #93a9b7;
    --panel: rgba(8, 45, 68, 0.82);
    --panel-border: rgba(160, 204, 224, 0.18);
    --shadow: 0 30px 80px rgba(0, 10, 20, 0.42);
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--navy-deep);
}

body {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 18%, rgba(10, 91, 131, 0.32), transparent 32rem),
        radial-gradient(circle at 88% 72%, rgba(124, 194, 66, 0.14), transparent 30rem),
        linear-gradient(145deg, #031726 0%, #062338 52%, #082f49 100%);
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
    pointer-events: none;
    content: "";
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 20;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--navy-deep);
    background: var(--white);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(1180px, calc(100% - 48px));
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
}

.ambient {
    position: fixed;
    z-index: -1;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    opacity: 0.28;
    filter: blur(90px);
    pointer-events: none;
}

.ambient-one {
    top: -10rem;
    right: 5%;
    background: var(--green);
}

.ambient-two {
    bottom: -12rem;
    left: 4%;
    background: #168dca;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 35px rgba(0, 12, 24, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover {
    box-shadow: 0 18px 42px rgba(0, 12, 24, 0.34);
    transform: translateY(-2px);
}

.brand:focus-visible,
.primary-link:focus-visible,
.site-footer a:focus-visible {
    outline: 3px solid var(--green-bright);
    outline-offset: 4px;
}

.brand img {
    display: block;
    width: 232px;
    max-width: 100%;
    height: auto;
}

.service-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c5d5df;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(124, 194, 66, 0.12);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: clamp(54px, 7vw, 96px);
    padding: 56px 0 70px;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 22px;
    color: var(--green-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow-pulse {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
}

.eyebrow-pulse::after {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(164, 214, 94, 0.55);
    border-radius: 50%;
    animation: pulse 2.4s ease-out infinite;
    content: "";
}

h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.3rem);
    font-weight: 780;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

h1 span {
    color: var(--green-bright);
}

.intro {
    max-width: 580px;
    margin: 28px 0 0;
    color: var(--text);
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px 26px;
    margin-top: 36px;
}

.primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 9px;
    color: var(--navy-deep);
    background: var(--green-bright);
    box-shadow: 0 12px 28px rgba(124, 194, 66, 0.2);
    font-weight: 800;
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-link span {
    font-size: 1.3em;
    transition: transform 180ms ease;
}

.primary-link:hover {
    background: #b5e56e;
    box-shadow: 0 16px 34px rgba(124, 194, 66, 0.3);
    transform: translateY(-2px);
}

.primary-link:hover span {
    transform: translateX(3px);
}

.managed-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.shield {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 21px;
    border: 1.5px solid #70bce2;
    border-radius: 9px 9px 11px 11px;
    clip-path: polygon(50% 0, 100% 18%, 91% 75%, 50% 100%, 9% 75%, 0 18%);
}

.shield::after {
    position: absolute;
    top: 5px;
    left: 6px;
    width: 4px;
    height: 7px;
    border-right: 1.5px solid #70bce2;
    border-bottom: 1.5px solid #70bce2;
    content: "";
    transform: rotate(45deg);
}

.status-card {
    position: relative;
    padding: clamp(22px, 3.5vw, 34px);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(22px);
}

.status-card::before {
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(164, 214, 94, 0.85), transparent);
    content: "";
}

.status-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.status-heading p {
    margin: 0 0 7px;
    color: #8aa7b9;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.status-heading h2 {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.42rem);
    letter-spacing: -0.02em;
}

.status-badge {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(255, 107, 44, 0.35);
    border-radius: 999px;
    color: #ffb18f;
    background: rgba(255, 107, 44, 0.11);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-preview {
    margin: 26px 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: #f5f8fa;
    box-shadow: 0 18px 35px rgba(0, 13, 25, 0.3);
    overflow: hidden;
}

.preview-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    background: #e4ebef;
}

.preview-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b1c0c9;
}

.preview-bar span:first-child {
    background: #ff8760;
}

.preview-bar span:nth-child(2) {
    background: #efc85b;
}

.preview-bar span:nth-child(3) {
    background: #8ecb63;
}

.preview-bar i {
    width: 44%;
    height: 8px;
    margin-left: auto;
    border-radius: 6px;
    background: #cbd7dd;
}

.preview-content {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: 20px;
    min-height: 150px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(10, 91, 131, 0.06), transparent 55%),
        #ffffff;
}

.preview-mark {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border-radius: 16px;
    background: linear-gradient(145deg, #7cc242, #b7db55 45%, #0a5b83 46%, #0b7fb6);
    box-shadow: 0 12px 22px rgba(10, 91, 131, 0.2);
    transform: rotate(10deg);
}

.preview-mark span {
    width: 34%;
    height: 34%;
    border: 3px solid rgba(255, 255, 255, 0.85);
    transform: rotate(-10deg);
}

.preview-lines {
    display: grid;
    gap: 11px;
}

.preview-lines span {
    height: 10px;
    border-radius: 999px;
    background: #d8e2e7;
}

.preview-lines span:first-child {
    width: 84%;
    height: 15px;
    background: #133f5b;
}

.preview-lines span:nth-child(2) {
    width: 100%;
}

.preview-lines span:last-child {
    width: 68%;
}

.status-list {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.status-list li {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-list li:last-child {
    border-bottom: 0;
}

.status-list strong,
.status-list small {
    display: block;
}

.status-list strong {
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.status-list small {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

.status-icon {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.status-icon-ready {
    border: 1px solid rgba(124, 194, 66, 0.4);
    background: rgba(124, 194, 66, 0.13);
}

.status-icon-ready::after {
    position: absolute;
    top: 5px;
    left: 8px;
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--green-bright);
    border-bottom: 2px solid var(--green-bright);
    content: "";
    transform: rotate(45deg);
}

.status-icon-progress {
    border: 2px solid rgba(255, 107, 44, 0.28);
    border-top-color: var(--orange);
    animation: spin 2.8s linear infinite;
}

.state {
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.state-ready {
    color: var(--green-bright);
}

.state-progress {
    color: #ffaf8c;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #829aa9;
    font-size: 0.78rem;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: #b6ccda;
    font-weight: 700;
    text-decoration-color: rgba(182, 204, 218, 0.45);
    text-underline-offset: 3px;
}

.site-footer a:hover {
    color: var(--white);
}

@keyframes pulse {
    0% {
        opacity: 0.9;
        transform: scale(0.55);
    }
    75%,
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

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

@media (max-width: 920px) {
    .page-shell {
        width: min(720px, calc(100% - 40px));
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 58px 0 64px;
    }

    .hero-copy {
        max-width: 680px;
    }

    h1 {
        max-width: 640px;
    }

    .status-card {
        width: min(100%, 600px);
    }
}

@media (max-width: 620px) {
    .page-shell {
        width: min(100% - 28px, 520px);
    }

    .site-header {
        align-items: flex-start;
        padding-top: 18px;
    }

    .brand {
        max-width: 72%;
        padding: 9px 12px;
    }

    .brand img {
        width: 205px;
    }

    .service-label {
        gap: 7px;
        max-width: 100px;
        margin-top: 11px;
        font-size: 0.62rem;
        line-height: 1.45;
        text-align: right;
    }

    .service-dot {
        flex: 0 0 auto;
        width: 7px;
        height: 7px;
    }

    .hero {
        gap: 38px;
        padding: 50px 0 52px;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 0.67rem;
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .intro {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 28px;
    }

    .primary-link {
        width: 100%;
    }

    .status-card {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .status-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .site-preview {
        margin: 22px 0 18px;
    }

    .preview-content {
        min-height: 120px;
        padding: 18px;
    }

    .status-list li {
        grid-template-columns: 25px 1fr;
        gap: 10px;
    }

    .status-list .state {
        display: none;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 22px;
    }
}

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