/* ============================================================
   VANTAGE WEBSITE V2
   Main stylesheet
============================================================ */

:root {
    --bg: #050507;
    --bg-soft: #08080c;
    --surface: #0c0c12;
    --surface-2: #111119;
    --surface-3: #15151f;

    --purple: #8b6cff;
    --purple-light: #a68dff;
    --purple-dark: #6548d9;
    --purple-soft: rgba(139, 108, 255, 0.12);
    --purple-glow: rgba(139, 108, 255, 0.28);

    --white: #f5f4fa;
    --text: #d8d6e0;
    --muted: #85818f;
    --muted-dark: #5c5965;

    --border: rgba(255, 255, 255, 0.075);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-purple: rgba(139, 108, 255, 0.35);

    --green: #62e6a7;

    --container: 1240px;
    --header-height: 78px;

    --transition: 0.28s ease;
}


/* ============================================================
   RESET
============================================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 75% 10%,
            rgba(139, 108, 255, 0.06),
            transparent 25%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;
}

body::selection {
    background: var(--purple);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button {
    color: inherit;
}

img {
    max-width: 100%;
}

.main-container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* ============================================================
   BACKGROUND
============================================================ */

.page-background {
    position: fixed;
    inset: 0;

    z-index: -10;

    pointer-events: none;

    overflow: hidden;
}

.background-grid {
    position: absolute;
    inset: 0;

    opacity: 0.3;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 75%
        );
}

.background-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    filter: blur(160px);

    background: var(--purple);

    opacity: 0.055;
}

.glow-one {
    right: -250px;
    top: -180px;
}

.glow-two {
    left: -350px;
    top: 650px;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: var(--header-height);

    border-bottom: 1px solid var(--border);

    background: rgba(5, 5, 7, 0.72);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: background var(--transition);
}

.site-header.scrolled {
    background: rgba(5, 5, 7, 0.94);
}

.nav-container {
    width: min(
        calc(100% - 48px),
        1380px
    );

    height: 100%;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    flex-shrink: 0;
}

.brand-symbol {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    position: relative;

    color: white;

    font-size: 18px;
    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            #5e43cc
        );

    box-shadow:
        0 0 30px rgba(139, 108, 255, 0.18);

    clip-path:
        polygon(
            14% 0,
            100% 0,
            86% 100%,
            0 100%
        );
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    color: var(--white);

    font-size: 15px;
    font-weight: 900;

    letter-spacing: 4px;
}

.brand-text span {
    margin-top: 6px;

    color: var(--muted);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2.2px;
}

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

.desktop-nav a {
    position: relative;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition: color var(--transition);
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -11px;

    width: 0;
    height: 1px;

    background: var(--purple);

    transition: width var(--transition);
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}

.version-indicator {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.version-indicator span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px rgba(98, 230, 167, 0.8);
}

.small-button {
    min-height: 38px;

    padding-inline: 17px;

    display: inline-flex;
    align-items: center;

    border: 1px solid var(--border-purple);

    color: var(--purple-light);

    background:
        rgba(139, 108, 255, 0.05);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.3px;

    transition:
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.small-button:hover {
    color: white;

    background: var(--purple);

    box-shadow:
        0 0 28px rgba(139, 108, 255, 0.25);
}

.mobile-menu-button {
    display: none;

    width: 40px;
    height: 40px;

    border: 1px solid var(--border);

    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 18px;
    height: 1px;

    margin: 5px auto;

    background: white;
}

.mobile-nav {
    display: none;
}


/* ============================================================
   HERO
============================================================ */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding:
        calc(var(--header-height) + 70px)
        0
        80px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    right: -260px;
    top: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139, 108, 255, 0.11),
            transparent 65%
        );

    pointer-events: none;
}

.hero-decoration {
    position: absolute;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(139, 108, 255, 0.25),
            transparent
        );

    height: 1px;

    opacity: 0.4;
}

.hero-line-one {
    width: 600px;

    right: 0;
    top: 31%;
}

.hero-line-two {
    width: 400px;

    left: -100px;
    bottom: 22%;
}

.hero-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(570px, 1.15fr);

    gap: 70px;

    align-items: center;
}

.release-tag {
    width: max-content;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    padding: 8px 11px;

    border: 1px solid var(--border-purple);

    background:
        rgba(139, 108, 255, 0.04);

    color: var(--purple-light);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.release-tag .release-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--purple-light);

    box-shadow:
        0 0 12px var(--purple);
}

.release-tag i {
    width: 1px;
    height: 12px;

    background: var(--border-light);
}

.release-tag .muted {
    color: var(--muted);
}

.hero-copy h1 {
    max-width: 650px;

    color: var(--white);

    font-size:
        clamp(65px, 7vw, 110px);

    line-height: 0.82;

    font-weight: 900;

    letter-spacing: -6px;
}

.hero-copy h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(166, 141, 255, 0.82);
}

.hero-subtitle {
    max-width: 560px;

    margin-top: 34px;

    color: #aaa6b2;

    font-size: 16px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 37px;
}

.button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    padding-inline: 24px;

    border: 1px solid transparent;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.6px;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            #6c4ee6
        );

    border-color: var(--purple);
}

.button-primary:hover {
    box-shadow:
        0 10px 35px rgba(139, 108, 255, 0.28);
}

