/* =========================================================
   VEXYNTA ARENA
   PREMIUM GAMING + ENTERPRISE PAGE
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

:root {
    --black: #080608;
    --black-2: #0d090e;
    --plum: #190019;
    --deep-purple: #2b124c;
    --purple: #522b5b;
    --violet: #854f6c;
    --rose: #dfb6b2;
    --cream: #fbe4d8;
    --white: #f7f0ed;
    --muted: #a79a9d;

    --line: rgba(251, 228, 216, 0.14);

    --max-width: 1600px;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    width: 100%;
    min-width: 0;

    background: var(--black);
    color: var(--white);

    font-family: "Manrope", sans-serif;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(48px, 7vw, 105px);

    line-height: 0.88;

    letter-spacing: -5px;

    font-weight: 500;
}

h2 em {
    font-style: normal;
    color: var(--rose);
}


/* =========================================================
   HEADER
   ========================================================= */

.arena-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 76px;

    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    background: rgba(8, 6, 8, 0.82);

    backdrop-filter: blur(22px);

    -webkit-backdrop-filter: blur(22px);

    border-bottom: 1px solid var(--line);
}


/* =========================================================
   LOGO
   IMPORTANT: CONSTRAIN THE IMAGE HARD
   ========================================================= */

.arena-logo {
    position: absolute;

    top: 50%;
    left: 30px;

    width: 82px;
    height: 48px;

    display: flex;
    align-items: center;

    transform: translateY(-50%);

    overflow: hidden;
}


/* This prevents the giant logo problem */

.arena-logo img {
    width: 82px !important;
    max-width: 82px !important;

    height: auto !important;

    max-height: 48px !important;

    object-fit: contain;

    display: block;
}


/* =========================================================
   NAV
   ========================================================= */

.arena-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 38px;

    white-space: nowrap;
}

.arena-nav a {
    position: relative;

    display: inline-block;

    color: #d6cecf;

    font-family: "Space Grotesk", sans-serif;

    font-size: 13px;

    font-weight: 600;

    line-height: 1;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.arena-nav a:hover,
.arena-nav a.active {
    color: var(--cream);
}

.arena-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 1px;

    background: var(--rose);

    transition: width 0.3s ease;
}

.arena-nav a:hover::after,
.arena-nav a.active::after {
    width: 100%;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.arena-header-button {
    position: absolute;

    top: 50%;
    right: 28px;

    transform: translateY(-50%);

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 10px 16px;

    border: 1px solid var(--line);

    border-radius: 999px;

    color: var(--cream);

    font-size: 11px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.arena-header-button:hover {
    background: var(--cream);

    color: var(--plum);

    transform:
        translateY(-50%)
        translateY(-2px);
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.arena-section-label {
    margin-bottom: 38px;

    color: var(--rose);

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   HERO
   ========================================================= */

.arena-hero {
    position: relative;

    width: 100%;
    min-height: 100svh;

    padding:
        155px
        8vw
        105px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 24%,
            rgba(82, 43, 91, 0.42),
            transparent 31%
        ),

        radial-gradient(
            circle at 10% 84%,
            rgba(133, 79, 108, 0.18),
            transparent 29%
        ),

        var(--black);
}


/* Grid */

.arena-grid {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.26;

    background-image:
        linear-gradient(
            rgba(251, 228, 216, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(251, 228, 216, 0.025) 1px,
            transparent 1px
        );

    background-size: 82px 82px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 92%
        );

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 92%
        );
}


/* Hero content */

.arena-hero-content {
    position: relative;

    z-index: 5;

    width: min(100%, 1180px);

    max-width: 1180px;

    margin: 0;

    padding: 0;
}


.arena-label {
    margin: 0 0 28px;

    color: var(--rose);

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.arena-hero h1 {
    margin: 0;

    max-width: 1200px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        64px,
        10.5vw,
        158px
    );

    line-height: 0.82;

    letter-spacing: -9px;

    font-weight: 600;
}


.arena-hero h1 span {
    color: var(--rose);
}


.arena-hero-description {
    max-width: 650px;

    margin:
        38px
        0
        0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* Hero buttons */

.arena-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 35px;
}


.arena-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-height: 48px;

    padding:
        0
        21px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.arena-button-primary {
    background: var(--cream);

    color: var(--plum);

    border: 1px solid var(--cream);
}


.arena-button-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 55px
        rgba(223, 182, 178, 0.15);
}


.arena-button-secondary {
    border: 1px solid var(--line);

    color: var(--cream);
}


.arena-button-secondary:hover {
    transform: translateY(-4px);

    border-color: var(--rose);
}


/* Hero bottom */

.arena-hero-meta {
    position: absolute;

    left: 8vw;
    right: 8vw;
    bottom: 32px;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 16px;

    border-top: 1px solid var(--line);

    color: #675c61;

    font-family: "Space Grotesk", sans-serif;

    font-size: 9px;

    letter-spacing: 2px;
}


/* Hero glow */

.arena-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(110px);

    will-change: transform;
}


