:root {
    --bg: #07080d;
    --bg-soft: #0b0c12;
    --panel: #0e1018;
    --panel-2: #11131d;
    --border: rgba(255,255,255,.08);
    --border-hover: rgba(255,255,255,.16);

    --text: #f5f5f7;
    --muted: #8b8f9c;
    --muted-2: #606572;

    --purple: #927cff;
    --purple-light: #b4a5ff;

    --green: #65dba2;
    --blue: #6fa8ff;
    --orange: #ffad69;

    --radius: 18px;

    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );
}

button,
a,
input {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: auto;
    position: relative;
    z-index: 2;
}


/* LOADER */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    background: #07080d;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    animation: loaderOut .7s 1.25s forwards;
    pointer-events: none;
}

.loader-logo {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.loader-logo span {
    width: 8px;
    height: 30px;
    background: var(--purple);
    border-radius: 3px;

    animation: loaderBars .8s infinite alternate;
}

.loader-logo span:nth-child(2) {
    animation-delay: .12s;
}

.loader-logo span:nth-child(3) {
    animation-delay: .24s;
}

.loader-line {
    width: 120px;
    height: 2px;
    background: #1b1d27;
    overflow: hidden;
}

.loader-line div {
    height: 100%;
    width: 45%;
    background: var(--purple);
    animation: loaderLine 1s infinite;
}


/* ANNOUNCEMENT */

.announcement {
    position: relative;
    z-index: 100;

    height: 38px;

    border-bottom: 1px solid var(--border);
    background: rgba(9,10,15,.8);

    backdrop-filter: blur(20px);
}

.announcement-inner {
    height: 100%;
    max-width: var(--container);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-size: 11px;
    color: var(--muted);
}

.announcement strong {
    color: white;
}

.announcement a {
    margin-left: 8px;
    color: var(--purple-light);
    transition: .2s;
}

.announcement a:hover {
    color: white;
}

.announcement a span {
    margin-left: 4px;
}

.announcement-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px rgba(101,219,162,.8);

    animation: pulse 2s infinite;
}


/* NAV */

.navbar {
    position: sticky;
    top: 0;
    z-index: 90;

    border-bottom: 1px solid var(--border);

    background: rgba(7,8,13,.72);
    backdrop-filter: blur(22px);
}

