:root {
    --bg: #09080c;
    --bg-soft: #0e0c13;
    --surface: #131017;
    --surface-light: #19141f;

    --purple: #a45cff;
    --purple-light: #c38aff;
    --purple-dark: #6d2fb0;

    --white: #ffffff;
    --text: #e8e3ec;
    --muted: #99919f;
    --muted-dark: #625b67;

    --green: #56e39f;

    --border: rgba(255, 255, 255, 0.09);
    --border-purple: rgba(164, 92, 255, 0.35);

    --container: 1480px;
    --gutter: clamp(20px, 4vw, 64px);

    --font-display: "Orbitron", sans-serif;
    --font-main: "Exo 2", sans-serif;

    --transition: 0.35s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-width: 320px;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(120, 45, 190, 0.13),
            transparent 38%
        ),
        var(--bg);

    color: var(--text);

    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.55;

    overflow-x: hidden;
}

button,
a {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

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

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


/* =========================================
   BACKGROUND TEXTURE
========================================= */

.site-noise {
    position: fixed;
    inset: 0;

    z-index: 9999;

    pointer-events: none;

    opacity: 0.025;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================
   TOPBAR
========================================= */

.topbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    border-bottom: 1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
}

.topbar-scrolled {
    background: rgba(9, 8, 12, 0.86);

    border-color: var(--border);

    backdrop-filter: blur(18px);
}

.topbar-inner {
    width: min(
        calc(100% - 48px),
        1540px
    );

    height: 82px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    width: 116px;

    flex-shrink: 0;

    transition: transform var(--transition);
}

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

.brand img {
    width: 100%;
    height: 54px;

    object-fit: contain;
    object-position: left center;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;

    margin-left: auto;
    margin-right: 20px;
}

.main-nav a {
    position: relative;

    color: rgba(255,255,255,.68);

    font-size: 14px;
    font-weight: 600;

    transition: color var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--purple);

    transition: width var(--transition);
}

.main-nav a:hover {
    color: white;
}

.main-nav a:hover::after {
    width: 100%;
}


.topbar-play {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 12px 20px;

    color: white;

    background: rgba(164, 92, 255, .12);

    border: 1px solid var(--border-purple);

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;

    transition:
        background var(--transition),
        transform var(--transition);
}

.topbar-play span {
    color: var(--purple-light);
    font-size: 18px;
}

.topbar-play:hover {
    background: rgba(164, 92, 255, .2);
    transform: translateY(-2px);
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: min(900px, 100vh);

    display: flex;
    align-items: center;

    overflow: hidden;

    isolation: isolate;

    background: #09070c;
}

.hero-background {
    position: absolute;
    inset: -5%;

    z-index: -3;

    background-image:
        url("images/bg.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.04);

    filter: saturate(.85);

    transition: transform 1s ease;
}

.hero-vignette {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(9, 8, 12, .98) 0%,
            rgba(9, 8, 12, .87) 27%,
            rgba(9, 8, 12, .52) 56%,
            rgba(9, 8, 12, .74) 100%
        ),
        linear-gradient(
            0deg,
            #09080c 0%,
            transparent 35%,
            rgba(9,8,12,.35) 100%
        );
}

.hero-decoration {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);

    opacity: .12;
}

.hero-decoration-left {
    left: -250px;
    bottom: -200px;

    background: #8739d0;
}

.hero-decoration-right {
    right: -300px;
    top: 10%;

    background: #a45cff;
}


.hero-content {
    padding-top: 80px;
    padding-bottom: 90px;
}

.hero-main {
    width: min(780px, 100%);
}


.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    color: rgba(255,255,255,.66);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.status-dot,
.online-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 4px rgba(86,227,159,.08),
        0 0 14px rgba(86,227,159,.4);
}

.kicker-line {
    width: 34px;
    height: 1px;

    margin: 0 3px;

    background: rgba(255,255,255,.25);
}


.hero-logo {
    width: min(570px, 86vw);
    height: auto;

    max-height: 180px;

    object-fit: contain;
    object-position: left center;

    margin-bottom: 16px;

    filter:
        drop-shadow(0 14px 35px rgba(0,0,0,.4));
}


.hero h1 {
    max-width: 800px;

    margin-bottom: 22px;

    font-family: var(--font-display);

    font-size: clamp(
        34px,
        4vw,
        66px
    );

    line-height: .98;

    font-weight: 800;

    letter-spacing: -.04em;

    color: white;
}

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


.hero-description {
    max-width: 630px;

    color: rgba(255,255,255,.65);

    font-size: clamp(16px, 1.4vw, 19px);

    line-height: 1.7;

    margin-bottom: 34px;
}