.arena-glow-one {
    width: 430px;
    height: 430px;

    top: 90px;
    right: -100px;

    background: var(--purple);

    opacity: 0.27;
}


.arena-glow-two {
    width: 360px;
    height: 360px;

    left: -180px;
    bottom: -120px;

    background: var(--violet);

    opacity: 0.18;
}


/* =========================================================
   GAMING EXPERIENCE
   ========================================================= */

.gaming-experience {
    position: relative;

    width: 100%;

    padding:
        150px
        8vw;

    border-top: 1px solid var(--line);
}


.gaming-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    gap: 10vw;
}


.gaming-intro-copy {
    padding-top: 30px;
}


.large-copy {
    margin-bottom: 25px;

    color: var(--cream);

    font-size: 25px;

    line-height: 1.5;
}


.gaming-intro-copy p:not(.large-copy) {
    max-width: 520px;

    color: var(--muted);

    font-size: 14px;
}


.arena-text-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--violet);

    color: var(--cream);

    font-size: 12px;

    font-weight: 700;
}


/* Stats */

.gaming-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    margin-top: 85px;

    border-top: 1px solid var(--line);

    border-bottom: 1px solid var(--line);
}


.gaming-stat {
    min-height: 225px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right: 1px solid var(--line);
}


.gaming-stat:last-child {
    border-right: 0;
}


.gaming-stat strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        50px,
        6vw,
        88px
    );

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 500;
}


.gaming-stat strong span {
    color: var(--rose);
}


.gaming-stat small {
    margin-top: 12px;

    color: #756a6e;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================================
   ENTERPRISE
   ========================================================= */

.enterprise {
    position: relative;

    padding:
        150px
        8vw;

    background:
        linear-gradient(
            180deg,
            #0d080e 0%,
            #140a15 100%
        );
}


.enterprise-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.48fr);

    gap: 9vw;

    align-items: end;
}


.enterprise-copy {
    color: var(--muted);

    font-size: 13px;
}


.enterprise-copy p {
    margin: 0;
}


.enterprise-copy p + p {
    margin-top: 20px;
}


/* Enterprise rows */

.enterprise-list {
    margin-top: 75px;

    border-top: 1px solid var(--line);
}


.enterprise-item {
    display: grid;

    grid-template-columns:
        55px
        minmax(0, 1fr)
        auto
        45px;

    align-items: center;

    gap: 20px;

    min-width: 0;

    padding: 25px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}


.enterprise-item:hover {
    padding-left: 12px;

    background:
        linear-gradient(
            90deg,
            rgba(82, 43, 91, 0.15),
            transparent
        );
}


.enterprise-item > span:first-child {
    color: #6e6267;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;
}


.enterprise-item strong {
    min-width: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        23px,
        3vw,
        42px
    );

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 500;
}


.enterprise-item small {
    color: var(--rose);

    font-size: 8px;

    letter-spacing: 2px;

    white-space: nowrap;
}


.enterprise-arrow {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    font-size: 14px;
}


.enterprise-note {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;

    margin-top: 25px;

    color: #6d6266;

    font-size: 9px;

    letter-spacing: 2px;
}


.enterprise-note p {
    margin: 0;

    text-align: right;

    letter-spacing: 0;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.capabilities {
    padding:
        150px
        8vw;
}


.capabilities-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.5fr);

    gap: 9vw;

    align-items: end;
}


.capabilities-header > p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}


.capability-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1px;

    margin-top: 75px;

    background: var(--line);
}


.capability-card {
    min-width: 0;

    min-height: 330px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: var(--black-2);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.capability-card:hover {
    background: #160e17;

    transform: translateY(-6px);
}


.capability-card > span {
    color: var(--violet);

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;
}


.capability-card h3 {
    margin: 0 0 15px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 27px;

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -1px;
}


.capability-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   GAMING PORTFOLIO
   ========================================================= */

.gaming-portfolio {
    padding:
        150px
        8vw;

    background: #0d090e;
}


.portfolio-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.4fr);

    gap: 9vw;

    align-items: end;
}


