/* ============================================================
   Reset / Base
============================================================ */

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

:root {
    /* DigiBlock brand palette */
    --color-black: #090D32;
    --color-blue: #3232fb;
    --color-teal: #5Fd9cb;
    --color-lilac: #d0d1fd;
    --color-white: #ffffff;
    --color-neutral: #F6F7FB;

    /* ============================================================
   Design Tokens
============================================================ */

    --color-faded-blue: #437df1;
    --color-faded-purple: #6786f2;
    --color-light-teal: #d6f5f1;
    --color-off-black: #202020;

    /* RGB channels used for transparency */
    --rgb-blue: 50 50 251;
    --rgb-teal: 95 217 203;
    --rgb-white: 255 255 255;
    --rgb-off-black: 32 32 32;
    --rgb-ink: 16 20 58;
    --rgb-faded-purple: 103 134 242;
    --rgb-error: 239 65 54;

    /* Semantic tokens */
    --page-bg: #f7faff;
    --text-dark: #121B7A;
    --text-dark-muted: rgb(var(--rgb-ink) / .92);
    --text-dark-subtle: rgb(var(--rgb-ink) / .72);
    --text-light: var(--color-white);
    --text-light-muted: color-mix(in srgb, var(--color-white) 82%, var(--color-lilac));
    --text-light-subtle: color-mix(in srgb, var(--color-white) 70%, var(--color-faded-purple));
    --text-light-faint: color-mix(in srgb, var(--color-white) 66%, var(--color-faded-purple));
    --surface-dark: var(--color-off-black);
    --surface-card: color-mix(in srgb, var(--color-off-black) 92%, var(--color-blue));
    --surface-card-hover: color-mix(in srgb, var(--color-off-black) 88%, var(--color-blue));
    --surface-glass: rgb(var(--rgb-white) / .76);
    --surface-glass-soft: rgb(var(--rgb-white) / .62);
    --border-light: rgb(var(--rgb-off-black) / .06);
    --border-dark: rgb(var(--rgb-white) / .07);
    --border-dark-strong: rgb(var(--rgb-white) / .12);
    --border-brand: rgb(var(--rgb-blue) / .25);
    --border-brand-soft: rgb(var(--rgb-blue) / .12);
    --accent-soft: rgb(var(--rgb-blue) / .10);
    --accent-glow: rgb(var(--rgb-blue) / .30);
    --state-success: #16a34a;
    --state-error: #d4342a;

    /* Motion / interaction state */
    --mx: 50%;
    --my: 50%;
    --scroll: 0;
    --canvas-blur: 0px;
    --hero-blur: 12px;
    --hero-blur-opacity: 1;

    --font: 'Sora', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font);
    background: var(--surface-dark);
    color: var(--text-light-muted);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}



/* ============================================================
   Typography
============================================================ */

/* ─── TYPOGRAPHY / SHARED UTILITIES ─── */
h1 {
    max-width: none;
    margin: 0;
    color: var(--color-black);
    font-size: clamp(56px, 6.35vw, 82px);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 700;
}

.accent-red {
    color: var(--color-blue);
}

.accent-cyan {
    color: var(--color-blue);
}

.gradient-line {
    display: inline-block;
    color: transparent;
    background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-faded-blue) 48%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.lead {
    max-width: 500px;
    margin: 30px auto 0;
    color: var(--text-dark-muted);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
}

.container {
    width: min(1280px, calc(100% - 92px));
    margin: 0 auto;
}

.btn-cyan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 100px;
    background: var(--color-blue);
    color: var(--color-off-black);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.btn-cyan:hover {
    background: color-mix(in srgb, var(--color-teal) 65%, var(--color-blue));
    transform: translateY(-1px);
    box-shadow: 0 6px 28px var(--accent-glow);
}

.btn-outline-red {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    border: 1.5px solid rgb(var(--rgb-error) / .40);
    border-radius: 100px;
    background: transparent;
    color: var(--color-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s, border-color 0.15s;
}

.btn-outline-red:hover {
    background: var(--accent-soft);
    border-color: var(--color-blue);
}


@media (max-width: 980px) {
    .container {
        width: min(100% - 40px, 1280px);
    }
}

/* ============================================================
   Layout
============================================================ */

/* ─── HERO BACKGROUND / HERO / PLATFORM FLOW / SCROLL STORY ─── */
/* Layout wrappers */
.background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(135deg, var(--page-bg) 0%, color-mix(in srgb, var(--page-bg) 86%, var(--color-lilac)) 42%, var(--color-lilac) 100%);
}

.background canvas {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background: radial-gradient(circle at 5% 90%, var(--color-teal), var(--color-faded-purple) 26%);
}

#bg-canvas {
    z-index: 0;
}

.hero-shape-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    transform: none;
}

.hero-shape-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(70vw, 820px);
    height: min(70vw, 820px);
    border-radius: 999px;
    background: radial-gradient(circle at 45% 46%, rgb(var(--rgb-teal) / .42), rgb(var(--rgb-blue) / .48) 43%, transparent 68%);
    filter: blur(32px);
    /* opacity: calc(1 - (var(--scroll) * .12)); */
    transform: translate(-50%, -50%);
    /* transition: filter .08s linear, opacity .08s linear; */
    opacity: var(--hero-glow-opacity, 1);
    transition: opacity 0.1s linear;
    will-change: filter, opacity;
    animation: bg-float 4s ease-in-out infinite;
}

@keyframes bg-float {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-48%, -52%) scale(0.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.hero-shape-bg #scene {
    position: absolute;
    inset: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    opacity: calc(1 - (var(--scroll) * .18));
    filter: blur(var(--canvas-blur));
    transform: none;
    transition: filter .08s linear, opacity .08s linear;
    will-change: filter, opacity;
}

.scroll-story {
    position: relative;
    z-index: 2;
}

/* ============================================================
   Section: Video
============================================================ */

.video {
    position: relative;
    z-index: 2;
    padding: clamp(80px, 10vw, 120px) 0;
    background:
        linear-gradient(180deg,
            transparent,
            rgb(var(--rgb-blue) / .04) 40%,
            transparent);
}

