:root {
    --bg-primary: #040506;
    --bg-secondary: rgba(10, 12, 14, 0.86);
    --panel: rgba(14, 18, 22, 0.78);
    --panel-strong: rgba(18, 22, 28, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --text-primary: #f8f4ed;
    --text-secondary: #cbbda9;
    --text-muted: #8e8577;
    --accent: #97ffd7;
    --accent-strong: #5ed3ae;
    --accent-warm: #ff9c6b;
    --border: rgba(255, 255, 255, 0.11);
    --border-strong: rgba(255, 255, 255, 0.18);
    --shadow: rgba(0, 0, 0, 0.34);
    --max-width: 1400px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 999px;
    --header-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(220, 223, 228, 0.24) #050509;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 15% 20%, rgba(151, 255, 215, 0.12), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(255, 156, 107, 0.14), transparent 30%),
        linear-gradient(180deg, #030303 0%, #050608 34%, #090b0e 100%);
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: #050509;
}

body::-webkit-scrollbar-thumb {
    background: rgba(220, 223, 228, 0.22);
    border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 223, 228, 0.3);
}

.network-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.52;
    mask-image: linear-gradient(180deg, transparent, black 8%, black 82%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, black 8%, black 82%, transparent);
}

#perps-network-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

body.menu-open {
    overflow: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: 0;
    pointer-events: none;
    filter: blur(24px);
}

body::before {
    top: 16vh;
    left: 5vw;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(151, 255, 215, 0.1);
}

body::after {
    right: 6vw;
    bottom: 12vh;
    width: 280px;
    height: 280px;
    border-radius: 38% 62% 53% 47%;
    background: rgba(255, 156, 107, 0.08);
}

img,
canvas {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.page-aura,
.page-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.page-aura {
    z-index: 0;
    opacity: 0.42;
}

.page-aura-left {
    background: radial-gradient(circle at 18% 28%, rgba(151, 255, 215, 0.13), transparent 24%);
}

.page-aura-right {
    background: radial-gradient(circle at 80% 10%, rgba(255, 156, 107, 0.1), transparent 28%);
}

.page-grid {
    z-index: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

body[data-page="exchanges"] .network-background,
body[data-page="exchanges"] .page-aura,
body[data-page="exchanges"] .page-grid {
    display: none;
}

body[data-page="exchanges"]::before,
body[data-page="exchanges"]::after {
    content: none;
}

.site-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: 82px 0 0;
}

.glass-panel {
    position: relative;
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(10, 12, 14, 0.75);
    box-shadow: 0 28px 80px var(--shadow);
    backdrop-filter: blur(18px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100vw;
    margin-left: 0;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #050509;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.site-header::after {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    width: min(600px, 72vw);
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(80px);
    transform: translateX(-50%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.topbar {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(20px, 2vw, 34px);
    width: 100%;
    min-height: 74px;
    padding: 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.topbar::after {
    content: none;
}

.brand-anchor {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.brand-kicker,
.section-kicker,
.app-card-kicker,
.micro-label,
.community-label,
.feature-index {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand-kicker,
.section-kicker,
.app-card-kicker,
.feature-index {
    color: var(--accent);
}

.brand-name {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

.nav-cluster,
.nav-side,
.nav-actions,
.hero-actions,
.hero-stats,
.footer-links-grid,
.monitor-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cluster {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-width: 0;
}

.nav-rail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 1.5vw, 28px);
    min-width: 0;
    margin: 0 auto;
}

.nav-utility {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-logo {
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    filter: saturate(0.98);
}

.nav-link,
.monitor-tab {
    position: relative;
    padding: 0;
    color: rgba(226, 223, 217, 0.9);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: none;
    transition: color 180ms ease, opacity 180ms ease;
}

.nav-link {
    border: 0;
    border-radius: 0;
    background: transparent;
    font-style: normal;
    text-shadow: none;
}

.nav-link.is-unavailable {
    opacity: 0.42;
    cursor: default;
}

.nav-link.is-unavailable::after {
    content: attr(data-soon);
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translate(-50%, 4px);
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(10, 12, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(240, 236, 229, 0.78);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease, transform 140ms ease;
}

.nav-link.is-unavailable:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-link:hover,
.nav-link.is-active,
.monitor-tab:hover {
    color: #ffffff;
    background: transparent;
    border-color: transparent;
}

.nav-link.is-active::after {
    content: none;
}

.nav-icon-button,
.profile-pill {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 16px;
    cursor: pointer;
}

.nav-icon-button svg,
.profile-avatar svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.profile-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 7px 10px 7px 8px;
    border-radius: 18px;
    cursor: pointer;
}

.nav-icon-button:hover,
.profile-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 160, 89, 0.28);
    background: rgba(255, 255, 255, 0.05);
}

.profile-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    color: #f4efe7;
}

.profile-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    text-align: left;
}

.profile-label {
    color: rgba(240, 237, 230, 0.58);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.profile-value {
    color: #f7f3eb;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.page-view[hidden] {
    display: none !important;
}

.page-view {
    min-height: calc(100vh - 220px);
}

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

.route-card {
    display: flex;
    flex-direction: column;
    color: inherit;
}

.route-card p {
    margin-bottom: 22px;
}

.route-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin-top: auto;
    padding: 0 13px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--accent);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(151, 255, 215, 0.06);
}

.coming-soon-page {
    display: grid;
    align-items: center;
    min-height: calc(100vh - 230px);
    padding: 24px 0;
}

.exchanges-page {
    min-height: calc(100vh - 230px);
    padding: 24px 0 56px;
}

.exchanges-shell {
    position: relative;
    display: grid;
    gap: 20px;
}

.exchanges-hero {
    display: grid;
    gap: 14px;
    padding: clamp(6px, 1vw, 12px) 0 6px 0;
}

.exchanges-hero-copy {
    display: grid;
    gap: 14px;
}

.exchanges-hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.exchanges-hero p:last-child {
    margin: 0;
    max-width: 720px;
    color: rgba(235, 239, 246, 0.82);
    font-size: 1.02rem;
    line-height: 1.8;
}

.exchange-filters {
    position: absolute;
    top: 112px;
    right: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
    max-width: 320px;
}

.exchange-filter-chip {
    min-height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0 12px;
    color: rgba(255, 248, 236, 0.62);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.exchange-filter-chip:hover,
.exchange-filter-chip:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.exchange-filter-chip.is-active {
    border-color: rgba(151, 255, 215, 0.22);
    color: rgba(255, 248, 236, 0.96);
    background: rgba(151, 255, 215, 0.07);
    box-shadow: 0 8px 18px rgba(151, 255, 215, 0.05);
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.exchange-card {
    --exchange-accent: #f3cc6b;
    --exchange-accent-rgb: 243, 204, 107;
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 280px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
        linear-gradient(180deg, rgba(7, 10, 14, 0.96), rgba(6, 8, 12, 0.9));
    box-shadow:
        0 24px 68px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(var(--exchange-accent-rgb), 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.exchange-card::before,
.exchange-card::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.exchange-card::before {
    top: -68px;
    left: -48px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--exchange-accent-rgb), 0.42) 0%, rgba(var(--exchange-accent-rgb), 0.14) 42%, transparent 74%);
    filter: blur(24px);
    opacity: 1;
    z-index: -1;
}

.exchange-card::after {
    right: -52px;
    bottom: -60px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--exchange-accent-rgb), 0.24) 0%, rgba(var(--exchange-accent-rgb), 0.08) 36%, transparent 70%);
    filter: blur(28px);
    z-index: -1;
}

.exchange-card:hover,
.exchange-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(var(--exchange-accent-rgb), 0.46);
    box-shadow:
        0 30px 82px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(var(--exchange-accent-rgb), 0.18),
        0 0 30px rgba(var(--exchange-accent-rgb), 0.14);
}

.exchange-card.is-hidden-by-filter {
    display: none !important;
}

.exchange-card[data-accent-mode="neutral"]::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 42%, transparent 72%);
}

.exchange-card[data-accent-mode="neutral"]::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 68%);
}

.exchange-card[data-accent-mode="neutral"] .exchange-logo-ring {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 0 7px rgba(255, 255, 255, 0.06),
        0 12px 34px rgba(0, 0, 0, 0.26);
}

.exchange-card[data-accent-mode="neutral"] .exchange-trade-button {
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, #f2f2f2, #cfcfcf);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.08);
}

.exchange-card[data-accent-mode="neutral"] .exchange-points.is-live {
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.06);
}

.exchange-card[data-accent-mode="neutral"] .exchange-points-dot {
    background: #f3f3f3;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.42);
}

.exchange-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.exchange-logo-ring {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(var(--exchange-accent-rgb), 0.44);
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.16), transparent 42%),
        rgba(8, 10, 14, 0.92);
    box-shadow:
        0 0 0 7px rgba(var(--exchange-accent-rgb), 0.14),
        0 12px 34px rgba(0, 0, 0, 0.26),
        0 0 24px rgba(var(--exchange-accent-rgb), 0.12);
}

.exchange-logo-ring img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.exchange-logo-ring canvas {
    width: 70%;
    height: 70%;
    display: block;
}

.exchange-points {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.035);
    color: rgba(255, 248, 236, 0.22);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.015);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
    overflow: hidden;
    opacity: 0.32;
}

.exchange-points.is-live {
    border-color: rgba(var(--exchange-accent-rgb), 0.48);
    color: rgba(255, 248, 236, 0.94);
    background:
        linear-gradient(135deg, rgba(var(--exchange-accent-rgb), 0.38), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        0 14px 34px rgba(var(--exchange-accent-rgb), 0.24),
        0 0 24px rgba(var(--exchange-accent-rgb), 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    opacity: 1;
}

.exchange-points.is-live::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.06) 34%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0.06) 66%, transparent 100%);
    transform: translateX(-140%);
    animation: exchange-points-sheen 2.8s ease-in-out infinite;
    pointer-events: none;
}

.exchange-points.is-live:hover,
.exchange-points.is-live:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(var(--exchange-accent-rgb), 0.24);
}

.exchange-points-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--exchange-accent);
    box-shadow:
        0 0 14px rgba(var(--exchange-accent-rgb), 0.88),
        0 0 24px rgba(var(--exchange-accent-rgb), 0.42);
    animation: exchange-live-dot 1.9s ease-in-out infinite;
}

.exchange-card-body {
    display: grid;
    align-content: start;
    gap: 10px;
}

.exchange-card-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.exchange-card-name {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.exchange-card-label {
    color: rgba(235, 239, 246, 0.64);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.exchange-hip3-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(var(--exchange-accent-rgb), 0.26);
    border-radius: 999px;
    color: rgba(255, 248, 236, 0.92);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    background:
        linear-gradient(135deg, rgba(var(--exchange-accent-rgb), 0.18), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 8px 22px rgba(var(--exchange-accent-rgb), 0.12);
    overflow: hidden;
}

.exchange-hip3-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.04) 62%, transparent 100%);
    transform: translateX(-135%);
    animation: exchange-points-sheen 3.6s ease-in-out infinite;
    pointer-events: none;
}

.exchange-card-foot {
    margin-top: auto;
}

.exchange-trade-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(var(--exchange-accent-rgb), 0.4);
    border-radius: 18px;
    padding: 0 18px;
    color: #060709;
    font-family: "Manrope", sans-serif;
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(var(--exchange-accent-rgb), 1), rgba(var(--exchange-accent-rgb), 0.78));
    box-shadow:
        0 18px 40px rgba(var(--exchange-accent-rgb), 0.22),
        0 0 22px rgba(var(--exchange-accent-rgb), 0.14);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.exchange-trade-button:hover,
.exchange-trade-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(var(--exchange-accent-rgb), 0.24);
    filter: saturate(1.08);
}

.coming-soon-card {
    min-height: clamp(360px, 54vh, 620px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(28px, 5vw, 70px);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.coming-soon-card h1 {
    margin: 16px 0 0;
    max-width: 820px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4rem, 11vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.nav-actions {
    justify-content: flex-end;
}

.button,
.menu-toggle {
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.button:hover,
.menu-toggle:hover,
.footer-link:hover,
.feature-card:hover,
.stack-card:hover,
.stat-card:hover,
.micro-panel:hover,
.signal-card:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--text-primary), #d9d1c4);
    color: #060709;
}

.button-secondary,
.button-ghost,
.monitor-tab,
.footer-link,
.back-to-top {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.button-secondary,
.button-ghost {
    color: var(--text-primary);
}

.button-ghost {
    background: transparent;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero-section,
.section-block,
.monitor-section,
.site-footer {
    margin-top: 24px;
}

.hero-section {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    min-height: calc(100vh - 140px);
    padding-top: 0;
    padding-bottom: 2vh;
    position: relative;
}

.hero-copy,
.hero-visual,
.feature-card,
.stack-card,
.site-footer {
    border-radius: var(--radius-xl);
}

.hero-copy,
.hero-visual {
    padding: clamp(24px, 3vw, 40px);
    overflow: hidden;
}

.hero-copy {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 220px);
    width: 100%;
    padding: clamp(18px, 2.4vw, 30px) clamp(24px, 4vw, 52px);
    background: transparent;
    border: 0;
    backdrop-filter: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    transition: none;
}

.hero-copy::before {
    content: none;
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.eyebrow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.eyebrow-pill,
.eyebrow-meta,
.signal-tag,
.signal-status,
.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow-pill {
    background: rgba(255, 255, 255, 0.05);
}

.eyebrow-meta,
.signal-status {
    color: var(--text-secondary);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(151, 255, 215, 0.7);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-title,
.section-heading h2,
.footer-brand h2,
.monitor-header h2,
.app-card-header h3,
.feature-card h3,
.stack-copy h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.05em;
}

.hero-title {
    margin-top: 40px;
    font-size: clamp(4rem, 10.8vw, 9.5rem);
    line-height: 0.92;
    text-align: center;
    text-transform: none;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
    text-shadow:
        0 16px 34px rgba(0, 0, 0, 0.42),
        0 4px 14px rgba(0, 0, 0, 0.5);
    filter: none;
}

.hero-title span {
    display: block;
    padding-bottom: 0.04em;
    transform: none;
    opacity: 1;
    animation: none;
}

.hero-title span:nth-child(2) {
    color: #e3d8ca;
}

.hero-text,
.section-heading p,
.stack-copy p,
.feature-card p,
.footer-brand p,
.app-card-note,
.monitor-note,
.micro-panel p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.hero-text {
    max-width: 760px;
    margin: 38px auto 0;
    font-size: 1.05rem;
    text-align: center;
    color: rgba(248, 244, 237, 0.94);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.hero-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 36px;
}

#overview.section-block {
    position: relative;
    z-index: 3;
    margin-top: 24px;
    padding-top: 32px;
    opacity: 1;
    transform: none;
    transition: none;
}

#overview.section-block::before {
    content: "";
    position: absolute;
    top: calc(3vh - 6px);
    left: 50%;
    width: min(720px, calc(100% - 56px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

#overview.section-band {
    margin-top: 24px;
    padding-top: clamp(22px, 2.8vw, 32px);
    padding-bottom: clamp(20px, 2.6vw, 28px);
    opacity: 1;
    transform: none;
    transition: none;
}

#overview.section-band::before {
    content: "";
    position: absolute;
    top: calc(3vh - 6px);
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

#overview.section-band::after {
    background:
        linear-gradient(180deg, rgba(36, 38, 42, 0.95), rgba(18, 20, 23, 0.94)),
        rgba(21, 23, 26, 0.94);
}

#overview.section-band .section-heading {
    margin-bottom: 22px;
}

#overview.section-band .feature-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
        rgba(9, 11, 13, 0.96);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-actions {
    margin-top: 0;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-stats {
    margin-top: 0;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-end;
}

.stat-card,
.micro-panel,
.feature-card,
.stack-card,
.footer-link {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 190px;
    padding: 18px 18px 20px;
    border-radius: var(--radius-lg);
    background: rgba(6, 8, 10, 0.18);
    backdrop-filter: blur(14px);
}

.stat-value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    align-items: stretch;
    display: none;
}

.hero-visual-inner {
    display: grid;
    grid-template-rows: 1.15fr auto;
    gap: 18px;
    width: 100%;
}

.signal-card {
    position: relative;
    border: 1px solid var(--border-strong);
    border-radius: 28px;
    padding: 18px;
    background:
        radial-gradient(circle at top, rgba(151, 255, 215, 0.09), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    overflow: hidden;
}

.signal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.2;
    pointer-events: none;
}

.signal-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.signal-screen {
    position: relative;
    min-height: 360px;
    margin-top: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(5, 7, 9, 0.96), rgba(15, 18, 21, 0.78));
    overflow: hidden;
}

.signal-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 0%, rgba(255, 255, 255, 0.02) 48%, transparent 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 56px 56px, 56px 56px;
}

