﻿:root {
    --bg: #141414;
    --panel: #1b1b1b;
    --panel-soft: #222222;
    --line: #343434;
    --line-soft: rgba(255, 255, 255, .08);
    --text: #f3f5f7;
    --muted: #a8adb5;
    --blue: #1e90ff;
    --blue-soft: rgba(30, 144, 255, .16);
    --pink: #ff2b78;
    --gold: #f6c85f;
    --green: #4bc77d;
    --radius: 8px;
    --scroll-offset: 78px;
    --page-gutter: clamp(44px, 6.5vw, 150px);
    --main-heading-size: clamp(24px, 2.15vw, 32px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-offset);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: "Source Sans Pro", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 58px;
    padding: 0 var(--page-gutter);
    border-bottom: 1px solid #242424;
    background: rgba(20, 20, 20, .97);
}

.brand {
    display: flex;
    align-items: center;
    min-width: 212px;
}

.brand-logo {
    width: 224px;
    height: auto;
    max-height: 46px;
    object-fit: contain;
}
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #dce6f2;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav a {
    opacity: .82;
    transition: color 150ms ease, opacity 150ms ease;
}

.nav a:hover {
    color: var(--blue);
    opacity: 1;
}

.nav-toggle {
    display: none;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #1a1a1a;
    color: var(--text);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.page-shell {
    width: min(1480px, calc(100vw - (var(--page-gutter) * 2)));
    margin: 0 auto;
    padding: 18px 0 48px;
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(430px, 1fr) minmax(420px, .9fr);
    min-height: 310px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(30, 144, 255, .14), transparent 36%),
        linear-gradient(315deg, rgba(255, 43, 120, .11), transparent 34%),
        #181818;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 30px 34px;
}

.eyebrow {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    margin-top: 4px;
    color: #fff;
    font-size: var(--main-heading-size);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-message {
    max-width: 560px;
    padding-left: 18px;
    border-left: 2px solid rgba(30, 144, 255, .7);
}

.status-pill {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 11px;
    border: 1px solid rgba(30, 144, 255, .48);
    border-radius: 999px;
    background: rgba(30, 144, 255, .11);
    color: #d8ecff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.hero-message h2 {
    color: #fff;
    font-size: clamp(19px, 1.55vw, 24px);
    font-weight: 900;
    line-height: 1.04;
}

.hero-message p {
    max-width: 560px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    overflow: hidden;
    padding: 0 22px;
    border: 1px solid var(--blue);
    border-radius: 6px;
    background: rgba(10, 16, 22, .48);
    color: #dcefff;
    font-size: 14px;
    font-weight: 900;
    transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--blue);
    transition: transform 190ms ease;
}

.button:hover {
    border-color: #58baff;
    color: #071018;
    box-shadow: 0 0 24px rgba(30, 144, 255, .22);
}

.button:hover::before {
    transform: scaleX(1);
}

.button-secondary {
    border-color: rgba(124, 199, 255, .7);
    background: rgba(30, 144, 255, .08);
}

.button-secondary::before {
    background: #dcefff;
}

.button-secondary:hover {
    border-color: #dcefff;
    color: #111;
}
.hero-art {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    background: #111;
}

.hero-art video {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    object-position: 62% center;
    opacity: .88;
    filter: saturate(.72) contrast(1.08);
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(24, 24, 24, .72), transparent 32%),
        linear-gradient(0deg, rgba(20, 20, 20, .36), transparent 52%);
    pointer-events: none;
}


.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.library-panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 34px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(20, 153, 255, .08), rgba(255, 20, 92, .035) 58%, rgba(24, 24, 24, .96)),
        var(--panel);
}

.library-copy {
    max-width: 640px;
    align-self: center;
}

.library-copy h2 {
    margin-top: 8px;
    color: #fff;
    font-size: var(--main-heading-size);
    font-weight: 900;
    line-height: 1.02;
}

.library-copy p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.45;
}

.library-lanes {
    display: grid;
    align-content: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.library-lane {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 22px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-soft);
}

.library-lane:last-child {
    border-bottom: 0;
}

.library-lane span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.library-lane strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.12;
}

.library-lane p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.38;
}

.stat-card,
.feature-card,
.market-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.stat-card {
    position: relative;
    min-height: 128px;
    overflow: hidden;
    padding: 22px 24px;
    background:
        linear-gradient(135deg, rgba(30, 144, 255, .08), transparent 46%),
        var(--panel);
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), rgba(255, 43, 120, .78));
    opacity: .72;
}

.stat-card span,
.card-kicker {
    display: block;
    color: #85caff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin-top: 13px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.02;
}

.stat-card small {
    display: block;
    max-width: 250px;
    margin-top: 11px;
    color: #b8c0c9;
    font-size: 15px;
    line-height: 1.35;
}

.section {
    padding-top: 48px;
    scroll-margin-top: var(--scroll-offset);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-heading h2 {
    color: #fff;
    font-size: var(--main-heading-size);
    font-weight: 900;
    line-height: 1.02;
}

.section-heading p {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.45;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    min-height: 220px;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(30, 144, 255, .09), transparent 42%),
        var(--panel);
}