.video__container {
    width: min(1100px, calc(100% - 92px));
    margin: 0 auto;
    text-align: center;
}

.video__header {
    max-width: 720px;
    margin: 0 auto 60px;
}

.video__eyebrow {
    color: var(--color-blue);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.video__heading {
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    color: var(--color-black);
    letter-spacing: -0.04em;
}

.video__accent {
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.video__lead {
    margin-top: 18px;
    color: var(--text-dark-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Video frame */

.video__frame-wrap {
    position: relative;
    border-radius: 18px;
    padding: 12px;
    
    background: linear-gradient(
        135deg,
        rgb(var(--rgb-blue) / .25),
        rgb(var(--rgb-teal) / .25)
    );

    box-shadow:
        0 30px 80px rgb(var(--rgb-blue) / .12);
}

.video__frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 14px;
    overflow: hidden;
    
    background: #000;
}

.video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Prevent Lenis / iframe scroll conflict */
.video__frame iframe {
    pointer-events: none;
}

.video__frame.is-interactive iframe {
    pointer-events: auto;
}

/* ============================================================
   Component: Header / Navigation
============================================================ */

/* ─── TOP NAV ─── */
.topnav {
    position: relative;
    top: auto;
    z-index: 200;

    /* Light transparent glass */
    /* background: rgb(var(--rgb-white) / .65); */
    /* backdrop-filter: blur(20px); */
    /* -webkit-backdrop-filter: blur(20px); */

    /* subtle separation */
    /* border-bottom: 1px solid rgb(var(--rgb-off-black) / .06); */

    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

/* SCROLLED STATE */
.topnav--scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
}

.topnav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-wordmark {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-light);
    line-height: 1;
}

.logo-wordmark span {
    color: var(--color-blue);
}

.topnav-right {
    display: flex;
    align-items: center;
    gap: 5px;
    left: 20px;
    max-width: calc(100% - 40px);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.1s;
    background: rgb(var(--rgb-white) / .70);
    color: var(--text-dark);
    border: 1px solid rgb(var(--rgb-off-black) / .08);
}

.nav-toggle:hover {
    background: rgb(var(--rgb-off-black) / .05);

    border-color: var(--border-dark-strong);
}

.nav-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
    border-color: var(--color-blue);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
    content: '';
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before {
    position: absolute;
    top: -6px;
    left: 0;
}

.nav-toggle-icon::after {
    position: absolute;
    top: 6px;
    left: 0;
}

.topnav.is-open .nav-toggle-icon {
    background: transparent;
}

.topnav.is-open .nav-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.topnav.is-open .nav-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-btn-ghost {
    color: var(--text-dark);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.83rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgb(var(--rgb-blue) / 0);
    border-radius: 999px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-btn-ghost:hover {
    border: 1px solid rgb(var(--rgb-blue) / .22);
    border-radius: 999px;
    background: rgb(var(--rgb-white) / .34);
    backdrop-filter: blur(10px);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-btn-primary {
    position: relative;

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

    padding: 8px 18px;
    min-height: 36px;

    border-radius: 999px;

    font-size: 0.83rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: var(--color-white);
    text-decoration: none;

    background: linear-gradient(90deg,
            rgb(var(--rgb-blue)),
            rgb(var(--rgb-teal)));


    box-shadow:
        0 6px 18px rgb(var(--rgb-blue) / .18),
        inset 0 0 0 1px rgb(var(--rgb-white) / .12);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        filter .18s ease;


    margin: 0 15px;
}

.nav-btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.nav-btn-primary:active {
    transform: translateY(0);

    box-shadow:
        0 4px 12px rgb(var(--rgb-blue) / .18),
        inset 0 0 0 1px rgb(var(--rgb-white) / .1);
}

@media (max-width: 900px) {
    .nav-btn-primary {
        width: 100%;
        margin: 0;
    }
}

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

.nav-social {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}

.nav-social a {
    width: 36px;
    height: 36px;

    display: flex;
    /* not inline-flex */
    align-items: center;
    justify-content: center;

    padding: 0;
    /* 🔥 important */
    border-radius: 50%;

    font-size: 1rem;
    line-height: 1;
    /* 🔥 important */

    color: var(--text-dark);

    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-social em {
    display: block;
    /* removes inline weirdness */
    font-size: 20px;
    line-height: 1;
    /* 🔥 prevents vertical drift */
}

.nav-social .fa-brands {
    display: block;
    font-size: 20px;
    line-height: 1;
}

.nav-social a:hover {
    border: 1px solid rgb(var(--rgb-blue) / .22);
    border-radius: 999px;
    background: rgb(var(--rgb-white) / .34);
    backdrop-filter: blur(10px);
    transition: color 0.2s, background 0.2s;
}

.nav-social em {
    font-size: 20px;
}

.topnav--scrolled {
    background: rgb(var(--rgb-white) / .68);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgb(var(--rgb-off-black) / .06);
}

@media (max-width: 1200px) {
    .topnav {
        height: auto;
        min-height: 64px;
        padding: 10px 20px;
        align-items: center;
        flex-wrap: wrap;
    }

    .topnav-right {
        position: absolute;
        top: calc(100% - 1px);
        display: none;
        gap: 8px;
        padding: 16px;
        background: rgb(var(--rgb-white) / .86);
        border: 1px solid rgb(var(--rgb-off-black) / .08);
        border-radius: 18px;
        box-shadow: 0 18px 50px rgb(var(--rgb-off-black) / .14);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .topnav.is-open .topnav-right {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
                display: flex;

    }

    .nav-social {
        justify-content: center;
        padding-top: 10px;
        margin-top: 8px;
        border-top: 1px solid rgb(var(--rgb-off-black) / .08);
        margin-left: 0;
    }

    .topnav-left {
        width: auto;
        flex: 1;
        min-width: 0;
        gap: 14px;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-btn-ghost,
    .nav-btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding-left: 12px;
        padding-right: 12px;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .topnav {
        padding: 10px 16px;
    }

    .topnav-left {
        gap: 10px;
    }
}

/* ============================================================
   Component: Sticky Access
============================================================ */

.sticky-access {
    position: fixed;
    top: 30px;
    left: 40px;
    right: 40px;
    z-index: 220;

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

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;
}

.sticky-access.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-access__logo {
    display: inline-flex;
    align-items: center;
    /* padding: 10px 14px; */
    text-decoration: none;
}

.sticky-access__logo img {
    display: block;
    height: 31px;
}

.sticky-access__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;

    color: var(--color-white);
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    /* box-shadow: 0 6px 18px rgb(var(--rgb-blue) / .18); */

    font-size: 0.83rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    /* text-transform: uppercase; */
    text-decoration: none;

    transition: transform .18s ease, filter .18s ease;
}

.sticky-access__button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

@media (max-width: 600px) {
    .sticky-access {
        top: 12px;
        left: 16px;
        right: 16px;
    }

    .sticky-access__button {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.72rem;
    }
}

/* ============================================================
   Section: Hero
============================================================ */

/* Section: hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 76px);
    padding: 70px 0 12px;
    overflow: visible;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.copy {
    position: relative;
    z-index: 2;
    width: min(780px, calc(100vw - 48px));
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    animation: rise .8s ease both;
}

.pill-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    border: 1px solid rgb(var(--rgb-blue) / .22);
    border-radius: 999px;
    color: var(--color-blue);
    background: rgb(var(--rgb-white) / .34);
    font-size: 12px;
    font-style: normal;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* min-height: 44px; */
    /* padding: 0 24px; */
    border-radius: 999px;
    color: var(--color-white);
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: background .25s, transform .25s;
    padding: 12px 22px;
    gap: 10px;
    font-style: normal;
    line-height: normal;
}

.primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: min(760px, calc(100vw - 80px));
    max-width: 760px;
    margin: 90px auto 0;
    padding: 20px 0;
    border-radius: 8px;
    background: var(--surface-glass);
    box-shadow: 0 22px 55px rgb(var(--rgb-blue) / .08);
}

.stat {
    padding: 0 20px;
    text-align: left;
}

.stat+.stat {
    border-left: 1px solid rgb(var(--rgb-blue) / .55);
}

.stat strong {
    display: block;
    color: var(--color-blue);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.045em;
    background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-teal) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat span {
    display: block;
    margin-top: 9px;
    color: rgb(var(--rgb-ink) / .76);
    font-size: 15px;
    white-space: nowrap;
    font-style: normal;
    font-weight: 400;
}

.hero-blur {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
    opacity: var(--hero-blur-opacity);
    pointer-events: none;
    backdrop-filter: blur(var(--hero-blur));
    -webkit-backdrop-filter: blur(var(--hero-blur));
    mask-image: linear-gradient(to top, rgb(var(--rgb-off-black) / 1), rgb(var(--rgb-off-black) / 0));
    -webkit-mask-image: linear-gradient(to top, rgb(var(--rgb-off-black) / 1), rgb(var(--rgb-off-black) / 0));
    transition: backdrop-filter .08s linear, -webkit-backdrop-filter .08s linear, opacity .08s linear;
    will-change: backdrop-filter, opacity;
}

@media (max-width: 980px) {
    .hero {
        padding-top: 64px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 56px;
    }

    .stat:nth-child(3) {
        border-left: 0;
        margin-top: 18px;
    }

    .stat:nth-child(4) {
        margin-top: 18px;
    }
}

@media (max-width: 620px) {
    h1 {
        font-size: 46px;
    }

    .lead {
        font-size: 16px;
    }

    .actions {
        flex-direction: column;
    }

    .primary {
        width: 100%;
    }

    .stats {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 18px 20px;
    }

    .stat {
        padding: 16px 0;
        border-left: 0;
        border-top: 1px solid rgb(var(--rgb-blue) / .22);
    }

    .stat:first-child {
        border-top: 0;
    }

    .stat+.stat {
        border-left: unset;
    }
}


/* ============================================================
   Section: Ticker
============================================================ */

/* ─── TICKER ─── */
.ticker {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    max-width: 100%;

    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));

    display: inline-flex;
    height: 70px;
    padding: 25.5px 0 24.5px 0;
    justify-content: center;
    align-items: center;
    /* max-width: 100vw; */
}

.ticker-inner {
    display: flex;
    width: max-content;
    will-change: transform;
    /* transform: translate3d(0, 0, 0); */
}

.ticker-item {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    padding: 0 10px;
    font-family: var(--font);
    font-size: 13px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    color: var(--color-white);
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 2px;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background: var(--color-white);
    /* border-radius: 50%; */
    flex-shrink: 0;
    margin-top: -2px;
    margin-right: 20px;
}

/* ============================================================
   Section: About
============================================================ */

.about {
    position: relative;
    z-index: 2;
    padding: clamp(72px, 9vw, 120px) 0;
    background:
        radial-gradient(circle at 50% 100%, rgb(var(--rgb-blue) / .08), transparent 34%),
        linear-gradient(180deg, var(--color-white), color-mix(in srgb, var(--page-bg) 88%, var(--color-lilac)));
    color: var(--text-dark);
}

.about__container {
    width: min(1280px, calc(100% - 92px));
    margin: 0 auto;
}

.about__header {
    max-width: 820px;
}

.about__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.about__eyebrow-bar {
    width: 28px;
    height: 2px;
    background: var(--color-blue);
    flex: 0 0 auto;
}

.about__eyebrow-text {
    color: var(--color-blue);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.about__heading {
    margin: 0;
    color: var(--color-black);
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.06em;
    font-style: normal;
    letter-spacing: -0.32px;
}

.about__heading-accent {
    color: transparent;
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Tabs */
.about__tabs {
    display: flex;
    gap: clamp(20px, 4vw, 48px);
    margin-top: clamp(48px, 6vw, 82px);
    border-bottom: 1px solid rgb(var(--rgb-blue) / .14);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    max-width: 100%;
    overscroll-behavior-inline: contain;
}

.about__tabs::-webkit-scrollbar {
    display: none;
}

.about__tab {
    position: relative;
    flex: 0 0 auto;
    scroll-snap-align: start;
    appearance: none;
    padding: 0 0 16px;
    border: 0;
    background: transparent;
    color: rgb(var(--rgb-ink) / .48);
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    cursor: pointer;
    transition: color .25s ease;
}

.about__tab:hover,
.about__tab:focus-visible {
    color: var(--color-blue);
}

.about__tab:focus-visible {
    outline: 2px solid rgb(var(--rgb-blue) / .35);
    outline-offset: 6px;
    border-radius: 4px;
}

.about__tab--active {
    color: var(--color-blue);
}

.about__tab::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.about__tab--active::after {
    transform: scaleX(1);
}

/* Panels */
.about__panels {
    position: relative;
    margin-bottom: clamp(43px, 11vw, 75px);
}

.about__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    filter: blur(8px);
    pointer-events: none;
    transition:
        opacity .38s ease,
        transform .38s cubic-bezier(.22, 1, .36, 1),
        filter .38s ease,
        visibility 0s linear .38s;
}

.about__panel--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    filter: blur(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.about__panel-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
    gap: clamp(40px, 10vw, 170px);
    align-items: start;
    margin-top: 38px;
}

.about__panel-text {
    max-width: 470px;
}

.about__panel-text p {
    margin: 0;
    color: rgb(var(--rgb-ink) / .82);
    font-size: 0.9375rem;
    line-height: 1.65;
    font-style: normal;
}

.about__panel-text p+p {
    margin-top: 14px;
}

.about__panel-text strong {
    color: rgb(var(--rgb-ink));
    font-weight: 800;
}

.about__panel-text a {
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: none;
}

.about__panel-text a:hover {
    text-decoration: underline;
}

/* Takeaway */
.about__takeaway {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    /* left text / right list */
    gap: 28px;

    padding: 24px 26px;
    border-radius: 10px;

    background: rgba(238, 240, 253, 0.70);

    border: 1px solid rgb(var(--rgb-blue) / .16);
    box-shadow: 0 18px 60px rgb(var(--rgb-blue) / .06);
}

.about__takeaway-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 760px) {
    .about__takeaway {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.about__takeaway::before {
    content: "";
    position: absolute;

    right: 200px;
    bottom: -40px;

    width: 140px;
    height: 140px;

    border-radius: 16px;
    transform: rotate(35deg);

    background:
        linear-gradient(135deg,
            rgb(var(--rgb-blue) / .25),
            transparent);

    filter: blur(5px);
    opacity: .85;
    pointer-events: none;
}

.about__takeaway::after {
    content: "";
    position: absolute;

    right: 190px;
    bottom: -30px;

    width: 100px;
    height: 100px;

    border-radius: 12px;
    transform: rotate(35deg);

    background:
        linear-gradient(135deg,
            rgb(var(--rgb-teal) / .35),
            rgb(var(--rgb-blue) / .25));

    filter: blur(10px);
    opacity: .6;
    pointer-events: none;
}

.about__takeaway-label,
.about__takeaway-body,
.about__takeaway-list {
    position: relative;
    z-index: 1;
}

.about__takeaway-label {
    margin-bottom: 14px;
    color: var(--color-blue);
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-style: normal;
}

.about__takeaway-body {
    margin: 0;
    max-width: 260px;
    color: rgb(var(--rgb-ink) / .86);
    font-size: 0.78rem;
    line-height: 1.55;
}

.about__takeaway-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    color: rgb(var(--rgb-ink));
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.3;
    list-style-position: inside;
}

/* Pillars */
.about__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.about__pillar {
    min-height: 202px;
    padding: 24px 22px;
    border: 1px solid rgb(var(--rgb-blue) / .14);
    border-radius: 9px;
    background: rgb(var(--rgb-white) / .74);
    box-shadow: 0 18px 54px rgb(var(--rgb-blue) / .035);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.about__pillar:hover,
.about__pillar--featured {
    border-color: rgb(var(--rgb-blue) / .34);
    box-shadow:
        0 22px 60px rgb(var(--rgb-blue) / .09),
        inset 0 0 0 1px rgb(var(--rgb-teal) / .16);
}

.about__pillar:hover {
    transform: translateY(-3px);
}

.about__pillar-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    min-height: 22px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: rgb(var(--rgb-blue) / .08);
    color: var(--color-blue);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.about__pillar-kicker {
    margin: 0 0 14px;
    color: var(--color-teal);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about__pillar-title {
    margin: 0 0 10px;
    color: rgb(var(--rgb-ink));
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.about__pillar-desc {
    margin: 0;
    color: rgb(var(--rgb-ink) / .84);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.65;
}

/* About @media (max-width: 1100px) */
@media (max-width: 1100px) {
    .about__panel-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__panel-text {
        max-width: 100%
    }

    .about__takeaway {
        max-width: 100%
    }

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

/* About @media (max-width: 760px) */
@media (max-width: 760px) {
    .about__container {
        width: min(100% - 40px, 1280px);
    }

    .about__heading {
        font-size: clamp(2.35rem, 11vw, 4rem);
    }

    .about__tabs {
        /* width: calc(100% + 40px); */
        /* margin-right: -20px;
        margin-left: -20px; */
        padding: 0 20px;
        gap: 28px;
    }

    .about__tab {
        font-size: 0.78rem;
    }

    .about__panel-body {
        margin-top: 28px;
    }

    .about__takeaway {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about__takeaway-list {
        list-style-position: outside;
        padding-left: 18px;
    }

    .about__pillars {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* About @media (max-width: 480px) */
@media (max-width: 480px) {
    .about__container {
        width: min(100% - 28px, 1280px);
    }

    .about__heading br {
        display: none;
    }

    .about__tabs {
        /* width: calc(100% + 28px);
        margin-right: -14px;
        margin-left: -14px; */
        padding: 0 14px;
    }

    .about__takeaway,
    .about__pillar {
        border-radius: 14px;
    }
}


/* ============================================================
   Section: Architecture
============================================================ */

.architecture {
    position: relative;
    z-index: 2;
    padding: clamp(72px, 90vw, 120px) 0;
    background: var(--color-white);
    color: var(--text-dark);
}

.architecture__container {
    width: min(1280px, calc(100% - 92px));
    margin: 0 auto;
}

.architecture__header {
    max-width: 720px;
}

.architecture__eyebrow {
    margin: 0 0 16px;
    color: var(--color-blue);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.architecture__heading {
    margin: 0;
    color: var(--color-black);
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.06em;
    font-style: normal;
    letter-spacing: -0.32px;
}

.architecture__heading-accent {
    color: transparent;
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Tabs */
.architecture__tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 4vw, 56px);
    margin-top: clamp(56px, 7vw, 86px);
    border-bottom: 1px solid rgb(var(--rgb-blue) / .14);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
}

.architecture__tabs::-webkit-scrollbar {
    display: none;
}

.architecture__tab {
    position: relative;
    display: grid;
    gap: 10px;
    justify-items: start;
    min-width: 170px;
    padding: 0 0 28px;
    border: 0;
    background: transparent;
    color: rgb(var(--rgb-ink) / .46);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color .25s ease;
}

.architecture__tab::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.architecture__tab--active {
    color: var(--color-black, rgb(var(--rgb-ink)));
}

.architecture__tab--active::after {
    transform: scaleX(1);
}

.architecture__tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 5px;
    color: var(--color-blue);
    background: rgb(var(--rgb-blue) / .08);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.architecture__tab-label {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
}

/* Panel */
.architecture__panel-wrap {
    position: relative;
    margin-top: clamp(56px, 6vw, 72px);
    min-height: 260px;
}

.architecture__panel {
    position: absolute;
    inset: 0;
    min-height: 250px;
    padding: clamp(34px, 5vw, 52px);
    border: 1px solid rgb(var(--rgb-blue) / .16);
    border-left: 5px solid transparent;
    border-radius: 10px;
    background: rgb(var(--rgb-white) / .84);
    box-shadow:
        0 22px 60px rgb(var(--rgb-blue) / .10),
        inset 0 0 0 1px rgb(var(--rgb-teal) / .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    filter: blur(8px);
    pointer-events: none;
    transition:
        opacity .38s ease,
        transform .38s cubic-bezier(.22, 1, .36, 1),
        filter .38s ease,
        visibility 0s linear .38s,
        border-color .25s ease;
    overflow: hidden;
}

.architecture__panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--color-blue), var(--color-teal));
}

.architecture__panel--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    filter: blur(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.architecture__panel-content {
    max-width: 600px;
}

.architecture__panel-kicker {
    margin: 0 0 18px;
    color: var(--color-teal);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.architecture__panel-title {
    margin: 0 0 18px;
    color: var(--color-black, rgb(var(--rgb-ink)));
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.architecture__panel-text {
    max-width: 520px;
    margin: 0;
    color: rgb(var(--rgb-ink) / .68);
    font-size: 0.96rem;
    line-height: 1.75;
}

.architecture__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.architecture__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 12px;
    border: 1px solid rgb(var(--rgb-blue) / .22);
    border-radius: 999px;
    color: var(--color-blue);
    background: rgb(var(--rgb-blue) / .06);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Controls */
.architecture__controls {
    position: absolute;
    top: 38px;
    right: 44px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.architecture__control {
    width: 34px;
    height: 34px;
    border: 1px solid rgb(var(--rgb-blue) / .18);
    border-radius: 999px;
    background: rgb(var(--rgb-white) / .74);
    color: var(--color-blue);
    font-size: 1.4rem;

    line-height: 0;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
    padding-bottom: 3px;
}

.architecture__control:hover {
    background: var(--color-white);
    border-color: rgb(var(--rgb-blue) / .32);
    transform: translateY(-1px);
}

.architecture__rail {
    position: absolute;
    top: 88px;
    right: 74px;
    z-index: 2;
    display: grid;
    gap: 10px;
    /* padding: 58px 9px 0; */
    min-height: 145px;
    /* background: linear-gradient(180deg, rgb(var(--rgb-blue) / .04), transparent); */
}

.architecture__rail span {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgb(var(--rgb-blue) / .18);
}

.architecture__rail-thumb {
    background: linear-gradient(180deg, var(--color-blue), var(--color-teal)) !important;
    height: 18px !important;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

/* Architecture @media (max-width: 900px) */
@media (max-width: 900px) {
    .architecture__container {
        width: min(100% - 40px, 1280px);
    }

    .architecture__tabs {
        width: calc(100% + 40px);
        margin-right: -20px;
        margin-left: -20px;
        padding: 0 20px;
        display: flex;
        gap: 32px;
    }

    .architecture__tab {
        min-width: 210px;
    }

    .architecture__controls,
    .architecture__rail {
        display: none;
    }

    .architecture__panel {
        padding: 32px 26px;
    }
}

/* Architecture @media (max-width: 520px) */
@media (max-width: 520px) {
    .architecture__container {
        width: min(100% - 28px, 1280px);
    }

    .architecture__heading br {
        display: none;
    }

    .architecture__tabs {
        width: calc(100% + 28px);
        margin-right: -14px;
        margin-left: -14px;
        padding: 0 14px;
    }

    .architecture__tab {
        min-width: 190px;
    }

    .architecture__panel {
        border-radius: 14px;
    }

    .architecture__tags span {
        font-size: 0.64rem;
    }
}


/* ============================================================
   Section: Marketplace
============================================================ */

.marketplace {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 14% 0%, rgb(var(--rgb-blue) / .08), transparent 32%),
    linear-gradient(180deg, color-mix(in srgb, var(--page-bg) 92%, var(--color-lilac)), var(--color-white));
  color: var(--text-dark);
}

.marketplace__container {
  width: min(1280px, calc(100% - 92px));
  margin: 0 auto;
}

.marketplace__header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.marketplace__eyebrow {
  margin: 0 0 16px;
  color: var(--color-blue);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

.marketplace__heading {
  margin: 0;
  max-width: 760px;
  color: var(--color-black);
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.32px;
}

.marketplace__cta,
.marketplace__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
  text-decoration: none;
  font-weight: 500;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.marketplace__cta {
  min-width: 250px;
  min-height: 48px;
  padding: 0 24px;
  font-size: 0.92rem;
}

.marketplace__cta:hover,
.marketplace__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.marketplace__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: clamp(56px, 6vw, 82px);
}

.marketplace__card {
  overflow: hidden;
  border: 1px solid rgb(var(--rgb-blue) / .14);
  border-radius: 10px;
  background: rgb(var(--rgb-white) / .82);
  box-shadow: 0 18px 54px rgb(var(--rgb-blue) / .035);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.marketplace__card:hover {
  border-color: rgb(var(--rgb-blue) / .34);
  box-shadow:
    0 22px 60px rgb(var(--rgb-blue) / .09),
    inset 0 0 0 1px rgb(var(--rgb-teal) / .16);
  transform: translateY(-3px);
}

.marketplace__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgb(var(--rgb-blue) / .20), transparent 50%),
    radial-gradient(circle at 70% 70%, rgb(var(--rgb-teal) / .20), transparent 60%),
    rgb(var(--rgb-blue) / .08);
}

.marketplace__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(var(--rgb-ink) / .05), rgb(var(--rgb-ink) / .50));
  pointer-events: none;
}

.marketplace__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, opacity .2s ease;
}

.marketplace__img:not([src]),
.marketplace__img[src=""],
.marketplace__img.is-error {
  opacity: 0;
}

.marketplace__card:hover .marketplace__img {
  transform: scale(1.04);
}

.marketplace__badge,
.marketplace__type {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marketplace__badge {
  top: 16px;
  left: 16px;
  min-height: 26px;
  padding: 0 12px;
}

.marketplace__badge--soon {
  background: var(--color-blue);
}

.marketplace__type {
  left: 16px;
  bottom: 16px;
  font-size: 0.72rem;
}

.marketplace__body {
  padding: 22px 20px 20px;
}

.marketplace__body--gated {
  position: relative;
}

.marketplace__body h3 {
  margin: 0 0 8px;
  color: var(--color-black);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.marketplace__location {
  margin: 0;
  color: rgb(var(--rgb-ink) / .62);
  font-size: 0.82rem;
  line-height: 1.4;
}

.marketplace__hint {
  display: inline-flex;
  margin-top: 10px;
  color: rgb(var(--rgb-ink) / .52);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketplace__locked {
  position: relative;
  margin-top: 22px;
  filter: blur(5px);
  opacity: .42;
  user-select: none;
  pointer-events: none;
}

.marketplace__locked::after {
  content: "";
  position: absolute;
  inset: -10px 0;
  background: linear-gradient(180deg, transparent, rgb(var(--rgb-white) / .58));
}

.marketplace__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.marketplace__stats span,
.marketplace__progress-label span {
  display: block;
  color: rgb(var(--rgb-ink) / .46);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketplace__stats strong {
  display: block;
  margin-top: 8px;
  color: var(--color-black);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.marketplace__stats .marketplace__apy {
  color: var(--color-teal);
}

.marketplace__progress {
  margin-top: 22px;
}

.marketplace__progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.marketplace__progress-label strong {
  color: var(--color-blue);
  font-size: 0.68rem;
  font-weight: 800;
}

.marketplace__bar {
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(var(--rgb-blue) / .10);
}

.marketplace__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
}

.marketplace__gate {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgb(var(--rgb-blue) / .14);
  border-radius: 12px;
  background: rgb(var(--rgb-blue) / .055);
}

.marketplace__gate-label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-blue);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketplace__gate p {
  margin: 0;
  color: rgb(var(--rgb-ink) / .68);
  font-size: 0.8rem;
  line-height: 1.55;
}

.marketplace__button {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .marketplace__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .marketplace {
    padding: 64px 0 76px;
  }

  .marketplace__container {
    width: min(100% - 28px, 1280px);
  }

  .marketplace__header {
    flex-direction: column;
  }

  .marketplace__heading br {
    display: none;
  }

  .marketplace__cta {
    width: 100%;
    min-width: 0;
  }

  .marketplace__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* ============================================================
   Section: Platform
============================================================ */

.platform {
    position: relative;
    z-index: 2;
    padding: clamp(72px, 90vw, 120px) 0;
    background: transparent;
    color: var(--text-dark);
}

.platform__container,
.story__container {
    width: min(1280px, calc(100% - 92px));
    margin: 0 auto;
}

.platform__header,
.story__header {
    max-width: 760px;
}

.platform__eyebrow,
.story__eyebrow {
    margin: 0 0 16px;
    color: var(--color-blue);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.platform__heading,
.story__heading {
    margin: 0;
    color: var(--color-black, rgb(var(--rgb-ink)));
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.32px;
}

.platform__heading span {
    color: transparent;
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    -webkit-background-clip: text;
    background-clip: text;
}

.platform__lead {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgb(var(--rgb-ink) / .72);
    font-size: 0.98rem;
    line-height: 1.75;
}

.platform__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: clamp(54px, 7vw, 86px);
}

.platform__card {
    position: relative;
    min-height: 230px;
    padding: 24px 22px;
    border: 1px solid rgb(var(--rgb-blue) / .14);
    border-radius: 14px;
    background: rgb(var(--rgb-white) / .74);
    box-shadow: 0 18px 54px rgb(var(--rgb-blue) / .035);
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .45s ease,
        transform .45s cubic-bezier(.22, 1, .36, 1),
        border-color .2s ease,
        box-shadow .2s ease;
}

.platform__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.platform__card:hover,
.platform__card--active {
    border-color: rgb(var(--rgb-blue) / .34);
    box-shadow:
        0 22px 60px rgb(var(--rgb-blue) / .09),
        inset 0 0 0 1px rgb(var(--rgb-teal) / .16);
}

.platform__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 24px;
    margin-bottom: 22px;
    border-radius: 6px;
    background: rgb(var(--rgb-blue) / .08);
    color: var(--color-blue);
    font-size: 0.72rem;
    font-weight: 800;
}

.platform__kicker {
    margin: 0 0 14px;
    color: var(--color-teal);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.platform__card h3 {
    margin: 0 0 10px;
    color: var(--color-black, rgb(var(--rgb-ink)));
    font-size: 1rem;
    font-weight: 800;
}

.platform__card p:last-child {
    margin: 0;
    color: rgb(var(--rgb-ink) / .78);
    font-size: 0.84rem;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 1100px) {
    .platform__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 760px) {
    .platform__container {
        width: min(100% - 40px, 1280px);
    }

    .platform__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .platform__card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .platform__container {
        width: min(100% - 28px, 1280px);
    }

    .platform__heading br {
        display: none;
    }

}

/* ============================================================
   Section: FAQ
============================================================ */

.faq {
    position: relative;
    z-index: 2;
    padding: clamp(72px, 90vw, 120px) 0;
    background: transparent;
    color: var(--text-dark);
}

.faq__container {
    width: min(1280px, calc(100% - 92px));
    margin: 0 auto;
}

.faq__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: clamp(56px, 7vw, 82px);
}

.faq__heading {
    margin: 0;
    color: var(--color-black);
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.faq__contact {
    margin: 10px 0 0;
    color: rgb(var(--rgb-ink) / .46);
    font-size: 0.82rem;
    font-weight: 500;
}

.faq__contact a {
    color: var(--color-blue);
    font-weight: 700;
    text-decoration: none;
}

.faq__layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: clamp(48px, 7vw, 86px);
    align-items: start;
}

.faq__categories {
    display: grid;
    gap: 8px;
}

.faq__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: rgb(var(--rgb-ink) / .48);
    font: inherit;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.faq__category span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq__category strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgb(var(--rgb-blue) / .08);
    color: var(--color-blue);
    font-size: 0.68rem;
    font-weight: 800;
}

.faq__category:hover,
.faq__category--active {
    color: var(--color-blue);
    background: rgb(var(--rgb-blue) / .07);
}

.faq__category--active strong {
    background: var(--color-blue);
    color: var(--color-white);
}

.faq__panels {
    position: relative;
}

.faq__panel {
    overflow: hidden;
    border: 1px solid rgb(var(--rgb-blue) / .12);
    border-radius: 12px;
    background: rgb(var(--rgb-white) / .78);
    box-shadow: 0 18px 54px rgb(var(--rgb-blue) / .035);
    animation: faq-panel-in .28s cubic-bezier(.22, 1, .36, 1) both;
}

.faq__panel[hidden] {
    display: none;
}

.faq__item+.faq__item {
    border-top: 1px solid rgb(var(--rgb-blue) / .10);
}

.faq__question {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 30px;
    border: 0;
    background: transparent;
    color: rgb(var(--rgb-ink) / .86);
    font: inherit;
    font-size: 0.96rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq__question em {
    position: relative;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border: 1px solid rgb(var(--rgb-blue) / .22);
    border-radius: 999px;
}

.faq__question em::before,
.faq__question em::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--color-blue);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.faq__question em::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__question[aria-expanded="true"] em::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s cubic-bezier(.22, 1, .36, 1);
}

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 30px;
    color: rgb(var(--rgb-ink) / .68);
    font-size: 0.88rem;
    line-height: 1.7;
}

.faq__item.is-open .faq__answer p {
    padding-bottom: 24px;
}

@keyframes faq-panel-in {
    from {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (max-width: 900px) {
    .faq__container {
        width: min(100% - 40px, 1280px);
    }

    .faq__header {
        flex-direction: column;
    }

    .faq__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq__categories {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        margin-inline: -20px;
        padding: 0 20px;
        scrollbar-width: none;
    }

    .faq__categories::-webkit-scrollbar {
        display: none;
    }

    .faq__category {
        flex: 0 0 auto;
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .faq__container {
        width: min(100% - 28px, 1280px);
    }

    .faq__question {
        min-height: 64px;
        padding: 0 18px;
        font-size: 0.9rem;
    }

    .faq__answer p {
        padding-right: 18px;
        padding-left: 18px;
    }
}

/* ============================================================
   Section: Contact / Access Form
============================================================ */

.contact {
    position: relative;
    z-index: 2;
    padding: clamp(72px, 90vw, 120px) 0;
    background:
        radial-gradient(circle at 82% 22%, rgb(var(--rgb-blue) / .08), transparent 28%),
        linear-gradient(180deg, var(--color-white), color-mix(in srgb, var(--page-bg) 90%, var(--color-lilac)));
    color: var(--text-dark);
}

.contact__container {
    width: min(1280px, calc(100% - 92px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    gap: clamp(48px, 8vw, 110px);
    align-items: start;
}

.contact__content {
    max-width: 560px;
    position: sticky;
    top: 120px;
}

.contact__eyebrow {
    margin: 0 0 16px;
    color: var(--color-blue);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.contact__title {
    margin: 0;
    color: var(--color-black, rgb(var(--rgb-ink)));
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.32px;
}

.contact__title span {
    color: transparent;
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    -webkit-background-clip: text;
    background-clip: text;
}

.contact__lead {
    margin: 26px 0 0;
    max-width: 520px;
    color: rgb(var(--rgb-ink) / .76);
    font-size: 0.98rem;
    line-height: 1.75;
}

.contact__benefits {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.contact__benefit {
    position: relative;
    padding: 16px 18px 16px 18px;
    border: 1px solid rgb(var(--rgb-blue) / .14);
    border-radius: 14px;
    background: rgb(var(--rgb-white) / .62);
    color: rgb(var(--rgb-ink) / .82);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 18px 54px rgb(var(--rgb-blue) / .035);
}

/* .contact__benefit::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 21px;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    transform: rotate(35deg);
    background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
} */

.contact__alt,
.contact__note {
    margin: 26px 0 0;
    color: rgb(var(--rgb-ink) / .68);
    font-size: 0.88rem;
    line-height: 1.65;
}

.contact__note {
    margin-top: 14px;
    font-size: 0.78rem;
}

.contact a {
    color: var(--color-blue);
    font-weight: 700;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Form */
.contact__form {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgb(var(--rgb-blue) / .16);
    border-radius: 18px;
    background: rgb(var(--rgb-white) / .78);
    box-shadow:
        0 22px 60px rgb(var(--rgb-blue) / .09),
        inset 0 0 0 1px rgb(var(--rgb-teal) / .12);
}

.contact__form::before {
    content: "";
    position: absolute;
    right: -48px;
    top: -48px;
    width: 160px;
    height: 160px;
    border-radius: 24px;
    transform: rotate(35deg);
    background: linear-gradient(135deg, rgb(var(--rgb-teal) / .28), rgb(var(--rgb-blue) / .18));
    filter: blur(12px);
    pointer-events: none;
}

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

.contact__field {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.contact__field--full,
.contact__field--consent,
.contact__turnstile {
    grid-column: 1 / -1;
}

.contact__field label {
    color: rgb(var(--rgb-ink) / .78);
    font-size: 0.72rem;
    /* font-weight: 800; */
    /* letter-spacing: 0.08em; */
    /* text-transform: uppercase; */
}

.contact__field input,
.contact__field select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgb(var(--rgb-blue) / .14);
    border-radius: 12px;
    background: rgb(var(--rgb-white) / .86);
    color: rgb(var(--rgb-ink));
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact__field select {
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--color-blue) 50%),
        linear-gradient(135deg, var(--color-blue) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 21px,
        calc(100% - 14px) 21px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact__field input::placeholder {
    color: rgb(var(--rgb-ink) / .36);
}

.contact__field input:focus,
.contact__field select:focus {
    border-color: rgb(var(--rgb-blue) / .42);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgb(var(--rgb-blue) / .08);
}

/* Checkbox */
.contact__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    cursor: pointer;
}

.contact__checkbox input {
    position: absolute;
    opacity: 0;
    width: 18px;
    height: 18px;
    margin: 0;
}

.contact__checkmark {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1.5px solid rgb(var(--rgb-blue) / .24);
    border-radius: 5px;
    background: var(--color-white);
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact__checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg);
}

.contact__checkbox:hover .contact__checkmark,
.contact__checkbox input:focus-visible+.contact__checkmark {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgb(var(--rgb-blue) / .08);
}

.contact__checkbox input:checked+.contact__checkmark {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.contact__checkbox input:checked+.contact__checkmark::after {
    opacity: 1;
}

.contact__checkbox-text {
    color: rgb(var(--rgb-ink) / .68);
    font-size: 0.74rem;
    line-height: 1.55;
}

/* Turnstile / Honeypot */
.contact__turnstile {
    margin-top: 16px;
    text-align: center;
}

.contact__turnstile noscript p {
    color: rgb(var(--rgb-ink) / .68);
    font-size: 0.82rem;
    line-height: 1.5;
}

.contact__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Submit + status */
.contact__submit {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 50px;
    margin-top: 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
    color: var(--color-white);
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 400;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.contact__submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.contact__submit:disabled {
    opacity: .72;
    cursor: not-allowed;
    transform: none;
}

.contact__submit.is-loading {
    background: rgb(var(--rgb-ink) / .8);
    cursor: wait;
}

.contact__submit.is-success {
    background: var(--state-success);
}

.contact__submit.is-error {
    background: var(--state-error);
}

.contact__status {
    min-height: 1.5em;
    margin-top: 14px;
    color: rgb(var(--rgb-ink) / .76);
    font-size: 0.84rem;
    line-height: 1.5;
}

.contact__status.is-success {
    color: color-mix(in srgb, var(--state-success) 80%, var(--color-off-black));
}

.contact__status.is-error {
    color: var(--state-error);
}

.contact__confirm {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: rgb(var(--rgb-ink) / .58);
    font-size: 0.77rem;
    line-height: 1.6;
}

/* Contact @media (max-width: 1100px) */
@media (max-width: 1100px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .contact__content {
        position: relative;
        top: auto;
        max-width: 760px;
    }
}

/* Contact @media (max-width: 640px) */
@media (max-width: 640px) {
    .contact__container {
        width: min(100% - 28px, 1280px);
    }

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

    .contact__form {
        border-radius: 16px;
    }

    .contact__title {
        font-size: clamp(2.35rem, 11vw, 4rem);
    }
}

/* ============================================================
   Component: Site Footer
============================================================ */

.site-footer {
    position: relative;
    z-index: 2;
    padding: 80px 40px 28px;
    color: var(--text-dark);
    background: var(--color-neutral);
    border-top: 1px solid rgb(var(--rgb-blue) / .10);
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-footer__logo img {
    display: block;
    height: 36px;
}

.site-footer__divider {
    width: 1px;
    height: 22px;
    background: rgb(var(--rgb-off-black) / .12);
}

.site-footer__nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer__nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
    text-transform: uppercase;
    font-size: 0.83rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
}


.site-footer__legal a {
    margin: 0;
    color: rgb(var(--rgb-ink) / .64);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__legal a:hover {
    color: var(--color-blue);
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgb(var(--rgb-blue) / 0);
    border-radius: 999px;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.site-footer__social a:hover {
    color: var(--color-blue);
    border-color: rgb(var(--rgb-blue) / .22);
    background: rgb(var(--rgb-white) / .34);
    backdrop-filter: blur(10px);
}

.site-footer__social em {
    display: block;
    font-size: 20px;
    line-height: 1;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgb(var(--rgb-blue) / .10);
}

.site-footer__copy {
    margin: 0;
    color: rgb(var(--rgb-ink) / .64);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4rem;
    text-transform: uppercase;
}

/* .site-footer__copy span {
    color: rgb(var(--rgb-ink) / .72);
} */

@media (max-width: 900px) {
    .site-footer {
        padding-right: 20px;
        padding-left: 20px;
    }

    .site-footer__top,
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__legal {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 72px 16px 24px;
    }

    .site-footer__brand {
        width: 100%;
    }

    .site-footer__nav {
        justify-content: flex-start;
    }

    .site-footer__legal {
        justify-content: flex-start;
        gap: 5px;
    }

    .site-footer__nav a,
    .site-footer__legal a {
        justify-content: flex-start;
    }
}


/* ============================================================
   Accessibility Patches
============================================================ */

/* WCAG patches */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Logo */
.logo-wordmark {
    color: var(--color-white);
}

.logo-wordmark span {
    color: var(--color-teal);
}

.card-cap-title {
    color: var(--color-white);
}

.card-cap-note {
    color: color-mix(in srgb, var(--color-white) 96%, var(--color-lilac));
}

.ticker-item {
    color: color-mix(in srgb, var(--color-white) 80%, var(--color-lilac));
}












/* ============================================================
   Animations
============================================================ */

/* Animations */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}