.nav-inner {
    width: min(var(--container), calc(100% - 48px));
    height: 72px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo strong {
    display: block;

    font-size: 20px;
    line-height: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo strong span {
    color: var(--purple);
}

.logo small {
    display: block;

    margin-top: 3px;

    color: #626674;
    font-size: 7px;
    letter-spacing: 1.4px;
    font-weight: 800;
}

.logo-icon {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;

    border-radius: 8px;
    border: 1px solid rgba(146,124,255,.35);

    background: linear-gradient(
        135deg,
        rgba(146,124,255,.18),
        rgba(146,124,255,.03)
    );

    box-shadow:
        inset 0 0 20px rgba(146,124,255,.08),
        0 0 25px rgba(146,124,255,.05);
}

.logo-icon span {
    width: 3px;
    border-radius: 2px;
    background: var(--purple);
}

.logo-icon span:nth-child(1) {
    height: 10px;
}

.logo-icon span:nth-child(2) {
    height: 16px;
}

.logo-icon span:nth-child(3) {
    height: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-left: 80px;
}

.desktop-nav a {
    color: #898d99;
    font-size: 12px;
    font-weight: 600;

    transition: color .2s;
}

.desktop-nav a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.nav-search {
    height: 36px;
    padding: 0 9px 0 12px;

    display: flex;
    align-items: center;
    gap: 9px;

    border: 1px solid var(--border);
    border-radius: 9px;

    color: var(--muted);
    background: rgba(255,255,255,.025);

    cursor: pointer;

    transition: .2s;
}

.nav-search:hover {
    border-color: var(--border-hover);
    color: white;
}

.nav-search kbd {
    font-size: 9px;
    padding: 3px 5px;
    border-radius: 4px;

    color: #777b88;
    background: #161821;
}

.search-mini-icon,
.search-icon {
    position: relative;
    display: block;

    width: 13px;
    height: 13px;

    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.search-mini-icon::after,
.search-icon::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 1.5px;

    right: -4px;
    bottom: -2px;

    transform: rotate(45deg);

    background: currentColor;
    border-radius: 2px;
}

.random-nav {
    height: 36px;
    padding: 0 13px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #d9d6ff;
    background: rgba(146,124,255,.09);

    border: 1px solid rgba(146,124,255,.18);
    border-radius: 9px;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: .25s;
}

.random-nav:hover {
    background: rgba(146,124,255,.16);
    border-color: rgba(146,124,255,.35);
    transform: translateY(-1px);
}

.random-nav span {
    color: var(--purple-light);
}

.mobile-menu {
    display: none;

    width: 38px;
    height: 38px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: transparent;

    cursor: pointer;
}

.mobile-menu i {
    display: block;
    width: 16px;
    height: 1px;
    margin: 4px auto;

    background: #aaa;
}

.mobile-nav {
    display: none;
}


/* HERO */

.hero {
    min-height: 680px;
    position: relative;

    overflow: hidden;

    border-bottom: 1px solid var(--border);
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(146,124,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146,124,255,.025) 1px, transparent 1px);

    background-size: 80px 80px;

    mask-image: radial-gradient(
        ellipse at center,
        black 0%,
        transparent 75%
    );
}

.hero-orb {
    position: absolute;
    border-radius: 50%;

    filter: blur(1px);
    pointer-events: none;
}

.orb-one {
    width: 500px;
    height: 500px;

    top: -200px;
    left: -160px;

    background: radial-gradient(
        circle,
        rgba(100,80,255,.12),
        transparent 65%
    );
}

.orb-two {
    width: 600px;
    height: 600px;

    right: -220px;
    bottom: -300px;

    background: radial-gradient(
        circle,
        rgba(80,120,255,.08),
        transparent 65%
    );
}

.hero-inner {
    min-height: 680px;

    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;

    gap: 80px;
}

.hero-content {
    padding-top: 30px;

    animation: fadeUp .8s .2s both;
}

.hero-badge {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 7px 10px;

    border: 1px solid rgba(146,124,255,.2);
    border-radius: 100px;

    color: #aaa4e6;
    background: rgba(146,124,255,.055);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.badge-live {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--purple);
    box-shadow: 0 0 12px var(--purple);
}

.badge-arrow {
    margin-left: 2px;
    font-size: 12px;
}

.hero h1 {
    max-width: 670px;

    margin-top: 22px;

    font-size: clamp(52px, 7vw, 86px);
    line-height: .98;

    letter-spacing: -5px;
    font-weight: 900;
}

.hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #fff,
        #9f8eff 55%,
        #7563e9
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 510px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 10px;

    margin-top: 31px;
}

.btn {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 17px;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform .25s,
        background .25s,
        border .25s;
}

.btn-primary {
    background: #9a87ff;
    color: #08070d;

    box-shadow:
        0 10px 35px rgba(146,124,255,.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ac9cff;
    box-shadow:
        0 15px 45px rgba(146,124,255,.25);
}

.btn-primary span {
    font-size: 16px;
}

.btn-secondary {
    border: 1px solid var(--border);

    color: #bbbcc5;
    background: rgba(255,255,255,.025);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    color: white;
}

.hero-trust {
    margin-top: 42px;

    display: flex;
    align-items: center;
    gap: 22px;
}

.trust-item {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.trust-item strong {
    font-size: 19px;
    font-weight: 800;
}

.trust-item > span {
    color: var(--purple-light);
    font-size: 13px;
    font-weight: 800;
}

.trust-item small {
    margin-left: 5px;

    color: #646875;

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.trust-divider {
    width: 1px;
    height: 23px;

    background: var(--border);
}


/* HERO SHOWCASE */

.hero-showcase {
    height: 470px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: fadeUp .8s .35s both;
}

.showcase-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(146,124,255,.1),
        transparent 65%
    );

    filter: blur(15px);
}

.code-window {
    width: 430px;

    position: relative;
    z-index: 3;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(18,19,28,.98),
            rgba(10,11,17,.98)
        );

    box-shadow:
        0 35px 100px rgba(0,0,0,.55),
        0 0 80px rgba(100,80,255,.06);

    transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);

    transition: transform .5s;
}

.code-window:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-5px);
}

.window-top {
    height: 43px;

    display: flex;
    align-items: center;

    padding: 0 13px;

    border-bottom: 1px solid var(--border);

    background: rgba(255,255,255,.025);
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #393b45;
}

.window-file {
    flex: 1;

    text-align: center;

    color: #656976;

    font-size: 9px;
}

.copy-code {
    color: #757987;
    background: transparent;

    font-size: 9px;

    cursor: pointer;

    transition: .2s;
}

.copy-code:hover {
    color: white;
}