.signal-lines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20%;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(151, 255, 215, 0.12), transparent);
    animation: scan-line 4s linear infinite;
}

.signal-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signal-node-core {
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 132px;
    background: rgba(151, 255, 215, 0.12);
    color: var(--accent);
    box-shadow: 0 0 30px rgba(151, 255, 215, 0.18);
}

.signal-node-left {
    top: 22%;
    left: 10%;
}

.signal-node-right {
    top: 22%;
    right: 10%;
}

.signal-node-bottom {
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
}

.signal-node-left::after,
.signal-node-right::after,
.signal-node-bottom::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(151, 255, 215, 0.32));
}

.signal-node-left::after {
    top: 50%;
    left: calc(100% + 8px);
    width: 110px;
    height: 1px;
}

.signal-node-right::after {
    top: 50%;
    right: calc(100% + 8px);
    width: 110px;
    height: 1px;
    background: linear-gradient(90deg, rgba(151, 255, 215, 0.32), rgba(255, 255, 255, 0.06));
}

.signal-node-bottom::before {
    left: 50%;
    bottom: calc(100% + 8px);
    width: 1px;
    height: 92px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(151, 255, 215, 0.32), rgba(255, 255, 255, 0.06));
}

.hero-floating-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.micro-panel {
    min-height: 120px;
    padding: 18px;
    border-radius: 22px;
}

.micro-panel code,
.micro-panel strong {
    display: block;
    margin-top: 12px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.95rem;
    color: var(--text-primary);
    word-break: break-word;
}

.micro-panel-wide {
    grid-column: span 2;
}

.section-block {
    padding: 32px 0;
}

.section-band {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(42px, 5vw, 68px) 0;
    overflow: hidden;
}

.section-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(34, 36, 39, 0.94), rgba(18, 20, 23, 0.94)),
        rgba(20, 22, 25, 0.94);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.section-band-inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading-sticky {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    align-self: start;
}

.section-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.monitor-header h2,
.footer-brand h2 {
    margin-top: 14px;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 0.98;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 240px;
    padding: 28px;
}

.landing-view .feature-card,
.landing-view .stack-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        rgba(7, 9, 11, 0.96);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(22px);
}

.feature-card h3 {
    margin-top: 18px;
    font-size: 1.45rem;
}

.section-split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stack-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
    min-height: 260px;
    padding: 24px;
}

.stack-card-wide {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stack-card-fullbleed {
    position: relative;
    width: 100vw;
    margin: clamp(18px, 3vw, 34px) 0 0 calc(50% - 50vw);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
}

.stack-card-fullbleed::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(36, 38, 42, 0.95), rgba(18, 20, 23, 0.94)),
        rgba(21, 23, 26, 0.94);
    pointer-events: none;
}

.stack-card-fullbleed::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.stack-card-fullbleed > * {
    position: relative;
    z-index: 1;
}

.stack-card-fullbleed .stack-copy {
    order: 1;
}

.stack-card-fullbleed .stack-visual {
    order: 2;
    width: 100%;
    min-height: clamp(150px, 18vw, 200px);
    border: 0;
    border-radius: 0;
    background: transparent;
}

.stack-card-fullbleed .stack-copy {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: clamp(14px, 1.8vw, 18px) 0 2px;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.stack-card-fullbleed .stack-copy p {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.stack-card-fullbleed .stack-copy a {
    display: inline;
    margin-left: 0.18em;
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
    color: rgba(248, 244, 237, 0.96);
    transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.stack-card-fullbleed .stack-copy a:hover,
.stack-card-fullbleed .stack-copy a:focus-visible {
    color: #ffffff;
    outline: none;
}

.stack-card-fullbleed .editorial-loop {
    align-items: flex-start;
}

.stack-card-fullbleed .ticker-row-editorial {
    padding-top: 0;
    padding-bottom: 0;
}

.stack-card-wide .stack-visual {
    min-height: 288px;
}

.stack-card-fullbleed.stack-card-wide .stack-visual {
    min-height: clamp(150px, 18vw, 200px);
}

.stack-card-wide .stack-copy {
    max-width: 860px;
}

.stack-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.stack-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.stack-copy h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.stack-visual-balanced {
    isolation: isolate;
}

.stack-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 32%, transparent 92%);
    opacity: 0.55;
    pointer-events: none;
}

.stack-visual-balanced::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 50%, rgba(151, 255, 215, 0.06), transparent 34%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025), transparent 60%);
    pointer-events: none;
}

.flow-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}

.flow-path {
    fill: none;
    stroke-width: 1.35;
    stroke-linecap: round;
    opacity: 0.95;
}

.inbound {
    stroke: url(#line-soft-in);
}

.outbound {
    stroke: url(#line-soft-out);
}

.pulse {
    fill: rgba(151, 255, 215, 0.86);
    filter:
        drop-shadow(0 0 10px rgba(151, 255, 215, 0.34))
        drop-shadow(0 0 18px rgba(151, 255, 215, 0.14));
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    offset-rotate: auto;
}

.pulse-bar {
    fill: rgba(151, 255, 215, 0.92);
}

.flow-inputs,
.flow-outputs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.exchange-node,
.output-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(248, 244, 237, 0.78);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: node-idle 6.2s ease-in-out infinite;
}

.exchange-node {
    min-width: 58px;
    height: 28px;
    padding: 0 10px;
    font-size: 0.56rem;
    font-weight: 700;
}

.output-node {
    min-width: 78px;
    height: 34px;
    padding: 0 12px;
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(248, 244, 237, 0.84);
    background: rgba(255, 255, 255, 0.055);
}

.ex-1 {
    left: 4.5%;
    top: 14%;
}

.ex-2 {
    left: 8.5%;
    top: 31%;
    animation-delay: 0.8s;
}

.ex-3 {
    left: 8.5%;
    top: 57%;
    animation-delay: 1.4s;
}

.ex-4 {
    left: 4%;
    top: 75%;
    animation-delay: 2.1s;
}

.out-1 {
    right: 4.5%;
    top: 24%;
    animation-delay: 0.5s;
}

.out-2 {
    right: 2.5%;
    top: 46%;
    animation-delay: 1.2s;
}

.out-3 {
    right: 4.5%;
    top: 68%;
    animation-delay: 1.9s;
}

.flow-core-balanced {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 112px;
    height: 86px;
    transform: translate(-50%, -50%);
    border-radius: 24px;
    border: 1px solid rgba(151, 255, 215, 0.18);
    background:
        linear-gradient(180deg, rgba(151, 255, 215, 0.09), rgba(151, 255, 215, 0.035)),
        rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    isolation: isolate;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.02),
        0 0 28px rgba(151, 255, 215, 0.08);
    animation: core-breathe 4.8s ease-in-out infinite;
}

.flow-core-balanced::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 30px;
    border: 1px solid rgba(151, 255, 215, 0.1);
    background:
        radial-gradient(circle at 50% 50%, rgba(151, 255, 215, 0.05), transparent 62%),
        rgba(8, 11, 13, 0.82);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.018),
        0 0 22px rgba(5, 8, 10, 0.28);
    z-index: 0;
}

.core-rings {
    position: absolute;
    inset: -10px;
    border-radius: 30px;
    border: 1px solid rgba(151, 255, 215, 0.08);
    opacity: 0.7;
    animation: ring-breathe 4.8s ease-in-out infinite;
    z-index: 1;
}

.core-rings::before,
.core-rings::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.core-rings::after {
    inset: 10px;
    border-color: rgba(151, 255, 215, 0.06);
}

.core-label {
    position: relative;
    z-index: 2;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.core-subtle {
    position: relative;
    z-index: 2;
    margin-top: 4px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(151, 255, 215, 0.72);
}

.hover-trigger:hover .flow-path {
    stroke-width: 1.55;
}

.hover-trigger:hover .pulse {
    filter:
        drop-shadow(0 0 12px rgba(151, 255, 215, 0.42))
        drop-shadow(0 0 22px rgba(151, 255, 215, 0.2));
}

.hover-trigger:hover .flow-core-balanced {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.02),
        0 0 38px rgba(151, 255, 215, 0.12);
}

.hover-trigger:hover .exchange-node,
.hover-trigger:hover .output-node {
    border-color: rgba(255, 255, 255, 0.11);
}

.p-in-1 {
    animation: move-in-1 4.6s cubic-bezier(0.18, 0.9, 0.3, 1) infinite;
}

.p-in-2 {
    animation: move-in-2 5.2s cubic-bezier(0.18, 0.9, 0.3, 1) infinite 0.9s;
}

.p-in-3 {
    animation: move-in-3 4.9s cubic-bezier(0.18, 0.9, 0.3, 1) infinite 1.4s;
}

.p-in-4 {
    animation: move-in-4 5.4s cubic-bezier(0.18, 0.9, 0.3, 1) infinite 2.1s;
}

.p-out-1 {
    animation: move-out-1 6.2s cubic-bezier(0.18, 0.9, 0.3, 1) infinite 1.8s;
}

.p-out-2 {
    animation: move-out-2 6.8s cubic-bezier(0.18, 0.9, 0.3, 1) infinite 3s;
}

.p-out-3 {
    animation: move-out-3 6.4s cubic-bezier(0.18, 0.9, 0.3, 1) infinite 4.1s;
}

.stack-visual-preferences {
    padding: 10px 12px;
    align-items: stretch;
    justify-content: stretch;
    background:
        radial-gradient(circle at 50% 42%, rgba(151, 255, 215, 0.045), transparent 32%),
        rgba(255, 255, 255, 0.03);
}

/* =========================================
   TRADFI / RWA ORBIT CARD
   ========================================= */

.stack-visual-tradfi {
    position: relative;
    min-height: 228px;
}

.tradfi-shell {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 228px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background:
        radial-gradient(circle at 50% 46%, rgba(11, 30, 56, 0.24), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
        rgba(7, 10, 14, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 50px rgba(0, 0, 0, 0.28);
    isolation: isolate;
}

.tradfi-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.25) 72%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.25) 72%, transparent 100%);
    pointer-events: none;
}

.tradfi-orbit-guides {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tradfi-orbit-guide {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.52;
    filter: drop-shadow(0 0 14px rgba(151, 255, 215, 0.02));
}

.tradfi-orbit-guide-a {
    width: 74%;
    height: 52%;
    border-color: rgba(151, 255, 215, 0.08);
}

.tradfi-orbit-guide-b {
    width: 88%;
    height: 64%;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.045);
}

.tradfi-orbit-guide-c {
    width: 56%;
    height: 40%;
    border-color: rgba(255, 255, 255, 0.035);
    opacity: 0.36;
}

.tradfi-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    transition:
        opacity 680ms cubic-bezier(0.2, 0.82, 0.24, 1),
        transform 900ms cubic-bezier(0.2, 0.82, 0.24, 1),
        filter 400ms ease;
    z-index: 4;
}

.tradfi-shell.is-entered .tradfi-core {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.tradfi-core-logo {
    width: min(66px, 15vw);
    height: auto;
    display: block;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
    clip-path: none;
    filter: none;
    border: 0;
    outline: 0;
    mix-blend-mode: normal;
}

.tradfi-orbit-stage {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.tradfi-link-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}

.tradfi-link {
    fill: none;
    stroke: rgba(151, 255, 215, 0.18);
    stroke-width: 0.7;
    stroke-linecap: round;
    opacity: 0;
    transition:
        opacity 520ms ease,
        stroke 240ms ease,
        filter 240ms ease;
    filter: none;
}

.tradfi-shell.is-entered .tradfi-link {
    opacity: 1;
}

.hover-trigger:hover .tradfi-link {
    stroke: rgba(151, 255, 215, 0.24);
}

.tradfi-badge {
    --orbit-opacity: 1;
    --orbit-glow: 0.15;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        rgba(14, 18, 24, 0.96);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 14px rgba(151, 255, 215, calc(var(--orbit-glow) * 0.7));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.84);
    transition:
        opacity 520ms ease,
        transform 840ms cubic-bezier(0.2, 0.82, 0.24, 1),
        box-shadow 240ms ease,
        filter 240ms ease;
    will-change: auto;
    overflow: hidden;
}

.tradfi-badge.is-visible {
    opacity: var(--orbit-opacity);
}

.tradfi-badge img {
    width: 74%;
    height: 74%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
    filter: brightness(1.14) saturate(1.08) contrast(1.05);
}

.tradfi-badge::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.tradfi-badge[data-fallback]::before {
    content: attr(data-fallback);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 0.46rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(248, 244, 237, 0.82);
    text-transform: uppercase;
}

.tradfi-shell.is-idle .tradfi-core,
.hover-trigger:hover .tradfi-core {
    filter: none;
    box-shadow: none;
}

.hover-trigger:hover .tradfi-badge {
    filter: none;
}

@media (max-width: 900px) {
    .tradfi-shell {
        min-height: 214px;
    }

    .tradfi-core {
        width: auto;
        padding: 0;
    }

    .tradfi-core-logo {
        width: min(58px, 16vw);
    }

    .tradfi-badge {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 640px) {
    .tradfi-shell {
        min-height: 200px;
    }

    .tradfi-core {
        width: auto;
        padding: 0;
    }

    .tradfi-core-logo {
        width: min(51px, 17vw);
    }

    .tradfi-badge {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tradfi-core,
    .tradfi-badge {
        transition: none;
    }
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot-red {
    background: #ff7566;
}

.terminal-dot-amber {
    background: #ffb35d;
}

.terminal-dot-green {
    background: #7cffb5;
}

.prefs-shell {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 8px;
}

.prefs-shell::before {
    content: none;
}

.prefs-top {
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 1;
}

.prefs-scene-title {
    min-width: 0;
    margin-left: 16px;
    color: rgba(151, 255, 215, 0.82);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prefs-trigger {
    position: relative;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        filter 220ms ease,
        opacity 220ms ease;
}

.prefs-trigger::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid transparent;
    opacity: 0;
    transition: opacity 220ms ease, border-color 220ms ease;
}

.prefs-trigger:hover {
    transform: scale(1.08);
}

.prefs-trigger:focus-visible {
    outline: none;
    transform: scale(1.12);
}

.prefs-trigger.is-active {
    transform: scale(1.18);
    filter: saturate(1.1);
}

.prefs-trigger.is-active::after {
    opacity: 1;
}

.prefs-trigger-red {
    background: #ff7566;
    box-shadow: 0 0 10px rgba(255, 117, 102, 0.12);
}

.prefs-trigger-red.is-active {
    box-shadow:
        0 0 0 1px rgba(255, 117, 102, 0.18),
        0 0 16px rgba(255, 117, 102, 0.32);
}

.prefs-trigger-red.is-active::after {
    border-color: rgba(255, 117, 102, 0.2);
}

.prefs-trigger-amber {
    background: #ffb35d;
    box-shadow: 0 0 10px rgba(255, 179, 93, 0.12);
}

.prefs-trigger-amber.is-active {
    box-shadow:
        0 0 0 1px rgba(255, 179, 93, 0.18),
        0 0 16px rgba(255, 179, 93, 0.3);
}

.prefs-trigger-amber.is-active::after {
    border-color: rgba(255, 179, 93, 0.2);
}

.prefs-trigger-green {
    background: #7cffb5;
    box-shadow: 0 0 10px rgba(124, 255, 181, 0.12);
}

.prefs-trigger-green.is-active {
    box-shadow:
        0 0 0 1px rgba(124, 255, 181, 0.18),
        0 0 16px rgba(124, 255, 181, 0.3);
}

.prefs-trigger-green.is-active::after {
    border-color: rgba(124, 255, 181, 0.2);
}

.prefs-carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 0;
}

.prefs-track {
    display: flex;
    transition: transform 1650ms cubic-bezier(0.2, 0.82, 0.24, 1);
    will-change: transform;
}

.prefs-track.is-instant {
    transition: none;
}

.prefs-frame {
    flex: 0 0 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 7px;
    min-height: 136px;
    padding: 0;
}

.frame-controls {
    display: grid;
    gap: 6px;
    align-content: start;
}

.frame-controls-compact {
    align-content: start;
}

.frame-controls-venues {
    position: relative;
    min-height: 140px;
}

.control-group {
    padding: 6px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(255, 255, 255, 0.028);
    backdrop-filter: blur(8px);
}

.control-label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.52rem;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.42);
    font-weight: 700;
}