.button-secondary {
    color: var(--text);

    border-color: var(--border-light);

    background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover {
    border-color: var(--border-purple);

    background:
        rgba(139, 108, 255, 0.04);
}

.button-arrow {
    font-size: 18px;
    line-height: 1;
}

.play-icon {
    color: var(--purple-light);
}

.hero-meta {
    margin-top: 58px;

    display: flex;
    align-items: center;

    gap: 26px;
}

.meta-item {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.meta-label {
    color: var(--muted-dark);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.meta-item strong {
    color: #c7c4ce;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.meta-separator {
    width: 1px;
    height: 29px;

    background: var(--border);
}


/* ============================================================
   HERO APPLICATION
============================================================ */

.hero-app-wrapper {
    position: relative;

    min-width: 0;

    perspective: 1400px;
}

.app-shadow {
    position: absolute;

    width: 80%;
    height: 80%;

    right: 0;
    bottom: -5%;

    border-radius: 50%;

    background: var(--purple);

    filter: blur(100px);

    opacity: 0.08;
}

.app-window {
    position: relative;

    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background: #0b0b10;

    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(139, 108, 255, 0.05),
        0 0 80px rgba(139, 108, 255, 0.08);

    transform:
        rotateY(-4deg)
        rotateX(1deg);

    transform-origin: center;
}

.app-titlebar {
    height: 35px;

    padding-inline: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #1c1c24;

    background: #111117;
}

.app-title {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #aaa7b1;

    font-size: 8px;
}

.app-logo {
    width: 17px;
    height: 17px;

    display: grid;
    place-items: center;

    color: white;

    background: var(--purple);

    font-size: 8px;
    font-weight: 900;

    clip-path:
        polygon(
            15% 0,
            100% 0,
            85% 100%,
            0 100%
        );
}

.window-controls {
    display: flex;
    align-items: center;

    gap: 14px;

    color: #6f6b77;

    font-size: 10px;
}

.app-body {
    background: #08080c;
}

.app-top {
    height: 56px;

    display: flex;
    align-items: center;

    padding-inline: 20px;

    border-bottom: 1px solid #181820;

    background:
        linear-gradient(
            180deg,
            #101016,
            #0d0d12
        );
}

.app-brand {
    display: flex;
    align-items: baseline;

    gap: 8px;
}

.app-brand .purple {
    color: var(--purple-light);

    font-size: 18px;
    font-weight: 900;
}

.app-brand strong {
    color: white;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 3px;
}

.app-brand small {
    color: #66616e;

    font-size: 6px;

    letter-spacing: 1.5px;
}

.app-content {
    min-height: 415px;

    display: grid;

    grid-template-columns:
        132px
        1fr;
}

.app-sidebar {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 14px 10px;

    border-right: 1px solid #191921;

    background: #0a0a0f;
}

.app-menu-item {
    position: relative;

    width: 100%;

    padding: 10px 11px;

    border: 0;

    text-align: left;

    color: #77737f;

    background: transparent;

    font-size: 8px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color var(--transition),
        background var(--transition);
}

.app-menu-item:hover {
    color: white;
}

.app-menu-item.active {
    color: white;

    background:
        rgba(139, 108, 255, 0.1);
}

.app-menu-item.active::before {
    content: "";

    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;

    width: 2px;

    background: var(--purple);
}

.app-sidebar-footer {
    margin-top: auto;

    padding: 12px 10px;

    display: flex;
    flex-direction: column;

    gap: 4px;

    border-top: 1px solid #181820;
}

.app-sidebar-footer span {
    color: #6e6975;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.app-sidebar-footer small {
    color: #49464f;

    font-size: 6px;
}

.app-main {
    min-width: 0;

    padding: 19px;

    background:
        radial-gradient(
            circle at 80% 0,
            rgba(139, 108, 255, 0.045),
            transparent 35%
        ),
        #0c0c11;
}

.demo-panel {
    display: none;
}

.demo-panel.active {
    display: block;

    animation:
        panelFade 0.28s ease;
}

@keyframes panelFade {

    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 8px;
}

.panel-heading h3 {
    color: white;

    font-size: 14px;
    font-weight: 800;
}

.panel-heading span {
    display: block;

    margin-top: 3px;

    color: #5f5b67;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1.1px;
}

.online-badge {
    padding: 5px 8px;

    border: 1px solid rgba(98, 230, 167, 0.2);

    color: var(--green);

    background:
        rgba(98, 230, 167, 0.05);

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1px;
}

.panel-description {
    color: #706c77;

    font-size: 8px;
}

.overview-cards {
    margin-top: 18px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}

.mini-card,
.control-card,
.shortcut-card,
.recoil-header-card {
    padding: 13px;

    border: 1px solid #1c1c25;

    border-radius: 3px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.018),
            transparent
        ),
        #0e0e14;
}

.mini-title {
    color: #bbb7c3;

    font-size: 8px;
    font-weight: 700;
}

.mini-divider {
    width: 100%;
    height: 1px;

    margin: 9px 0;

    background: #1d1d26;
}

.mini-card small {
    color: #625e69;

    font-size: 6px;
}

.mini-card p,
.shortcut-card p {
    margin-top: 9px;

    color: #5d5964;

    font-size: 6px;
}

.switch-line {
    margin-top: 9px;

    display: flex;
    align-items: center;

    gap: 7px;

    color: #7d7985;

    font-size: 7px;
}

.demo-switch {
    position: relative;

    width: 22px;
    height: 11px;

    flex: 0 0 22px;

    border-radius: 20px;

    background: #25252e;
}

.demo-switch::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    left: 2px;
    top: 2px;

    border-radius: 50%;

    background: #67636d;

    transition: var(--transition);
}

.demo-switch.active {
    background:
        rgba(139, 108, 255, 0.35);
}

.demo-switch.active::after {
    left: 13px;

    background: var(--purple-light);
}

.demo-purple-button {
    min-height: 25px;

    margin-top: 7px;
    padding-inline: 9px;

    border: 1px solid rgba(139, 108, 255, 0.24);

    border-radius: 2px;

    color: #a995ff;

    background:
        rgba(139, 108, 255, 0.07);

    font-size: 6px;
    font-weight: 700;
}

.shortcut-card {
    margin-top: 9px;
}

.two-column-controls,
.recoil-grid,
.visual-layout {
    margin-top: 15px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.control-card label {
    display: block;

    margin: 8px 0 5px;

    color: #77727f;

    font-size: 6px;
}

.fake-select {
    min-height: 27px;

    padding: 0 9px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid #24242d;

    color: #aaa6b0;

    background: #0b0b10;

    font-size: 7px;
}

.fake-select span {
    color: #56525c;
}

.slider-block {
    margin-top: 11px;
}

.fake-slider {
    position: relative;

    height: 4px;

    margin-top: 8px;

    border-radius: 20px;

    background: #262630;
}

.fake-slider span {
    position: absolute;

    left: 0;
    top: 0;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #6f52df,
            var(--purple-light)
        );
}

.fake-slider b {
    position: absolute;

    right: 0;
    top: -15px;

    color: #aaa5b3;

    font-size: 6px;
    font-weight: 600;
}

.recoil-header-card {
    margin-top: 14px;

    max-width: 230px;
}

.recoil-header-card .fake-select {
    margin-top: 8px;
}

.visual-preview {
    padding: 13px;

    border: 1px solid #1c1c25;

    background:
        radial-gradient(
            circle at center,
            rgba(139, 108, 255, 0.05),
            transparent 55%
        ),
        #0e0e14;
}

.player-preview {
    height: 220px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.player-preview .hp {
    position: absolute;

    left: 18px;
    top: 25px;

    color: var(--green);

    font-size: 6px;
}

.health-bar {
    position: absolute;

    left: 18px;
    top: 45px;

    width: 3px;
    height: 130px;

    background: #24242c;
}

.health-bar span {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 80%;

    background: var(--green);
}

.player-head {
    position: absolute;

    top: 35px;

    width: 27px;
    height: 27px;

    border: 1px solid #ff5e6b;

    border-radius: 50%;
}

.player-body {
    position: absolute;

    top: 62px;

    width: 1px;
    height: 70px;

    background: #ff5e6b;
}

.player-arm,
.player-leg {
    position: absolute;

    width: 1px;

    background: #ff5e6b;

    transform-origin: top;
}

.player-arm {
    top: 75px;
    height: 54px;
}

.player-arm.left {
    transform:
        translateX(-2px)
        rotate(35deg);
}

.player-arm.right {
    transform:
        translateX(2px)
        rotate(-35deg);
}

.player-leg {
    top: 128px;
    height: 64px;
}

.player-leg.left {
    transform:
        translateX(-1px)
        rotate(17deg);
}

.player-leg.right {
    transform:
        translateX(1px)
        rotate(-17deg);
}

.player-preview small {
    position: absolute;

    bottom: 5px;

    color: #817c89;

    font-size: 6px;
}

.app-status {
    height: 27px;

    padding-inline: 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #191920;

    color: #55515c;

    background: #0a0a0f;

    font-size: 6px;
}

.app-status small {
    color: #77727e;
}

.app-floating-label {
    position: absolute;

    z-index: 5;

    border: 1px solid var(--border-purple);

    color: #b1a0ff;

    background:
        rgba(11, 10, 17, 0.92);

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.label-one {
    right: -25px;
    bottom: 75px;

    padding: 9px 13px;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}

.label-one span {
    margin-right: 5px;

    color: var(--green);
}

.label-two {
    left: -22px;
    top: 70px;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    font-size: 13px;
    font-weight: 900;
}

.scroll-marker {
    position: absolute;

    left: 50%;
    bottom: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    transform: translateX(-50%);

    color: #4f4b56;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 2px;
}

.scroll-marker i {
    width: 1px;
    height: 30px;

    background:
        linear-gradient(
            to bottom,
            var(--purple),
            transparent
        );
}


/* ============================================================
   PRODUCT STRIP
============================================================ */

.product-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #08080b;
}

.product-strip-grid {
    min-height: 240px;

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr
        1fr;

    gap: 70px;

    align-items: center;
}

.section-index {
    display: block;

    margin-bottom: 17px;

    color: var(--purple-light);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2.2px;
}

.strip-intro h2,
.section-heading h2,
.precision-copy h2,
.validation-title h2,
.hotkeys-header h2,
.pricing-heading h2,
.faq-heading h2,
.final-content h2 {
    color: white;

    font-size:
        clamp(43px, 5vw, 72px);

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -3px;
}

.strip-intro h2 span,
.section-heading h2 span,
.precision-copy h2 span,
.validation-title h2 span,
.hotkeys-header h2 span,
.pricing-heading h2 span,
.faq-heading h2 span,
.final-content h2 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(166, 141, 255, 0.75);
}