.code-body {
    padding: 24px 25px;

    min-height: 290px;
}

.code-body pre {
    color: #8f93a2;

    font-family: "Consolas", monospace;
    font-size: 11px;
    line-height: 2;

    white-space: pre-wrap;
}

.code-keyword {
    color: #a28fff;
}

.code-string {
    color: #73c99c;
}

.code-function {
    color: #74a9ff;
}

.code-status {
    height: 35px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    gap: 7px;

    color: #626775;

    font-size: 8px;
    letter-spacing: .5px;

    border-top: 1px solid var(--border);
}

.code-status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);
}

.code-status strong {
    margin-left: auto;

    color: #555866;
    font-weight: 600;
}

.floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 13px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 11px;

    background: rgba(16,17,25,.85);
    backdrop-filter: blur(14px);

    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.floating-card strong {
    display: block;
    font-size: 10px;
}

.floating-card small {
    display: block;
    margin-top: 3px;

    color: #646875;

    font-size: 8px;
}

.floating-card-top {
    top: 45px;
    left: 4px;

    animation: floatSmall 4s ease-in-out infinite;
}

.floating-card-bottom {
    right: -10px;
    bottom: 40px;

    animation: floatSmall 4.5s .5s ease-in-out infinite;
}

.mini-icon {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 8px;
    font-weight: 900;
}

.mini-icon.purple {
    color: #c5bcff;
    background: rgba(146,124,255,.14);
    border: 1px solid rgba(146,124,255,.2);
}

.check {
    margin-left: 7px;

    color: var(--green);
    font-size: 11px;
}

.admin-icon {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #a6c9ff;
    background: rgba(90,145,255,.12);

    border: 1px solid rgba(90,145,255,.2);

    font-size: 10px;
    font-weight: 900;
}

.tiny-bars {
    display: flex;
    align-items: end;
    gap: 2px;

    height: 18px;

    margin-left: 8px;
}

.tiny-bars i {
    display: block;

    width: 3px;

    border-radius: 2px;

    background: #5679ad;
}

.tiny-bars i:nth-child(1) {
    height: 7px;
}

.tiny-bars i:nth-child(2) {
    height: 12px;
}

.tiny-bars i:nth-child(3) {
    height: 17px;
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;

    height: 140px;

    background: linear-gradient(
        transparent,
        var(--bg)
    );

    pointer-events: none;
}


/* SECTIONS */

.browse-section,
.categories-section,
.process-section,
.about-section {
    padding: 120px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 42px;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 13px;

    color: #6e7280;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.centered .eyebrow {
    justify-content: center;
}

.eyebrow > span {
    width: 18px;
    height: 1px;

    background: var(--purple);
}

.section-heading h2 {
    font-size: clamp(31px, 4vw, 46px);
    letter-spacing: -2px;
    line-height: 1.05;
}

.section-heading h2 span,
.about-main h2 span {
    color: var(--purple-light);
}

.section-heading p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;
}

.asset-count {
    color: #5f6370;
    font-size: 10px;
}

.asset-count span {
    color: #b4b7c1;
    font-weight: 800;
}


/* SEARCH */

.search-area {
    margin-bottom: 27px;
}

.search-box {
    height: 55px;

    position: relative;

    display: flex;
    align-items: center;

    padding: 0 15px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255,255,255,.025);

    transition: .25s;
}

.search-box:focus-within {
    border-color: rgba(146,124,255,.4);

    box-shadow:
        0 0 0 3px rgba(146,124,255,.06);
}

.search-icon {
    margin-right: 13px;

    color: #696d79;
}

.search-box input {
    flex: 1;

    min-width: 0;

    outline: none;
    border: 0;

    background: transparent;

    color: white;

    font-size: 12px;
}

.search-box input::placeholder {
    color: #555965;
}

.search-box kbd {
    color: #676b78;

    padding: 4px 7px;

    border-radius: 5px;
    border: 1px solid var(--border);

    background: #11131a;

    font-size: 9px;
}

.clear-search {
    display: none;

    margin-right: 10px;

    color: #727682;
    background: transparent;

    font-size: 18px;

    cursor: pointer;
}

.clear-search.visible {
    display: block;
}

.filters {
    display: flex;
    gap: 7px;

    margin-top: 13px;
}