.pill-row,
.capital-row,
.filter-row {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.pref-pill,
.cap-chip,
.mini-filter,
.meta-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 999px;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(248, 244, 237, 0.72);
    background: rgba(255, 255, 255, 0.04);
}

.pref-pill {
    height: 24px;
    padding: 0 8px;
}

.pill-on {
    background: rgba(255, 255, 255, 0.05);
}

.pill-off {
    opacity: 0.52;
}

.pill-accent {
    color: rgba(151, 255, 215, 0.9);
    border-color: rgba(151, 255, 215, 0.22);
    background: rgba(151, 255, 215, 0.1);
}

.pref-pill-demo {
    opacity: 0.44;
    color: rgba(248, 244, 237, 0.64);
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.028);
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.cap-chip {
    height: 24px;
    padding: 0 8px;
}

.cap-active {
    color: rgba(151, 255, 215, 0.95);
    border-color: rgba(151, 255, 215, 0.22);
    background: rgba(151, 255, 215, 0.12);
    box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.04);
}

.capital-track {
    position: relative;
    height: 4px;
    border-radius: 999px;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.capital-track::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 56%;
    background: linear-gradient(90deg, rgba(151, 255, 215, 0.1), rgba(151, 255, 215, 0.42));
}

.capital-thumb {
    position: absolute;
    top: 50%;
    left: 56%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(151, 255, 215, 0.92);
    box-shadow: 0 0 12px rgba(151, 255, 215, 0.18);
}