.strip-description p {
    color: #8b8792;

    font-size: 14px;

    line-height: 1.8;
}

.strip-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}

.strip-features span {
    padding: 11px 12px;

    border-left: 1px solid var(--purple-dark);

    color: #7c7785;

    background:
        linear-gradient(
            90deg,
            rgba(139, 108, 255, 0.04),
            transparent
        );

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


/* ============================================================
   FEATURES
============================================================ */

.features-section {
    padding: 135px 0;
}

.section-heading {
    margin-bottom: 65px;

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 70px;

    align-items: end;
}

.section-heading p {
    max-width: 450px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.feature-showcase {
    min-height: 600px;

    display: grid;

    grid-template-columns:
        300px
        1fr;

    border: 1px solid var(--border);

    background: #08080c;
}

.feature-tabs {
    border-right: 1px solid var(--border);
}

.feature-tab {
    position: relative;

    width: 100%;
    min-height: 100px;

    padding: 0 22px;

    display: grid;

    grid-template-columns:
        34px
        1fr
        auto;

    gap: 12px;

    align-items: center;

    border: 0;
    border-bottom: 1px solid var(--border);

    text-align: left;

    background: transparent;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition);
}

.feature-tab::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background: var(--purple);

    transform: scaleY(0);

    transition: transform var(--transition);
}

.feature-tab:hover {
    background:
        rgba(255, 255, 255, 0.015);
}

.feature-tab.active {
    background:
        linear-gradient(
            90deg,
            rgba(139, 108, 255, 0.09),
            transparent
        );
}

.feature-tab.active::before {
    transform: scaleY(1);
}

.feature-tab-number {
    color: #46424c;

    font-size: 10px;
    font-weight: 800;
}

.feature-tab strong {
    display: block;

    color: #aaa6b1;

    font-size: 11px;

    transition: color var(--transition);
}

.feature-tab small {
    display: block;

    margin-top: 4px;

    color: #55515c;

    font-size: 7px;
}

.feature-tab i {
    color: #45414b;

    font-size: 15px;
    font-style: normal;

    transition:
        color var(--transition),
        transform var(--transition);
}

.feature-tab.active strong {
    color: white;
}

.feature-tab.active .feature-tab-number,
.feature-tab.active i {
    color: var(--purple-light);
}

.feature-tab.active i {
    transform: translateX(4px);
}

.feature-display {
    min-width: 0;

    position: relative;
}

.feature-content {
    min-height: 600px;

    display: none;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 50px;

    padding: 65px;

    align-items: center;
}

.feature-content.active {
    display: grid;

    animation:
        featureFade 0.35s ease;
}

