:root {
    --main-bg: #020303;
    --main-surface: rgba(28, 28, 28, 0.92);
    --main-surface-soft: rgba(255, 255, 255, 0.05);
    --main-border: rgba(255, 255, 255, 0.16);
    --main-button: #2e2e2e;
    --main-hover: #16a085;
    --main-hover-soft: rgba(22, 160, 133, 0.18);
    --main-text: #f3f3f3;
    --main-text-soft: rgba(255, 255, 255, 0.78);
    --main-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(22, 160, 133, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #050505 0%, #010101 100%);
    color: var(--main-text);
    font-family: "Roboto", sans-serif;
    padding: 0 8%;
    overflow-x: hidden;
}

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

.pageGlow--left {
    top: 4rem;
    left: -8rem;
    background: rgba(22, 160, 133, 0.26);
}

.pageGlow--right {
    top: 12rem;
    right: -8rem;
    background: rgba(255, 255, 255, 0.12);
}

.siteHeader,
main {
    position: relative;
    z-index: 1;
}

.siteHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0 1rem;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.brandMark {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.brandMarkImage {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.brandText {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brandText strong {
    font-family: "Ubuntu", sans-serif;
    font-size: 1.2rem;
}

.brandText small {
    color: var(--main-text-soft);
    font-size: 0.9rem;
}

.topNav {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.35rem;
    border-radius: 1rem;
    background: var(--main-surface);
    border: 1px solid var(--main-border);
    box-shadow: var(--main-shadow);
}

.topNav a {
    color: var(--main-text);
    text-decoration: none;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
}

.topNav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 100%;
    height: 2px;
    background: var(--main-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.topNav a:hover::after {
    transform: scaleX(1);
}

main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0 3rem;
}

.cardShell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--main-border);
    border-radius: 1.8rem;
    box-shadow: var(--main-shadow);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: center;
    padding: 3rem;
}

.eyebrow {
    color: var(--main-hover);
    font-family: "Ubuntu", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
}

.heroLead,
.siteFooter p {
    color: var(--main-text-soft);
    line-height: 1.9;
    font-size: 1rem;
}

.heroCopy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.heroActions,
.bridgeActions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.35rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    text-decoration: none;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--main-hover);
    color: #061312;
    border-color: transparent;
}

.button--primary:hover {
    background: #22b99a;
}

.button--secondary {
    background: var(--main-button);
    color: var(--main-text);
}

.button--secondary:hover {
    background: #f3f3f3;
    color: #111;
}

.button--large {
    min-height: 3.4rem;
    padding-inline: 1.6rem;
}

.heroPanel,
.statusCard {
    display: flex;
    flex-direction: column;
}

.statusCard {
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1.4rem;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.statusBadge {
    align-self: flex-start;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--main-hover-soft);
    color: #7ae6d1;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.statusList {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    color: var(--main-text-soft);
}

.statusList li {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: var(--main-surface-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.siteFooter {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.2rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.siteFooter p {
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    body {
        padding: 0 5%;
    }

    .siteHeader,
    .hero {
        grid-template-columns: 1fr;
    }

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

    .topNav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    body {
        padding: 0 1rem;
    }

    .siteHeader {
        padding-top: 1rem;
    }

    .brand {
        justify-content: center;
    }

    .brandText {
        align-items: center;
        text-align: center;
    }

    .topNav {
        padding: 1rem;
    }

    .topNav a {
        font-size: 0.95rem;
    }

    .hero,
    .siteFooter {
        padding-left: 0;
        padding-right: 0;
    }

    .hero {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .siteFooter {
        flex-direction: column;
        gap: 0.2rem;
    }
}