.cap-chip-demo {
    opacity: 0.52;
    color: rgba(248, 244, 237, 0.68);
    border-color: rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.market-pill {
    min-width: 74px;
}

.mini-filter {
    height: 24px;
    padding: 0 8px;
}

.timeframe-pill,
.ranking-pill {
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.filter-exec {
    color: rgba(151, 255, 215, 0.92);
    border-color: rgba(151, 255, 215, 0.2);
    background: rgba(151, 255, 215, 0.11);
}

.timeframe-graph {
    display: grid;
    gap: 6px;
    padding: 10px 10px 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(255, 255, 255, 0.02);
}

.timeframe-graph-apr {
    gap: 8px;
}

.frame-timeframe .frame-controls {
    grid-template-rows: auto 1fr;
    align-content: stretch;
    min-height: 100%;
}

.frame-timeframe .timeframe-graph {
    min-height: 0;
    height: 100%;
}

.apr-chart {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: 1fr auto;
    gap: 6px 10px;
    min-height: 116px;
    height: 100%;
}

.apr-axis {
    display: flex;
    color: rgba(248, 244, 237, 0.38);
    font-size: 0.44rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.apr-axis-y {
    grid-row: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2px;
}

.apr-axis-x {
    grid-column: 2;
    grid-row: 2;
    justify-content: space-between;
}

.apr-plot {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-height: 102px;
    padding: 6px 8px 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.apr-grid {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.apr-grid-top {
    top: 8px;
}

.apr-grid-mid {
    top: 50%;
    transform: translateY(-50%);
}

.apr-grid-base {
    bottom: 0;
}

.apr-series {
    display: none;
}

.apr-svg {
    position: absolute;
    inset: 6px 8px 8px 8px;
    width: calc(100% - 16px);
    height: calc(100% - 14px);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.apr-line {
    fill: none;
    stroke: rgba(151, 255, 215, 0.92);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(151, 255, 215, 0.12));
}

.apr-node {
    fill: rgba(151, 255, 215, 0.94);
}

.frame-result-ranking {
    position: relative;
    min-height: 146px;
}

.ranking-stack {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 8px;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 280ms ease, transform 280ms ease;
}

.frame-result {
    display: grid;
    align-content: end;
}

.frame-result-stack {
    gap: 6px;
}

.result-card {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 9px;
    align-items: center;
    min-height: 48px;
    padding: 9px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.022);
    transition: border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.result-card-active {
    border-color: rgba(151, 255, 215, 0.12);
    background:
        linear-gradient(180deg, rgba(151, 255, 215, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.026);
}

.result-card-ghost {
    opacity: 0.58;
}

.strategy-card {
    display: grid;
    align-items: center;
    min-height: 62px;
    padding: 10px 11px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.022);
}

.strategy-card-bad {
    opacity: 0.72;
}

.strategy-shell {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.strategy-left {
    display: grid;
    gap: 0;
    align-content: start;
    justify-items: start;
}

.strategy-ticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    min-width: 58px;
    padding: 0 7px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(248, 244, 237, 0.92);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.strategy-body {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.strategy-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
    width: 100%;
}

.metric-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    min-width: 0;
    max-width: 100%;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 0.445rem;
    font-weight: 700;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    line-height: 1;
    color: rgba(248, 244, 237, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.metric-chip-strong {
    color: rgba(151, 255, 215, 0.92);
    border-color: rgba(151, 255, 215, 0.22);
    background: rgba(151, 255, 215, 0.1);
}

.metric-chip-bad {
    color: rgba(255, 188, 188, 0.86);
    border-color: rgba(255, 149, 149, 0.16);
    background: rgba(255, 149, 149, 0.08);
}

.strategy-route-detail {
    margin-top: 0;
    font-size: 0.56rem;
    letter-spacing: 0.02em;
    line-height: 1.25;
    color: rgba(248, 244, 237, 0.66);
    font-style: italic;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.result-rank {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    color: rgba(248, 244, 237, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
}

.result-main {
    min-width: 0;
}

.result-asset {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.result-route {
    margin-top: 2px;
    font-size: 0.54rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.46);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-meta {
    display: flex;
    gap: 5px;
    align-items: center;
}

.meta-chip {
    height: 22px;
    padding: 0 7px;
    font-size: 0.48rem;
}

.meta-score {
    color: rgba(151, 255, 215, 0.88);
    border-color: rgba(151, 255, 215, 0.18);
    background: rgba(151, 255, 215, 0.1);
}

.meta-fit {
    background: rgba(255, 255, 255, 0.055);
    color: rgba(248, 244, 237, 0.82);
}

.hover-trigger:hover .result-card {
    border-color: rgba(255, 255, 255, 0.075);
}

.hover-trigger:hover .meta-score,
.hover-trigger:hover .filter-exec,
.hover-trigger:hover .pill-accent,
.hover-trigger:hover .cap-active {
    border-color: rgba(151, 255, 215, 0.26);
}

.frame-venues.is-live .pref-pill-demo-a {
    animation: exchange-pulse-a 7.8s ease-in-out both;
}

.frame-venues.is-live .pref-pill-demo-d {
    animation: exchange-pulse-d 7.8s ease-in-out both;
}

.frame-venues.is-live .pref-pill-demo-f {
    animation: exchange-pulse-f 7.8s ease-in-out both;
}

.frame-venues.is-live .capital-track-demo::before {
    animation: capital-fill-shift 7.8s ease-in-out both;
}

.frame-venues.is-live .cap-chip-focus-a {
    animation: capital-chip-a 7.8s ease-in-out both;
}

.frame-venues.is-live .cap-chip-focus-b {
    animation: capital-chip-b 7.8s ease-in-out both;
}

.frame-venues.is-live .market-pill-a {
    animation: market-pill-a 7.8s ease-in-out both;
}

.frame-venues.is-live .market-pill-b {
    animation: market-pill-b 7.8s ease-in-out both;
}

.frame-timeframe.is-live .timeframe-pill-24 {
    animation: timeframe-pill-24 7.8s ease-in-out both;
}

.frame-timeframe.is-live .timeframe-pill-7d {
    animation: timeframe-pill-7d 7.8s ease-in-out both;
}

.frame-timeframe.is-live .timeframe-pill-30d {
    animation: timeframe-pill-30d 7.8s ease-in-out both;
}

.frame-timeframe.is-live .apr-svg-24h {
    animation: timeframe-chart-24 7.8s ease-in-out both;
}

.frame-timeframe.is-live .apr-svg-7d {
    animation: timeframe-chart-7d 7.8s ease-in-out both;
}

.frame-timeframe.is-live .apr-svg-30d {
    animation: timeframe-chart-30d 7.8s ease-in-out both;
}

.frame-ranking.is-live .ranking-pill-exec {
    animation: ranking-pill-exec 7.8s ease-in-out both;
}

.frame-ranking.is-live .ranking-pill-sqs {
    animation: ranking-pill-sqs 7.8s ease-in-out both;
}

.frame-ranking.is-live .ranking-pill-apr {
    animation: ranking-pill-apr 7.8s ease-in-out both;
}

.frame-ranking.is-live .ranking-stack-exec {
    animation: ranking-stack-exec 7.8s ease-in-out both;
}

.frame-ranking.is-live .ranking-stack-sqs {
    animation: ranking-stack-sqs 7.8s ease-in-out both;
}

.frame-ranking.is-live .ranking-stack-apr {
    animation: ranking-stack-apr 7.8s ease-in-out both;
}

.ranking-stack-exec .metric-chip:nth-child(2),
.ranking-stack-sqs .metric-chip:nth-child(3),
.ranking-stack-apr .metric-chip:nth-child(1) {
    color: rgba(151, 255, 215, 0.92);
    border-color: rgba(151, 255, 215, 0.22);
    background: rgba(151, 255, 215, 0.1);
}

.ranking-stack-exec .metric-chip-bad:nth-child(2),
.ranking-stack-sqs .metric-chip-bad:nth-child(3),
.ranking-stack-apr .metric-chip-bad:nth-child(1) {
    color: rgba(255, 188, 188, 0.86);
    border-color: rgba(255, 149, 149, 0.16);
    background: rgba(255, 149, 149, 0.08);
}

.stack-visual-upside {
    background:
        radial-gradient(circle at 50% 50%, rgba(151, 255, 215, 0.045), transparent 34%),
        rgba(255, 255, 255, 0.03);
    isolation: isolate;
}

.upside-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.42;
    mask-image: radial-gradient(circle at center, black 44%, transparent 100%);
    pointer-events: none;
}

.upside-core {
    position: relative;
    width: 224px;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carry-foundation {
    position: absolute;
    left: 50%;
    top: 56%;
    width: 174px;
    min-height: 96px;
    transform: translate(-50%, -50%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(10, 12, 14, 0.88);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 17px 13px;
    z-index: 2;
    animation: carry-foundation-breathe 7.8s ease-in-out infinite;
}

.carry-kicker {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.42);
}

.carry-title {
    margin-top: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.26rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.carry-sub {
    margin-top: 7px;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: rgba(151, 255, 215, 0.74);
}

.carry-signal {
    position: relative;
    margin-top: 12px;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.carry-signal span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 38%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(151, 255, 215, 0.08), rgba(151, 255, 215, 0.55), rgba(151, 255, 215, 0.12));
    animation: carry-flow 4.6s ease-in-out infinite;
}

.carry-signal span:nth-child(2) {
    width: 22%;
    opacity: 0.72;
    animation-delay: 0.55s;
}

.carry-signal span:nth-child(3) {
    width: 14%;
    opacity: 0.55;
    animation-delay: 1.1s;
}

.reward-layer {
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translate(-50%, 8px) scale(0.94);
    display: flex;
    gap: 8px;
    align-items: center;
    opacity: 0;
    z-index: 3;
    animation: reward-emerge 7.8s ease-in-out infinite;
}

.reward-pill {
    height: 29px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(151, 255, 215, 0.2);
    background:
        linear-gradient(180deg, rgba(151, 255, 215, 0.1), rgba(151, 255, 215, 0.05)),
        rgba(255, 255, 255, 0.03);
    color: rgba(151, 255, 215, 0.92);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(151, 255, 215, 0.06);
}

.reward-pill-soft {
    color: rgba(248, 244, 237, 0.76);
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.upside-link {
    position: absolute;
    left: 50%;
    top: 34%;
    width: 1px;
    height: 40px;
    transform: translateX(-50%) scaleY(0.2);
    transform-origin: top center;
    background: linear-gradient(180deg, rgba(151, 255, 215, 0), rgba(151, 255, 215, 0.42), rgba(151, 255, 215, 0));
    opacity: 0;
    z-index: 1;
    animation: upside-link-grow 7.8s ease-in-out infinite;
}

.upside-halo {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 214px;
    height: 128px;
    transform: translate(-50%, -50%) scale(0.96);
    border-radius: 30px;
    border: 1px solid rgba(151, 255, 215, 0.06);
    opacity: 0.38;
    z-index: 0;
    animation: upside-stack-state 7.8s ease-in-out infinite;
}

.hover-trigger:hover .carry-foundation {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hover-trigger:hover .reward-pill {
    border-color: rgba(151, 255, 215, 0.26);
    box-shadow: 0 0 24px rgba(151, 255, 215, 0.08);
}

.hover-trigger:hover .upside-link {
    opacity: 0.72;
}

.hover-trigger:hover .upside-halo {
    border-color: rgba(151, 255, 215, 0.1);
    opacity: 0.54;
}

.stack-visual-airdrop-editorial {
    background:
        linear-gradient(180deg, rgba(36, 38, 42, 0.95), rgba(18, 20, 23, 0.94)),
        rgba(21, 23, 26, 0.94);
    isolation: isolate;
}

[data-animate-on-view]:not(.is-in-view) .drop,
[data-animate-on-view]:not(.is-in-view) .ticker-track-editorial,
[data-animate-on-view]:not(.is-in-view) .ticker-logo-frame img {
    animation: none !important;
}

.airdrop-fall-layer {
    display: none;
}

.editorial-loop {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    pointer-events: auto;
}

.ticker-row,
.ticker-row-editorial {
    width: 100%;
    overflow: hidden;
    padding: 0 22px;
}

.ticker-track,
.ticker-track-editorial {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: 100%;
}

.ticker-track-editorial {
    position: relative;
    animation: editorial-scroll-flat 20s linear infinite;
    transform: translate3d(0, 0, 0);
}

.ticker-track-rail {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ticker-zigzag {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ticker-zigzag path {
    fill: none;
    stroke: rgba(151, 255, 215, 0.14);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: none;
}

.ticker-segment {
    display: flex;
    align-items: stretch;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.ticker-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 448px;
    max-width: 448px;
    min-height: 158px;
    padding: 19px 21px 17px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
        rgba(10, 12, 15, 0.88);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ticker-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.ticker-card-focus {
    border-color: rgba(151, 255, 215, 0.14);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(151, 255, 215, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.ticker-quote {
    display: block;
    color: rgba(248, 244, 237, 0.94);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.36;
    letter-spacing: -0.01em;
    overflow: hidden;
    max-height: 4.1em;
}

.ticker-source {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ticker-meta {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    min-height: 58px;
    padding-top: 16px;
}

.ticker-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 140px;
    height: 52px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.ticker-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.96) contrast(1.04);
    animation: none;
}

.ticker-source-name {
    display: none;
}

.ticker-author {
    position: absolute;
    right: 0;
    bottom: 2px;
    color: rgba(203, 189, 169, 0.7);
    font-size: 0.62rem;
    font-style: italic;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.ticker-card-focus .ticker-logo-frame img {
    animation: none;
}

.airdrop-core,
.airdrop-coin-shell,
.airdrop-coin,
.coin-logo-slot {
    display: none;
}

.hover-trigger:hover .ticker-card {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -1px 0 rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.ticker-card:hover,
.ticker-card:focus-visible {
    border-color: rgba(151, 255, 215, 0.18);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(151, 255, 215, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    outline: none;
}

.hover-trigger:hover .ticker-logo-frame img {
    filter: saturate(0.98) contrast(1.05);
}

.hover-trigger:hover .ticker-zigzag path {
    stroke: rgba(151, 255, 215, 0.24);
}

/* =========================================
   COMMUNITY ORBIT SECTION
   Replaces old 3-column community grid
   ========================================= */

.community-orbit-section {
    position: relative;
    padding: 56px 0 2px;
}

.community-orbit-shell {
    width: min(1460px, calc(100vw - 24px));
    margin: 0 auto;
}

.community-orbit-header {
    max-width: 760px;
    margin: 0 auto 2px;
    text-align: center;
}

.community-orbit-header h2 {
    margin: 8px 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.community-orbit-header p {
    margin: 0 auto;
    max-width: 680px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.community-orbit-section .community-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.68);
}

.community-orbit-stage {
    position: relative;
    height: 450px;
    perspective: 1600px;
    perspective-origin: 50% 50%;
    overflow: hidden;
    user-select: none;
    touch-action: pan-y;
}

.community-orbit-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.community-orbit-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(460px, 34vw);
    min-height: 270px;
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(7, 9, 11, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(26px);
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    transition:
        transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 1100ms cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    cursor: default;
    pointer-events: none;
}

.community-orbit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02));
    pointer-events: none;
    opacity: 0.92;
}

.community-orbit-card::after {
    content: "";
    position: absolute;
    inset: auto 20px 0 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.community-orbit-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.community-orbit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(143, 199, 177, 0.2);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(143, 199, 177, 0.12), rgba(143, 199, 177, 0.04)),
        rgba(9, 12, 13, 0.8);
    color: var(--accent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 0 0 auto;
}

.community-orbit-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.community-orbit-card h3 {
    margin: 0;
    font-size: 1.45rem;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.community-orbit-card p {
    margin: 14px 0 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.community-orbit-card.is-center {
    z-index: 30;
    opacity: 1;
    filter: blur(0px) saturate(1.05);
    box-shadow:
        0 40px 110px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    border-color: rgba(255, 255, 255, 0.18);
    cursor: default;
    pointer-events: none;
}

.community-orbit-card.is-left,
.community-orbit-card.is-right {
    z-index: 20;
    opacity: 0.96;
    filter: blur(0.05px) saturate(0.96);
    cursor: pointer;
    pointer-events: auto;
}

.community-orbit-card.is-hidden-left,
.community-orbit-card.is-hidden-right {
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    filter: blur(1.2px) saturate(0.72);
}

.community-orbit-stage.is-animating .community-orbit-card {
    transition-duration: 1050ms;
}

.community-orbit-card.is-left:hover,
.community-orbit-card.is-right:hover {
    border-color: rgba(255, 255, 255, 0.19);
}

.faq-section {
    position: relative;
    padding: 2px 0 6px;
}

.faq-shell {
    width: min(1320px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 16px 22px 10px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(36, 38, 42, 0.95), rgba(18, 20, 23, 0.94)),
        rgba(21, 23, 26, 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: none;
}

.faq-header {
    margin: 0 0 10px;
    text-align: center;
}

.faq-header h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.faq-list {
    display: grid;
    gap: 8px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
        rgba(9, 11, 14, 0.76);
    overflow: hidden;
    transition:
        border-color 120ms ease,
        background 120ms ease,
        box-shadow 120ms ease;
}

.faq-item.is-open {
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
        rgba(10, 12, 16, 0.82);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: transparent;
    border: 0;
    color: var(--text-primary);
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.faq-trigger span:first-child {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.25px;
    background: rgba(248, 244, 237, 0.84);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 120ms ease, opacity 120ms ease;
}

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

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

.faq-panel {
    display: block;
}

.faq-panel[hidden] {
    display: none !important;
}

.faq-item.is-open .faq-panel {
    display: block;
}

.faq-panel-inner {
    overflow: hidden;
}

.faq-panel p {
    margin: 0;
    padding: 0 16px 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.58;
    transform: none;
    opacity: 1;
}

.faq-item.is-open .faq-panel p {
    transform: none;
    opacity: 1;
}

@media (max-width: 900px) {
    .faq-shell {
        width: min(100%, calc(100vw - 28px));
        padding: 18px 16px 8px;
    }

    .faq-trigger {
        padding: 13px 14px;
    }

    .faq-panel p {
        padding: 0 14px 12px;
        font-size: 0.86rem;
    }
}

@media (max-width: 720px) {
    .faq-section {
        padding-top: 12px;
    }

    .faq-shell {
        width: min(100%, calc(100vw - 20px));
        padding: 16px 12px 8px;
        border-radius: 24px;
    }

    .faq-header h2 {
        font-size: clamp(1.3rem, 6.4vw, 1.8rem);
    }

    .faq-trigger span:first-child {
        font-size: 0.86rem;
    }

    .faq-panel p {
        font-size: 0.82rem;
        line-height: 1.5;
    }
}

@media (max-width: 1180px) {
    .community-orbit-shell {
        width: min(1180px, calc(100vw - 24px));
    }

    .community-orbit-stage {
        height: 430px;
        perspective: 1350px;
    }

    .community-orbit-card {
        width: min(400px, 44vw);
    }
}

@media (max-width: 900px) {
    .community-orbit-stage {
        height: 380px;
        perspective: 1150px;
    }

    .community-orbit-card {
        width: min(340px, 70vw);
        min-height: 240px;
        border-radius: 24px;
        padding: 22px;
    }

    .community-orbit-header {
        margin-bottom: 26px;
    }
}

@media (max-width: 720px) {
    .community-orbit-section {
        padding-top: 36px;
    }

    .community-orbit-shell {
        width: min(100%, calc(100vw - 20px));
    }

    .community-orbit-stage {
        height: 340px;
        overflow: visible;
    }

    .community-orbit-card {
        width: min(300px, 84vw);
        min-height: 220px;
        padding: 18px;
    }

    .community-orbit-card-head {
        gap: 12px;
    }

    .community-orbit-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .community-orbit-icon svg {
        width: 16px;
        height: 16px;
    }

    .community-orbit-header h2 {
        letter-spacing: -0.05em;
    }

    .community-orbit-header p {
        font-size: 0.96rem;
        line-height: 1.65;
    }
}

.monitor-section {
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(10, 12, 14, 0.72);
    box-shadow: 0 28px 80px var(--shadow);
    backdrop-filter: blur(18px);
}

.monitor-header,
.app-card-header,
.footer-top,
.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.monitor-note,
.app-card-note {
    max-width: 520px;
    margin: 0;
    text-align: right;
}

.monitor-tabs {
    flex-wrap: wrap;
    margin: 28px 0 22px;
}

.monitor-tab {
    min-height: 42px;
    border-radius: var(--radius-sm);
}

.monitor-tab-active {
    color: #060709;
    border-color: transparent;
    background: linear-gradient(135deg, rgba(151, 255, 215, 0.92), rgba(255, 156, 107, 0.88));
}

.app-card {
    padding: 20px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.app-card-header h3 {
    margin-top: 10px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    color: #1a1a1a;
}

.app-card-kicker {
    color: #2962ff;
}

.app-card-note {
    color: #6b6b6b;
}

.balanced-v2-root {
    min-height: 460px;
}

#dnInterfaceV2Container,
#iv2GlobalModal {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f7f7;
    --bg-tertiary: #e8e8e8;
    --bg-hover: #f0f0f0;
    --text-primary: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-tertiary: #9b9b9b;
    --text-muted: #9b9b9b;
    --accent: #2962ff;
    --accent-hover: #1c4ed8;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.08);
    --green: #34c759;
    --red: #ff3b30;
}

#dnInterfaceV2Container {
    background: #ffffff;
    border-radius: 18px;
}

#iv2GlobalModal {
    z-index: 99999;
}

.iv2-dashboard,
.iv2-modal-content,
.iv2-settings-card,
.iv2-card,
.iv2-sort-select,
.iv2-fee-input,
.iv2-apr-display {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.iv2-card-metrics,
.iv2-dd-bar-value,
.iv2-dd-bar-weight,
.iv2-dd-modes-table td,
.status-panel code {
    font-family: "IBM Plex Mono", monospace;
}

.iv2-modal-content {
    width: min(90vw, 1300px);
    max-width: 1300px;
    height: min(85vh, 920px);
    background: #ffffff;
}

#iv2GlobalModalBody {
    padding: 2rem 2rem 1rem 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.iv2-modal-header {
    gap: 1rem;
}

.iv2-modal-timeframes,
.iv2-dd-tabs {
    flex-wrap: wrap;
}

.iv2-inf-tooltip {
    width: min(500px, calc(100vw - 40px));
}

.site-footer {
    position: relative;
    width: 100vw;
    margin: 40px 0 0 calc(50% - 50vw);
    padding: 12px 0 10px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    background: #050509;
    box-shadow: none;
    backdrop-filter: none;
}

.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.5;
}

.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    width: min(600px, 72vw);
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(80px);
    transform: translateX(-50%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.footer-inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: start;
    gap: clamp(28px, 6vw, 82px);
    margin-bottom: 22px;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.footer-logo img {
    width: 78px;
    height: auto;
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}


.footer-logo span span {
    color: #b7b7b7;
    font-weight: 300;
}

.footer-brand p {
    max-width: 330px;
    margin: 12px 0 0;
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-logo {
    gap: 10px;
}

.footer-logo img {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
    opacity: 0.92;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: start;
    margin-top: 13px;
    gap: clamp(24px, 5vw, 58px);
    align-items: start;
}

.footer-link-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-link-column h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-link {
    display: inline-flex;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #9ca3af;
    font-size: 0.92rem;
    line-height: 1.4;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-link:hover {
    color: #d1d5db;
}

.footer-link.is-disabled-link {
    pointer-events: none;
    cursor: default;
}

.footer-link.is-disabled-link:hover {
    color: #9ca3af;
    transform: none;
}

.footer-link-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-link-meta,
.footer-bottom,
.back-to-top {
    color: var(--text-muted);
}

.footer-bottom {
    margin-top: 0;
    min-height: 24px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    color: #6b7280;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.feedback-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(320px, 100%);
    min-height: 36px;
    margin-top: 16px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: #060709;
    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-primary), #d9d1c4);
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
    cursor: pointer;
}

.support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(320px, 100%);
    min-height: 36px;
    margin-top: 16px;
    padding: 0 18px;
    border: 1px solid rgba(255, 248, 236, 0.2);
    border-radius: var(--radius-sm);
    color: #f8f3eb;
    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(255, 248, 236, 0.14), rgba(255, 255, 255, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
    cursor: pointer;
}

.feedback-button:hover {
    color: #060709;
    background: linear-gradient(135deg, #fffaf2, #e3dacd);
    transform: translateY(-2px);
}

.support-button:hover {
    border-color: rgba(255, 248, 236, 0.34);
    background: linear-gradient(135deg, rgba(255, 248, 236, 0.2), rgba(255, 255, 255, 0.08));
    transform: translateY(-2px);
}

.feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.feedback-modal[hidden] {
    display: none;
}

.feedback-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 6, 10, 0.72);
    backdrop-filter: blur(12px);
}

.feedback-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(520px, calc(100vw - 32px));
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 19, 24, 0.96), rgba(8, 10, 14, 0.94));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.donation-modal-dialog {
    width: min(620px, calc(100vw - 32px));
}

.exchange-modal-dialog {
    width: min(580px, calc(100vw - 32px));
}

.feedback-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.feedback-modal-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    border-radius: 999px;
    background: rgba(255, 248, 236, 0.82);
}

.feedback-modal-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.feedback-modal-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.feedback-modal-close:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.footer-feedback-form {
    display: grid;
    gap: 10px;
}

.donation-panel {
    display: grid;
    gap: 12px;
}

.exchange-modal-panel {
    display: grid;
    gap: 14px;
}

.footer-feedback-kicker {
    margin: 0;
    color: rgba(255, 248, 236, 0.72);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-feedback-title {
    margin: 0 0 10px;
    color: var(--text-primary);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    line-height: 1.05;
}

.donation-copy {
    margin: -4px 0 0;
    color: rgba(235, 239, 246, 0.84);
    font-size: 0.98rem;
    line-height: 1.75;
}

.exchange-modal-copy {
    margin: -2px 0 0;
    color: rgba(235, 239, 246, 0.84);
    font-size: 0.98rem;
    line-height: 1.75;
}

.donation-note {
    margin: 0;
    color: rgba(255, 248, 236, 0.72);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.donation-address-list {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.donation-address-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.exchange-modal-card {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.exchange-modal-head {
    display: grid;
    gap: 4px;
}

.exchange-modal-label {
    color: #f8f3eb;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.donation-address-head {
    display: grid;
    gap: 4px;
}

.donation-address-label {
    color: #f8f3eb;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.donation-address-network {
    color: rgba(156, 163, 175, 0.92);
    font-size: 0.84rem;
    font-style: italic;
    line-height: 1.5;
}

.donation-address-value {
    display: block;
    overflow-wrap: anywhere;
    border-radius: 14px;
    padding: 12px 14px;
    color: #f5efe6;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    background: rgba(7, 10, 14, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.exchange-modal-value {
    display: block;
    overflow-wrap: anywhere;
    border-radius: 14px;
    padding: 12px 14px;
    color: #f5efe6;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    white-space: pre-wrap;
    background: rgba(7, 10, 14, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.donation-copy-button {
    min-width: 100%;
}

.exchange-modal-actions {
    display: grid;
    gap: 10px;
}

.exchange-modal-card[data-exchange-code-card][hidden] {
    display: none;
}

.exchange-modal-open,
.exchange-modal-copy-button {
    min-width: 100%;
}

.exchange-modal-open[hidden] {
    display: none;
}

.exchange-modal-status {
    min-height: 1.2em;
    text-align: center;
}

.donation-status {
    min-height: 1.2em;
    margin-top: 2px;
    text-align: center;
}

.footer-link-button {
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.footer-feedback-label {
    color: rgba(235, 239, 246, 0.9);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-feedback-textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--text-primary);
    font: inherit;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.footer-feedback-textarea::placeholder {
    color: rgba(226, 232, 240, 0.42);
    font-style: italic;
}

.footer-feedback-textarea:focus {
    outline: none;
    border-color: rgba(255, 248, 236, 0.42);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(255, 248, 236, 0.08);
}

.footer-feedback-textarea {
    min-height: 112px;
    resize: vertical;
}

.footer-feedback-actions {
    display: grid;
    gap: 10px;
    margin-top: 8px;
    justify-items: center;
}

.footer-feedback-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(320px, 100%);
    min-height: 36px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0 18px;
    color: #060709;
    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-primary), #d9d1c4);
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.footer-feedback-submit:hover:not(:disabled) {
    color: #060709;
    background: linear-gradient(135deg, #fffaf2, #e3dacd);
    transform: translateY(-2px);
}

.footer-feedback-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.footer-feedback-status {
    margin: 0;
    color: var(--text-muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.footer-feedback-status:empty {
    display: none;
}

.footer-feedback-status.is-success {
    color: #d8f3dc;
}

.footer-feedback-status.is-error {
    color: #ffb4a2;
}

@media (max-width: 560px) {
    .exchanges-hero {
        padding-right: 0;
    }

    .exchange-filters {
        position: static;
        justify-content: flex-start;
        max-width: none;
    }

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

    .exchange-card {
        min-height: 250px;
        padding: 18px;
    }

    .exchange-card-top {
        align-items: center;
    }
}

@keyframes exchange-points-sheen {
    0% {
        transform: translateX(-140%);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    55% {
        transform: translateX(140%);
        opacity: 1;
    }
    100% {
        transform: translateX(140%);
        opacity: 0;
    }
}

@keyframes exchange-live-dot {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.82;
    }
    50% {
        transform: scale(1.28);
        opacity: 1;
    }
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
}

@keyframes hero-rise {
    from {
        transform: translateY(105%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.35);
        opacity: 1;
    }
}

@keyframes scan-line {
    0% {
        transform: translateY(-40%);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateY(240%);
        opacity: 0;
    }
}

@keyframes code-scan {
    0%,
    100% {
        transform: translateX(-8%);
        opacity: 0.7;
    }
    50% {
        transform: translateX(8%);
        opacity: 1;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes core-breathe {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.018);
    }
}

@keyframes ring-breathe {
    0%,
    100% {
        opacity: 0.48;
        transform: scale(1);
    }
    50% {
        opacity: 0.72;
        transform: scale(1.02);
    }
}

@keyframes node-idle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1.5px);
    }
}

@keyframes move-in-1 {
    0% {
        opacity: 0;
        transform: scaleX(0.72) scaleY(0.92);
        offset-distance: 0%;
        offset-path: path("M98 52 C 160 52, 182 74, 198 112");
    }
    12% {
        opacity: 0.95;
        transform: scaleX(1.18) scaleY(1);
    }
    52% {
        opacity: 1;
        transform: scaleX(1.42) scaleY(1.04);
    }
    72% {
        opacity: 0.95;
        transform: scaleX(1.14) scaleY(0.98);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.78) scaleY(0.9);
        offset-distance: 100%;
        offset-path: path("M98 52 C 160 52, 182 74, 198 112");
    }
}

@keyframes move-in-2 {
    0% {
        opacity: 0;
        transform: scaleX(0.72) scaleY(0.92);
        offset-distance: 0%;
        offset-path: path("M116 92 C 166 96, 184 104, 198 124");
    }
    14% {
        opacity: 0.85;
        transform: scaleX(1.16) scaleY(1);
    }
    54% {
        opacity: 0.9;
        transform: scaleX(1.36) scaleY(1.03);
    }
    74% {
        opacity: 0.85;
        transform: scaleX(1.08) scaleY(0.98);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.78) scaleY(0.9);
        offset-distance: 100%;
        offset-path: path("M116 92 C 166 96, 184 104, 198 124");
    }
}

@keyframes move-in-3 {
    0% {
        opacity: 0;
        transform: scaleX(0.72) scaleY(0.92);
        offset-distance: 0%;
        offset-path: path("M112 154 C 166 154, 184 146, 198 136");
    }
    10% {
        opacity: 0.85;
        transform: scaleX(1.14) scaleY(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1.32) scaleY(1.03);
    }
    78% {
        opacity: 0.85;
        transform: scaleX(1.08) scaleY(0.98);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.78) scaleY(0.9);
        offset-distance: 100%;
        offset-path: path("M112 154 C 166 154, 184 146, 198 136");
    }
}

@keyframes move-in-4 {
    0% {
        opacity: 0;
        transform: scaleX(0.72) scaleY(0.92);
        offset-distance: 0%;
        offset-path: path("M94 204 C 158 204, 180 176, 198 148");
    }
    12% {
        opacity: 0.95;
        transform: scaleX(1.18) scaleY(1);
    }
    52% {
        opacity: 1;
        transform: scaleX(1.42) scaleY(1.04);
    }
    76% {
        opacity: 0.95;
        transform: scaleX(1.14) scaleY(0.98);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.78) scaleY(0.9);
        offset-distance: 100%;
        offset-path: path("M94 204 C 158 204, 180 176, 198 148");
    }
}

@keyframes move-out-1 {
    0%,
    18% {
        opacity: 0;
        transform: scaleX(0.72) scaleY(0.92);
        offset-distance: 0%;
        offset-path: path("M322 126 C 346 110, 372 92, 398 76");
    }
    28% {
        opacity: 0.7;
        transform: scaleX(1.08) scaleY(1);
    }
    58% {
        opacity: 0.84;
        transform: scaleX(1.26) scaleY(1.03);
    }
    78% {
        opacity: 0.7;
        transform: scaleX(1.02) scaleY(0.98);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.78) scaleY(0.9);
        offset-distance: 100%;
        offset-path: path("M322 126 C 346 110, 372 92, 398 76");
    }
}

@keyframes move-out-2 {
    0%,
    24% {
        opacity: 0;
        transform: scaleX(0.72) scaleY(0.92);
        offset-distance: 0%;
        offset-path: path("M322 130 C 350 130, 378 130, 406 130");
    }
    34% {
        opacity: 0.68;
        transform: scaleX(1.08) scaleY(1);
    }
    58% {
        opacity: 0.82;
        transform: scaleX(1.22) scaleY(1.02);
    }
    80% {
        opacity: 0.68;
        transform: scaleX(1.02) scaleY(0.98);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.78) scaleY(0.9);
        offset-distance: 100%;
        offset-path: path("M322 130 C 350 130, 378 130, 406 130");
    }
}

@keyframes move-out-3 {
    0%,
    22% {
        opacity: 0;
        transform: scaleX(0.72) scaleY(0.92);
        offset-distance: 0%;
        offset-path: path("M322 136 C 346 152, 372 170, 398 186");
    }
    32% {
        opacity: 0.68;
        transform: scaleX(1.08) scaleY(1);
    }
    58% {
        opacity: 0.82;
        transform: scaleX(1.24) scaleY(1.02);
    }
    80% {
        opacity: 0.68;
        transform: scaleX(1.02) scaleY(0.98);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.78) scaleY(0.9);
        offset-distance: 100%;
        offset-path: path("M322 136 C 346 152, 372 170, 398 186");
    }
}

@keyframes capital-fill-shift {
    0%,
    56% {
        width: 0%;
    }
    68%,
    100% {
        width: 56%;
    }
}

@keyframes exchange-pulse-a {
    0%,
    100% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.94);
        border-color: rgba(151, 255, 215, 0.24);
        background: rgba(151, 255, 215, 0.12);
        box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.05);
    }
}

@keyframes exchange-pulse-d {
    0%,
    32% {
        opacity: 0.44;
        color: rgba(248, 244, 237, 0.64);
        border-color: rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.028);
    }
    36%,
    100% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.22);
        background: rgba(151, 255, 215, 0.1);
        box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.05);
    }
}

@keyframes exchange-pulse-f {
    0%,
    50% {
        opacity: 0.44;
        color: rgba(248, 244, 237, 0.64);
        border-color: rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.028);
    }
    54%,
    100% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.22);
        background: rgba(151, 255, 215, 0.1);
        box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.05);
    }
}

@keyframes capital-chip-a {
    0%,
    56% {
        opacity: 0.52;
        color: rgba(248, 244, 237, 0.68);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
    }
    100% {
        opacity: 0.52;
        color: rgba(248, 244, 237, 0.68);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
    }
}

@keyframes capital-chip-b {
    0%,
    56% {
        opacity: 0.52;
        color: rgba(248, 244, 237, 0.68);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
    }
    68%,
    100% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.95);
        border-color: rgba(151, 255, 215, 0.22);
        background: rgba(151, 255, 215, 0.12);
        box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.04);
    }
}

@keyframes market-pill-a {
    0%,
    84% {
        opacity: 0.44;
        color: rgba(248, 244, 237, 0.64);
        border-color: rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.028);
        box-shadow: none;
    }
    92% {
        opacity: 0.68;
        color: rgba(210, 234, 225, 0.8);
        border-color: rgba(151, 255, 215, 0.12);
        background: rgba(151, 255, 215, 0.055);
        box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.02);
    }
    100% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.22);
        background: rgba(151, 255, 215, 0.1);
        box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.04);
    }
}