.portfolio-header > p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


.game-list {
    margin-top: 70px;

    border-top: 1px solid var(--line);
}


.game-item {
    display: grid;

    grid-template-columns:
        60px
        minmax(0, 1fr)
        auto;

    gap: 20px;

    align-items: center;

    padding: 23px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}


.game-item:hover {
    padding-left: 12px;

    background:
        linear-gradient(
            90deg,
            rgba(82, 43, 91, 0.14),
            transparent
        );
}


.game-item > span {
    color: #6e6267;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;
}


.game-item strong {
    min-width: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        19px,
        2.5vw,
        32px
    );

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -1px;
}


.game-item small {
    color: var(--rose);

    font-size: 8px;

    letter-spacing: 2px;
}


.portfolio-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--violet);

    color: var(--cream);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   WHY VEXYNTA
   ========================================================= */

.why-vexynta {
    padding:
        150px
        8vw;

    background: var(--plum);
}


.why-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.45fr);

    gap: 9vw;

    align-items: end;
}


.why-header > p {
    margin: 0;

    color: var(--muted);
}


.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    margin-top: 75px;
}


.why-grid article {
    min-width: 0;

    min-height: 260px;

    padding: 28px;

    border: 1px solid var(--line);

    background:
        rgba(255, 255, 255, 0.012);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.why-grid article:hover {
    transform: translateY(-6px);

    background:
        rgba(255, 255, 255, 0.025);
}


.why-grid article > span {
    color: var(--violet);

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;
}


.why-grid h3 {
    margin:
        75px
        0
        12px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;

    line-height: 1;

    font-weight: 500;
}


.why-grid p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.arena-final {
    padding:
        175px
        8vw;

    background: var(--cream);

    color: var(--plum);
}


.arena-final-content {
    width: min(100%, 1000px);

    max-width: 1000px;
}


.arena-final .arena-label {
    color: var(--violet);
}


.arena-final h2 {
    margin:
        28px
        0
        0;

    font-size: clamp(
        65px,
        10vw,
        150px
    );
}


.arena-final h2 em {
    color: var(--violet);
}


.arena-final-content > p:not(.arena-label) {
    max-width: 520px;

    margin:
        30px
        0
        0;

    color: #705f64;
}


/* =========================================================
   FOOTER
   ========================================================= */

/* =========================================================
   SHARED VEXYNTA FOOTER
========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    padding: 90px 8vw 25px;

    background:
        linear-gradient(
            180deg,
            #0a070b 0%,
            #080508 100%
        );

    border-top: 1px solid var(--line);

    overflow: hidden;
}


/* Subtle background glow */

.site-footer::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -260px;
    bottom: -320px;

    border-radius: 50%;

    background: var(--purple);

    filter: blur(130px);

    opacity: 0.11;

    pointer-events: none;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.3fr;

    gap: 60px;

    padding-bottom: 70px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    max-width: 390px;
}


.footer-logo {
    width: 105px !important;

    max-width: 105px !important;

    height: auto !important;

    display: block;
}


.footer-tagline {
    margin: 20px 0 0;

    color: var(--rose);

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;

    letter-spacing: 2px;
}