@keyframes featureFade {

    from {
        opacity: 0;
        transform: translateX(8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

.purple-label {
    color: var(--purple-light);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.feature-copy h3 {
    max-width: 470px;

    margin-top: 14px;

    color: white;

    font-size:
        clamp(35px, 4vw, 57px);

    line-height: 0.98;

    font-weight: 900;

    letter-spacing: -2px;
}

.feature-copy h3 span {
    color: #706b78;
}

.feature-copy > p {
    max-width: 450px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.spec-list {
    margin-top: 36px;

    display: grid;

    gap: 0;
}

.spec-list div {
    min-height: 43px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-top: 1px solid var(--border);

    color: #aaa6b1;

    font-size: 10px;
}

.spec-list div:last-child {
    border-bottom: 1px solid var(--border);
}

.spec-list span {
    color: var(--purple-light);

    font-size: 7px;
    font-weight: 800;
}

.feature-visual {
    min-width: 0;
}

.target-interface,
.recoil-visual,
.radar-visual,
.visual-demo,
.terminal-window {
    min-height: 410px;

    position: relative;

    overflow: hidden;

    border: 1px solid var(--border-light);

    background:
        radial-gradient(
            circle at center,
            rgba(139, 108, 255, 0.07),
            transparent 55%
        ),
        #09090e;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3);
}


/* TARGET VISUAL */

.target-interface {
    display: grid;
    place-items: center;
}

.target-grid,
.dashboard-grid {
    position: absolute;
    inset: 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: 30px 30px;
}

.target-circle {
    position: absolute;

    border: 1px solid rgba(139, 108, 255, 0.25);

    border-radius: 50%;
}

.target-circle.c1 {
    width: 70px;
    height: 70px;
}

.target-circle.c2 {
    width: 145px;
    height: 145px;
}

.target-circle.c3 {
    width: 245px;
    height: 245px;

    border-color:
        rgba(139, 108, 255, 0.1);
}

.target-cross {
    position: absolute;

    background: var(--purple-light);

    box-shadow:
        0 0 8px rgba(139, 108, 255, 0.5);
}

.target-cross.horizontal {
    width: 40px;
    height: 1px;
}

.target-cross.vertical {
    width: 1px;
    height: 40px;
}

.target-point {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 15px var(--purple);
}

.target-readout {
    position: absolute;

    display: flex;
    flex-direction: column;

    gap: 4px;

    color: #5f5a66;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}

.target-readout strong {
    color: #aaa4b2;

    font-size: 9px;
}

.target-readout.top-left {
    left: 20px;
    top: 20px;
}

.target-readout.bottom-left {
    left: 20px;
    bottom: 20px;
}

.target-readout.bottom-right {
    right: 20px;
    bottom: 20px;

    text-align: right;
}


/* RECOIL VISUAL */

.recoil-visual {
    padding: 32px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.weapon-profile {
    padding: 20px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.015);
}

.weapon-name {
    display: flex;
    flex-direction: column;

    color: white;

    font-size: 13px;
    font-weight: 800;
}

.weapon-name span {
    margin-top: 3px;

    color: #5f5a66;

    font-size: 6px;

    letter-spacing: 1px;
}

.graph {
    height: 250px;

    margin-top: auto;

    display: flex;
    align-items: flex-end;

    gap: 6px;

    border-bottom: 1px solid #24232c;
}

.graph span {
    flex: 1;

    min-height: 8px;

    background:
        linear-gradient(
            to top,
            #5d42cc,
            var(--purple-light)
        );

    opacity: 0.7;
}


/* RADAR */

.radar-visual {
    padding: 25px;
}

.radar-map {
    height: 310px;

    position: relative;

    overflow: hidden;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.015) 25%,
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, 0.015) 75%
        ),
        #0c0c12;

    background-size: 30px 30px;
}

.map-line {
    position: absolute;

    height: 1px;

    background: rgba(139, 108, 255, 0.2);

    transform-origin: left center;
}

.line-a {
    width: 70%;
    left: 10%;
    top: 30%;

    transform: rotate(25deg);
}

.line-b {
    width: 65%;
    left: 25%;
    top: 70%;

    transform: rotate(-30deg);
}

.line-c {
    width: 55%;
    left: 40%;
    top: 20%;

    transform: rotate(90deg);
}

.line-d {
    width: 40%;
    left: 10%;
    top: 80%;

    transform: rotate(-60deg);
}

.radar-player {
    position: absolute;

    z-index: 3;

    width: 9px;
    height: 9px;

    border-radius: 50%;
}

.player-main {
    left: 50%;
    top: 50%;

    display: flex;
    align-items: center;

    color: var(--purple-light);

    background: var(--purple);

    font-size: 5px;

    box-shadow:
        0 0 14px var(--purple);
}

.enemy {
    background: #ef5968;

    box-shadow:
        0 0 8px rgba(239, 89, 104, 0.45);
}

.e1 {
    left: 25%;
    top: 28%;
}

.e2 {
    right: 20%;
    top: 38%;
}

.e3 {
    right: 32%;
    bottom: 22%;
}

.radar-circle {
    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(139, 108, 255, 0.08);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.rc1 {
    width: 160px;
    height: 160px;
}

.rc2 {
    width: 280px;
    height: 280px;
}

.radar-footer {
    min-height: 50px;

    display: flex;
    align-items: center;

    gap: 40px;
}

.radar-footer span {
    display: flex;
    flex-direction: column;

    color: #5d5864;

    font-size: 6px;

    letter-spacing: 1px;
}

.radar-footer strong {
    margin-top: 3px;

    color: #aaa5b0;

    font-size: 9px;
}


/* VISUAL DEMO */

.visual-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.visual-hud {
    width: 220px;

    margin-bottom: 8px;

    display: flex;
    justify-content: space-between;

    font-size: 7px;
}

.visual-name {
    color: #ff6572;
}

.visual-hp {
    color: var(--green);
}

.visual-box {
    width: 220px;
    height: 280px;

    position: relative;

    border: 1px solid rgba(255, 87, 102, 0.65);
}

.visual-health {
    position: absolute;

    left: -8px;
    top: 0;

    width: 3px;
    height: 100%;

    background: #25252d;
}

.visual-health span {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 80%;

    background: var(--green);
}

.skeleton {
    position: absolute;

    left: 50%;
    top: 35px;

    width: 1px;
    height: 200px;

    transform: translateX(-50%);
}

.sk-head {
    position: absolute;

    left: 50%;
    top: 0;

    width: 42px;
    height: 42px;

    border: 1px solid #ff6572;

    border-radius: 50%;

    transform: translateX(-50%);
}

.sk-body {
    position: absolute;

    left: 50%;
    top: 42px;

    width: 1px;
    height: 90px;

    background: #ff6572;
}

.sk-arm,
.sk-leg {
    position: absolute;

    left: 50%;

    width: 1px;

    background: #ff6572;

    transform-origin: top;
}

.sk-arm {
    top: 55px;
    height: 78px;
}

.sk-arm-left {
    transform: rotate(45deg);
}

.sk-arm-right {
    transform: rotate(-45deg);
}

.sk-leg {
    top: 130px;
    height: 90px;
}

.sk-leg-left {
    transform: rotate(18deg);
}

.sk-leg-right {
    transform: rotate(-18deg);
}

.visual-weapon {
    margin-top: 9px;

    color: #77727e;

    font-size: 7px;
}


/* TERMINAL */

.terminal-window {
    min-height: 380px;
}

.terminal-top {
    height: 38px;

    padding-inline: 14px;

    display: flex;
    align-items: center;

    gap: 6px;

    border-bottom: 1px solid var(--border);

    background: #101016;
}

.terminal-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #3e3b44;
}

.terminal-top small {
    margin-left: auto;

    color: #56515d;

    font-size: 6px;

    letter-spacing: 1px;
}

.terminal-body {
    padding: 28px;

    font-family:
        Consolas,
        monospace;
}

.terminal-body p {
    margin-bottom: 13px;

    color: #77727f;

    font-size: 9px;
}

.terminal-body p span {
    color: var(--green);
}

.terminal-active {
    color: var(--purple-light) !important;
}


/* ============================================================
   PRECISION
============================================================ */

.precision-section {
    position: relative;

    padding: 145px 0;

    overflow: hidden;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(139, 108, 255, 0.07),
            transparent 35%
        ),
        #08080c;
}

.precision-background-number {
    position: absolute;

    left: -30px;
    bottom: -120px;

    color: rgba(255, 255, 255, 0.012);

    font-size: 420px;
    font-weight: 900;

    line-height: 1;

    pointer-events: none;
}

.precision-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;

    align-items: center;
}

.precision-copy h2 {
    max-width: 600px;
}

.large-copy {
    max-width: 530px;

    margin-top: 27px;

    color: #96919d;

    font-size: 15px;

    line-height: 1.8;
}

.precision-points {
    margin-top: 45px;
}

.precision-point {
    padding: 20px 0;

    display: grid;

    grid-template-columns:
        35px
        1fr;

    gap: 14px;

    border-top: 1px solid var(--border);
}

.precision-point:last-child {
    border-bottom: 1px solid var(--border);
}

.precision-point > span {
    color: var(--purple-light);

    font-size: 8px;
    font-weight: 900;
}

.precision-point strong {
    color: #c7c3cc;

    font-size: 11px;
}

.precision-point p {
    margin-top: 5px;

    color: #68636f;

    font-size: 9px;
}

.precision-dashboard {
    border: 1px solid var(--border-light);

    background: #09090e;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.4);
}

.dashboard-header {
    min-height: 47px;

    padding-inline: 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    color: #6b6671;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.live-indicator {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #77727e;
}

.live-indicator i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--purple-light);

    box-shadow:
        0 0 10px var(--purple);
}

.dashboard-target {
    height: 450px;

    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;
}

.scope-line {
    position: absolute;

    background:
        rgba(166, 141, 255, 0.35);
}

.scope-horizontal {
    width: 100%;
    height: 1px;
}

.scope-vertical {
    width: 1px;
    height: 100%;
}

.scope-ring {
    position: absolute;

    border:
        1px solid rgba(139, 108, 255, 0.18);

    border-radius: 50%;
}

.scope-ring-1 {
    width: 90px;
    height: 90px;
}

.scope-ring-2 {
    width: 200px;
    height: 200px;
}

.scope-ring-3 {
    width: 340px;
    height: 340px;

    border-color:
        rgba(139, 108, 255, 0.07);
}

.scope-center {
    z-index: 2;

    width: 7px;
    height: 7px;

    border: 1px solid white;

    border-radius: 50%;

    background: var(--purple);

    box-shadow:
        0 0 18px var(--purple);
}

.axis-label {
    position: absolute;

    color: #45414b;

    font-size: 6px;
}

.axis-top {
    top: 15px;
}

.axis-right {
    right: 15px;
}

.axis-bottom {
    bottom: 15px;
}

.axis-left {
    left: 15px;
}

.dashboard-readings {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid var(--border);
}

.dashboard-readings div {
    padding: 17px;

    border-right: 1px solid var(--border);
}

.dashboard-readings div:last-child {
    border-right: 0;
}

.dashboard-readings span {
    display: block;

    color: #57525d;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1px;
}

.dashboard-readings strong {
    display: block;

    margin-top: 4px;

    color: var(--purple-light);

    font-family:
        Consolas,
        monospace;

    font-size: 12px;
}

.dashboard-disclaimer {
    padding: 10px 17px;

    border-top: 1px solid var(--border);

    color: #4d4952;

    font-size: 6px;
}


/* ============================================================
   VALIDATION
============================================================ */

.validation-section {
    padding: 90px 0;

    border-bottom: 1px solid var(--border);
}

.validation-grid {
    display: grid;

    grid-template-columns:
        1fr
        auto
        0.8fr;

    gap: 70px;

    align-items: center;
}