@keyframes market-pill-b {
    0%,
    90% {
        opacity: 0.44;
        color: rgba(248, 244, 237, 0.64);
        border-color: rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.028);
        box-shadow: none;
    }
    96% {
        opacity: 0.68;
        color: rgba(210, 234, 225, 0.8);
        border-color: rgba(151, 255, 215, 0.12);
        background: rgba(151, 255, 215, 0.055);
        box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.02);
    }
    100% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.22);
        background: rgba(151, 255, 215, 0.1);
        box-shadow: 0 0 0 1px rgba(151, 255, 215, 0.04);
    }
}

@keyframes result-top-shift {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes timeframe-pill-24 {
    0%,
    28% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.2);
        background: rgba(151, 255, 215, 0.11);
    }
    36%,
    100% {
        opacity: 0.52;
        color: rgba(248, 244, 237, 0.72);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
    }
}

@keyframes timeframe-pill-7d {
    0%,
    28% {
        opacity: 0.52;
        color: rgba(248, 244, 237, 0.72);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
    }
    36%,
    62% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.2);
        background: rgba(151, 255, 215, 0.11);
    }
    72%,
    100% {
        opacity: 0.52;
        color: rgba(248, 244, 237, 0.72);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
    }
}

@keyframes timeframe-pill-30d {
    0%,
    64% {
        opacity: 0.52;
        color: rgba(248, 244, 237, 0.72);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
    }
    72%,
    100% {
        opacity: 1;
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.2);
        background: rgba(151, 255, 215, 0.11);
    }
}

@keyframes timeframe-chart-24 {
    0%,
    28% {
        opacity: 1;
        transform: translateX(0);
    }
    36%,
    100% {
        opacity: 0;
        transform: translateX(-8px);
    }
}

@keyframes timeframe-chart-7d {
    0%,
    28% {
        opacity: 0;
        transform: translateX(-8px);
    }
    36%,
    62% {
        opacity: 1;
        transform: translateX(0);
    }
    72%,
    100% {
        opacity: 0;
        transform: translateX(-8px);
    }
}

@keyframes timeframe-chart-30d {
    0%,
    64% {
        opacity: 0;
        transform: translateX(-8px);
    }
    72%,
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ranking-pill-exec {
    0%,
    34% {
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.2);
        background: rgba(151, 255, 215, 0.11);
    }
    44%,
    100% {
        color: rgba(248, 244, 237, 0.74);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
    }
}

@keyframes ranking-pill-sqs {
    0%,
    34% {
        color: rgba(248, 244, 237, 0.74);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
    }
    44%,
    72% {
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.2);
        background: rgba(151, 255, 215, 0.11);
    }
    80%,
    100% {
        color: rgba(248, 244, 237, 0.74);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
    }
}

@keyframes ranking-pill-apr {
    0%,
    74% {
        color: rgba(248, 244, 237, 0.74);
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
    }
    82%,
    100% {
        color: rgba(151, 255, 215, 0.92);
        border-color: rgba(151, 255, 215, 0.2);
        background: rgba(151, 255, 215, 0.11);
    }
}

@keyframes ranking-stack-exec {
    0%,
    34% {
        opacity: 1;
        transform: translateY(0);
    }
    44%,
    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

@keyframes ranking-stack-sqs {
    0%,
    34% {
        opacity: 0;
        transform: translateY(6px);
    }
    44%,
    72% {
        opacity: 1;
        transform: translateY(0);
    }
    80%,
    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

@keyframes ranking-stack-apr {
    0%,
    74% {
        opacity: 0;
        transform: translateY(6px);
    }
    82%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes carry-foundation-breathe {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 18px 44px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    18% {
        transform: translate(-50%, -50%) scale(1.01);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.012);
        box-shadow:
            0 20px 48px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(151, 255, 215, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
}

@keyframes carry-flow {
    0%,
    100% {
        transform: translateX(-18%);
        opacity: 0.75;
    }
    50% {
        transform: translateX(138%);
        opacity: 1;
    }
}

@keyframes reward-emerge {
    0%,
    18% {
        opacity: 0;
        transform: translate(-50%, 10px) scale(0.94);
    }
    30% {
        opacity: 0.9;
        transform: translate(-50%, 0) scale(1);
    }
    68% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
    82%,
    100% {
        opacity: 0;
        transform: translate(-50%, 6px) scale(0.96);
    }
}

@keyframes upside-link-grow {
    0%,
    22% {
        opacity: 0;
        transform: translateX(-50%) scaleY(0.2);
    }
    34% {
        opacity: 0.75;
        transform: translateX(-50%) scaleY(1);
    }
    68% {
        opacity: 0.75;
        transform: translateX(-50%) scaleY(1);
    }
    84%,
    100% {
        opacity: 0;
        transform: translateX(-50%) scaleY(0.3);
    }
}

@keyframes upside-stack-state {
    0%,
    20% {
        opacity: 0.18;
        transform: translate(-50%, -50%) scale(0.94);
    }
    36% {
        opacity: 0.42;
        transform: translate(-50%, -50%) scale(1);
    }
    64% {
        opacity: 0.52;
        transform: translate(-50%, -50%) scale(1.015);
    }
    84%,
    100% {
        opacity: 0.16;
        transform: translate(-50%, -50%) scale(0.96);
    }
}

@keyframes editorial-scroll-flat {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 9px)); }
}

@keyframes editorial-drop-fall {
    0% {
        transform: translateY(-10%) scale(var(--drop-scale, 1));
        opacity: 0;
    }
    10% {
        opacity: 0.35;
    }
    85% {
        opacity: 0.28;
    }
    100% {
        transform: translateY(760%) scale(var(--drop-scale, 1));
        opacity: 0;
    }
}

@keyframes editorial-logo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes editorial-logo-bloom {
    0%,
    100% {
        filter: saturate(0.96) contrast(1.04);
    }
    45%,
    60% {
        filter: brightness(1.12) saturate(1.04) contrast(1.06);
    }
}

@keyframes editorial-coin-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .community-orbit-card {
        transition: none;
    }

    .faq-item,
    .faq-panel,
    .faq-panel p,
    .faq-icon::before,
    .faq-icon::after {
        transition: none;
    }

    .network-background {
        opacity: 0.4;
    }

    .exchange-node,
    .output-node,
    .flow-core-balanced,
    .core-rings,
    .pulse,
    .capital-thumb,
    .graph-line,
    .rank-bar,
    .result-card-top,
    .ticker-track-editorial,
    .drop,
    .ticker-logo-frame img {
        animation: none !important;
    }

    .prefs-track {
        transition: none !important;
    }
}

@media (max-width: 1180px) {
    .topbar {
        border-radius: 20px;
    }

    .nav-cluster {
        gap: 14px;
    }

    .nav-rail {
        gap: 2px;
        padding: 6px;
    }

    .hero-section,
    .section-split,
    .stack-card,
    .footer-top,
    .monitor-header,
    .app-card-header {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-cluster {
        justify-content: space-between;
    }

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

    .hero-section {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-copy {
        position: relative;
        top: auto;
        transform: none;
        opacity: 1;
        transition: none;
    }

    .hero-title {
        filter: none;
    }

    #overview.section-block,
    #overview.section-band {
        margin-top: 12px;
        padding-top: 18px;
    }

    #overview.section-block::before,
    #overview.section-band::before {
        content: none;
    }

    .hero-bottom-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .section-heading-sticky {
        position: static;
    }

    .monitor-note,
    .app-card-note {
        max-width: none;
        text-align: left;
    }

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

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

    .community-orbit-shell {
        width: min(980px, calc(100vw - 32px));
    }

    .community-orbit-stage {
        height: 390px;
    }

    .community-orbit-card {
        width: min(380px, 52vw);
    }

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

    .stack-card-fullbleed {
        padding-top: 0;
    }
}