.filter {
    padding: 8px 13px;

    border: 1px solid var(--border);
    border-radius: 7px;

    color: #747884;
    background: transparent;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.filter:hover {
    color: white;
    border-color: var(--border-hover);
}

.filter.active {
    color: #dcd8ff;

    border-color: rgba(146,124,255,.3);
    background: rgba(146,124,255,.09);
}


/* ASSET GRID */

.asset-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.asset-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: rgba(13,14,21,.72);

    transition:
        transform .35s,
        border .35s,
        opacity .3s,
        box-shadow .35s;

    position: relative;
}

.asset-card::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0;

    background: radial-gradient(
        350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(146,124,255,.07),
        transparent 60%
    );

    transition: opacity .3s;
}

.asset-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255,255,255,.14);

    box-shadow:
        0 25px 70px rgba(0,0,0,.3);
}

.asset-card:hover::after {
    opacity: 1;
}

.asset-card.hidden {
    display: none;
}


/* CARD PREVIEWS */

.card-preview {
    height: 220px;

    position: relative;
    overflow: hidden;

    border-bottom: 1px solid var(--border);
}

.preview-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 35px 35px;
}

.purple-preview {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(146,124,255,.14),
            transparent 60%
        ),
        #0c0d15;
}

.blue-preview {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(80,145,255,.12),
            transparent 60%
        ),
        #0c0e14;
}

.green-preview {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(80,215,150,.1),
            transparent 60%
        ),
        #0b100f;
}

.orange-preview {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,155,80,.1),
            transparent 60%
        ),
        #110e0b;
}

.asset-type {
    position: absolute;

    top: 13px;
    right: 13px;

    padding: 5px 7px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 5px;

    background: rgba(0,0,0,.28);

    color: #767a87;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.preview-window {
    position: absolute;

    width: 210px;
    height: 125px;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%) rotate(-3deg);

    padding: 18px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;

    background: rgba(12,13,19,.92);

    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.tiny-code {
    display: block;

    height: 5px;
    width: 80%;

    margin-bottom: 9px;

    border-radius: 3px;

    background: #292c38;
}

.tiny-code.short {
    width: 45%;
}

.tiny-code.purple-line {
    width: 60%;

    background: rgba(146,124,255,.65);
}

.preview-floating {
    position: absolute;

    right: 45px;
    bottom: 35px;

    padding: 9px 11px;

    display: flex;
    align-items: center;
    gap: 9px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;

    background: rgba(17,18,26,.9);

    box-shadow: 0 15px 30px rgba(0,0,0,.3);
}

.preview-floating span {
    color: #666a77;
    font-size: 8px;
}

.preview-floating strong {
    color: #b7aaff;
    font-size: 10px;
}


/* ADMIN PREVIEW */

.admin-panel-preview {
    position: absolute;

    width: 250px;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    padding: 13px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;

    background: rgba(10,12,18,.93);

    box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.admin-top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 11px;

    color: #749ff1;

    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1px;
}

.admin-top i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #66d8a0;
}

.admin-command {
    padding: 8px;

    margin-top: 5px;

    border-radius: 5px;

    color: #676b78;
    background: rgba(255,255,255,.035);

    font-family: monospace;
    font-size: 8px;
}

.admin-command span {
    color: #739eff;
}


/* TELEPORT */

.teleport-preview {
    position: absolute;

    left: 50%;
    top: 48%;

    transform: translate(-50%,-50%);

    display: flex;
    align-items: center;
}

.tp-node {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;

    background: rgba(15,20,18,.9);

    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}

.tp-node span {
    color: #68716d;
    font-size: 9px;
    font-weight: 800;
}

.tp-node.active {
    border-color: rgba(101,219,162,.35);
    box-shadow:
        0 0 30px rgba(101,219,162,.08);
}

.tp-node.active span {
    color: var(--green);
}

.tp-line {
    width: 100px;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(101,219,162,.1),
        rgba(101,219,162,.65),
        rgba(101,219,162,.1)
    );

    position: relative;
}

.tp-line::after {
    content: "→";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    padding: 3px;

    color: #70dba7;
    background: #0d1110;

    font-size: 10px;
}

.preview-label {
    position: absolute;

    bottom: 29px;
    left: 50%;

    transform: translateX(-50%);

    color: #57605b;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.4px;
}


/* DATABASE */

.database-preview {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 180px;
    height: 100px;

    transform: translate(-50%,-50%);
}

.database-layer {
    position: absolute;

    left: 0;
    right: 0;

    height: 48px;

    border: 1px solid rgba(255,175,105,.2);

    border-radius: 50%;

    background: rgba(30,19,11,.9);
}

.layer-one {
    top: 0;
}

.layer-two {
    top: 25px;
}