.validation-title h2 {
    font-size:
        clamp(40px, 4vw, 60px);
}

.validation-main-number {
    min-width: 220px;

    padding: 15px 55px;

    text-align: center;

    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.validation-main-number strong {
    display: block;

    color: var(--purple-light);

    font-size: 85px;
    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -5px;
}

.validation-main-number span {
    display: block;

    margin-top: 10px;

    color: #6d6873;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.validation-breakdown {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}

.validation-breakdown div {
    display: flex;
    flex-direction: column;
}

.validation-breakdown strong {
    color: white;

    font-size: 28px;
}

.validation-breakdown span {
    margin-top: 5px;

    color: #625d68;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1px;
}

.validation-note {
    margin-top: 55px;

    padding-top: 18px;

    display: flex;

    gap: 25px;

    border-top: 1px solid var(--border);
}

.validation-note span {
    color: var(--purple-light);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.validation-note p {
    max-width: 700px;

    color: #65616b;

    font-size: 9px;
}


/* ============================================================
   INTERFACE
============================================================ */

.interface-section {
    padding: 140px 0;

    background:
        linear-gradient(
            to bottom,
            #050507,
            #08080c
        );
}

.interface-window {
    overflow: hidden;

    border: 1px solid var(--border-light);

    background: #0b0b10;

    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.45);
}

.interface-topbar {
    height: 70px;

    padding-inline: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            #111118,
            #0d0d12
        );
}

.interface-brand {
    display: flex;
    align-items: baseline;

    gap: 9px;

    color: white;

    font-size: 15px;
    font-weight: 900;

    letter-spacing: 3px;
}

.interface-brand > span {
    color: var(--purple-light);

    font-size: 20px;
}

.interface-brand small {
    color: #5d5864;

    font-size: 6px;

    letter-spacing: 1.5px;
}

.interface-status {
    color: #5c5762;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1px;
}

.interface-body {
    min-height: 560px;

    display: grid;

    grid-template-columns:
        190px
        1fr;
}

.interface-menu {
    padding: 25px 14px;

    border-right: 1px solid var(--border);

    background: #09090d;
}

.interface-menu button {
    position: relative;

    width: 100%;

    padding: 14px 14px;

    border: 0;

    text-align: left;

    color: #716c78;

    background: transparent;

    font-size: 9px;
}

.interface-menu button.selected {
    color: white;

    background:
        rgba(139, 108, 255, 0.08);
}

.interface-menu button.selected::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;
    bottom: 8px;

    width: 2px;

    background: var(--purple);
}

.interface-dashboard {
    padding: 45px;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(139, 108, 255, 0.05),
            transparent 35%
        );
}

.interface-dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.interface-dashboard-header span {
    color: var(--purple-light);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.interface-dashboard-header h3 {
    margin-top: 5px;

    color: white;

    font-size: 25px;
}

.interface-ready {
    color: var(--green) !important;
}

.interface-modules {
    margin-top: 35px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;
}

.interface-modules > div {
    padding: 22px;

    border: 1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.012);
}

.interface-modules span {
    color: #615c67;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}

.interface-modules strong {
    display: block;

    margin-top: 12px;

    color: #aaa6b0;

    font-size: 12px;
}

.module-line {
    height: 2px;

    margin-top: 18px;

    background: #24232b;
}

.module-line i {
    display: block;

    height: 100%;

    background: var(--purple);
}

.interface-lower {
    margin-top: 13px;

    display: grid;

    grid-template-columns:
        1fr
        220px;

    gap: 13px;
}

.interface-chart,
.interface-info {
    min-height: 260px;

    padding: 22px;

    border: 1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.012);
}

.interface-chart > span,
.interface-info > span {
    color: #5f5a65;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}

.chart-lines {
    height: 170px;

    margin-top: 30px;

    display: flex;
    align-items: flex-end;

    gap: 8px;

    border-bottom: 1px solid var(--border);
}

.chart-lines i {
    flex: 1;

    background:
        linear-gradient(
            to top,
            #6245d6,
            #9a81ff
        );

    opacity: 0.65;
}

.interface-info {
    display: flex;
    flex-direction: column;

    justify-content: center;
}

.interface-info strong {
    margin-top: 8px;

    color: var(--purple-light);

    font-size: 75px;
    line-height: 1;
}

.interface-info small {
    margin-top: 8px;

    color: #5e5964;

    font-size: 7px;

    letter-spacing: 1px;
}


/* ============================================================
   HOTKEYS
============================================================ */

.hotkeys-section {
    padding: 110px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #08080b;
}

.hotkeys-header {
    margin-bottom: 50px;
}

.hotkeys-header h2 {
    font-size:
        clamp(42px, 5vw, 65px);
}

.hotkey-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.hotkey {
    min-height: 120px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition:
        background var(--transition);
}

.hotkey:hover {
    background:
        rgba(139, 108, 255, 0.035);
}

.hotkey kbd {
    width: max-content;

    padding: 7px 10px;

    border: 1px solid var(--border-light);
    border-bottom: 2px solid rgba(255, 255, 255, 0.14);

    border-radius: 3px;

    color: #b7b2be;

    background: #111117;

    font-size: 8px;
    font-family: inherit;

    box-shadow:
        0 4px 0 #07070a;
}

.hotkey span {
    color: #66616c;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


/* ============================================================
   PRICING
============================================================ */

.pricing-section {
    padding: 145px 0;

    position: relative;

    overflow: hidden;
}

.pricing-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    background: var(--purple);

    filter: blur(200px);

    opacity: 0.035;

    transform: translate(-50%, -50%);
}

.pricing-heading {
    position: relative;
    z-index: 2;

    max-width: 700px;

    margin: 0 auto 65px;

    text-align: center;
}

.pricing-heading p {
    max-width: 580px;

    margin: 25px auto 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.pricing-cards {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.pricing-card {
    position: relative;

    padding: 40px;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.015),
            transparent
        ),
        #09090d;

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);

    border-color: var(--border-purple);
}

.pricing-card.featured {
    border-color:
        rgba(139, 108, 255, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(139, 108, 255, 0.075),
            transparent 45%
        ),
        #09090d;
}