@media (max-width: 920px) {
    .site-shell {
        width: min(calc(100% - 18px), var(--max-width));
        padding-top: 74px;
    }

    .site-header {
        top: 0;
    }

    .topbar {
        position: relative;
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 63px;
        padding: 0 14px;
        gap: 12px;
    }

    .brand-anchor {
        gap: 12px;
    }

    .brand-logo {
        width: 58px;
        height: 58px;
    }

    .brand-name {
        font-size: 1.08rem;
        letter-spacing: -0.04em;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-cluster {
        display: none;
        width: 100%;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 14px 0 16px;
    }

    .nav-cluster.is-open {
        display: flex;
    }

    .nav-rail {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 14px;
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 0;
        font-size: 1rem;
        border-radius: 0;
        background: transparent;
        border: 0;
    }

    .nav-utility {
        width: 100%;
        justify-content: stretch;
        gap: 10px;
        padding-top: 4px;
    }

    .nav-icon-button {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .profile-pill {
        display: flex;
        flex: 1 1 auto;
        justify-content: flex-start;
    }

    .button,
    .button-secondary,
    .button-primary,
    .button-ghost {
        width: 100%;
    }

    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(3.2rem, 14vw, 6rem);
    }

    .hero-floating-grid,
    .footer-links-grid,
    .route-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid.route-grid {
        grid-template-columns: 1fr;
    }

    .micro-panel-wide {
        grid-column: auto;
    }

    .signal-screen {
        min-height: 300px;
    }

    .signal-node-left,
    .signal-node-right {
        top: 14%;
    }

    .signal-node-left {
        left: 4%;
    }

    .signal-node-right {
        right: 4%;
    }

    .signal-node-left::after,
    .signal-node-right::after {
        width: 52px;
    }

    .monitor-section,
    .hero-copy,
    .hero-visual,
    .feature-card,
    .stack-card {
        border-radius: 24px;
    }

    .section-band-inner,
    .stack-card-fullbleed .stack-copy {
        width: min(calc(100% - 18px), var(--max-width));
    }

    .stack-card-fullbleed {
        border-radius: 0;
    }

    .stack-card-fullbleed .stack-visual {
        min-height: 250px;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 62px;
    }

    .hero-copy,
    .hero-visual,
    .feature-card,
    .stack-card,
    .monitor-section {
        padding: 18px;
    }

    .site-footer {
        margin-top: 34px;
        padding: 26px 0 12px;
    }

    .footer-inner {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .footer-links-grid {
        gap: 26px;
    }

    .feedback-button {
        width: 100%;
        min-width: 0;
    }

    .hero-copy {
        min-height: calc(100vh - 120px);
        justify-content: center;
        gap: 24px;
    }

    .brand-name {
        white-space: normal;
    }

    .hero-text,
    .section-heading p,
    .stack-copy p,
    .feature-card p,
    .footer-brand p,
    .app-card-note,
    .monitor-note,
    .micro-panel p {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .stat-card {
        min-width: 100%;
    }

    .hero-bottom-row {
        margin-top: 28px;
    }

    .signal-screen {
        min-height: 280px;
    }

    .signal-node {
        min-width: 92px;
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.68rem;
    }

    .signal-node-left,
    .signal-node-right,
    .signal-node-bottom {
        left: auto;
        right: auto;
    }

    .signal-node-left {
        top: 12%;
        left: 6%;
    }

    .signal-node-right {
        top: 12%;
        right: 6%;
    }

    .signal-node-bottom {
        bottom: 8%;
    }

    .signal-node-left::after,
    .signal-node-right::after,
    .signal-node-bottom::before {
        display: none;
    }

    .stack-card {
        padding: 18px;
    }

    .section-band {
        padding-bottom: 30px;
    }

    .stack-card-fullbleed {
        padding: 0;
    }

    .stack-card-fullbleed .stack-visual {
        min-height: 145px;
    }

    .stack-visual {
        min-height: 180px;
    }

    .prefs-shell {
        padding: 11px 10px 10px;
    }

    .prefs-frame {
        min-height: 168px;
    }

    .result-card {
        grid-template-columns: 28px 1fr;
        gap: 8px;
    }

    .result-meta {
        grid-column: 2;
        margin-top: 4px;
        flex-wrap: wrap;
    }

    .result-route {
        white-space: normal;
    }

    .frame-title {
        max-width: calc(100% - 40px);
    }

    .exchange-node {
        min-width: 52px;
        height: 25px;
        padding: 0 8px;
        font-size: 0.5rem;
    }

    .output-node {
        min-width: 68px;
        height: 31px;
        padding: 0 10px;
        font-size: 0.56rem;
    }

    .flow-core-balanced {
        width: 96px;
        height: 74px;
        border-radius: 20px;
    }

    .upside-core {
        width: 204px;
        height: 140px;
    }

    .carry-foundation {
        width: 160px;
        min-height: 90px;
        padding: 14px 15px 12px;
        border-radius: 22px;
    }

    .carry-title {
        font-size: 1.14rem;
    }

    .carry-sub {
        font-size: 0.52rem;
    }

    .reward-pill {
        height: 27px;
        padding: 0 10px;
        font-size: 0.52rem;
    }

    .upside-halo {
        width: 196px;
        height: 120px;
    }

    .core-label {
        font-size: 0.78rem;
    }

    .core-subtle {
        font-size: 0.52rem;
    }

    .ex-1 {
        left: 3.5%;
        top: 14%;
    }

    .ex-2 {
        left: 6.5%;
        top: 33%;
    }

    .ex-3 {
        left: 6.5%;
        top: 57%;
    }

    .ex-4 {
        left: 3.5%;
        top: 76%;
    }

    .out-1 {
        right: 3.5%;
        top: 22%;
    }

    .out-2 {
        right: 1.5%;
        top: 46%;
    }

    .out-3 {
        right: 3.5%;
        top: 70%;
    }

    .app-card {
        padding: 14px;
        border-radius: 20px;
    }

    .iv2-dashboard {
        padding: 0.5rem;
    }

    .iv2-modal-content {
        width: 96vw;
        height: 92vh;
        border-radius: 12px;
    }

    #iv2GlobalModalBody {
        padding: 1.25rem 1rem 1rem 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

.support-button,
    .feedback-button {
        min-width: 100%;
    }
}

@media (max-width: 900px) {
    .stack-card-wide .stack-visual {
        min-height: 250px;
    }

    .stack-card-fullbleed.stack-card-wide .stack-visual {
        min-height: 170px;
    }

    .ticker-card {
        min-width: 356px;
        max-width: 356px;
        min-height: 146px;
        padding: 16px 17px 14px;
        border-radius: 16px;
    }

    .ticker-quote {
        font-size: 0.9rem;
    }

    .ticker-logo-frame {
        width: 124px;
        height: 46px;
    }

    .ticker-author {
        font-size: 0.58rem;
    }
}

@media (max-width: 720px) {
    .stack-card-wide .stack-visual {
        min-height: 220px;
    }

    .stack-card-fullbleed.stack-card-wide .stack-visual {
        min-height: 145px;
    }

    .ticker-row,
    .ticker-row-editorial {
        padding: 0 14px;
    }

    .ticker-card {
        min-width: 292px;
        max-width: 292px;
        min-height: 136px;
        padding: 14px 15px 12px;
    }

    .ticker-quote {
        font-size: 0.82rem;
        line-height: 1.28;
    }

    .ticker-source {
        font-size: 0.58rem;
    }

    .ticker-logo-frame {
        width: 108px;
        height: 40px;
        border-radius: 8px;
    }

    .ticker-meta {
        min-height: 48px;
    }

    .ticker-author {
        font-size: 0.54rem;
    }
}

/* =========================================
   PROMPT A - DARK EDITORIAL FINANCE
   ========================================= */

:root {
    --bg-primary: #0b0c0d;
    --bg-secondary: #131517;
    --panel: #131517;
    --panel-strong: #181b1e;
    --panel-soft: rgba(255, 255, 255, 0.03);
    --text-primary: #f2eee8;
    --text-secondary: #b9b0a3;
    --text-muted: #7f776d;
    --accent: #8fc7b1;
    --accent-strong: #8fc7b1;
    --accent-warm: #c58a68;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.12);
    --shadow: rgba(0, 0, 0, 0);
    --radius-xl: 18px;
    --radius-lg: 14px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --max-width: 1360px;
    --header-height: 72px;
}

html {
    background: var(--bg-primary);
    scrollbar-color: rgba(255, 255, 255, 0.14) var(--bg-primary);
}

body {
    min-height: 100vh;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before,
body::after,
.page-aura,
.page-grid,
#cursor {
    display: none !important;
}

.network-background {
    display: none;
}

body[data-page="home"] .network-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.92;
    mix-blend-mode: normal;
    mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%);
}

.site-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: clip;
    background: linear-gradient(180deg, #0b0c0d 0%, #0c0d0e 100%);
}

.glass-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header {
    position: relative;
    z-index: 4;
    top: auto;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background: rgba(11, 12, 13, 0.96);
}

.site-header::before {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

.site-header::after,
.footer-glow {
    display: none;
}

.topbar {
    min-height: 72px;
    gap: 24px;
    padding: 0 24px;
}

.brand-logo {
    display: none;
}

.brand-anchor,
.footer-logo {
    gap: 0;
}

.brand-name,
.footer-logo {
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.96rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
}

.nav-link,
.monitor-tab {
    color: var(--text-secondary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0;
}

.nav-link:hover,
.nav-link.is-active,
.monitor-tab:hover {
    color: var(--text-primary);
}

.nav-link.is-unavailable::after {
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.nav-icon-button {
    display: none;
}

.profile-pill {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid var(--border-strong);
}

.profile-pill:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.profile-avatar,
.profile-label {
    display: none;
}

.profile-meta {
    display: block;
}

.profile-value {
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
}

.button,
.feedback-button,
.support-button,
.footer-feedback-submit,
.exchange-trade-button {
    min-height: 44px;
    border-radius: 4px;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.92rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
}

.button-primary,
.feedback-button,
.footer-feedback-submit,
.exchange-trade-button {
    background: var(--accent);
    border: 1px solid rgba(143, 199, 177, 0.34);
    color: #0b0d0d;
}

.button-secondary,
.button-ghost,
.support-button {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--text-primary);
}

.button:hover,
.feedback-button:hover,
.support-button:hover,
.footer-feedback-submit:hover,
.exchange-trade-button:hover {
    transform: translateY(-1px);
}

.button-primary:hover,
.feedback-button:hover,
.footer-feedback-submit:hover,
.exchange-trade-button:hover {
    background: #9acdb9;
}

.button-secondary:hover,
.button-ghost:hover,
.support-button:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.18);
}

.site-footer {
    width: 100%;
    margin: 0;
    padding: 28px 0 12px;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.footer-top-line {
    display: none;
}

.footer-inner {
    width: min(calc(100% - 48px), var(--max-width));
}

.footer-logo img {
    display: none;
}

.footer-brand p,
.footer-link,
.footer-link.is-disabled-link {
    color: var(--text-secondary);
}

.footer-link-column h4,
.footer-bottom,
.footer-feedback-kicker,
.footer-feedback-label,
.footer-feedback-status,
.footer-link-button,
.exchange-modal-label,
.donation-address-label,
.donation-note {
    font-family: "IBM Plex Mono", monospace;
    letter-spacing: 0.08em;
}

.feedback-modal-backdrop {
    background: rgba(4, 6, 10, 0.76);
    backdrop-filter: none;
}

.feedback-modal-dialog {
    border-radius: 12px;
    background: var(--bg-secondary);
    box-shadow: none;
}

.feedback-modal-close {
    border-radius: 4px;
}

.footer-feedback-title {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
}

.landing-editorial > .hero-section,
.landing-editorial > #overview,
.landing-editorial > #intelligence,
.landing-editorial > .stack-card-fullbleed,
.landing-editorial > .community-orbit-section {
    display: none;
}

.editorial-container {
    width: min(calc(100% - 56px), var(--max-width));
    margin: 0 auto;
}

.editorial-kicker,
.market-label,
.metric-label,
.meta,
.range button,
.eyebrow,
.legend,
.source-note,
.editorial-summary-label,
.editorial-card-index,
.editorial-next-label {
    color: var(--text-muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.editorial-kicker-warm {
    color: var(--accent-warm);
}

.editorial-features .editorial-section-heading > .editorial-kicker.editorial-kicker-warm,
.editorial-analysis .editorial-section-heading > .editorial-kicker.editorial-kicker-warm,
.editorial-next .editorial-section-heading > .editorial-kicker.editorial-kicker-warm {
    color: var(--accent-warm) !important;
}

.editorial-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: clamp(54px, 8vh, 90px) 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.editorial-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(11, 12, 13, 0.08), rgba(11, 12, 13, 0.58) 88%),
        linear-gradient(90deg, rgba(11, 12, 13, 0.68), rgba(11, 12, 13, 0.22) 52%, rgba(11, 12, 13, 0.72));
    pointer-events: none;
}

.editorial-hero-network {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.36;
    mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 78%, transparent 100%);
}

.editorial-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(11, 12, 13, 0), rgba(11, 12, 13, 0.34) 84%),
        radial-gradient(circle at 50% 48%, rgba(11, 12, 13, 0), rgba(11, 12, 13, 0.38) 76%);
    pointer-events: none;
}

.editorial-hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4.4vh, 46px);
    align-items: center;
    justify-items: center;
    text-align: center;
}

.editorial-hero-copy {
    display: grid;
    justify-items: center;
    gap: clamp(18px, 2.8vh, 28px);
    padding: 0;
}

.editorial-hero-title,
.editorial-section-heading h2,
.editorial-card h3,
.editorial-next-card h3,
.report-card h3 {
    margin: 0;
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.editorial-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 1460px;
    font-size: clamp(4.25rem, 8.15vw, 9.05rem);
    line-height: 0.9;
    letter-spacing: 0.008em;
    white-space: normal;
    transform: translateY(-8px);
}

.editorial-hero-title-line,
.editorial-hero-title span {
    display: block !important;
    width: 100%;
    flex: 0 0 auto;
}

.editorial-hero-text,
.editorial-section-heading p,
.editorial-card p,
.editorial-next-card p,
.report-card p {
    color: var(--text-secondary);
    line-height: 1.65;
}

.editorial-hero-text {
    max-width: 640px;
    margin: 28px 0 0;
    font-size: 1.14rem;
}

.editorial-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 0;
}

.editorial-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 4px;
    border: 1px solid var(--border-strong);
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
    white-space: nowrap;
}

.editorial-button-primary {
    background: var(--accent);
    border-color: rgba(143, 199, 177, 0.34);
    color: #0b0d0d;
}

.editorial-button-secondary {
    background: transparent;
    color: var(--text-primary);
}

.editorial-summary-panel,
.market-panel,
.editorial-card,
.chart-card,
.metric-card,
.report-card,
.editorial-next-card,
.faq-shell {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    box-shadow: none;
}

.editorial-summary-panel {
    display: grid;
    gap: 16px;
    padding: 20px;
}

.editorial-summary-text {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.editorial-summary-stats {
    display: grid;
    gap: 12px;
    padding-top: 2px;
}

.editorial-hero-stats {
    width: min(100%, 880px);
    padding: 0;
    background: transparent;
    border: 0;
}

.editorial-hero-stats .editorial-summary-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.editorial-hero-stats .editorial-summary-item {
    min-height: 86px;
    justify-items: center;
    align-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-top: 0;
    border-right: 1px solid var(--border);
    text-align: center;
}

.editorial-hero-stats .editorial-summary-item:last-child {
    border-right: 0;
}

.editorial-hero-stats .editorial-summary-value {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.editorial-hero-stats .editorial-summary-meta {
    max-width: 190px;
    color: var(--text-secondary);
}

.editorial-summary-item {
    display: grid;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.editorial-summary-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.editorial-summary-value {
    color: var(--text-primary);
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}

.editorial-summary-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.45;
}

.market-panel {
    margin-top: 34px;
}

.market-strip {
    display: grid;
    grid-template-columns: 1.15fr repeat(5, 1fr);
    border-bottom: 1px solid var(--border);
}

.market-cell {
    padding: 14px 16px 12px;
    border-right: 1px solid var(--border);
}

.market-cell:last-child {
    border-right: 0;
}

.market-context-value {
    margin-top: 7px;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.market-name {
    color: var(--text-secondary);
    font-size: 0.84rem;
}

.market-value {
    margin-top: 4px;
    color: var(--text-primary);
    font-size: 1.95rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.market-delta {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.up {
    color: var(--accent);
}

.down {
    color: var(--accent-warm);
}

.chart-area {
    padding: 16px 18px 8px;
}

.chart-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.range {
    display: flex;
    gap: 18px;
    align-items: center;
}

.range button {
    border: 0;
    border-bottom: 1px solid transparent;
    padding: 0 0 6px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
}

.range button.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
}

.chart-wrap {
    position: relative;
    height: 220px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background:
        linear-gradient(to bottom, transparent 24%, rgba(255, 255, 255, 0.03) 24%, rgba(255, 255, 255, 0.03) 24.7%, transparent 24.7%),
        linear-gradient(to bottom, transparent 49%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 49.7%, transparent 49.7%),
        linear-gradient(to bottom, transparent 74%, rgba(255, 255, 255, 0.03) 74%, rgba(255, 255, 255, 0.03) 74.7%, transparent 74.7%);
}

.chart-wrap svg,
.analysis-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}

.y-axis,
.x-axis,
.source-note {
    position: absolute;
    pointer-events: none;
}

.y-axis {
    top: 10px;
    bottom: 40px;
    left: 0;
    width: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.y-axis span,
.x-axis span {
    color: var(--text-muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.x-axis {
    left: 44px;
    right: 10px;
    bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.source-note {
    right: 8px;
    bottom: 26px;
}

.editorial-section {
    padding: 24px 0 0;
}

.editorial-section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.editorial-section-heading-wide {
    max-width: 840px;
}

.editorial-section-heading h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
}

.editorial-feature-grid,
.editorial-next-grid {
    display: grid;
    gap: 12px;
}

.editorial-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-card {
    min-height: 220px;
    padding: 22px 22px 20px;
}

.editorial-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 22px;
    color: var(--accent);
    opacity: 0.92;
}

.editorial-card h3,
.report-card h3,
.editorial-next-card h3 {
    margin-top: 12px;
    font-size: 2rem;
    line-height: 1;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;
    gap: 12px;
    margin-top: 24px;
}

.chart-card {
    padding: 18px;
}

.chart-card-head,
.report-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.analysis-chart {
    position: relative;
    height: 280px;
    background:
        linear-gradient(to bottom, transparent 20%, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.03) 20.6%, transparent 20.6%),
        linear-gradient(to bottom, transparent 40%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.03) 40.6%, transparent 40.6%),
        linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, 0.03) 60%, rgba(255, 255, 255, 0.03) 60.6%, transparent 60.6%),
        linear-gradient(to bottom, transparent 80%, rgba(255, 255, 255, 0.03) 80%, rgba(255, 255, 255, 0.03) 80.6%, transparent 80.6%);
}

.chart-legend {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

.legend-swatch {
    width: 16px;
    height: 2px;
    background: currentColor;
}

.legend-item.mint {
    color: var(--accent);
}

.legend-item.clay {
    color: var(--accent-warm);
}

.metric-stack {
    display: grid;
    gap: 12px;
}

.metric-card {
    min-height: 118px;
    padding: 18px 20px;
}

.metric-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.metric-value-lg {
    margin-top: 10px;
    color: var(--text-primary);
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.metric-value-lg.mint {
    color: var(--accent);
}

.metric-value-lg.clay {
    color: var(--accent-warm);
}

.metric-side {
    margin-top: 30px;
    color: var(--text-muted);
    text-align: right;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.editorial-workflow-split {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 24px;
    align-items: start;
    margin-top: 28px;
}

.editorial-workflow-split .editorial-section-heading {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    max-width: 560px;
    margin-bottom: 0;
}

.editorial-workflow-stack {
    display: grid;
    gap: 18px;
    margin-top: 0;
}

.editorial-workflow-card {
    display: grid;
    grid-template-columns: minmax(320px, 1.14fr) minmax(240px, 0.86fr);
    min-height: 280px;
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34%),
        var(--bg-secondary);
    overflow: hidden;
}

.editorial-workflow-card-reverse {
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.08fr);
}

.editorial-workflow-card-reverse .editorial-workflow-visual {
    order: 2;
    border-right: 0;
    border-left: 1px solid var(--border);
}

.editorial-workflow-card-reverse .editorial-workflow-copy {
    order: 1;
}

.editorial-workflow-visual {
    position: relative;
    min-height: 280px;
    border-right: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
        #101112;
    overflow: hidden;
    isolation: isolate;
}

.editorial-workflow-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.editorial-workflow-copy .editorial-kicker {
    margin-bottom: 14px;
    color: var(--accent-warm);
}

.editorial-workflow-copy h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.7rem, 2vw, 2.45rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.editorial-workflow-copy p:not(.editorial-kicker) {
    max-width: 460px;
    margin: 18px 0 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.72;
}

.editorial-airdrop-wrap {
    padding-top: 28px;
}

.editorial-airdrop-band {
    position: relative;
    width: 100%;
    margin: 0;
    display: grid;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(19, 21, 23, 0.98), rgba(16, 17, 18, 0.98)),
        var(--bg-secondary);
    overflow: hidden;
}

.editorial-airdrop-band .stack-visual-airdrop-editorial {
    width: 100%;
    min-height: 248px;
    margin: 0;
    border: 0;
    border-radius: 0;
    border-top: 1px solid var(--border);
    background: transparent;
}

.editorial-airdrop-band .stack-copy {
    width: min(calc(100% - 56px), var(--max-width));
    margin: 0 auto;
    padding: 20px 0 18px;
    text-align: center;
}

.editorial-airdrop-band .stack-copy h3 {
    margin: 0;
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 2.85rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.editorial-airdrop-band .stack-copy p {
    max-width: 920px;
    margin: 14px auto 0;
    color: var(--text-secondary);
    line-height: 1.72;
}

.editorial-airdrop-band .stack-copy a {
    color: var(--accent-warm);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
}

.editorial-airdrop-band .stack-copy a:hover,
.editorial-airdrop-band .stack-copy a:focus-visible {
    color: var(--accent-warm);
}

.editorial-airdrop-band .ticker-row-editorial {
    padding: 22px 0 24px;
}

.editorial-airdrop-band .ticker-track-editorial {
    width: max-content;
    min-width: max-content;
    animation-duration: 70s;
}

.editorial-airdrop-band .ticker-zigzag path {
    stroke: rgba(143, 199, 177, 0.12);
}

.editorial-airdrop-band .ticker-card {
    min-width: 392px;
    max-width: 392px;
    min-height: 148px;
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
        rgba(11, 12, 13, 0.94);
    box-shadow: none;
}

.editorial-airdrop-band .ticker-card::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.014), transparent);
}

