* {
    box-sizing: border-box;
}

:root {
    --bg: #080d12;
    --bg-soft: #0d141c;
    --panel: #111b25;
    --panel-2: #0c151d;
    --line: #20303e;
    --text: #edf5ff;
    --muted: #91a4b7;
    --cyan: #22c7ff;
    --cyan-soft: rgba(34, 199, 255, 0.12);
    --green: #69e68c;
    --amber: #ffbd45;
    --max: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(8, 13, 18, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #2b4658;
    background:
        linear-gradient(135deg, rgba(34,199,255,.20), transparent 60%),
        #111c26;
    font-weight: 900;
    font-size: 22px;
    color: var(--cyan);
    box-shadow: inset 0 0 20px rgba(34,199,255,.08);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 19px;
    letter-spacing: .4px;
}

.brand small {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.main-nav {
    display: flex;
    gap: 26px;
}

.main-nav a {
    color: #c3d0dc;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--cyan);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 78% 35%, rgba(34,199,255,.12), transparent 30%),
        linear-gradient(180deg, #091018 0%, #080d12 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(83,140,177,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83,140,177,.16) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

.eyebrow,
.kicker {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.2px;
}

.hero h1 {
    max-width: 900px;
    margin: 18px 0 24px;
    font-size: clamp(54px, 8vw, 96px);
    line-height: .96;
    letter-spacing: -4px;
}

.hero h1 span {
    color: var(--cyan);
}

.hero p {
    max-width: 680px;
    margin: 0;
    color: #aebfce;
    font-size: 19px;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.button.primary {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #031018;
}

.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(34,199,255,.20);
}

.button.secondary {
    background: #111922;
}

.button.secondary:hover {
    border-color: #355166;
    color: var(--cyan);
}

.section {
    padding: 88px 0;
}

.section.alt {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}

.section-heading h2,
.about-grid h2,
.status-panel h2 {
    margin: 7px 0 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.section-heading p {
    max-width: 540px;
    color: var(--muted);
    margin: 0;
}

.mod-grid {
    display: grid;
    grid-template-columns: 1.55fr .75fr;
    gap: 22px;
}

.mod-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    min-height: 390px;
}

.mod-card.featured {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.card-top,
.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mod-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--cyan);
    background: var(--cyan-soft);
    border: 1px solid #2d5368;
}

.status {
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1px solid rgba(255,189,69,.35);
}

.status.beta {
    color: var(--amber);
    background: rgba(255,189,69,.08);
}

.card-body {
    padding: 28px 0 30px;
    flex: 1;
}

.mod-type {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.card-body h3 {
    margin: 5px 0 12px;
    font-size: 40px;
    line-height: 1;
}

.card-body p {
    max-width: 720px;
    color: #aebdcc;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.feature-list span {
    padding: 7px 10px;
    background: #0b1219;
    border: 1px solid #223442;
    color: #b7c6d3;
    font-size: 12px;
    font-weight: 700;
}

.version {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.upcoming {
    display: grid;
    place-items: center;
    text-align: center;
    border-style: dashed;
}

.upcoming-inner {
    max-width: 300px;
    padding: 30px;
}

.plus {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
    border: 1px dashed #355166;
    color: var(--cyan);
    font-size: 28px;
}

.upcoming h3 {
    margin: 6px 0 8px;
    font-size: 24px;
}

.upcoming p {
    color: var(--muted);
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.about-copy {
    color: #b7c5d2;
    font-size: 18px;
}

.about-copy p:first-child {
    margin-top: 0;
}

.status-panel {
    padding: 34px;
    border: 1px solid var(--line);
    background: #0d161f;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.status-panel p {
    max-width: 720px;
    color: var(--muted);
}

.status-light {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(105,230,140,.10);
}

.site-footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer-wrap {
    min-height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 13px;
}

.footer-wrap strong,
.footer-wrap span {
    display: block;
}

.footer-wrap strong {
    color: var(--text);
    font-size: 16px;
}

@media (max-width: 820px) {
    .main-nav {
        display: none;
    }

    .hero {
        min-height: 540px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .section-heading,
    .about-grid,
    .status-panel {
        display: block;
    }

    .section-heading p {
        margin-top: 18px;
    }

    .mod-grid {
        grid-template-columns: 1fr;
    }

    .status-light {
        margin-top: 24px;
    }
}

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

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        font-size: 17px;
    }

    .section {
        padding: 64px 0;
    }

    .mod-card.featured {
        padding: 22px;
    }

    .card-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-wrap {
        padding: 26px 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
}