.footer-description {
    max-width: 350px;

    margin: 18px 0 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h4 {
    margin: 0 0 22px;

    color: #766a6e;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.footer-column > a {
    margin-bottom: 13px;

    color: var(--muted);

    font-size: 13px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-column > a:hover {
    color: var(--cream);

    transform: translateX(4px);
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER CTA
========================================================= */

.footer-contact .footer-cta {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 8px;

    margin-bottom: 0;

    padding: 11px 16px;

    border: 1px solid var(--line);

    border-radius: 999px;

    color: var(--cream);

    transform: none;
}


.footer-contact .footer-cta:hover {
    background: var(--cream);

    color: var(--plum);

    border-color: var(--cream);

    transform: none;
}


/* =========================================================
   LOWER FOOTER
========================================================= */

.footer-lower {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    padding-top: 22px;

    border-top: 1px solid var(--line);

    color: #62585d;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 1px;
}


.footer-lower > div:nth-child(2) {
    text-align: center;
}


.footer-lower > div:last-child {
    text-align: right;
}


/* =========================================================
   STATUS
========================================================= */

.footer-status {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}


.status-light {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--rose);

    box-shadow:
        0 0 12px
        rgba(223, 182, 178, 0.7);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns:
            1fr
            1fr;

        gap: 50px 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding:
            75px
            6vw
            25px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-lower {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .footer-lower > div,
    .footer-lower > div:nth-child(2),
    .footer-lower > div:last-child {
        text-align: left;
    }


    .footer-status {
        justify-content: flex-start;
    }

}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   SCROLLED HEADER
   ========================================================= */

.arena-header.is-scrolled {
    background:
        rgba(25, 0, 25, 0.94);
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .arena-header-button {
        display: none;
    }


    .arena-nav {
        gap: 24px;
    }


    .gaming-intro,
    .enterprise-header,
    .capabilities-header,
    .portfolio-header,
    .why-header {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .capability-grid,
    .why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .arena-header {
        padding: 0 20px;

        justify-content: flex-end;
    }


    .arena-logo {
        left: 20px;

        width: 68px;
        height: 42px;
    }


    .arena-logo img {
        width: 68px !important;

        max-width: 68px !important;

        max-height: 42px !important;
    }


    .arena-nav {
        gap: 17px;

        padding-left: 78px;

        overflow: hidden;
    }


    .arena-nav a {
        font-size: 10px;
    }


    .arena-hero {
        padding:
            135px
            6vw
            105px;
    }


    .arena-hero h1 {
        font-size:
            clamp(
                60px,
                12vw,
                100px
            );

        letter-spacing: -6px;
    }


    .arena-hero-meta {
        left: 6vw;
        right: 6vw;
    }


    .gaming-experience,
    .enterprise,
    .capabilities,
    .gaming-portfolio,
    .why-vexynta {
        padding:
            115px
            6vw;
    }


    .gaming-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .gaming-stat:nth-child(2) {
        border-right: 0;
    }


    .gaming-stat:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }


    .arena-footer {
        padding:
            65px
            6vw
            25px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .arena-header {
        height: 66px;
    }


    .arena-logo {
        left: 15px;

        width: 58px;
        height: 36px;
    }


    .arena-logo img {
        width: 58px !important;

        max-width: 58px !important;

        max-height: 36px !important;
    }


    .arena-nav {
        gap: 11px;

        padding-left: 58px;
    }


    .arena-nav a {
        font-size: 8px;
    }


    .arena-hero {
        min-height: 100svh;

        padding:
            110px
            6vw
            100px;
    }


    .arena-label {
        font-size: 9px;

        letter-spacing: 2px;
    }


    .arena-hero h1 {
        font-size: 58px;

        letter-spacing: -4px;

        line-height: 0.85;
    }


    .arena-hero-description {
        font-size: 14px;
    }


    .arena-hero-meta {
        left: 6vw;
        right: 6vw;

        bottom: 25px;
    }


    .arena-hero-meta span:nth-child(3),
    .arena-hero-meta span:nth-child(4) {
        display: none;
    }


    h2 {
        font-size: 52px;

        letter-spacing: -3px;
    }


    .gaming-experience,
    .enterprise,
    .capabilities,
    .gaming-portfolio,
    .why-vexynta {
        padding:
            100px
            6vw;
    }


    .arena-section-label {
        margin-bottom: 30px;
    }


    .gaming-stats {
        grid-template-columns: 1fr;
    }


    .gaming-stat {
        min-height: 175px;

        border-right: 0;

        border-bottom: 1px solid var(--line);
    }


    .gaming-stat:nth-child(2) {
        border-right: 0;
    }


    .gaming-stat:last-child {
        border-bottom: 0;
    }


    .enterprise-item {
        grid-template-columns:
            32px
            minmax(0, 1fr)
            36px;

        gap: 12px;
    }


    .enterprise-item small {
        display: none;
    }


    .enterprise-item strong {
        font-size: 22px;

        letter-spacing: -1px;
    }


    .enterprise-note {
        flex-direction: column;

        gap: 12px;
    }


    .enterprise-note p {
        text-align: left;
    }


    .capability-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }


    .portfolio-header {
        gap: 35px;
    }


    .game-item {
        grid-template-columns:
            32px
            minmax(0, 1fr);

        gap: 12px;
    }


    .game-item small {
        display: none;
    }


    .game-item strong {
        font-size: 20px;
    }


    .arena-final {
        padding:
            115px
            6vw;
    }


    .arena-final h2 {
        font-size: 62px;

        letter-spacing: -4px;
    }


    .arena-footer-top {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .arena-footer-bottom {
        flex-direction: column;

        gap: 12px;
    }

}