.editorial-airdrop-band .ticker-card:hover,
.editorial-airdrop-band .ticker-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(143, 199, 177, 0.16);
    box-shadow: none;
}

.editorial-airdrop-band .ticker-quote {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.42;
}

.editorial-airdrop-band .ticker-logo-frame {
    width: 132px;
    height: 48px;
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.028);
}

.editorial-airdrop-band .ticker-author {
    color: rgba(185, 176, 163, 0.78);
    font-style: normal;
    letter-spacing: 0.06em;
}

.editorial-airdrop-band .ticker-segment {
    flex: 0 0 auto;
}

.workflow-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 82%);
    opacity: 0.72;
    z-index: -1;
}

.workflow-source-nodes,
.workflow-output-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.workflow-source-nodes span,
.workflow-output-nodes span,
.workflow-core-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(143, 199, 177, 0.16);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(237, 234, 228, 0.78);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow-source-nodes span,
.workflow-output-nodes span {
    min-width: 82px;
    height: 28px;
    z-index: 2;
    animation: workflow-node-idle 9.6s ease-in-out infinite;
}

.workflow-source-nodes span:nth-child(1) {
    left: 6%;
    top: 17%;
}

.workflow-source-nodes span:nth-child(2) {
    left: 6%;
    top: 34%;
    animation-delay: 0.8s;
}

.workflow-source-nodes span:nth-child(3) {
    left: 6%;
    top: 56%;
    animation-delay: 1.5s;
}

.workflow-source-nodes span:nth-child(4) {
    left: 6%;
    top: 76%;
    animation-delay: 2.2s;
}

.workflow-output-nodes span:nth-child(1) {
    right: 6%;
    top: 25%;
    animation-delay: 0.4s;
}

.workflow-output-nodes span:nth-child(2) {
    right: 6%;
    top: 48%;
    animation-delay: 1.2s;
}

.workflow-output-nodes span:nth-child(3) {
    right: 6%;
    top: 70%;
    animation-delay: 2s;
}

.workflow-core-node {
    left: 50%;
    top: 50%;
    width: 84px;
    height: 58px;
    transform: translate(-50%, -50%);
    flex-direction: column;
    gap: 3px;
    border-color: rgba(143, 199, 177, 0.28);
    background:
        linear-gradient(180deg, rgba(143, 199, 177, 0.085), rgba(255, 255, 255, 0.025)),
        rgba(12, 15, 14, 0.96);
    color: var(--text-primary);
    z-index: 3;
    animation: workflow-core-breathe 6.2s ease-in-out infinite;
}

.workflow-core-node > span {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
}

.workflow-core-node small {
    color: rgba(143, 199, 177, 0.72);
    font-size: 0.43rem;
    letter-spacing: 0.1em;
}

.workflow-flow-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.workflow-flow-lines path {
    fill: none;
    stroke: rgba(143, 199, 177, 0.26);
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-pulse {
    fill: rgba(143, 199, 177, 0.88);
    opacity: 0.72;
}

.workflow-visual-tradfi::before,
.workflow-visual-preferences::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at center, black 24%, transparent 82%);
    opacity: 0.6;
}

.workflow-visual-tradfi::before {
    opacity: 0.18;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2));
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2));
}

.workflow-tradfi-shell {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
        #101112;
    isolation: isolate;
}

.workflow-tradfi-shell::after {
    content: none;
}

.workflow-tradfi-cross-x,
.workflow-tradfi-cross-y {
    position: absolute;
    background: rgba(197, 138, 104, 0.38);
    z-index: 1;
    pointer-events: none;
}

.workflow-tradfi-cross-x {
    top: 50%;
    left: 14%;
    right: 14%;
    height: 2px;
    transform: translateY(-1px);
}

.workflow-tradfi-cross-y {
    top: 18%;
    bottom: 18%;
    left: 50%;
    width: 2px;
    transform: translateX(-1px);
}

.workflow-tradfi-infinity-layer,
.workflow-tradfi-link-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.workflow-tradfi-infinity-guide {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-tradfi-infinity-guide.main {
    stroke: var(--accent-warm);
    stroke-opacity: 0.22;
}

.workflow-tradfi-infinity-guide.left {
    stroke: rgba(143, 199, 177, 0.18);
}

.workflow-tradfi-infinity-guide.right {
    stroke: rgba(143, 199, 177, 0.14);
}

.workflow-tradfi-link {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 0.75;
    stroke-linecap: round;
    opacity: 0.8;
}

.workflow-tradfi-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.workflow-tradfi-core::after {
    content: none;
}

.workflow-tradfi-core-logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
    display: block;
}

.workflow-tradfi-stage,
.workflow-tradfi-loop-group {
    position: absolute;
    inset: 0;
}

.workflow-tradfi-stage {
    z-index: 2;
}

.workflow-tradfi-loop-group {
    z-index: 3;
}

.workflow-tradfi-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
        #131517;
    overflow: hidden;
    will-change: transform;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.workflow-tradfi-badge:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
        #131517;
}

.workflow-tradfi-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.04) contrast(1.06) saturate(1.04);
    transform: scale(var(--badge-logo-scale, 1));
    transform-origin: center;
}

.workflow-tradfi-badge::before {
    content: none;
}

.workflow-tradfi-badge.is-fallback::after {
    content: attr(data-fallback);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.48rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    padding: 6px;
}

@media (max-width: 980px) {
}

@media (max-width: 640px) {
}

.workflow-orbit-guides span {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(143, 199, 177, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.workflow-orbit-guides span:nth-child(1) {
    width: 72%;
    height: 45%;
}

.workflow-orbit-guides span:nth-child(2) {
    width: 86%;
    height: 58%;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.07);
}

.workflow-orbit-guides span:nth-child(3) {
    width: 52%;
    height: 32%;
    border-color: rgba(143, 199, 177, 0.09);
}

.workflow-orbit-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(143, 199, 177, 0.18);
    background: rgba(11, 13, 13, 0.88);
    z-index: 3;
}

.workflow-orbit-core img {
    width: 50px;
    height: auto;
}

.workflow-orbit-stage {
    position: absolute;
    inset: 42px;
    animation: workflow-orbit-rotate 38s linear infinite;
}

.workflow-asset {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(16, 18, 18, 0.94);
}

.workflow-asset img {
    width: 74%;
    height: 74%;
    object-fit: contain;
    animation: workflow-orbit-counter 38s linear infinite;
}

.asset-1 { transform: translate(-50%, -50%) rotate(0deg) translateX(112px) rotate(0deg); }
.asset-2 { transform: translate(-50%, -50%) rotate(45deg) translateX(112px) rotate(-45deg); }
.asset-3 { transform: translate(-50%, -50%) rotate(90deg) translateX(112px) rotate(-90deg); }
.asset-4 { transform: translate(-50%, -50%) rotate(135deg) translateX(112px) rotate(-135deg); }
.asset-5 { transform: translate(-50%, -50%) rotate(180deg) translateX(112px) rotate(-180deg); }
.asset-6 { transform: translate(-50%, -50%) rotate(225deg) translateX(112px) rotate(-225deg); }
.asset-7 { transform: translate(-50%, -50%) rotate(270deg) translateX(112px) rotate(-270deg); }
.asset-8 { transform: translate(-50%, -50%) rotate(315deg) translateX(112px) rotate(-315deg); }

.workflow-pref-shell {
    position: absolute;
    inset: 34px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(12, 14, 14, 0.88);
    padding: 14px;
}

.workflow-pref-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.workflow-pref-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(143, 199, 177, 0.48);
}

.workflow-pref-top span:nth-child(2) {
    background: rgba(197, 138, 104, 0.48);
}

.workflow-pref-top span:nth-child(3) {
    background: rgba(237, 234, 228, 0.34);
}

.workflow-pref-top small {
    margin-left: 12px;
    color: rgba(143, 199, 177, 0.76);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.workflow-pref-panels {
    position: relative;
    overflow: hidden;
}

.workflow-pref-panel {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 12px;
    opacity: 0;
    transform: translateY(8px);
    animation: workflow-panel-cycle 13.5s ease-in-out infinite;
}

.panel-window {
    animation-delay: 4.5s;
}

.panel-ranking {
    animation-delay: 9s;
}

.workflow-control,
.workflow-strategy-row {
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.028);
    padding: 11px;
}

.workflow-control span {
    display: block;
    margin-bottom: 9px;
    color: var(--text-muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.workflow-control div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.workflow-control b,
.workflow-strategy-row em {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border: 1px solid rgba(143, 199, 177, 0.16);
    background: rgba(143, 199, 177, 0.055);
    color: rgba(237, 234, 228, 0.76);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.workflow-capital-row + i {
    position: relative;
    display: block;
    height: 4px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.07);
}

.workflow-capital-row + i::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 62%;
    background: rgba(143, 199, 177, 0.45);
    animation: workflow-capital-fill 4.5s ease-in-out infinite;
}

.workflow-mini-chart {
    min-height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(to bottom, transparent 32%, rgba(255, 255, 255, 0.035) 32%, rgba(255, 255, 255, 0.035) 33%, transparent 33%),
        linear-gradient(to bottom, transparent 66%, rgba(255, 255, 255, 0.035) 66%, rgba(255, 255, 255, 0.035) 67%, transparent 67%);
}

.workflow-mini-chart path {
    fill: none;
    stroke: rgba(143, 199, 177, 0.88);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: workflow-chart-draw 4.5s ease-in-out infinite;
}

.workflow-strategy-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.workflow-strategy-row strong {
    color: var(--text-primary);
    font-size: 0.96rem;
    font-weight: 500;
}

.workflow-strategy-row span {
    min-width: 0;
    color: var(--text-secondary);
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes workflow-node-idle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1.5px);
    }
}

@keyframes workflow-core-breathe {
    0%,
    100% {
        border-color: rgba(143, 199, 177, 0.22);
    }
    50% {
        border-color: rgba(143, 199, 177, 0.42);
    }
}

@keyframes workflow-orbit-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes workflow-orbit-counter {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes workflow-panel-cycle {
    0%,
    28% {
        opacity: 1;
        transform: translateY(0);
    }
    36%,
    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

@keyframes workflow-capital-fill {
    0%,
    100% {
        width: 48%;
    }
    50% {
        width: 72%;
    }
}

@keyframes workflow-chart-draw {
    0% {
        stroke-dashoffset: 420;
    }
    42%,
    100% {
        stroke-dashoffset: 0;
    }
}

.editorial-report {
    padding-bottom: 0;
}

.report-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    padding: 18px;
    align-items: stretch;
}

.report-copy {
    padding: 6px 4px 6px 2px;
}

.report-copy h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--accent);
    font-size: 0.94rem;
}

.report-visual {
    position: relative;
    min-height: 208px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(rgba(9, 10, 11, 0.42), rgba(9, 10, 11, 0.42)),
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03), transparent 26%),
        linear-gradient(90deg, #171514 0%, #26201d 100%);
}

.report-visual::before,
.report-visual::after,
.report-visual i,
.report-visual b {
    content: "";
    position: absolute;
    top: -12%;
    bottom: -12%;
    width: 16%;
    border-radius: 999px 999px 0 0;
}

.report-visual::before {
    left: 10%;
    background: linear-gradient(180deg, rgba(97, 84, 72, 0.32), rgba(40, 34, 30, 0.72));
}

.report-visual::after {
    left: 31%;
    background: linear-gradient(180deg, rgba(108, 94, 80, 0.28), rgba(34, 30, 27, 0.82));
}

.report-visual i {
    left: 52%;
    background: linear-gradient(180deg, rgba(97, 84, 72, 0.32), rgba(40, 34, 30, 0.72));
}

.report-visual b {
    left: 73%;
    background: linear-gradient(180deg, rgba(108, 94, 80, 0.28), rgba(34, 30, 27, 0.82));
}

.editorial-next-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.editorial-next-card {
    min-height: 222px;
    padding: 22px 20px 24px;
}

.editorial-next-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.editorial-next-head h3 {
    margin-top: 0;
    max-width: 9ch;
    font-size: 1.9rem;
    line-height: 1.04;
}

.editorial-next-head .editorial-icon {
    margin-bottom: 0;
    flex: 0 0 auto;
}

.editorial-next-card p {
    margin-top: 18px;
    line-height: 1.72;
}

.faq-section {
    padding: 28px 0 42px;
}

.faq-shell {
    border-radius: 0;
    background: transparent;
}

.faq-header {
    width: min(calc(100% - 56px), var(--max-width));
    margin: 0 auto 12px;
}

.faq-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -0.04em;
}