.layer-three {
    top: 50px;
}

.database-core {
    position: absolute;

    left: 50%;
    top: 40px;

    transform: translate(-50%,-50%);

    color: #ffb57b;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.save-status {
    position: absolute;

    left: 22px;
    bottom: 23px;

    display: flex;
    align-items: center;
    gap: 6px;

    color: #7d6857;

    font-size: 7px;
    font-weight: 800;
}

.save-status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--orange);
}


/* CARD CONTENT */

.asset-content {
    padding: 21px;
}

.asset-meta {
    display: flex;
    gap: 6px;

    color: #626673;

    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.asset-meta span:first-child {
    color: #9498a4;
}

.asset-content h3 {
    margin-top: 11px;

    font-size: 17px;
    letter-spacing: -.5px;
}

.asset-content p {
    min-height: 42px;

    margin-top: 7px;

    color: #777b87;

    font-size: 11px;
    line-height: 1.65;
}

.asset-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 19px;
    padding-top: 15px;

    border-top: 1px solid var(--border);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #5f6370;

    font-family: monospace;
    font-size: 8px;
}

.file-icon {
    color: #797d8a;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 10px;

    border: 1px solid var(--border);
    border-radius: 7px;

    color: #aaaeba;
    background: rgba(255,255,255,.025);

    font-size: 9px;
    font-weight: 800;

    transition: .2s;
}

.download-btn:hover {
    color: white;
    border-color: rgba(146,124,255,.35);
    background: rgba(146,124,255,.08);
    transform: translateY(-1px);
}

.download-btn span {
    color: var(--purple-light);
}


/* NO RESULTS */

.no-results {
    display: none;

    padding: 70px 20px;

    text-align: center;
}

.no-results.visible {
    display: block;
}

.no-results-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;

    border: 1px solid var(--border);
    border-radius: 13px;

    color: #747887;
    background: rgba(255,255,255,.025);

    font-size: 22px;
}

.no-results h3 {
    margin-top: 15px;
    font-size: 16px;
}

.no-results p {
    margin-top: 6px;

    color: var(--muted);
    font-size: 11px;
}

.no-results button {
    margin-top: 17px;

    padding: 9px 13px;

    border-radius: 7px;

    color: #b7adff;
    background: rgba(146,124,255,.08);

    cursor: pointer;
}


/* FEATURED */

.featured-section {
    padding: 30px 0 120px;
}

.featured-box {
    min-height: 440px;

    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;

    padding: 65px;

    border: 1px solid rgba(146,124,255,.15);
    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(146,124,255,.09),
            rgba(255,255,255,.018) 45%,
            rgba(80,100,255,.035)
        );
}

.featured-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 10% 90%,
            rgba(146,124,255,.13),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(80,120,255,.08),
            transparent 35%
        );

    pointer-events: none;
}

.featured-content {
    position: relative;
    z-index: 2;
}

.featured-label {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #a59aff;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.featured-label span {
    font-size: 13px;
}

.featured-content h2 {
    max-width: 560px;

    margin-top: 14px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.featured-content h2 span {
    color: var(--purple-light);
}

.featured-content > p {
    max-width: 510px;

    margin-top: 15px;

    color: #777b88;

    font-size: 12px;
    line-height: 1.7;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 20px;
}

.featured-tags span {
    padding: 6px 8px;

    border: 1px solid var(--border);
    border-radius: 5px;

    color: #858995;
    background: rgba(255,255,255,.025);

    font-size: 8px;
}

.featured-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-top: 24px;
    padding: 11px 14px;

    border: 1px solid rgba(146,124,255,.25);
    border-radius: 8px;

    color: #c6bfff;
    background: rgba(146,124,255,.08);

    font-size: 10px;
    font-weight: 800;

    transition: .25s;
}

.featured-button:hover {
    transform: translateY(-2px);
    background: rgba(146,124,255,.14);
}

.pack-visual {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
}

.pack-card {
    width: 320px;

    padding: 20px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;

    background: rgba(9,10,15,.84);

    box-shadow:
        0 30px 80px rgba(0,0,0,.4);

    transform: rotate(4deg);

    transition: transform .4s;
}

.pack-card:hover {
    transform: rotate(0deg) translateY(-7px);
}

.pack-header {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 17px;

    border-bottom: 1px solid var(--border);
}

.pack-header strong {
    display: block;
    font-size: 11px;
}

.pack-header small {
    display: block;

    margin-top: 3px;

    color: #5e626e;

    font-size: 7px;
}