/* =========================================
   BUTTONS
========================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 32px;
}

.button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    padding: 0 23px;

    color: white;

    font-weight: 700;
    font-size: 14px;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.button strong {
    font-size: 19px;
    font-weight: 400;
}

.button-primary {
    background: var(--purple);

    box-shadow:
        0 10px 35px rgba(120, 50, 180, .25);
}

.button-primary:hover {
    background: var(--purple-light);

    transform: translateY(-3px);

    box-shadow:
        0 15px 45px rgba(120, 50, 180, .35);
}

.button-secondary {
    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.14);

    color: rgba(255,255,255,.85);
}

.button-secondary:hover {
    background: rgba(255,255,255,.07);

    border-color: rgba(255,255,255,.3);

    transform: translateY(-3px);
}

.button-secondary.copied {
    border-color: rgba(86,227,159,.45);
    color: var(--green);
}


/* =========================================
   HERO SERVER
========================================= */

.hero-server {
    display: flex;
    align-items: center;

    gap: 35px;

    width: fit-content;

    padding-top: 23px;

    border-top: 1px solid rgba(255,255,255,.1);
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.server-label {
    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .14em;
}

.server-address {
    color: white;

    font-family: "JetBrains Mono", monospace;

    font-size: 14px;

    cursor: copy;

    transition: color var(--transition);
}

.server-address:hover {
    color: var(--purple-light);
}

.server-address i {
    color: var(--muted);
    font-style: normal;
}

.server-online {
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-online > div {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.server-online strong {
    color: white;

    font-family: var(--font-display);

    font-size: 17px;
}

.server-online span:not(.online-dot) {
    color: var(--muted);

    font-size: 11px;
}

.count-update {
    animation: countPulse .3s ease;
}

@keyframes countPulse {
    50% {
        transform: scale(1.22);
        color: var(--purple-light);
    }
}


.hero-bottom {
    position: absolute;

    left: 50%;
    bottom: 26px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 13px;

    color: rgba(255,255,255,.35);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .16em;
}

.scroll-line {
    width: 55px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.45)
        );
}


/* =========================================
   SERVER STRIP
========================================= */

.server-strip {
    position: relative;

    background: #0d0b11;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.server-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.strip-item {
    min-height: 105px;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 20px 28px;

    border-right: 1px solid var(--border);
}

.strip-item:first-child {
    padding-left: 0;
}

.strip-item:last-child {
    border-right: 0;
}

.strip-icon {
    color: var(--purple-light);

    font-size: 22px;

    opacity: .8;
}

.strip-item small {
    display: block;

    margin-bottom: 3px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .13em;
}

.strip-item strong {
    display: block;

    color: rgba(255,255,255,.9);

    font-size: 14px;
    font-weight: 600;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.features-section,
.start-section,
.news-section {
    padding: 150px 0;
}

.section-heading {
    display: grid;

    grid-template-columns:
        100px
        minmax(320px, 1fr)
        minmax(240px, 360px);

    align-items: end;

    gap: 35px;

    margin-bottom: 80px;
}

.section-number {
    align-self: start;

    padding-top: 10px;

    color: var(--purple-light);

    font-family: "JetBrains Mono", monospace;

    font-size: 11px;

    letter-spacing: .08em;
}

.section-kicker {
    display: block;

    margin-bottom: 13px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-heading h2 {
    color: white;

    font-family: var(--font-display);

    font-size: clamp(
        31px,
        4vw,
        58px
    );

    line-height: 1;

    letter-spacing: -.04em;
}

.section-heading h2 span {
    display: block;

    color: var(--purple-light);
}

.section-heading > p {
    max-width: 330px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   FEATURES
========================================= */

.features-section {
    background:
        linear-gradient(
            180deg,
            #0a090d 0%,
            #0c0a10 100%
        );
}

.features-list {
    display: flex;
    flex-direction: column;

    gap: 90px;
}

.feature-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(300px, .88fr);

    align-items: center;

    gap: clamp(45px, 7vw, 120px);
}

.feature-row-reverse {
    grid-template-columns:
        minmax(300px, .88fr)
        minmax(0, 1.12fr);
}

.feature-row-reverse .feature-image {
    order: 2;
}

.feature-row-reverse .feature-content {
    order: 1;
}


.feature-image {
    position: relative;

    overflow: hidden;

    aspect-ratio: 16 / 9;

    background: #151019;

    border: 1px solid var(--border);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35);
}

.feature-image::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    border: 1px solid rgba(255,255,255,.06);
}

.feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22,.61,.36,1),
        filter .8s ease;
}

.feature-row:hover .feature-image img {
    transform: scale(1.045);

    filter: saturate(1.1);
}