.faq-list {
    width: min(calc(100% - 56px), var(--max-width));
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-trigger {
    width: 100%;
    padding: 18px 0;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    text-align: left;
}

.faq-trigger:hover {
    transform: none;
}

.faq-panel-inner {
    padding: 0 0 18px;
}

.faq-panel-inner p {
    max-width: 980px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .editorial-hero-grid,
    .analysis-grid,
    .report-card,
    .editorial-workflow-split,
    .editorial-workflow-card,
    .editorial-workflow-card-reverse,
    .editorial-feature-grid,
    .editorial-next-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .editorial-workflow-split .editorial-section-heading {
        position: static;
        max-width: 840px;
        margin-bottom: 6px;
    }

    .editorial-workflow-card-reverse .editorial-workflow-visual,
    .editorial-workflow-card-reverse .editorial-workflow-copy {
        order: initial;
    }

    .editorial-workflow-card-reverse .editorial-workflow-visual,
    .editorial-workflow-visual {
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .topbar {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand actions"
            "nav nav";
        padding: 16px 24px;
    }

    .brand-anchor {
        grid-area: brand;
    }

    .nav-cluster {
        grid-area: nav;
        gap: 18px;
    }

    .nav-rail {
        justify-content: flex-start;
        overflow-x: auto;
        margin: 0;
    }

    .nav-utility {
        grid-area: actions;
    }

    .market-strip {
        grid-template-columns: 1fr;
    }

    .market-cell {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .market-cell:last-child {
        border-bottom: 0;
    }

}

@media (max-width: 760px) {
    .site-shell {
        width: 100%;
        border-radius: 0;
    }

    .editorial-container,
    .footer-inner,
    .faq-header,
    .faq-list {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .editorial-hero {
        min-height: calc(100vh - 94px);
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .editorial-hero-title {
        font-size: clamp(3rem, 12vw, 4.6rem);
        line-height: 1;
        letter-spacing: 0.012em;
    }

    .editorial-hero-stats .editorial-summary-stats {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .editorial-hero-stats .editorial-summary-item {
        min-height: auto;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .editorial-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .editorial-button {
        width: 100%;
    }

    .editorial-workflow-copy {
        padding: 22px 18px 24px;
    }

    .editorial-airdrop-band .stack-visual-airdrop-editorial,
    .editorial-airdrop-band .stack-copy {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .editorial-workflow-visual {
        min-height: 315px;
    }

    .workflow-source-nodes span,
    .workflow-output-nodes span {
        min-width: 66px;
        height: 25px;
        font-size: 0.48rem;
    }

    .workflow-core-node {
        width: 76px;
        height: 52px;
    }

    .workflow-tradfi-badge {
        width: 40px;
        height: 40px;
    }

    .workflow-tradfi-core {
        width: auto;
        height: auto;
    }

    .workflow-tradfi-core-logo {
        width: 80px;
        height: 80px;
    }

    .workflow-pref-shell {
        inset: 18px;
    }

    .workflow-strategy-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .topbar {
        padding: 16px 16px 12px;
    }
}

/* =========================================
   PROMPT A - GLOBAL DA HARMONIZATION
   ========================================= */

.monitor-section,
.exchanges-shell {
    width: min(calc(100% - 56px), var(--max-width));
    margin: 24px auto 0;
}

.coming-soon-page {
    padding: 32px 0 56px;
}

.section-kicker,
.app-card-kicker,
.monitor-note,
.app-card-note {
    color: var(--text-secondary);
}

.section-kicker,
.app-card-kicker {
    font-family: "IBM Plex Mono", monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.monitor-header h2,
.app-card-header h3,
.coming-soon-card h1,
.exchanges-hero h1,
.exchange-card-name {
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.monitor-note,
.app-card-note,
.coming-soon-card p,
.exchanges-hero p:last-child {
    color: var(--text-secondary);
}

.monitor-tabs {
    gap: 10px;
    margin: 28px 0 18px;
}

.monitor-tab {
    min-height: 38px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 12px;
    background: transparent;
}

.monitor-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.18);
}

.monitor-tab-active {
    color: var(--text-primary);
    border-color: var(--border-strong);
    background: var(--panel-strong);
}

.app-card,
.coming-soon-card {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.app-card {
    padding: 22px;
}

.app-card-header h3 {
    color: var(--text-primary);
}

.app-card-kicker {
    color: var(--text-muted);
}

.exchanges-page {
    padding: 32px 0 56px;
}

.exchanges-shell {
    gap: 18px;
}

.exchanges-hero {
    gap: 22px;
    padding: 0;
}

.exchanges-hero-copy {
    max-width: 760px;
    gap: 16px;
}

.exchanges-hero h1 {
    max-width: 720px;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.95;
}

.exchanges-hero p:last-child {
    max-width: 620px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.exchange-filters {
    position: static;
    display: flex;
    max-width: none;
    gap: 10px;
    justify-content: flex-start;
}

.exchange-filter-chip {
    min-height: 34px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 12px;
    color: var(--text-muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    background: transparent;
    box-shadow: none;
}

.exchange-filter-chip:hover,
.exchange-filter-chip:focus-visible {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.18);
    transform: none;
}

.exchange-filter-chip.is-active {
    border-color: rgba(143, 199, 177, 0.28);
    color: var(--text-primary);
    background: rgba(143, 199, 177, 0.08);
    box-shadow: none;
}

.exchanges-grid {
    gap: 12px;
}

.exchange-card {
    gap: 16px;
    min-height: 248px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-secondary);
    box-shadow: none;
}

.exchange-card::before,
.exchange-card::after,
.exchange-hip3-badge::after {
    display: none;
}

.exchange-card:hover,
.exchange-card:focus-within {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow: none;
}

.exchange-card[data-accent-mode="neutral"] .exchange-logo-ring,
.exchange-card[data-accent-mode="neutral"] .exchange-trade-button,
.exchange-card[data-accent-mode="neutral"] .exchange-points.is-live {
    box-shadow: none;
}

.exchange-card-top {
    gap: 12px;
}

.exchange-logo-ring {
    width: 54px;
    height: 54px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--panel-strong);
    box-shadow: none;
}

.exchange-points {
    position: relative;
    min-height: 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 10px;
    color: var(--text-muted);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: transparent;
    opacity: 1;
    overflow: hidden;
}

.exchange-points.is-live {
    border-color: rgba(143, 199, 177, 0.46);
    color: rgba(255, 248, 236, 0.96);
    background:
        linear-gradient(135deg, rgba(143, 199, 177, 0.34), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        0 0 0 1px rgba(143, 199, 177, 0.14),
        0 0 26px rgba(143, 199, 177, 0.18);
}

.exchange-points.is-live::after {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.06) 34%, rgba(255, 255, 255, 0.32) 50%, rgba(255, 255, 255, 0.06) 66%, transparent 100%);
    transform: translateX(-140%);
    animation: exchange-points-sheen 2.8s ease-in-out infinite;
    pointer-events: none;
}

.exchange-points.is-live:hover,
.exchange-points.is-live:focus-visible {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(var(--exchange-accent-rgb), 0.16),
        0 0 30px rgba(var(--exchange-accent-rgb), 0.22);
}

.exchange-points-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    box-shadow: none;
    animation: none;
}

.exchange-card-label,
.exchange-hip3-badge,
.exchange-modal-label,
.donation-address-label,
.donation-note,
.donation-address-network {
    font-family: "IBM Plex Mono", monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.exchange-card-label {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.exchange-card-name {
    font-size: 1.55rem;
    line-height: 1;
}

.exchange-hip3-badge {
    min-height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(197, 138, 104, 0.22);
    color: var(--text-secondary);
    font-size: 0.62rem;
    font-weight: 500;
    background: rgba(197, 138, 104, 0.08);
    box-shadow: none;
}

.exchange-trade-button {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(143, 199, 177, 0.34);
    border-radius: 4px;
    padding: 0 16px;
    color: #0b0d0d;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.92rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    background: var(--accent);
    box-shadow: none;
}

.exchange-trade-button:hover,
.exchange-trade-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: none;
    filter: none;
}

.feedback-modal {
    padding: 20px;
}

.feedback-modal-backdrop {
    background: rgba(4, 6, 10, 0.84);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.feedback-modal-dialog {
    width: min(560px, calc(100vw - 32px));
    padding: 24px;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: var(--bg-secondary);
    box-shadow: none;
}

.donation-modal-dialog {
    width: min(680px, calc(100vw - 32px));
}

.exchange-modal-dialog {
    width: min(620px, calc(100vw - 32px));
}

.feedback-modal-close {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: transparent;
}

.feedback-modal-close span {
    background: var(--text-secondary);
}

.feedback-modal-close:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.18);
}

.footer-feedback-form,
.donation-panel,
.exchange-modal-panel {
    gap: 12px;
}

.footer-feedback-title {
    max-width: 28ch;
    margin: 0 0 8px;
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.7rem, 2.5vw, 2.1rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.donation-copy,
.exchange-modal-copy {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.donation-address-card,
.exchange-modal-card {
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--panel-strong);
}

.donation-address-network {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-style: normal;
    line-height: 1.6;
}

.donation-address-value,
.exchange-modal-value,
.footer-feedback-textarea {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #0f1113;
    box-shadow: none;
}

.donation-address-value,
.exchange-modal-value {
    color: var(--text-primary);
}

.footer-feedback-textarea {
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.footer-feedback-textarea::placeholder {
    color: var(--text-muted);
    font-style: normal;
}

.footer-feedback-textarea:focus {
    border-color: rgba(143, 199, 177, 0.34);
    background: #111315;
    box-shadow: none;
}

.footer-feedback-actions {
    justify-items: start;
}

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

.footer-feedback-submit,
.exchange-modal-open,
.exchange-modal-copy-button,
.donation-copy-button {
    min-width: 0;
}

.footer-feedback-status.is-success {
    color: var(--accent);
}

.footer-feedback-status.is-error {
    color: var(--accent-warm);
}

.faq-section {
    padding: 32px 0 48px;
}

.faq-shell {
    width: min(calc(100% - 56px), var(--max-width));
    margin: 0 auto;
    padding: 24px 24px 8px;
    border-radius: 14px;
    background: var(--bg-secondary);
}

.faq-header,
.faq-list {
    width: 100%;
}

.faq-header {
    margin: 0 0 12px;
}

.faq-header h2 {
    margin: 0;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-trigger {
    padding: 18px 0;
    color: var(--text-primary);
}

.faq-trigger span:first-child {
    max-width: 92%;
}

.faq-icon {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
}

.faq-icon::before,
.faq-icon::after {
    background: var(--text-muted);
}

.faq-panel-inner {
    padding: 0 0 20px;
}

.faq-panel-inner p {
    max-width: 940px;
    color: var(--text-secondary);
    line-height: 1.72;
}

@media (max-width: 900px) {
    .monitor-section,
    .exchanges-shell,
    .faq-shell {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .exchange-modal-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .monitor-header,
    .app-card-header {
        align-items: flex-start;
    }

    .exchange-card {
        min-height: 0;
    }

    .faq-shell {
        padding: 20px 18px 6px;
    }
}

/* =========================================
   PROMPT A - REFINEMENTS
   ========================================= */

.site-footer .footer-link,
.site-footer .footer-link-button,
.site-footer .support-button,
.site-footer .feedback-button,
.site-footer .footer-brand p {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.site-footer .footer-link-button {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-secondary);
}

.site-footer .footer-link-button:hover {
    color: var(--text-primary);
}

.footer-feedback-kicker,
.donation-address-label,
.exchange-modal-label {
    color: var(--text-muted);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.donation-address-list {
    gap: 0;
    margin-top: 4px;
}

.donation-address-card,
.exchange-modal-card {
    padding: 14px 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
}

.donation-address-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "head head"
        "value action";
    column-gap: 18px;
    row-gap: 10px;
    align-items: center;
}

.donation-address-card:first-child,
.exchange-modal-card:first-of-type {
    border-top: 1px solid var(--border);
}

.donation-address-head,
.exchange-modal-head {
    gap: 6px;
}

.donation-address-head {
    grid-area: head;
}

.donation-address-network {
    color: var(--text-muted);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.82rem;
    font-style: normal;
    letter-spacing: 0;
    text-transform: none;
}

.donation-address-value,
.exchange-modal-value {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-primary);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: normal;
}

.donation-address-value {
    grid-area: value;
    align-self: start;
}

.donation-copy-button,
.exchange-modal-copy-button,
.exchange-modal-open {
    width: fit-content;
}

.donation-copy-button {
    grid-area: action;
    align-self: center;
    justify-self: end;
    white-space: nowrap;
}

.footer-feedback-submit,
.donation-copy-button,
.exchange-modal-copy-button,
.exchange-modal-open {
    min-height: 40px;
}

.footer-feedback-textarea::placeholder {
    color: rgba(127, 119, 109, 0.54);
    font-style: italic;
}

.faq-shell {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.faq-header {
    margin: 0 0 18px;
    padding: 0;
}

.faq-list {
    display: block;
    gap: 0;
    border-top: 1px solid var(--border);
}

.faq-item,
.faq-item.is-open {
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.faq-trigger span:first-child {
    max-width: none;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.faq-icon {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 0;
}

.faq-icon::before,
.faq-icon::after {
    width: 12px;
    height: 1px;
    border-radius: 0;
    background: var(--accent-warm);
}

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

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

.faq-panel,
.faq-item.is-open .faq-panel {
    display: block;
}

.faq-panel-inner {
    padding: 0 0 20px;
    overflow: visible;
}

.faq-panel p,
.faq-panel-inner p {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.72;
}

/* =========================================
   PROMPT A - EXCHANGES TUNING
   ========================================= */

.exchanges-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 150px;
    max-width: none;
    width: 100%;
    margin-bottom: 4px;
    padding-bottom: 22px;
}

.exchange-filters {
    position: absolute;
    right: 0;
    bottom: 10px;
    justify-self: end;
    align-self: start;
    margin-top: 0;
}

.exchange-card[data-accent-mode="neutral"] .exchange-trade-button {
    border-color: rgba(143, 199, 177, 0.34);
    background: var(--accent);
    color: #0b0d0d;
    box-shadow: none;
}

.exchange-points.is-live {
    border-color: rgba(143, 199, 177, 0.34);
    color: rgba(255, 248, 236, 0.96);
    background:
        linear-gradient(135deg, rgba(143, 199, 177, 0.34), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 22px rgba(255, 255, 255, 0.08);
    animation: exchange-points-live-glow 2.8s ease-in-out infinite;
}

.exchange-points.is-live:hover,
.exchange-points.is-live:focus-visible {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 28px rgba(255, 255, 255, 0.12);
}

.exchange-points.is-live .exchange-points-dot {
    background: var(--accent);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.05),
        0 0 14px rgba(255, 255, 255, 0.14);
    animation: exchange-live-dot 1.9s ease-in-out infinite;
}

.exchange-modal-card-primary {
    padding-bottom: 16px;
}

.exchange-modal-inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
}

.exchange-modal-inline-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.exchange-modal-open {
    white-space: nowrap;
}

.exchange-modal-copy-icon {
    width: 40px;
    padding: 0;
}

.exchange-modal-copy-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: none;
}

@keyframes exchange-points-live-glow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.06),
            0 0 14px rgba(255, 255, 255, 0.06);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 0 24px rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 900px) {
    .exchanges-hero {
        min-height: 0;
        padding-bottom: 0;
    }

    .exchange-filters {
        position: static;
        justify-self: start;
        margin-top: 0;
    }

    .exchange-modal-inline {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .donation-address-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "value"
            "action";
        row-gap: 10px;
        align-items: start;
    }

    .donation-copy-button {
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
	    .exchange-points.is-live {
	        animation: none;
	    }

	    .workflow-source-nodes span,
	    .workflow-output-nodes span,
	    .workflow-core-node,
	    .workflow-orbit-stage,
	    .workflow-asset img,
	    .workflow-tradfi-badge,
	    .workflow-pref-panel,
	    .workflow-capital-row + i::before,
	    .workflow-mini-chart path {
	        animation: none;
	    }

	    .workflow-pulse {
	        display: none;
	    }

	    .workflow-pref-panel {
	        opacity: 1;
	        position: relative;
	        transform: none;
	    }
}

/* =========================================
   PROMPT A - FOOTER FINAL TWEAKS
   ========================================= */

.site-footer {
    padding-top: 8px;
    overflow: visible;
}

.site-footer .footer-grid {
    margin-bottom: 16px;
}

.site-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 12px;
    margin: 0;
    line-height: 1;
}

.site-footer .footer-logo img {
    display: block;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    object-fit: contain;
    opacity: 0.96;
    margin: 0;
}

.site-footer .footer-logo span {
    display: block;
    line-height: 1;
    padding-top: 0;
}

.site-footer .footer-brand {
    display: grid;
    align-content: start;
    gap: 2px;
    padding-top: 0;
}

.site-footer .footer-brand p {
    margin: 4px 0 0;
    font-size: 0.76rem;
    line-height: 1.45;
}

.site-footer .footer-links-grid {
    margin-top: 6px;
}

.site-footer .footer-link-column h4 {
    margin-top: 8px;
}


/* PROMPT A - DREAMCASH INLINE CODE */
.exchange-modal-inline-code {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #b9b0a3;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
}

.exchange-modal-inline-code[hidden] {
    display: none;
}

/* PROMPT A - EXCHANGE MODAL ALIGNMENT */
.exchange-modal-inline {
    align-items: center;
}

.exchange-modal-value {
    display: flex;
    align-items: center;
    min-height: 40px;
}