.recommended {
    position: absolute;

    right: -1px;
    top: -1px;

    padding: 7px 12px;

    color: white;

    background: var(--purple);

    font-size: 6px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.pricing-card-top {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.pricing-card-top > span {
    color: var(--purple-light);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.pricing-card-top small {
    color: #56515c;

    font-size: 6px;

    letter-spacing: 1px;
}

.pricing-price {
    margin-top: 38px;

    display: flex;
    align-items: flex-end;

    gap: 13px;
}

.pricing-price > strong {
    color: white;

    font-size: 70px;
    font-weight: 900;

    line-height: 0.85;

    letter-spacing: -4px;
}

.pricing-price div {
    padding-bottom: 5px;

    display: flex;
    flex-direction: column;
}

.pricing-price span {
    color: #aaa5b0;

    font-size: 10px;
    font-weight: 700;
}

.pricing-price small {
    color: #514d57;

    font-size: 6px;
}

.pricing-divider {
    height: 1px;

    margin: 35px 0;

    background: var(--border);
}

.pricing-card ul {
    list-style: none;

    display: grid;

    gap: 14px;
}

.pricing-card li {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #87828e;

    font-size: 10px;
}

.pricing-card li span {
    color: var(--purple-light);
}

.pricing-button {
    width: 100%;
    min-height: 48px;

    margin-top: 35px;

    border: 1px solid var(--border-purple);

    color: var(--purple-light);

    background:
        rgba(139, 108, 255, 0.04);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.4px;

    cursor: pointer;

    transition: var(--transition);
}

.pricing-button:hover {
    background:
        rgba(139, 108, 255, 0.09);
}

.pricing-button.primary {
    color: white;

    background: var(--purple);
}

.pricing-button.primary:hover {
    box-shadow:
        0 10px 30px rgba(139, 108, 255, 0.2);
}


/* ============================================================
   FAQ
============================================================ */

.faq-section {
    padding: 135px 0;

    border-top: 1px solid var(--border);

    background: #08080b;
}

.faq-layout {
    display: grid;

    grid-template-columns:
        0.7fr
        1.3fr;

    gap: 100px;
}

.faq-heading {
    position: sticky;
    top: 130px;

    align-self: start;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 0;

    text-align: left;

    color: #aaa5b0;

    background: transparent;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: color var(--transition);
}

.faq-question:hover {
    color: white;
}

.faq-question i {
    color: var(--purple-light);

    font-size: 21px;
    font-style: normal;

    font-weight: 300;

    transition:
        transform var(--transition);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease;
}

.faq-answer p {
    max-width: 650px;

    padding:
        0 50px 27px 0;

    color: #706b76;

    font-size: 11px;

    line-height: 1.8;
}

.faq-item.active .faq-question {
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


/* ============================================================
   FINAL CTA
============================================================ */

.final-cta {
    min-height: 650px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    text-align: center;

    border-top: 1px solid var(--border);
}

.final-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 70%
        );
}

.final-orb {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139, 108, 255, 0.12),
            transparent 65%
        );

    transform: translate(-50%, -50%);
}

.final-content {
    position: relative;
    z-index: 2;
}

.final-v {
    width: 70px;
    height: 70px;

    margin: 0 auto 30px;

    display: grid;
    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            #6246d5
        );

    font-size: 30px;
    font-weight: 900;

    clip-path:
        polygon(
            14% 0,
            100% 0,
            86% 100%,
            0 100%
        );

    box-shadow:
        0 0 60px rgba(139, 108, 255, 0.25);
}

.final-content h2 {
    font-size:
        clamp(65px, 8vw, 110px);
}

.final-content p {
    margin: 27px 0 32px;

    color: #85808c;

    font-size: 14px;
}

.final-content .button {
    min-width: 210px;
}


/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    padding: 70px 0 25px;

    border-top: 1px solid var(--border);

    background: #060608;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.6fr
        0.7fr
        0.7fr
        0.7fr;

    gap: 70px;
}

.footer-description {
    max-width: 300px;

    margin-top: 20px;

    color: #5c5762;

    font-size: 9px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column strong {
    margin-bottom: 6px;

    color: #89848f;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.footer-column a {
    color: #57525d;

    font-size: 9px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--purple-light);
}

.footer-version {
    display: flex;
    flex-direction: column;

    text-align: right;
}

.footer-version > span {
    color: #56515b;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1px;
}

.footer-version strong {
    margin-top: 7px;

    color: var(--purple-light);

    font-size: 42px;
    line-height: 1;
}

.footer-version small {
    margin-top: 5px;

    color: #4e4953;

    font-size: 6px;

    letter-spacing: 1px;
}

.footer-bottom {
    margin-top: 60px;

    padding-top: 20px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid var(--border);

    color: #45414a;

    font-size: 7px;

    letter-spacing: 0.7px;
}


/* ============================================================
   RESPONSIVE — TABLET
============================================================ */