.logo-icon.small {
    width: 28px;
    height: 28px;
}

.pack-files {
    display: grid;
    gap: 7px;

    margin-top: 17px;
}

.pack-files > div {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 8px;

    border: 1px solid rgba(255,255,255,.045);
    border-radius: 7px;

    color: #666a76;

    font-family: monospace;
    font-size: 8px;
}

.pack-file {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    font-family: "Inter", sans-serif;
    font-size: 6px;
    font-weight: 900;
}

.purple-file {
    color: #b4a8ff;
    background: rgba(146,124,255,.12);
}

.blue-file {
    color: #8cb7ff;
    background: rgba(100,155,255,.1);
}

.green-file {
    color: #83dfb1;
    background: rgba(100,220,160,.09);
}

.orange-file {
    color: #ffbd8b;
    background: rgba(255,170,100,.08);
}

.pack-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 16px;

    color: #555965;

    font-size: 7px;
}

.pack-bottom strong {
    color: var(--green);
}


/* CATEGORIES */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.category-card {
    min-height: 260px;

    position: relative;
    overflow: hidden;

    padding: 27px;

    text-align: left;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: rgba(255,255,255,.018);

    cursor: pointer;

    transition: .3s;
}

.category-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255,255,255,.14);

    background: rgba(255,255,255,.03);
}

.category-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #343741;

    font-family: monospace;
    font-size: 9px;
}

.category-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 10px;

    font-family: monospace;
    font-size: 12px;
    font-weight: 900;
}

.purple-category {
    color: #afa4ff;
    background: rgba(146,124,255,.1);
}

.blue-category {
    color: #8bb7ff;
    background: rgba(90,145,255,.1);
}

.green-category {
    color: #80dda9;
    background: rgba(80,215,150,.09);
}

.category-card h3 {
    font-size: 18px;
}

.category-card p {
    max-width: 240px;

    margin-top: 8px;

    color: #6c707c;

    font-size: 11px;
    line-height: 1.6;
}

.category-link {
    position: absolute;

    bottom: 23px;
    left: 27px;

    color: #888c98;

    font-size: 9px;
    font-weight: 800;
}

.category-link b {
    margin-left: 7px;
    color: var(--purple-light);

    transition: .2s;
}

.category-card:hover .category-link b {
    margin-left: 12px;
}


/* PROCESS */

.process-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: rgba(255,255,255,.008);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    align-items: center;
}

.process-card {
    min-height: 190px;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: rgba(255,255,255,.015);
}

.process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #454853;

    font-family: monospace;
    font-size: 9px;
}

.process-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 8px;

    color: #aaa1ff;

    background: rgba(146,124,255,.07);

    font-size: 12px;
}

.process-card h3 {
    margin-top: 30px;

    font-size: 16px;
}

.process-card p {
    margin-top: 6px;

    color: #686c78;

    font-size: 10px;
    line-height: 1.6;
}

.process-connector {
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(146,124,255,.3),
        transparent
    );
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: center;
}

.about-main h2 {
    max-width: 530px;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.about-main p {
    max-width: 510px;

    margin-top: 17px;

    color: #747884;

    font-size: 12px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 10px;
}

.about-feature {
    display: flex;
    gap: 13px;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255,255,255,.015);

    transition: .25s;
}

.about-feature:hover {
    transform: translateX(4px);
    border-color: rgba(255,255,255,.13);
}

.feature-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #a89eff;
    background: rgba(146,124,255,.08);

    font-size: 11px;
}

.about-feature h3 {
    font-size: 11px;
}

.about-feature p {
    margin-top: 4px;

    color: #60646f;

    font-size: 9px;
    line-height: 1.5;
}


/* FOOTER */

footer {
    padding: 35px 0 25px;

    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 28px;
}

.footer-logo .logo-icon {
    width: 27px;
    height: 27px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #5f6370;

    font-size: 9px;
}

.footer-status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: #454852;

    font-size: 8px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    transition: .2s;
}

.footer-bottom a:hover {
    color: #aaa;
}


/* BACK TOP */

.back-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 40px;
    height: 40px;

    z-index: 50;

    border: 1px solid var(--border);
    border-radius: 10px;

    color: #aaa;
    background: rgba(14,15,22,.85);
    backdrop-filter: blur(12px);

    cursor: pointer;

    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;

    transition: .3s;
}

.back-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-top:hover {
    color: white;
    border-color: var(--border-hover);
}


/* TOAST */