.feature-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 26px;
    place-items: center;
    border: 1px solid rgba(30, 144, 255, .32);
    border-radius: 7px;
    background: rgba(30, 144, 255, .13);
    color: #7cc7ff;
    font-size: 26px;
    font-weight: 900;
}

.feature-card h3 {
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.12;
}

.market-copy h2 {
    color: #fff;
    font-size: var(--main-heading-size);
    font-weight: 900;
    line-height: 1.02;
}
.feature-card p,
.market-copy p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.45;
}

.market-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 28px;
    padding: 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(30, 144, 255, .12), transparent 44%),
        linear-gradient(315deg, rgba(255, 43, 120, .08), transparent 46%),
        var(--panel);
}

.market-copy {
    display: grid;
    align-content: start;
    gap: 20px;
}

.market-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.market-step,
.market-panel,
.market-check {
    border: 1px solid var(--line-soft);
    border-radius: 7px;
    background: rgba(0, 0, 0, .2);
}

.market-step {
    min-height: 118px;
    padding: 16px;
}

.market-step span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.market-step strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.market-step p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
}

.market-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 12px;
    padding: 18px;
}
.market-panel-title {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-soft);
}
.market-panel-title strong {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.market-chip {
    padding: 4px 10px;
    border: 1px solid rgba(75, 199, 125, .45);
    border-radius: 999px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.market-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px;
    background: rgba(10, 10, 10, .28);
}

.market-check::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px rgba(75, 199, 125, .58);
}

.market-check strong {
    display: block;
    color: #e8f1fb;
    font-size: 16px;
    font-weight: 900;
}

.market-check span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.3;
}

.site-footer {
    margin-top: 54px;
    padding: 28px 0 10px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--blue);
}

@media (max-width: 1040px) {
    .hero-panel,
    .market-card {
        grid-template-columns: 1fr;
    }

    .stats-row,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .library-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --page-gutter: 16px;
    }

    .site-header {
        min-height: 56px;
        padding: 0 16px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 188px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 16px;
        display: none;
        min-width: 210px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 7px;
        background: #181818;
        box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 14px 16px;
        border-bottom: 1px solid var(--line-soft);
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .page-shell {
        width: calc(100vw - 28px);
        padding-top: 14px;
    }

    .hero-copy {
        padding: 34px 24px;
    }

    .hero-message {
        padding-left: 16px;
    }

    .hero-art,
    .hero-art video {
        min-height: 280px;
    }

    .stats-row,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .library-panel {
        padding: 24px;
    }

    .library-lane {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 10px;
    }

    .market-card {
        padding: 24px;
    }

    .market-flow,
    .market-panel {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        display: block;
    }

    .footer-links {
        margin-top: 16px;
    }
}
.legal-shell {
    width: min(1120px, calc(100vw - (var(--page-gutter) * 2)));
    margin: 0 auto;
    padding: 36px 0 48px;
}

.legal-hero {
    margin-bottom: 18px;
    padding: 38px 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(30, 144, 255, .12), rgba(255, 43, 120, .05) 56%, rgba(24, 24, 24, .96)),
        var(--panel);
}

.legal-hero h1 {
    margin: 8px 0 0;
    color: #fff;
    font-size: var(--main-heading-size);
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
}

.legal-hero p {
    max-width: 760px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.45;
}

.legal-card {
    padding: 34px 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.legal-updated {
    margin: 0 0 24px;
    color: #85caff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.legal-card h2 {
    margin: 34px 0 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.16;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: #b8c0c9;
    font-size: 16px;
    line-height: 1.65;
}

.legal-card p {
    margin: 0 0 14px;
}

.legal-card ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.legal-card li + li {
    margin-top: 8px;
}

.legal-card a {
    color: #8fd4ff;
}

.legal-shell .site-footer {
    margin-top: 44px;
}

@media (max-width: 760px) {
    .legal-shell {
        width: min(100vw - 28px, 1120px);
        padding: 22px 0 30px;
    }

    .legal-hero,
    .legal-card {
        padding: 24px;
    }

    .legal-card h2 {
        font-size: 20px;
    }
}

.system-page {
    min-height: 100vh;
}

.system-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 118px 0 0;
}

.system-hero {
    padding: 34px 0 22px;
    border-bottom: 1px solid var(--line);
}

.system-hero h1 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.02;
}

.system-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.45;
}

.system-card {
    min-height: 260px;
    display: grid;
    align-items: center;
    margin-top: 28px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(18, 34, 45, 0.78), rgba(18, 18, 19, 0.92) 58%, rgba(45, 21, 31, 0.62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.system-card > br {
    display: none;
}

.system-card .verify {
    max-width: 760px;
    padding-left: 22px;
    border-left: 2px solid var(--blue);
}

.system-card #hero_title {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;
}

.system-card #hero_desc {
    margin-top: 12px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.45;
}

.system-shell .site-footer {
    margin-top: 58px;
}

@media (max-width: 760px) {
    .system-shell {
        width: min(100% - 32px, 1180px);
        padding-top: 92px;
    }

    .system-hero {
        padding-top: 26px;
    }

    .system-hero h1 {
        font-size: 34px;
    }

    .system-hero p,
    .system-card #hero_desc {
        font-size: 18px;
    }

    .system-card {
        min-height: 220px;
        padding: 24px;
    }

    .system-card #hero_title {
        font-size: 30px;
    }
}