.feature-image-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(5,4,8,.55)
        );
}

.feature-index {
    position: absolute;

    z-index: 3;

    right: 20px;
    bottom: 17px;

    color: white;

    font-family: var(--font-display);

    font-size: 11px;
    font-weight: 700;

    opacity: .7;
}


.feature-content {
    position: relative;

    padding: 10px 0;
}

.feature-kicker {
    color: var(--purple-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .16em;
}

.feature-content h3 {
    margin: 15px 0 17px;

    color: white;

    font-family: var(--font-display);

    font-size: clamp(
        27px,
        3vw,
        43px
    );

    line-height: 1.05;

    letter-spacing: -.035em;
}

.feature-content p {
    max-width: 510px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.75;
}

.feature-line {
    width: 70px;
    height: 1px;

    margin-top: 32px;

    background: var(--purple);

    transition:
        width var(--transition);
}

.feature-row:hover .feature-line {
    width: 120px;
}


/* =========================================
   START
========================================= */

.start-section {
    background: #0c0a10;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.action-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.action-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    background: #100d14;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    overflow: hidden;

    transition:
        background var(--transition),
        transform var(--transition);
}

.action-card::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: var(--purple);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform var(--transition);
}

.action-card:hover {
    background: #17121d;

    transform: translateY(-5px);
}

.action-card:hover::after {
    transform: scaleX(1);
}


.action-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: auto;
}

.action-card-top img {
    width: 50px;
    height: 50px;

    object-fit: contain;

    transition:
        transform var(--transition);
}

.action-card:hover .action-card-top img {
    transform: scale(1.08) rotate(-3deg);
}

.action-number {
    color: var(--muted-dark);

    font-family: "JetBrains Mono", monospace;

    font-size: 10px;
}


.action-card-content > span {
    color: var(--purple-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;
}

.action-card-content h3 {
    margin-top: 7px;

    color: white;

    font-family: var(--font-display);

    font-size: 21px;

    line-height: 1.2;
}

.action-card-content p {
    max-width: 240px;

    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}

.action-arrow {
    position: absolute;

    right: 25px;
    bottom: 23px;

    color: rgba(255,255,255,.35);

    font-size: 22px;

    transition:
        color var(--transition),
        transform var(--transition);
}

.action-card:hover .action-arrow {
    color: var(--purple-light);

    transform: translate(3px, -3px);
}


/* =========================================
   NEWS
========================================= */

.news-section {
    background: #09080c;
}

.news-heading {
    margin-bottom: 60px;
}

.news-card {
    display: grid;

    grid-template-columns: 1.45fr .75fr;

    background: #100d14;

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);

    border-color: rgba(164,92,255,.28);

    background: #141019;
}

.news-image {
    position: relative;

    overflow: hidden;

    min-height: 360px;
}

.news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22,.61,.36,1);
}

.news-card:hover .news-image img {
    transform: scale(1.04);
}

.news-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 55%,
            rgba(10,8,14,.65)
        );
}

.news-open {
    position: absolute;

    right: 25px;
    bottom: 23px;

    z-index: 2;

    color: white;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .12em;

    opacity: .8;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(30px, 5vw, 70px);
}

.news-meta {
    display: flex;
    gap: 15px;

    margin-bottom: 23px;

    color: var(--purple-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;
}

.news-meta span + span {
    padding-left: 15px;

    border-left: 1px solid var(--border);
}

.news-content h3 {
    color: white;

    font-family: var(--font-display);

    font-size: clamp(
        25px,
        3vw,
        42px
    );

    line-height: 1.1;

    letter-spacing: -.035em;
}

.news-content p {
    max-width: 430px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   FINAL CTA
========================================= */

.final-section {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-top: 1px solid var(--border);
}

.final-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9,8,12,.96),
            rgba(9,8,12,.72),
            rgba(9,8,12,.96)
        ),
        url("images/bg.png");

    background-size: cover;
    background-position: center;

    opacity: .75;

    filter: saturate(.75);
}

.final-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(151,65,224,.18),
            transparent 48%
        );
}

.final-inner {
    position: relative;

    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.final-inner .section-kicker {
    margin-bottom: 20px;

    color: var(--purple-light);
}

.final-logo {
    width: min(400px, 70vw);

    max-height: 120px;

    object-fit: contain;

    margin-bottom: 20px;
}

.final-inner h2 {
    color: white;

    font-family: var(--font-display);

    font-size: clamp(
        40px,
        6vw,
        78px
    );

    line-height: .95;

    letter-spacing: -.05em;
}

.final-inner h2 span {
    color: var(--purple-light);
}

.final-inner p {
    max-width: 560px;

    margin: 22px auto 28px;

    color: rgba(255,255,255,.62);

    font-size: 16px;
}

.final-button {
    min-width: 205px;
}

.final-ip {
    margin-top: 19px;

    color: rgba(255,255,255,.42);

    font-family: "JetBrains Mono", monospace;

    font-size: 11px;

    letter-spacing: .03em;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #07070a;

    border-top: 1px solid var(--border);
}

.footer-inner {
    padding-top: 65px;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1.3fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand img {
    width: 150px;
    height: 65px;

    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 240px;

    margin-top: 13px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 8px;

    color: white;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--muted);

    font-size: 13px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--purple-light);
}