.toast-container {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 500;

    display: grid;
    gap: 8px;
}

.toast {
    min-width: 240px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: rgba(14,15,22,.94);
    backdrop-filter: blur(16px);

    box-shadow: 0 20px 50px rgba(0,0,0,.4);

    animation:
        toastIn .3s both,
        toastOut .3s 2.7s forwards;
}

.toast-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    color: var(--green);
    background: rgba(101,219,162,.09);

    font-size: 10px;
}

.toast strong {
    display: block;
    font-size: 10px;
}

.toast small {
    display: block;

    margin-top: 3px;

    color: #666a76;

    font-size: 8px;
}


/* ANIMATIONS */

@keyframes loaderBars {
    from {
        transform: scaleY(.5);
        opacity: .4;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes loaderLine {
    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(350%);
    }
}

@keyframes loaderOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSmall {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%,100% {
        opacity: .6;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .desktop-nav {
        margin-left: 20px;
        gap: 18px;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        padding-top: 70px;
        padding-bottom: 70px;

        gap: 30px;
    }

    .hero-showcase {
        height: 400px;
    }

    .hero {
        min-height: auto;
    }

    .featured-box {
        padding: 45px;

        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pack-visual {
        justify-content: flex-start;
    }

    .about-grid {
        gap: 50px;
    }
}


@media (max-width: 750px) {

    .container,
    .nav-inner {
        width: min(100% - 30px, var(--container));
    }

    .announcement-inner {
        padding: 0 15px;
        font-size: 9px;
    }

    .announcement a {
        display: none;
    }

    .desktop-nav,
    .random-nav {
        display: none;
    }

    .nav-search {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-nav {
        padding: 8px 15px 16px;

        border-top: 1px solid var(--border);

        background: rgba(7,8,13,.95);

        flex-direction: column;
        gap: 3px;
    }

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a,
    .mobile-nav button {
        padding: 12px;

        border-radius: 8px;

        color: #8c909c;
        background: transparent;

        text-align: left;

        font-size: 12px;
        font-weight: 700;

        cursor: pointer;
    }

    .mobile-nav a:hover,
    .mobile-nav button:hover {
        color: white;
        background: rgba(255,255,255,.035);
    }

    .hero h1 {
        font-size: 54px;
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-showcase {
        height: 370px;
        transform: scale(.88);
    }

    .floating-card-top {
        left: -20px;
    }

    .floating-card-bottom {
        right: -20px;
    }

    .section-heading {
        display: block;
    }

    .asset-count {
        margin-top: 15px;
    }

    .asset-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-connector {
        width: 1px;
        height: 20px;
        margin: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .featured-box {
        padding: 30px;
    }

    .pack-card {
        width: 100%;
        max-width: 320px;
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .footer-bottom div {
        gap: 15px;
    }
}


@media (max-width: 480px) {

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-item {
        flex-direction: column;
    }

    .trust-item small {
        margin-left: 0;
        margin-top: 2px;
    }

    .hero-showcase {
        transform: scale(.74);
        margin: -30px 0;
    }

    .code-window {
        width: 430px;
    }

    .featured-content h2 {
        font-size: 35px;
    }

    .featured-box {
        padding: 25px;
    }

    .filters {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .filter {
        flex-shrink: 0;
    }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
.nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.nav-login,
.nav-register {
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: .2s ease;
}

.nav-login {
    color: #a2a5b0;
    padding: 10px 12px;
}

.nav-login:hover {
    color: white;
}

.nav-register {
    color: white;
    background: #8d78ff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(141,120,255,.18);
}

.nav-register:hover {
    background: #9986ff;
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .nav-auth {
        margin-left: 0;
    }

    .nav-login {
        display: none;
    }
}
/* =========================
   ACCOUNT NAV
========================= */

.nav-account {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-login,
.nav-register {
    text-decoration: none;
}

.account-button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 190px;
    padding: 7px 10px 7px 7px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;

    background: rgba(255,255,255,.045);
    color: white;

    cursor: pointer;
    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.account-button:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    transform: translateY(-1px);
}

.account-avatar {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(135deg, #ffffff, #9c9c9c);

    color: #080808;
    font-weight: 900;
    font-size: 14px;

    overflow: hidden;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    flex: 1;
}

.account-info strong {
    max-width: 110px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 13px;
}

.account-info small {
    color: #777;
    font-size: 11px;
}

.account-chevron {
    color: #777;
    font-size: 17px;
}

.account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    width: 210px;

    padding: 7px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 15px;

    background: rgba(18,18,18,.96);
    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.02);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.97);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 1000;
}

.account-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.account-menu a,
.account-menu button {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 10px 11px;

    border: 0;
    border-radius: 9px;

    background: transparent;
    color: #ddd;

    text-decoration: none;
    font-family: inherit;
    font-size: 13px;

    cursor: pointer;
    text-align: left;

    transition: background .15s ease, color .15s ease;
}

.account-menu a:hover,
.account-menu button:hover {
    background: rgba(255,255,255,.07);
    color: white;
}

.account-menu-line {
    height: 1px;
    margin: 6px 4px;

    background: rgba(255,255,255,.07);
}

#logoutButton {
    color: #ff7777;
}
/* =========================================================
   ACCOUNT NAVIGATION
========================================================= */

.nav-auth {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
}

.account-button {
    display: flex;
    align-items: center;
    gap: 9px;

    min-width: 175px;

    padding: 6px 9px 6px 6px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;

    background: rgba(255,255,255,.045);
    color: white;

    cursor: pointer;
    font-family: inherit;

    transition:
        .2s ease;
}

.account-button:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
}

.account-avatar {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 10px;

    background: white;
    color: #080808;

    font-size: 13px;
    font-weight: 900;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-info {
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.account-info strong {
    max-width: 105px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 12px;
}

.account-info small {
    max-width: 105px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #777;

    font-size: 10px;
}

.account-chevron {
    color: #777;
    font-size: 16px;
}

.account-menu {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 205px;

    padding: 7px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 15px;

    background: rgba(15,15,15,.97);

    backdrop-filter: blur(22px);

    box-shadow:
        0 25px 70px rgba(0,0,0,.5);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-8px)
        scale(.97);

    transform-origin: top right;

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;

    z-index: 9999;
}

.account-menu.open {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}

.account-menu a,
.account-menu button {
    width: 100%;

    display: block;

    padding: 10px 11px;

    border: 0;
    border-radius: 9px;

    background: transparent;
    color: #ccc;

    text-align: left;
    text-decoration: none;

    font-family: inherit;
    font-size: 12px;

    cursor: pointer;

    transition:
        background .15s ease,
        color .15s ease;
}

.account-menu a:hover,
.account-menu button:hover {
    background: rgba(255,255,255,.07);
    color: white;
}

.account-menu-line {
    height: 1px;

    margin: 6px 4px;

    background:
        rgba(255,255,255,.07);
}

#logoutButton {
    color: #ff7777;
}

#logoutButton:hover {
    background: rgba(255,80,80,.08);
}


/* TOAST */

.toast-container {
    position: fixed;

    right: 22px;
    bottom: 22px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    z-index: 10000;
}

.toast {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 11px 14px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;

    background: rgba(18,18,18,.96);

    box-shadow:
        0 18px 50px rgba(0,0,0,.4);

    color: #ddd;

    font-size: 12px;

    opacity: 0;
    transform:
        translateY(10px)
        scale(.97);

    transition:
        .2s ease;
}

.toast.show {
    opacity: 1;
    transform:
        translateY(0)
        scale(1);
}

.toast-check {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.1);

    color: white;

    font-size: 10px;
    font-weight: 900;
}


/* ASSET ANIMATION */

@keyframes assetIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.asset-highlight {
    animation:
        assetHighlight 1.8s ease !important;
}

@keyframes assetHighlight {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(255,255,255,0);
    }

    30% {
        box-shadow:
            0 0 0 4px rgba(255,255,255,.08),
            0 0 45px rgba(255,255,255,.08);
    }

}


/* SCROLL REVEAL */

.asset-card,
.category-card,
.process-card,
.about-feature,
.featured-box {
    transition:
        opacity .5s ease,
        transform .5s ease;
}

.asset-card:not(.revealed),
.category-card:not(.revealed),
.process-card:not(.revealed),
.about-feature:not(.revealed),
.featured-box:not(.revealed) {
    opacity: 0;
    transform: translateY(18px);
}

.asset-card.revealed,
.category-card.revealed,
.process-card.revealed,
.about-feature.revealed,
.featured-box.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* REDUCED MOTION */

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
}


@media (max-width: 850px) {

    .account-button {
        min-width: 42px;
        width: 42px;
        padding: 4px;
        justify-content: center;
    }

    .account-info,
    .account-chevron {
        display: none;
    }

}


@media (max-width: 600px) {

    .toast-container {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .toast {
        width: 100%;
        box-sizing: border-box;
    }

}