@media (max-width: 1100px) {

    .desktop-nav {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .hero-copy {
        max-width: 750px;
    }

    .hero-app-wrapper {
        max-width: 850px;

        margin-inline: auto;
    }

    .app-window {
        transform: none;
    }

    .product-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .strip-features {
        grid-column:
            1 / -1;

        padding-bottom: 35px;
    }

    .feature-content {
        padding: 40px;

        grid-template-columns: 1fr;
    }

    .precision-layout {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .validation-grid {
        grid-template-columns:
            1fr
            auto;
    }

    .validation-breakdown {
        grid-column:
            1 / -1;
    }

    .faq-layout {
        gap: 50px;
    }

}


/* ============================================================
   RESPONSIVE — MOBILE / SMALL TABLET
============================================================ */

@media (max-width: 820px) {

    :root {
        --header-height: 70px;
    }

    .main-container,
    .nav-container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        position: absolute;

        left: 0;
        top: var(--header-height);

        width: 100%;

        padding: 18px 20px;

        flex-direction: column;

        border-bottom: 1px solid var(--border);

        background:
            rgba(7, 7, 10, 0.98);
    }

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav a {
        padding: 12px 4px;

        border-bottom: 1px solid var(--border);

        color: #8b8691;

        font-size: 10px;
        font-weight: 700;

        letter-spacing: 1px;

        text-transform: uppercase;
    }

    .hero {
        min-height: auto;

        padding-top:
            calc(var(--header-height) + 60px);

        padding-bottom: 90px;
    }

    .hero-copy h1 {
        font-size:
            clamp(58px, 15vw, 85px);

        letter-spacing: -4px;
    }

    .hero-meta {
        flex-wrap: wrap;
    }

    .app-content {
        grid-template-columns: 105px 1fr;
    }

    .app-main {
        padding: 12px;
    }

    .overview-cards,
    .two-column-controls,
    .recoil-grid,
    .visual-layout {
        grid-template-columns: 1fr;
    }

    .overview-cards .mini-card:nth-child(3) {
        display: none;
    }

    .app-floating-label {
        display: none;
    }

    .product-strip-grid {
        padding: 60px 0;

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .strip-features {
        grid-column: auto;

        padding-bottom: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
    }

    .feature-tabs {
        display: grid;

        grid-template-columns:
            repeat(5, 1fr);

        overflow-x: auto;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .feature-tab {
        min-width: 125px;
        min-height: 85px;

        grid-template-columns: 1fr;

        padding: 14px;

        border-right: 1px solid var(--border);
        border-bottom: 0;
    }

    .feature-tab-number,
    .feature-tab i {
        display: none;
    }

    .feature-content {
        min-height: auto;

        padding: 35px 25px;
    }

    .validation-grid {
        grid-template-columns: 1fr;
    }

    .validation-main-number {
        padding: 35px 0;

        border-left: 0;
        border-right: 0;

        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .validation-breakdown {
        grid-column: auto;
    }

    .interface-body {
        grid-template-columns: 130px 1fr;
    }

    .interface-dashboard {
        padding: 25px;
    }

    .interface-modules {
        grid-template-columns: 1fr;
    }

    .interface-lower {
        grid-template-columns: 1fr;
    }

    .hotkey-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-heading {
        position: static;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-version {
        text-align: left;
    }

}


/* ============================================================
   RESPONSIVE — PHONE
============================================================ */

@media (max-width: 560px) {

    .brand-text strong {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-meta {
        gap: 16px;
    }

    .meta-separator {
        display: none;
    }

    .app-titlebar {
        display: none;
    }

    .app-top {
        height: 48px;
    }

    .app-content {
        grid-template-columns: 80px 1fr;

        min-height: 360px;
    }

    .app-sidebar {
        padding-inline: 5px;
    }

    .app-menu-item {
        padding-inline: 6px;

        font-size: 6px;
    }

    .app-sidebar-footer {
        display: none;
    }

    .panel-heading h3 {
        font-size: 11px;
    }

    .overview-cards {
        grid-template-columns: 1fr;
    }

    .overview-cards .mini-card:nth-child(2),
    .shortcut-card {
        display: none;
    }

    .two-column-controls,
    .recoil-grid {
        grid-template-columns: 1fr;
    }

    .target-interface,
    .recoil-visual,
    .radar-visual,
    .visual-demo,
    .terminal-window {
        min-height: 320px;
    }

    .recoil-visual {
        padding: 15px;

        grid-template-columns: 1fr;
    }

    .weapon-profile:nth-child(2) {
        display: none;
    }

    .strip-features {
        grid-template-columns: 1fr;
    }

    .features-section,
    .precision-section,
    .interface-section,
    .pricing-section,
    .faq-section {
        padding: 90px 0;
    }

    .feature-content {
        padding: 28px 18px;
    }

    .dashboard-target {
        height: 330px;
    }

    .dashboard-readings {
        grid-template-columns: 1fr;
    }

    .dashboard-readings div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .interface-body {
        grid-template-columns: 1fr;
    }

    .interface-menu {
        display: flex;

        overflow-x: auto;

        padding: 10px;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .interface-menu button {
        min-width: 95px;
    }

    .interface-dashboard {
        padding: 18px;
    }

    .interface-topbar {
        padding-inline: 15px;
    }

    .interface-status {
        display: none;
    }

    .hotkey-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px;
    }

    .faq-answer p {
        padding-right: 0;
    }

    .final-cta {
        min-height: 550px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

}

/* ============================================================
   JAVASCRIPT ENHANCEMENTS
============================================================ */

.reveal-element {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal-element.revealed {
    opacity: 1;

    transform:
        translateY(0);
}


/* Active navigation */

.desktop-nav a.nav-active {
    color: white;
}

.desktop-nav a.nav-active::after {
    width: 100%;
}


/* Demo button interaction */

.demo-purple-button {
    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.demo-purple-button:hover {
    color: white;

    border-color:
        rgba(139, 108, 255, 0.55);

    background:
        rgba(139, 108, 255, 0.14);
}

.demo-purple-button.demo-button-active {
    color: white;

    border-color: var(--purple);

    background:
        rgba(139, 108, 255, 0.22);
}


/* Clickable switches */

.demo-switch {
    cursor: pointer;
}


/* Hero application smooth movement */

.app-window {
    transition:
        transform 0.18s ease-out,
        box-shadow 0.3s ease;
}


/* Better keyboard focus */

a:focus-visible,
button:focus-visible {
    outline:
        2px solid var(--purple-light);

    outline-offset: 3px;
}


/* Respect reduced motion */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

    .reveal-element {
        opacity: 1;
        transform: none;
    }

}
/* ============================================================
   VANTAGE WEBSITE V2.1
   Commercial / licensing sections + layout refinements
   Added after the original V2 stylesheet so these rules override
   the previous values without removing the proven V2 design.
============================================================ */

/* ------------------------------------------------------------
   V2.1 GLOBAL HEADING SUPPORT
------------------------------------------------------------ */

.workflow-section .section-heading h2,
.updates-copy h2,
.requirements-section .section-heading h2,
.discord-copy h2 {
    color: white;
    font-size: clamp(43px, 5vw, 72px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -3px;
}

.workflow-section .section-heading h2 span,
.updates-copy h2 span,
.requirements-section .section-heading h2 span,
.discord-copy h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(166, 141, 255, 0.75);
}

/* ------------------------------------------------------------
   HERO V2.1
------------------------------------------------------------ */

/* Keep both floating labels inside the hero application footprint. */
.label-one {
    right: 18px;
    bottom: 62px;
}

.label-two {
    left: 18px;
    top: 82px;
}

/* Slightly calmer 3D angle so the mockup remains fully readable. */
.app-window {
    transform: rotateY(-2.5deg) rotateX(0.7deg);
}

/* ------------------------------------------------------------
   PRODUCT STRIP V2.1
------------------------------------------------------------ */

.product-strip-grid {
    min-height: 215px;
}

/* ------------------------------------------------------------
   WORKFLOW / ACTIVATION
------------------------------------------------------------ */

.workflow-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 78% 35%, rgba(139, 108, 255, 0.075), transparent 30%),
        #060609;
}

.workflow-section::before {
    content: "03";
    position: absolute;
    right: -25px;
    top: 35px;
    color: rgba(255, 255, 255, 0.012);
    font-size: 300px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.workflow-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.workflow-card {
    min-height: 300px;
    position: relative;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--border);
    background:
        linear-gradient(145deg, rgba(139, 108, 255, 0.055), transparent 45%),
        #0a0a0f;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.workflow-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-purple);
    background:
        linear-gradient(145deg, rgba(139, 108, 255, 0.09), transparent 50%),
        #0b0b11;
}

.workflow-number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: #37333f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.workflow-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 58px;
    border: 1px solid var(--border-purple);
    color: var(--purple-light);
    background: rgba(139, 108, 255, 0.06);
    font-size: 22px;
    box-shadow: 0 0 35px rgba(139, 108, 255, 0.07);
}

.workflow-card h3 {
    color: white;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
}

.workflow-card p {
    max-width: 290px;
    margin-top: 13px;
    color: #77727f;
    font-size: 11px;
    line-height: 1.75;
}

.workflow-status {
    margin-top: 18px;
    min-height: 90px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 22px;
    align-items: center;
    border: 1px solid var(--border);
    border-left: 2px solid var(--purple);
    background: rgba(139, 108, 255, 0.025);
}

.workflow-status span {
    color: #65606c;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.workflow-status strong {
    color: var(--purple-light);
    font-size: 10px;
    letter-spacing: 1.5px;
}

.workflow-status p {
    justify-self: end;
    max-width: 570px;
    color: #68636f;
    font-size: 9px;
    line-height: 1.65;
}

/* ------------------------------------------------------------
   INTERFACE V2.1 SPACING
------------------------------------------------------------ */

.interface-section {
    padding: 125px 0;
}

/* ------------------------------------------------------------
   UPDATES
------------------------------------------------------------ */

.updates-section {
    position: relative;
    padding: 135px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 22% 48%, rgba(139, 108, 255, 0.075), transparent 28%),
        #08080c;
}

.updates-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.updates-copy > p {
    max-width: 520px;
    margin-top: 27px;
    color: #8e8996;
    font-size: 14px;
    line-height: 1.85;
}

.update-version {
    max-width: 520px;
    margin-top: 38px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 1px solid var(--border);
    border-left: 2px solid var(--purple);
    background: rgba(255, 255, 255, 0.012);
}

.update-version + .update-version {
    margin-top: 9px;
}

.update-version span {
    color: #5f5a66;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.update-version strong {
    color: white;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
}

.update-version small {
    grid-column: 1 / -1;
    margin-top: 5px;
    color: var(--purple-light);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.update-version.future {
    border-left-color: var(--purple-light);
    background: rgba(139, 108, 255, 0.035);
}

.updates-panel {
    border: 1px solid var(--border);
    background: #09090e;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.updates-panel article {
    min-height: 118px;
    padding: 25px 28px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.updates-panel article:last-child {
    border-bottom: 0;
}

.updates-panel article:hover {
    background: rgba(139, 108, 255, 0.035);
}

.updates-panel article > span {
    color: var(--purple-light);
    font-size: 8px;
    font-weight: 900;
}

.updates-panel strong {
    color: #d1ced8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.updates-panel p {
    max-width: 520px;
    margin-top: 7px;
    color: #6e6975;
    font-size: 10px;
    line-height: 1.7;
}

/* ------------------------------------------------------------
   SYSTEM REQUIREMENTS
------------------------------------------------------------ */

.requirements-section {
    padding: 125px 0;
    border-bottom: 1px solid var(--border);
    background: #050507;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    background: #09090d;
}

.requirement-item {
    min-height: 180px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid var(--border);
    background:
        linear-gradient(to top, rgba(139, 108, 255, 0.025), transparent 55%);
}

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

.requirement-item > span {
    margin-bottom: auto;
    color: var(--purple-light);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.requirement-item strong {
    color: white;
    font-size: 16px;
    font-weight: 800;
}

.requirement-item small {
    margin-top: 5px;
    color: #625d69;
    font-size: 8px;
}

.requirements-note {
    margin-top: 18px;
    padding-left: 16px;
    border-left: 1px solid var(--purple-dark);
    color: #5f5a66;
    font-size: 8px;
    line-height: 1.7;
}

/* ------------------------------------------------------------
   HOTKEYS V2.1
------------------------------------------------------------ */

.hotkeys-section {
    padding: 120px 0;
}

.hotkey-note {
    margin-top: 18px;
    color: #57525d;
    font-size: 8px;
}

/* ------------------------------------------------------------
   PRICING V2.1 - FIVE LICENSES
------------------------------------------------------------ */

.pricing-section {
    padding: 130px 0;
}

.pricing-heading {
    max-width: 780px;
}

.pricing-heading > p {
    max-width: 620px;
    margin-top: 24px;
    color: #8b8792;
    font-size: 14px;
    line-height: 1.8;
}

.pricing-cards-five {
    margin-top: 62px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.pricing-cards-five .pricing-card {
    min-width: 0;
    min-height: 455px;
    padding: 27px 22px 23px;
}

.pricing-cards-five .pricing-card.featured {
    transform: translateY(-12px);
    border-color: rgba(139, 108, 255, 0.6);
    box-shadow:
        0 28px 75px rgba(0, 0, 0, 0.38),
        0 0 50px rgba(139, 108, 255, 0.07);
}

.pricing-cards-five .pricing-card.featured:hover {
    transform: translateY(-16px);
}

.pricing-cards-five .pricing-price {
    align-items: flex-end;
    gap: 8px;
}

.pricing-cards-five .pricing-price strong {
    font-size: clamp(30px, 2.4vw, 42px);
    letter-spacing: -2px;
}

.pricing-cards-five .pricing-price div {
    padding-bottom: 5px;
}

.pricing-cards-five .pricing-card ul {
    gap: 13px;
}

.pricing-cards-five .pricing-card li {
    font-size: 8px;
    line-height: 1.45;
}

.pricing-cards-five .pricing-button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.pricing-cards-five .pricing-button:disabled:hover {
    color: #9b96a2;
    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-cards-five .pricing-button.primary:disabled:hover {
    color: white;
    border-color: var(--purple);
    background: var(--purple);
}

.lifetime-card {
    background:
        radial-gradient(circle at 50% 0, rgba(139, 108, 255, 0.08), transparent 40%),
        #0a0a0f !important;
}

.pricing-note {
    margin-top: 28px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.012);
}

.pricing-note span {
    color: var(--purple-light);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.pricing-note p {
    color: #696470;
    font-size: 9px;
    line-height: 1.7;
}

/* ------------------------------------------------------------
   DISCORD
------------------------------------------------------------ */

.discord-section {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 16% 50%, rgba(139, 108, 255, 0.1), transparent 24%),
        #08080c;
}

.discord-layout {
    display: grid;
    grid-template-columns: 150px 1fr 270px;
    gap: 55px;
    align-items: center;
}

.discord-symbol {
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-purple);
    color: white;
    background:
        linear-gradient(135deg, rgba(139, 108, 255, 0.22), rgba(139, 108, 255, 0.035));
    font-size: 62px;
    font-weight: 900;
    box-shadow: 0 0 70px rgba(139, 108, 255, 0.08);
    clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
}

.discord-copy p {
    max-width: 650px;
    margin-top: 24px;
    color: #8b8792;
    font-size: 13px;
    line-height: 1.8;
}

.discord-action {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid var(--border);
}

.discord-status {
    color: #625d69;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.discord-action strong {
    margin-top: 7px;
    color: var(--purple-light);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.discord-button {
    width: 100%;
    margin-top: 24px;
}

.discord-button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

/* ------------------------------------------------------------
   FAQ V2.1
------------------------------------------------------------ */

.faq-section {
    padding: 125px 0;
}

.faq-list {
    max-width: 760px;
}

/* ------------------------------------------------------------
   FOOTER V2.1
------------------------------------------------------------ */

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

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

/* ------------------------------------------------------------
   JS ENHANCEMENTS / ACCESSIBILITY
------------------------------------------------------------ */

.reveal-element {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.desktop-nav a.nav-active {
    color: white;
}

.desktop-nav a.nav-active::after {
    width: 100%;
}

.demo-purple-button {
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.demo-purple-button:hover {
    color: white;
    border-color: rgba(139, 108, 255, 0.55);
    background: rgba(139, 108, 255, 0.14);
}

.demo-purple-button.demo-button-active {
    color: white;
    border-color: var(--purple);
    background: rgba(139, 108, 255, 0.22);
}

.demo-switch {
    cursor: pointer;
}

.app-window {
    transition:
        transform 0.18s ease-out,
        box-shadow 0.3s ease;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--purple-light);
    outline-offset: 3px;
}

/* ------------------------------------------------------------
   RESPONSIVE V2.1
------------------------------------------------------------ */

@media (max-width: 1280px) {

    .pricing-cards-five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-cards-five .pricing-card.featured {
        transform: none;
    }

    .pricing-cards-five .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-cards-five .lifetime-card {
        grid-column: span 2;
    }

}

@media (max-width: 1100px) {

    .label-one {
        right: 12px;
    }

    .label-two {
        left: 12px;
    }

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

    .workflow-card {
        min-height: 230px;
    }

    .workflow-icon {
        margin-bottom: 35px;
    }

    .updates-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

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

    .requirement-item:nth-child(2) {
        border-right: 0;
    }

    .requirement-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .discord-layout {
        grid-template-columns: 110px 1fr;
        gap: 35px;
    }

    .discord-symbol {
        width: 100px;
        height: 100px;
        font-size: 46px;
    }

    .discord-action {
        grid-column: 1 / -1;
        padding: 25px 0 0;
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .discord-button {
        width: auto;
        min-width: 220px;
    }

}

@media (max-width: 900px) {

    .workflow-section,
    .updates-section,
    .requirements-section,
    .pricing-section,
    .faq-section {
        padding: 95px 0;
    }

    .workflow-status {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .workflow-status p {
        justify-self: start;
    }

    .pricing-cards-five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-cards-five .lifetime-card {
        grid-column: auto;
    }

    .pricing-note {
        grid-template-columns: 1fr;
        gap: 8px;
    }

}

@media (max-width: 700px) {

    .workflow-section .section-heading h2,
    .updates-copy h2,
    .requirements-section .section-heading h2,
    .discord-copy h2 {
        font-size: clamp(38px, 12vw, 58px);
        letter-spacing: -2px;
    }

    .requirements-grid,
    .pricing-cards-five {
        grid-template-columns: 1fr;
    }

    .requirement-item,
    .requirement-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

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

    .pricing-cards-five .pricing-card {
        min-height: 430px;
    }

    .discord-layout {
        grid-template-columns: 1fr;
    }

    .discord-symbol {
        width: 82px;
        height: 82px;
        font-size: 38px;
    }

    .discord-action {
        grid-column: auto;
    }

    .discord-button {
        width: 100%;
    }

}

@media (max-width: 520px) {

    .label-one,
    .label-two {
        display: none;
    }

    .workflow-card,
    .updates-panel article,
    .requirement-item {
        padding-left: 22px;
        padding-right: 22px;
    }

}

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

    html {
        scroll-behavior: auto;
    }

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

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

}