.footer-bottom {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--muted-dark);

    font-size: 11px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 20px;
}

.footer-legal a {
    color: var(--muted-dark);

    font-size: 10px;

    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--muted);
}


/* =========================================
   SCROLL TOP
========================================= */

.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    color: white;

    background: rgba(20,16,27,.9);

    border: 1px solid var(--border);

    backdrop-filter: blur(12px);

    font-size: 20px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition),
        background var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--purple);

    border-color: var(--purple);
}


/* =========================================
   REVEAL
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,.61,.36,1);
}

.reveal-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   1440+
========================================= */

@media (min-width: 1600px) {

    .hero-main {
        width: 820px;
    }

    .hero-logo {
        width: 620px;
    }

    .features-list {
        gap: 120px;
    }

    .feature-row {
        gap: 130px;
    }

    .action-card {
        min-height: 360px;
        padding: 34px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 22px;
    }

    .server-strip-inner {
        grid-template-columns: 1fr;
    }

    .strip-item {
        min-height: 80px;

        border-right: 0;
        border-bottom: 1px solid var(--border);

        padding-left: 0;
    }

    .strip-item:last-child {
        border-bottom: 0;
    }

    .section-heading {
        grid-template-columns: 70px 1fr;

        gap: 25px;
    }

    .section-heading > p {
        grid-column: 2;
    }

    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-image {
        min-height: 300px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 720px) {

    :root {
        --gutter: 20px;
    }

    .topbar-inner {
        width: calc(100% - 30px);

        height: 70px;
    }

    .brand {
        width: 100px;
    }

    .brand img {
        height: 48px;
    }

    .main-nav {
        display: none;
    }

    .topbar-play {
        padding: 10px 15px;
    }


    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 110px;
        padding-bottom: 90px;
    }

    .hero-vignette {
        background:
            linear-gradient(
                180deg,
                rgba(9,8,12,.92),
                rgba(9,8,12,.64) 45%,
                rgba(9,8,12,.97)
            );
    }

    .hero-logo {
        width: min(430px, 90vw);
        max-height: 130px;
    }

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

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-actions {
        width: 100%;
    }

    .button {
        flex: 1;
        min-width: 0;
        padding-inline: 16px;
    }

    .hero-server {
        width: 100%;

        align-items: flex-start;
        flex-direction: column;

        gap: 15px;
    }

    .hero-bottom {
        display: none;
    }


    .features-section,
    .start-section,
    .news-section {
        padding: 90px 0;
    }

    .section-heading {
        display: block;

        margin-bottom: 55px;
    }

    .section-number {
        margin-bottom: 20px;
    }

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

    .section-heading h2 {
        font-size: 34px;
    }


    .features-list {
        gap: 65px;
    }

    .feature-row,
    .feature-row-reverse {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 25px;
    }

    .feature-row-reverse .feature-image,
    .feature-row-reverse .feature-content {
        order: initial;
    }

    .feature-image {
        aspect-ratio: 16 / 10;
    }

    .feature-content h3 {
        font-size: 29px;
    }

    .feature-content p {
        font-size: 15px;
    }


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

    .action-card {
        min-height: 270px;
    }


    .news-image {
        min-height: 220px;
    }

    .news-content {
        padding: 30px 24px;
    }

    .news-content h3 {
        font-size: 28px;
    }


    .final-section {
        min-height: 540px;
    }

    .final-inner h2 {
        font-size: 45px;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;

        padding: 25px 0;
    }

    .footer-legal {
        justify-content: flex-start;

        gap: 10px 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 460px) {

    .topbar-play {
        padding: 9px 12px;

        font-size: 11px;
    }

    .hero-logo {
        max-height: 100px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .server-address {
        font-size: 12px;
    }

    .strip-item {
        gap: 13px;
    }

    .strip-item strong {
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .feature-content h3 {
        font-size: 27px;
    }

    .action-card {
        min-height: 250px;
    }

    .final-logo {
        width: 280px;
    }

    .final-inner h2 {
        font-size: 39px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

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

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

    .hero-background {
        transform: none !important;
    }

}