:root,body[data-theme=dark] {
    --background: #121314;
    --foreground: #e6e6e6;
    --card: #232426;
    --card-fg: #e6e6e6;
    --muted-fg: #b3b3b3;
    --on-bg-muted: #b3b3b3;
    --accent: #00b4ff;
    --accent-fg: #fff;
    --border: #e6e6e61f;
    --on-bg-border: #e6e6e61f;
    --header-bg: #121314;
    --glow: #00b4ff6b;
    --scrollbar-thumb: #e6e6e640;
    --scrollbar-thumb-hover: #e6e6e673;
    --success: #3fa028;
    --danger: #d93333;
    --radius-btn: 12px;
    --radius-pill: 16px
}

body[data-theme=light] {
    --background: #f5f5f5;
    --foreground: #1a1a1a;
    --card: #fff;
    --card-fg: #1a1a1a;
    --muted-fg: #6b6b6b;
    --on-bg-muted: #6b6b6b;
    --on-bg-border: #cdcdcd;
    --border: #cdcdcd;
    --accent: #3861fb;
    --accent-fg: #fff;
    --header-bg: #f5f5f5;
    --glow: #3861fb47;
    --scrollbar-thumb: #00000038;
    --scrollbar-thumb-hover: #0006
}

*,:before,:after {
    box-sizing: border-box
}

html,body {
    margin: 0;
    padding: 0
}

body {
    background: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    min-height: 100vh;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    transition: background .3s,color .3s
}

::selection {
    background-color: var(--foreground);
    color: #3861fb
}

body[data-theme=light] ::selection {
    color: #00b4ff
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

a {
    color: inherit;
    text-decoration: none
}

button {
    cursor: pointer;
    color: inherit;
    background: 0 0;
    border: 1px solid #0000;
    font-family: inherit
}

.download-menu {
    display: inline-flex;
    position: relative
}

.download-trigger {
    align-items: center;
    gap: 10px;
    display: inline-flex
}

.download-trigger[aria-expanded=true] {
    box-shadow: 0 0 24px 2px var(--glow)
}

.download-caret {
    width: 12px;
    height: 8px;
    transition: transform .25s cubic-bezier(.4,1.4,.5,1)
}

.download-menu.open .download-caret {
    transform: rotate(180deg)
}

.download-pop {
    background: var(--card);
    width: max-content;
    color: var(--foreground);
    border: 1px solid var(--border);
    opacity: 0;
    transform-origin: 0 0;
    pointer-events: none;
    z-index: 200;
    border-radius: 12px;
    flex-direction: column;
    gap: 2px;
    padding: 6px;
    transition: opacity .18s,transform .28s cubic-bezier(.16,1.2,.3,1);
    display: flex;
    position: fixed;
    transform: translateY(-10px)scale(.96);
    box-shadow: 0 10px 32px #00000059
}

.download-menu.open .download-pop {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)scale(1)
}

.download-item {
    white-space: nowrap;
    color: var(--foreground);
    border-radius: 8px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    transition: background .12s;
    display: flex
}

.download-item:hover {
    background: #7f7f7f1f
}

.download-item img {
    object-fit: contain;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: block
}

.download-item-name {
    color: var(--foreground);
    font-size: 15px;
    font-weight: 500
}

.header {
    z-index: 50;
    background: var(--header-bg);
    border-bottom: 1px solid var(--on-bg-border);
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0
}

.header-inner {
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    height: 64px;
    display: flex;
    position: relative
}

.brand {
    color: inherit;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    display: flex
}

.brand-mark {
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: inline-flex;
    overflow: visible
}

.brand-mark img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    display: block
}

.brand-mark .logo-dark,body[data-theme=light] .brand-mark .logo-light {
    display: none
}

body[data-theme=light] .brand-mark .logo-dark {
    display: block
}

.brand-name {
    letter-spacing: -.01em;
    font-size: 16px;
    font-weight: 700
}

.nav {
    align-items: center;
    gap: 24px;
    margin-left: 16px;
    display: flex
}

.nav a {
    color: var(--muted-fg);
    padding-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
    display: inline-block;
    position: relative
}

.nav a:after {
    content: "";
    transform-origin: 100%;
    background: currentColor;
    width: 100%;
    height: 1px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0)
}

.nav a:hover,.nav a:focus-visible {
    color: var(--foreground)
}

.nav a:hover:after,.nav a:focus-visible:after,.nav a.active:after {
    transform-origin: 0;
    transform: scaleX(1)
}

.header-actions {
    align-items: center;
    gap: 12px;
    margin-left: auto;
    display: flex
}

.header-actions-mobile {
    align-items: center;
    gap: 8px;
    margin-left: auto;
    display: none
}

.btn-icon {
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    color: var(--foreground);
    background: 0 0;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    transition: background .15s,border-color .15s;
    display: inline-flex
}

.btn-icon:hover:not(.hamburger),.btn-icon[aria-expanded=true] {
    background: var(--card);
    border-color: var(--accent)
}

.btn {
    border-radius: var(--radius-btn);
    white-space: nowrap;
    border: 1px solid #0000;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: background .15s,transform .1s,box-shadow .2s;
    display: inline-flex
}

.btn:active {
    transform: translateY(1px)
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px
}

.btn-primary {
    z-index: 1;
    background: var(--accent);
    color: var(--accent-fg);
    box-shadow: 0 0 0 0 var(--glow);
    transition: transform .1s,box-shadow .3s;
    position: relative
}

@media (hover: hover) {
    .btn-primary:hover {
        box-shadow:0 0 24px 2px var(--glow)
    }
}

.btn-primary:active {
    box-shadow: 0 0 36px 6px var(--glow);
    transform: scale(.96)
}

.mobile-menu {
    background: var(--card);
    border: 1px solid var(--border);
    z-index: 60;
    border-radius: 12px;
    min-width: 200px;
    padding: 8px;
    animation: .15s ease-out menuFadeIn;
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    box-shadow: 0 10px 32px #00000059
}

@keyframes menuFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-4px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mobile-menu-nav {
    flex-direction: column;
    display: flex
}

.mobile-menu-nav a {
    color: var(--foreground);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    transition: background .12s;
    display: block
}

.mobile-menu-nav a:hover,.mobile-menu-nav a:active {
    background: #7f7f7f1a
}

.mobile-menu-nav a.active {
    text-underline-offset: 4px;
    text-decoration: underline;
    text-decoration-thickness: 1px
}

.mobile-menu-divider {
    background: var(--border);
    height: 1px;
    margin: 6px 8px
}

.mobile-menu-theme {
    width: 100%;
    color: var(--muted-fg);
    cursor: pointer;
    background: 0 0;
    border: none;
    border-radius: 8px;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: background .12s,color .12s;
    display: flex
}

.mobile-menu-theme:hover {
    color: var(--foreground);
    background: #7f7f7f1a
}

@media (width<=900px) {
    .nav-desktop,.header-actions-desktop {
        display: none
    }

    .header-actions-mobile {
        display: flex
    }

    .header-inner {
        gap: 16px
    }
}

.chain-orbs {
    pointer-events: none;
    z-index: 0;
    content-visibility: auto;
    contain-intrinsic-size: 100% 600px;
    position: absolute;
    inset: 0;
    overflow: hidden
}

.chain-orb {
    pointer-events: none;
    position: absolute;
    transform: translate(-50%,-50%)
}

.chain-orb__img {
    object-fit: cover;
    opacity: .85;
    filter: blur(7px);
    will-change: filter;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: filter .25s ease-out;
    display: block
}

.chain-orb.is-active .chain-orb__img {
    filter: blur()
}

.chain-orb__label {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--card-fg);
    white-space: nowrap;
    opacity: 0;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: .8125rem;
    font-weight: 500;
    transition: opacity .2s ease-out;
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    transform: translateY(-50%);
    box-shadow: 0 6px 16px -8px #0006
}

.chain-orb.is-active .chain-orb__label {
    opacity: 1
}

@media (width<=768px) {
    .chain-orbs {
        display: none
    }
}

@media (prefers-reduced-motion:reduce) {
    .chain-orb__img,.chain-orb.is-active .chain-orb__img {
        filter: blur(7px);
        transition: none
    }

    .chain-orb__label {
        display: none
    }
}

.hero {
    align-items: center;
    min-height: calc(100vh - 64px);
    padding: 80px 0 60px;
    display: flex;
    position: relative;
    overflow: hidden
}

.hero-inner {
    grid-template-columns: minmax(320px,1fr) minmax(0,1.2fr);
    align-items: center;
    gap: 48px;
    min-height: 520px;
    display: grid
}

.hero>:not(.chain-orbs):not(svg) {
    z-index: 1;
    position: relative
}

.hero-visual {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative
}

.hero-text {
    max-width: 720px
}

.hero-title {
    letter-spacing: -.035em;
    color: var(--foreground);
    margin: 0 0 24px;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1
}

.btc-orange {
    color: #f7931a
}

.hero-subtitle {
    color: var(--muted-fg);
    max-width: 460px;
    margin: 0 0 36px;
    font-size: 18px;
    line-height: 1.5
}

.chain-typer {
    vertical-align: baseline;
    display: inline-block;
    position: relative
}

.chain-typer-sizer {
    visibility: hidden;
    white-space: nowrap;
    display: inline-block
}

.chain-typer-runner {
    white-space: nowrap;
    align-items: baseline;
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 0
}

.chain-typer-text {
    font-weight: inherit;
    letter-spacing: inherit
}

.chain-typer-caret {
    vertical-align: -.1em;
    border-radius: 1px;
    width: 3px;
    height: .95em;
    margin-left: 4px;
    animation: 1s step-end infinite caret-blink;
    display: inline-block
}

@keyframes caret-blink {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.hero-ctas {
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    display: flex
}

.btn-lg {
    border-radius: var(--radius-btn);
    padding: 18px 28px;
    font-size: 16px
}

.platform-badges {
    align-items: center;
    gap: 18px;
    display: flex
}

.platform-badge {
    color: var(--foreground);
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s,transform .15s;
    display: inline-flex
}

.platform-badge:hover {
    opacity: .85;
    transform: translateY(-1px)
}

.platform-badge img {
    object-fit: contain;
    width: 28px;
    height: 28px;
    display: block
}

.platform-name {
    white-space: nowrap
}

.hero-mascot {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    width: 360px;
    height: 360px;
    animation: 5s ease-in-out infinite mascot-float;
    position: relative
}

.hero-mascot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 8px;
    border-radius: 24px
}

.hero-mascot img {
    object-fit: contain;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: block
}

.hero-mascot .logo-dark {
    display: none;
    position: absolute;
    inset: 0
}

body[data-theme=light] .hero-mascot .logo-light {
    display: none
}

body[data-theme=light] .hero-mascot .logo-dark {
    display: block
}

.hero-mascot.is-casting {
    animation: .38s cubic-bezier(.4,1.4,.5,1) mascot-cast
}

.mascot-bubble {
    z-index: 2;
    background: var(--accent);
    color: var(--accent-fg);
    white-space: nowrap;
    box-shadow: 0 4px 20px var(--glow);
    pointer-events: none;
    border-radius: 14px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    animation: 3.2s ease-in-out infinite bubble-bob;
    position: absolute;
    top: 40px;
    right: 60px
}

.mascot-bubble:after {
    content: "";
    border-left: 6px solid #0000;
    border-right: 6px solid #0000;
    border-top: 6px solid var(--accent);
    width: 0;
    height: 0;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%)
}

.hero-mascot.bubble-hidden .mascot-bubble {
    display: none
}

@keyframes mascot-float {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes mascot-cast {
    0% {
        transform: scale(1)rotate(0)
    }

    30% {
        transform: scale(1.1)rotate(-8deg)
    }

    60% {
        transform: scale(.95)rotate(4deg)
    }

    to {
        transform: scale(1)rotate(0)
    }
}

@keyframes bubble-bob {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

@media (prefers-reduced-motion:reduce) {
    .hero-mascot,.mascot-bubble,.hero-mascot.is-casting,.chain-typer-caret {
        animation: none
    }
}

@media (width<=768px) {
    .hero {
        align-items: flex-start;
        min-height: 0;
        padding: 40px 0 120px
    }

    .hero .mascot-bubble {
        padding: 3px 8px;
        font-size: 10px;
        top: 6px;
        right: -7%
    }

    .hero-inner {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 0
    }

    .hero-text {
        max-width: 100%
    }

    .hero-title {
        font-size: 44px
    }

    .hero-mascot {
        width: min(155px,32vw);
        height: min(155px,32vw);
        margin: 0 auto
    }

    .hero-ctas {
        justify-content: center
    }

    .chain-typer-runner {
        left: 50%;
        transform: translate(-50%)
    }

    .hero-title .chain-typer {
        line-height: 1.1;
        display: block
    }

    .hero-title .chain-typer+br {
        display: none
    }
}

@media (width<=430px) {
    .hero-title {
        letter-spacing: -.03em;
        font-size: 36px
    }

    .hero-subtitle {
        font-size: 16px
    }
}

.coin-shower {
    pointer-events: none;
    z-index: 9000;
    position: fixed;
    inset: 0;
    overflow: visible
}

.coin-shower .coin {
    background: var(--card);
    box-shadow: 0 6px 16px #00000059, 0 0 0 1px color-mix(in oklab, var(--accent) 30%, transparent), 0 0 20px color-mix(in oklab, var(--accent) 25%, transparent);
    will-change: transform, opacity;
    border-radius: 50%;
    place-items: center;
    display: grid;
    position: absolute;
    overflow: hidden
}

.coin-shower .coin img {
    object-fit: contain;
    width: 70%;
    height: 70%
}

@media (width<=768px) {
    .spell-count {
        font-size: 10px;
        bottom: -6px
    }
}

.chain-bar {
    padding: 48px 0;
    position: relative
}

.chain-bar-wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    display: flex
}

.chain-eyebrow {
    letter-spacing: -.02em;
    color: var(--foreground);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15
}

.marquee-mask {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 40px;
    display: flex;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg,#0000,#000 8% 92%,#0000);
    mask-image: linear-gradient(90deg,#0000,#000 8% 92%,#0000)
}

.marquee {
    will-change: transform;
    gap: 14px;
    width: max-content;
    display: flex
}

.marquee:hover {
    animation-play-state: paused
}

.chain-pill {
    background: var(--card);
    border: 1px solid var(--on-bg-border);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    display: inline-flex
}

.chain-logo {
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    transition: transform .15s;
    display: inline-flex;
    overflow: hidden;
    background: 0 0!important
}

.chain-pill:hover .chain-logo {
    transform: scale(1.12)
}

.chain-logo img,.chain-logo svg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block
}

.chain-logo svg {
    width: 100%;
    height: 100%;
    display: block
}

.chain-name {
    color: var(--card-fg);
    font-size: 14px;
    font-weight: 600
}

@media (prefers-reduced-motion:reduce) {
    .marquee {
        animation: none
    }
}

@media (width<=768px) {
    .chain-bar {
        padding: 16px 0 32px
    }

    .chain-bar-wrap {
        gap: 28px
    }

    .chain-eyebrow {
        font-size: 22px
    }

    .marquee-mask {
        margin-top: 28px
    }

    .chain-pill {
        background: 0 0;
        border: none;
        gap: 0;
        padding: 0
    }

    .chain-name {
        display: none
    }
}

.marquee-row-wrap {
    position: relative
}

.chain-pill {
    cursor: pointer
}

.marquee-tooltip {
    background: var(--card);
    color: var(--card-fg);
    border: 1px solid var(--on-bg-border);
    z-index: 100;
    pointer-events: none;
    white-space: nowrap;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    animation: .18s ease-out tooltipFadeIn;
    position: fixed;
    transform: translate(-50%);
    box-shadow: 0 8px 24px #0006
}

.marquee-tooltip.flip-up {
    transform: translate(-50%)translateY(-100%)
}

.marquee-tooltip.flip-up:before {
    border-top: none;
    border-left: none;
    border-bottom: 1px solid var(--on-bg-border);
    border-right: 1px solid var(--on-bg-border);
    top: auto;
    bottom: -6px
}

@keyframes tooltipFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%,-50%)scale(.9)
    }

    to {
        opacity: 1;
        transform: translate(-50%,-50%)scale(1)
    }
}

.marquee-tooltip:before {
    content: "";
    background: var(--card);
    border-top: 1px solid var(--on-bg-border);
    border-left: 1px solid var(--on-bg-border);
    width: 12px;
    height: 12px;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translate(-50%)rotate(45deg)
}

.bs-overlay {
    z-index: 200;
    background: #00000080;
    animation: .2s bs-fade-in;
    position: fixed;
    inset: 0
}

@keyframes bs-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.bs-sheet {
    background: var(--card);
    border-radius: 20px 20px 0 0;
    flex-direction: column;
    width: 100%;
    max-width: 560px;
    height: 72vh;
    max-height: 82vh;
    animation: .28s cubic-bezier(.32,.72,0,1) bs-slide-up;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%)
}

@keyframes bs-slide-up {
    0% {
        transform: translate(-50%)translateY(100%)
    }

    to {
        transform: translate(-50%)translateY(0)
    }
}

.bs-handle {
    background: var(--border);
    border-radius: 2px;
    flex-shrink: 0;
    width: 40px;
    height: 4px;
    margin: 10px auto 0
}

.bs-header {
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px;
    display: flex
}

.bs-title {
    color: var(--foreground);
    margin: 0;
    font-size: 1rem;
    font-weight: 600
}

.bs-close {
    border: 1px solid var(--border);
    width: 32px;
    height: 32px;
    color: var(--muted-fg);
    cursor: pointer;
    background: 0 0;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    transition: background .15s,color .15s;
    display: inline-flex
}

.bs-close:hover {
    background: var(--background);
    color: var(--foreground)
}

.bs-body {
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 0 20px 20px;
    display: flex;
    position: relative;
    overflow: hidden
}

.bs-body:after {
    content: "";
    background: linear-gradient(to top, var(--card), transparent);
    pointer-events: none;
    height: 36px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px
}

.bs-search {
    flex-shrink: 0;
    margin-bottom: 12px;
    position: relative
}

.bs-search__input {
    width: 100%;
    color: var(--foreground);
    background: var(--background);
    border: 1px solid var(--border);
    box-sizing: border-box;
    border-radius: 10px;
    outline: none;
    padding: 10px 14px;
    font-size: .9375rem;
    transition: border-color .15s
}

.bs-search__input::placeholder {
    color: var(--muted-fg)
}

.bs-search__input:focus {
    border-color: var(--accent)
}

.bs-list {
    flex: 1;
    min-height: 0;
    margin: 0;
    padding: 0 0 40px;
    list-style: none;
    overflow-y: auto
}

.bs-list::-webkit-scrollbar {
    width: 10px
}

.bs-list::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none
}

.bs-list::-webkit-scrollbar-track {
    background: 0 0
}

.bs-list::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    background-clip: padding-box;
    border: 3px solid #0000;
    border-radius: 8px
}

.bs-list::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover)
}

@supports not selector(::-webkit-scrollbar) {
    .bs-list {
        scrollbar-width: thin;
        scrollbar-color: var(--scrollbar-thumb) transparent
    }
}

.bs-list__item {
    border-bottom: 1px solid var(--border);
    align-items: center;
    gap: 12px;
    padding: 9px 4px;
    display: flex
}

.bs-list__item:last-child {
    border-bottom: none
}

.bs-list__icon {
    background: var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    display: flex;
    overflow: hidden
}

.bs-list__icon img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block
}

.bs-list__icon--empty {
    background: var(--card);
    border: 1px solid var(--border)
}

.bs-list__label {
    color: var(--foreground);
    font-size: .9375rem;
    font-weight: 500
}

.bs-list__sublabel {
    color: var(--muted-fg);
    margin-left: auto;
    font-size: .8125rem
}

.bs-empty {
    text-align: center;
    color: var(--muted-fg);
    padding: 24px 0;
    font-size: .9375rem
}

.lightbox {
    z-index: 1000;
    -webkit-backdrop-filter: blur(4px);
    cursor: zoom-out;
    background: #000000d1;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: .18s lightbox-fade;
    display: flex;
    position: fixed;
    inset: 0
}

@keyframes lightbox-fade {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.lightbox__stage {
    cursor: default;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
    max-height: 90vh;
    animation: .2s lightbox-zoom;
    display: flex
}

.lightbox__image {
    border-radius: 28px;
    flex: 0 auto;
    width: auto;
    min-width: 0;
    max-width: min(420px,90vw);
    height: auto;
    max-height: 84vh;
    box-shadow: 0 24px 64px -12px #0009,0 0 0 1px #ffffff14
}

@media (width<=640px) {
    .lightbox {
        padding: 1rem
    }

    .lightbox__image {
        max-width: calc(100vw - 2rem);
        max-height: calc(100dvh - 9rem)
    }
}

@keyframes lightbox-zoom {
    0% {
        opacity: 0;
        transform: scale(.94)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.lightbox__close {
    color: #fff;
    cursor: pointer;
    background: #ffffff1f;
    border: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    transition: background .15s;
    display: flex;
    position: fixed;
    top: 1.25rem;
    right: 1.25rem
}

.lightbox__close:hover {
    background: #ffffff38
}

.features {
    background: var(--background);
    padding: 5rem 0;
    position: relative;
    overflow-x: clip
}

.features:first-of-type {
    padding-top: 6rem
}

.features__container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.features__header {
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    display: flex
}

.features__heading {
    letter-spacing: -.02em;
    color: var(--foreground);
    margin: 0;
    font-size: clamp(1.75rem,4vw,2.5rem);
    font-weight: 600;
    line-height: 1.1
}

.features__controls {
    flex-shrink: 0;
    gap: .5rem;
    display: flex
}

.features__arrow {
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    color: var(--foreground);
    cursor: pointer;
    background: 0 0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: border-color .2s,color .2s,opacity .2s,transform .15s;
    display: flex
}

.features__arrow svg {
    width: 18px;
    height: 18px
}

@media (hover: hover) {
    .features__arrow:hover:not(:disabled) {
        border-color:var(--accent);
        color: var(--accent)
    }
}

.features__arrow:active:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(.95)
}

.features__arrow:disabled {
    opacity: .3;
    cursor: not-allowed
}

.features__rail {
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 2rem 1.5rem;
    display: flex;
    overflow: auto visible
}

.features__rail::-webkit-scrollbar {
    display: none
}

.features__rail.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none
}

.features__rail.is-dragging .feature-tile {
    pointer-events: none
}

@media (width>=769px) {
    .features__rail {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: max(1.5rem,50vw - 768px + 1.5rem);
        padding-right: 2rem
    }
}

.feature-tile {
    background: var(--card);
    border: 1px solid var(--border);
    scroll-snap-align: center;
    opacity: 1;
    transform-origin: 50%;
    border-radius: 1.25rem;
    flex-direction: column;
    flex: 0 0 380px;
    height: 500px;
    padding: 1.75rem;
    transition: opacity .25s,transform .25s cubic-bezier(.2,.8,.2,1),border-color .3s,box-shadow .3s;
    display: flex;
    overflow: hidden;
    transform: translateY(0)scale(1)
}

@media (width>=1200px) {
    .feature-tile {
        flex: 0 0 456px;
        height: 600px
    }
}

@media (width>=769px) {
    .features__rail: has(.feature-tile:hover) .feature-tile {
        opacity:.4;
        transform: translateY(0)scale(.96)
    }

    .features__rail:has(.feature-tile:hover) .feature-tile:hover {
        opacity: 1;
        border-color: var(--accent);
        box-shadow: 0 0 0 1px var(--accent), 0 16px 40px -12px var(--glow);
        z-index: 2;
        transform: translateY(-10px)scale(1.04)
    }

    .features__rail.is-dragging .feature-tile {
        opacity: 1;
        border-color: var(--border);
        box-shadow: none;
        transform: translateY(0)scale(1)
    }

    .features__rail.is-dragging:has(.feature-tile:hover) .feature-tile {
        opacity: 1;
        border-color: var(--border);
        box-shadow: none;
        transform: translateY(0)scale(1)
    }

    .features__rail.is-dragging:has(.feature-tile:hover) .feature-tile:hover {
        opacity: 1;
        border-color: var(--border);
        box-shadow: none;
        transform: translateY(0)scale(1)
    }
}

.feature-tile__content {
    flex-shrink: 0;
    margin-bottom: 1.5rem
}

.feature-tile__title {
    letter-spacing: -.01em;
    color: var(--foreground);
    margin: 0 0 .5rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3
}

.feature-tile__description {
    color: var(--muted-fg);
    margin: 0;
    font-size: .9375rem;
    line-height: 1.5
}

.feature-tile__visual {
    border-radius: .75rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    display: flex
}

:is(.feature-tile__visual:has(.chain-list),.feature-tile__visual:has(.stat-block),.feature-tile__visual:has(.fiat-list),.feature-tile__visual:has(.bridge-list),.feature-tile__visual:has(.phone-showcase),.feature-tile__visual:has(.portfolio-showcase),.feature-tile__visual:has(.dual-portfolio-showcase),.feature-tile__visual:has(.full-phone-showcase),.feature-tile__visual:has(.auto-detect-showcase),.feature-tile__visual:has(.popup-showcase)) {
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 0;
    padding-top: 0
}

.feature-tile__visual:has(.icon-showcase) {
    min-height: 0
}

img[class*=-showcase__screen] {
    cursor: zoom-in
}

.feature-tile__visual:not(:has(.chain-list)):not(:has(.stat-block)):not(:has(.fiat-list)):not(:has(.bridge-list)):not(:has(.phone-showcase)):not(:has(.portfolio-showcase)):not(:has(.dual-portfolio-showcase)):not(:has(.full-phone-showcase)):not(:has(.auto-detect-showcase)):not(:has(.popup-showcase)):not(:has(.icon-showcase)):not(:has(.logo-lockup)) {
    border: 1px dashed var(--border);
    background: linear-gradient(135deg,#00b4ff0a 0%,#00b4ff03 100%)
}

[data-theme=light] .feature-tile__visual:not(:has(.chain-list)):not(:has(.stat-block)):not(:has(.fiat-list)):not(:has(.bridge-list)):not(:has(.phone-showcase)):not(:has(.portfolio-showcase)):not(:has(.dual-portfolio-showcase)):not(:has(.full-phone-showcase)):not(:has(.auto-detect-showcase)):not(:has(.popup-showcase)):not(:has(.icon-showcase)):not(:has(.logo-lockup)) {
    background: linear-gradient(135deg,#3861fb0a 0%,#3861fb03 100%)
}

@media (width<=768px) {
    .features {
        padding: 3.5rem 0
    }

    .features:first-of-type {
        padding-top: 4rem
    }

    .features__header {
        margin-bottom: 2rem
    }

    .features__controls {
        display: none
    }

    .features__rail {
        scroll-snap-type: x mandatory;
        gap: .75rem;
        margin-left: 0;
        margin-right: 0;
        padding-left: 11%;
        padding-right: 11%;
        scroll-padding-left: 11%;
        scroll-padding-right: 11%
    }

    .features__container {
        padding-left: 0;
        padding-right: 0
    }

    .features__header {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .feature-tile {
        opacity: .5;
        flex: 0 0 78%;
        height: 420px;
        padding: 1.25rem 1.25rem 1.5rem;
        transform: scale(.95)
    }

    .feature-tile.is-centered {
        opacity: 1;
        border-color: var(--accent);
        box-shadow: 0 0 0 1px var(--accent), 0 12px 32px -12px var(--glow);
        transform: scale(1)
    }
}

@media (width<=430px) {
    .feature-tile {
        flex: 0 0 82%;
        height: 400px
    }

    .features__rail {
        padding-left: 9%;
        padding-right: 9%;
        scroll-padding-left: 9%;
        scroll-padding-right: 9%
    }
}

.chain-list {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    width: 100%;
    padding: .5rem;
    display: grid
}

.chain-list--loading {
    min-height: 120px
}

.chain-list__row {
    align-items: center;
    gap: 10px;
    min-width: 0;
    display: flex
}

.chain-list__circle {
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    display: flex;
    overflow: hidden
}

.chain-list__circle img {
    object-fit: cover;
    border-radius: 50%;
    width: 100%;
    height: 100%
}

.chain-list__sym {
    color: var(--foreground);
    text-transform: uppercase;
    font-size: .5625rem;
    font-weight: 700
}

.chain-list__name {
    color: var(--foreground);
    white-space: normal;
    word-break: normal;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.2;
    overflow: visible
}

@media (width>=769px) {
    .feature-tile__visual: has(.chain-list) {
        align-items:center
    }

    .chain-list {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 0
    }

    .chain-list__circle {
        width: 30px;
        height: 30px
    }

    .chain-list__row {
        gap: 13px
    }

    .chain-list__name {
        font-size: 1rem
    }
}

@media (width>=1200px) {
    .chain-list {
        gap: 18px
    }

    .chain-list__circle {
        width: 38px;
        height: 38px
    }

    .chain-list__row {
        gap: 15px
    }

    .chain-list__name {
        font-size: 1.125rem
    }

    .chain-list__sym {
        font-size: .875rem
    }
}

@media (width<=768px) {
    .chain-list {
        gap: 4px;
        padding: .25rem
    }

    .chain-list__circle {
        width: 18px;
        height: 18px
    }

    .chain-list__name {
        font-size: .75rem
    }

    .chain-list__row {
        gap: 8px
    }
}

.stat-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: .5rem;
    display: flex
}

.stat-block--loading {
    min-height: 80px
}

.stat-block__number {
    letter-spacing: -.03em;
    color: var(--foreground);
    font-size: clamp(2.25rem,5vw,3rem);
    font-weight: 700;
    line-height: 1
}

.stat-block__asof {
    color: var(--muted-fg);
    margin-top: .375rem;
    margin-bottom: 0;
    font-size: .75rem
}

.stat-block__sub-stat {
    align-items: baseline;
    gap: .375rem;
    margin-top: .5rem;
    display: flex
}

.stat-block__sub-stat-num {
    letter-spacing: -.02em;
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1
}

.stat-block__sub-stat-label {
    color: var(--muted-fg);
    font-size: .75rem
}

.stat-block__breakdown {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: flex
}

.stat-block__row {
    align-items: center;
    gap: 10px;
    display: flex
}

.stat-block__activity-section {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    display: flex
}

.stat-block__activity-toggle {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    align-self: flex-end;
    gap: 2px;
    margin-bottom: .5rem;
    padding: 2px;
    display: inline-flex
}

.stat-block__activity-tab {
    color: var(--muted-fg);
    cursor: pointer;
    background: 0 0;
    border: none;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .6875rem;
    font-weight: 500;
    transition: background .15s,color .15s
}

.stat-block__activity-tab.is-active {
    background: var(--background);
    color: var(--foreground)
}

.stat-block__breakdown--tight {
    margin-top: 0
}

.stat-block__row--dividend {
    justify-content: flex-start;
    gap: 8px
}

.stat-block__row-label {
    color: var(--muted-fg);
    flex: 1;
    min-width: 0;
    font-size: .8125rem;
    font-weight: 500
}

.stat-block__row--dividend .stat-block__row-num {
    margin-left: auto
}

.stat-block__logo {
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    display: inline-flex;
    overflow: hidden
}

.stat-block__logo img {
    object-fit: cover;
    border-radius: 50%;
    width: 100%;
    height: 100%
}

.stat-block__logo--empty {
    background: var(--card);
    border: 1px solid var(--border)
}

.stat-block__icon {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    display: inline-flex
}

.stat-block__icon svg,.stat-block__icon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    display: block
}

.stat-block__row-num {
    color: var(--foreground);
    font-variant-numeric: tabular-nums;
    font-size: .875rem;
    font-weight: 500
}

@media (width>=769px) {
    .stat-block__number {
        font-size: 3.125rem
    }

    .stat-block__sub-stat-num {
        font-size: 1.375rem
    }

    .stat-block__breakdown {
        gap: 10px;
        margin-top: 1.125rem
    }

    .stat-block__logo,.stat-block__icon {
        width: 20px;
        height: 20px
    }

    .stat-block__row-label,.stat-block__row-num {
        font-size: .875rem
    }
}

@media (width>=1200px) {
    .stat-block__number {
        font-size: 3.5rem
    }

    .stat-block__sub-stat-num {
        font-size: 1.5rem
    }

    .stat-block__breakdown {
        gap: 11px;
        margin-top: 1.25rem
    }

    .stat-block__logo,.stat-block__icon {
        width: 22px;
        height: 22px
    }

    .stat-block__row-label,.stat-block__row-num {
        font-size: .9375rem
    }
}

@media (width<=768px) {
    .stat-block__number {
        font-size: 2rem
    }

    .stat-block__breakdown {
        gap: 6px
    }

    .stat-block__row-num {
        font-size: .8125rem
    }

    .stat-block__sub-stat {
        margin-top: .25rem
    }

    .stat-block__activity-section {
        margin-top: .5rem
    }

    .stat-block__activity-toggle {
        margin-bottom: .25rem
    }

    .stat-block {
        padding-top: 0
    }

    .feature-tile__content {
        margin-bottom: .75rem
    }

    .stat-block__row--dividend {
        gap: 6px
    }

    .stat-block__logo {
        width: 14px;
        height: 14px
    }

    .stat-block__row-label,.stat-block__row--dividend .stat-block__row-num {
        font-size: .75rem
    }

    .stat-block__asof {
        font-size: .6875rem
    }
}

.stat-block__rating-num-big {
    letter-spacing: -.03em;
    color: var(--foreground);
    margin-bottom: .5rem;
    font-size: clamp(2.25rem,5vw,3rem);
    font-weight: 700;
    line-height: 1
}

.stat-block__stars {
    gap: 2px;
    margin-bottom: .5rem;
    display: flex
}

.stat-block__star-mini {
    color: var(--accent);
    font-size: 1.25rem;
    line-height: 1;
    position: relative
}

.stat-block__star-mini--empty {
    color: var(--border)
}

.stat-block__star-mini--half {
    background: linear-gradient(90deg, var(--accent) 50%, var(--border) 50%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text
}

.stat-block__rating-count {
    color: var(--muted-fg);
    font-size: .875rem
}

.review-cycler {
    width: 100%;
    max-height: 180px;
    margin-top: 1.25rem;
    overflow: hidden
}

.review-cycler__inner {
    opacity: 1;
    transition: opacity .4s,transform .4s;
    transform: translateY(0)
}

.review-cycler__inner.is-animating-out {
    opacity: 0;
    transform: translateY(-8px)
}

.review-cycler__stars {
    color: var(--muted-fg);
    letter-spacing: 1px;
    opacity: .6;
    margin-bottom: .5rem;
    font-size: .8125rem
}

.review-cycler__title {
    color: var(--foreground);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: .375rem;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    overflow: hidden
}

.review-cycler__text {
    color: var(--muted-fg);
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: .5rem;
    font-size: .8125rem;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden
}

.review-cycler__author {
    color: var(--muted-fg);
    font-size: .75rem;
    font-style: italic
}

.searchable-list {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: fit-content;
    margin: 0 auto;
    display: flex
}

.list-search-pill {
    border-radius: var(--radius-pill,999px);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--muted-fg);
    cursor: pointer;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: .9375rem;
    font-weight: 500;
    transition: border-color .15s,color .15s;
    display: flex
}

.list-search-pill:hover {
    border-color: var(--accent);
    color: var(--foreground)
}

.list-search-pill svg {
    flex-shrink: 0
}

@media (width<=768px) {
    .searchable-list {
        width: 100%
    }

    .fiat-list,.bridge-list {
        grid-template-columns: repeat(3,minmax(0,1fr));
        width: 100%
    }

    .fiat-list .fiat-list__ticker,.bridge-list .bridge-list__name {
        text-overflow: clip;
        overflow: visible
    }
}

.fiat-list {
    grid-template-columns: repeat(3,auto);
    align-content: start;
    gap: 6px 16px;
    width: fit-content;
    margin: 0 auto;
    padding: .25rem;
    display: grid
}

.fiat-list--loading {
    min-height: 120px
}

.fiat-list__row {
    align-items: center;
    gap: 8px;
    min-width: 0;
    display: flex
}

.fiat-list__circle {
    background: var(--card);
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    display: flex;
    overflow: hidden
}

.fiat-list__circle img {
    object-fit: cover;
    border-radius: 50%;
    width: 100%;
    height: 100%
}

.fiat-list__ticker {
    color: var(--foreground);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden
}

.fiat-list__row--more .fiat-list__ticker {
    color: var(--muted-fg)
}

button.fiat-list__row--more,button.bridge-list__row--more {
    cursor: pointer;
    text-align: left;
    font: inherit;
    background: 0 0;
    border: none;
    padding: 0
}

.bridge-list {
    grid-template-columns: repeat(3,auto);
    align-content: start;
    gap: 6px 16px;
    width: fit-content;
    margin: 0 auto;
    padding: .25rem;
    display: grid
}

.bridge-list--loading {
    min-height: 120px
}

.bridge-list__row {
    align-items: center;
    gap: 8px;
    min-width: 0;
    display: flex
}

.bridge-list__circle {
    background: var(--card);
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    display: flex;
    overflow: hidden
}

.bridge-list__circle img {
    object-fit: cover;
    border-radius: 50%;
    width: 100%;
    height: 100%
}

.bridge-list__circle--empty {
    background: var(--card);
    border: 1px solid var(--border)
}

.bridge-list__name {
    color: var(--foreground);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden
}

.bridge-list__row--more .bridge-list__name {
    color: var(--muted-fg)
}

.fiat-list__more-icon,.bridge-list__more-icon {
    color: var(--muted-fg);
    flex-shrink: 0
}

@media (width>=769px) {
    .fiat-list,.bridge-list {
        grid-template-columns: repeat(4,auto)
    }
}

@media (width>=1200px) {
    .fiat-list,.bridge-list {
        gap: 9px 22px
    }

    .fiat-list__circle,.bridge-list__circle {
        width: 24px;
        height: 24px
    }

    .fiat-list__row,.bridge-list__row {
        gap: 11px
    }

    .fiat-list__ticker,.bridge-list__name {
        font-size: 1rem
    }
}

.phone-showcase {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative
}

.phone-showcase__phone {
    aspect-ratio: 9/19.5;
    width: 38%;
    position: absolute
}

.phone-showcase__phone--left {
    z-index: 1;
    transform: rotate(-12deg)translate(-32%)
}

.phone-showcase__phone--right {
    z-index: 2;
    transform: rotate(12deg)translate(32%)
}

.phone-showcase__frame {
    background: #1a1a1a;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0 12px 32px -8px #0009,0 0 0 1px #ffffff14
}

.phone-showcase__screen {
    object-fit: cover;
    border-radius: 14px;
    width: 100%;
    height: 100%;
    display: block
}

[data-theme=light] .phone-showcase__frame {
    background: #2a2a2a;
    box-shadow: 0 12px 32px -8px #00000040,0 0 0 1px #0000001a
}

.portfolio-showcase {
    justify-content: center;
    align-items: flex-end;
    width: calc(100% + 3.5rem);
    height: calc(100% + 1.75rem);
    margin: 0 -1.75rem -1.75rem;
    display: flex;
    position: relative;
    overflow: hidden
}

.portfolio-showcase__phone {
    aspect-ratio: 9/19.5;
    width: 80%;
    margin-bottom: calc(var(--phone-offset,50%) * -1);
    align-self: flex-start
}

.portfolio-showcase__frame {
    background: #1a1a1a;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px -8px #00000080,0 0 0 1px #ffffff14
}

.portfolio-showcase__screen {
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
    width: 100%;
    height: 100%;
    display: block
}

.portfolio-showcase__screen--empty {
    background: var(--background)
}

[data-theme=light] .portfolio-showcase__frame {
    background: #2a2a2a;
    box-shadow: 0 8px 24px -8px #00000040,0 0 0 1px #0000001a
}

@media (width<=768px) {
    .portfolio-showcase__phone {
        width: 70%;
        margin-bottom: -40%
    }
}

.dual-portfolio-showcase {
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    width: calc(100% + 3.5rem);
    height: calc(100% + 1.75rem);
    margin: 0 -1.75rem -1.75rem;
    display: flex;
    position: relative;
    overflow: hidden
}

.dual-portfolio-showcase__clip {
    box-sizing: border-box;
    flex-shrink: 0;
    align-items: flex-start;
    width: 46%;
    height: 54%;
    padding: 12px 12px 0;
    display: flex;
    overflow: hidden
}

.dual-portfolio-showcase__phone {
    aspect-ratio: 9/19.5;
    flex-shrink: 0;
    width: 100%
}

.dual-portfolio-showcase__frame {
    background: #1a1a1a;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px -8px #00000080,0 0 0 1px #ffffff14
}

[data-theme=light] .dual-portfolio-showcase__frame {
    background: #2a2a2a;
    box-shadow: 0 8px 24px -8px #00000040,0 0 0 1px #0000001a
}

.dual-portfolio-showcase__screen {
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
    width: 100%;
    height: 100%;
    display: block
}

.dual-portfolio-showcase__screen--empty {
    background: var(--background)
}

@media (width<=768px) {
    .dual-portfolio-showcase__clip {
        width: 44%
    }
}

.full-phone-showcase {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex
}

.full-phone-showcase__phone {
    aspect-ratio: 9/19.5;
    max-width: 100%;
    height: 100%
}

.full-phone-showcase__frame {
    background: #1a1a1a;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px -8px #00000080,0 0 0 1px #ffffff14
}

[data-theme=light] .full-phone-showcase__frame {
    background: #2a2a2a;
    box-shadow: 0 8px 24px -8px #00000040,0 0 0 1px #0000001a
}

.full-phone-showcase__screen {
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
    width: 100%;
    height: 100%;
    display: block
}

.full-phone-showcase__screen--empty {
    background: var(--background)
}

.auto-detect-showcase {
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative
}

.auto-detect-showcase__phone {
    aspect-ratio: 9/19.5;
    width: 45%
}

.auto-detect-showcase__frame {
    background: #1a1a1a;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px -8px #00000080,0 0 0 1px #ffffff14
}

.auto-detect-showcase__screen {
    object-fit: cover;
    border-radius: 14px;
    width: 100%;
    height: 100%;
    display: block
}

[data-theme=light] .auto-detect-showcase__frame {
    background: #2a2a2a;
    box-shadow: 0 8px 24px -8px #00000040,0 0 0 1px #0000001a
}

@media (width<=768px) {
    .auto-detect-showcase__phone {
        width: auto;
        height: 100%
    }
}

.popup-showcase {
    justify-content: center;
    align-items: flex-end;
    width: calc(100% + 3.5rem);
    height: calc(100% + 1.75rem);
    margin: 0 -1.75rem -1.75rem;
    display: flex;
    overflow: hidden
}

.popup-showcase__screen {
    box-sizing: border-box;
    border: 7px solid #1a1a1a;
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    width: auto;
    max-width: 80%;
    height: auto;
    max-height: 100%;
    display: block;
    box-shadow: 0 0 0 1px #ffffff14,0 -6px 28px -10px #0009
}

.popup-showcase__screen--empty {
    aspect-ratio: .93;
    background: var(--background);
    width: 70%
}

[data-theme=light] .popup-showcase__screen {
    border-color: #2a2a2a;
    box-shadow: 0 0 0 1px #0000001a,0 -6px 28px -10px #00000040
}

.popup-showcase__screen--empty {
    background: var(--background)
}

[data-theme=light] .popup-showcase__frame {
    background: #2a2a2a;
    box-shadow: 0 12px 32px -8px #00000040,0 0 0 1px #0000001a
}

.icon-showcase {
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding-bottom: 4.5rem;
    display: flex;
    position: relative
}

.icon-showcase__wrap {
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    display: flex;
    position: relative
}

.icon-showcase__glow {
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    filter: blur(8px);
    opacity: .6;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.icon-showcase__icon {
    width: 96px;
    height: 96px;
    color: var(--accent);
    position: relative
}

@media (width<=768px) {
    .icon-showcase {
        padding-bottom: 2rem
    }
}

@media (width>=769px) {
    .icon-showcase {
        padding-bottom: 5.25rem
    }

    .icon-showcase__wrap,.icon-showcase__icon {
        width: 112px;
        height: 112px
    }

    .icon-showcase__glow {
        width: 210px;
        height: 210px
    }
}

@media (width>=1200px) {
    .icon-showcase {
        padding-bottom: 6rem
    }

    .icon-showcase__wrap,.icon-showcase__icon {
        width: 132px;
        height: 132px
    }

    .icon-showcase__glow {
        width: 250px;
        height: 250px
    }
}

.logo-lockup {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 1rem;
    display: flex
}

.logo-lockup__logo {
    object-fit: contain;
    width: auto;
    max-width: 80%;
    height: 56px
}

.logo-lockup__logo--sm {
    height: 44px
}

[data-theme=dark] .logo-lockup__logo {
    filter: brightness(0)invert()
}

@media (width>=769px) {
    .logo-lockup {
        gap: 1.75rem
    }

    .logo-lockup__logo {
        height: 66px
    }

    .logo-lockup__logo--sm {
        height: 52px
    }
}

@media (width>=1200px) {
    .logo-lockup {
        gap: 2rem
    }

    .logo-lockup__logo {
        height: 76px
    }

    .logo-lockup__logo--sm {
        height: 60px
    }
}

.footer {
    border-top: 1px solid var(--on-bg-border);
    background: var(--background);
    padding: 64px 0 40px
}

.footer-grid {
    grid-template-columns: 1.4fr repeat(4,1fr);
    align-items: start;
    gap: 48px;
    display: grid
}

.footer-brand-col {
    flex-direction: column;
    order: -1;
    gap: 16px;
    display: flex
}

.footer-wordmark {
    color: var(--foreground);
    letter-spacing: -.01em;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex
}

.footer-mark {
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: inline-flex
}

.footer-mark img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    display: block
}

.footer-mark .logo-dark,body[data-theme=light] .footer-mark .logo-light {
    display: none
}

body[data-theme=light] .footer-mark .logo-dark {
    display: block
}

.footer-copyright {
    color: var(--muted-fg);
    margin: 0;
    font-size: 13px;
    line-height: 1.5
}

.footer-col h4 {
    letter-spacing: -.01em;
    color: var(--foreground);
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 600
}

.footer-col ul {
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex
}

.footer-col a {
    color: var(--muted-fg);
    padding-bottom: 2px;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
    display: inline-block;
    position: relative
}

.footer-col a:after {
    content: "";
    transform-origin: 100%;
    background: currentColor;
    width: 100%;
    height: 1px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0)
}

.footer-col a:hover,.footer-col a:focus-visible {
    color: var(--foreground)
}

.footer-col a:hover:after,.footer-col a:focus-visible:after {
    transform-origin: 0;
    transform: scaleX(1)
}

@media (width<=900px) {
    .footer .container {
        padding-left: 48px;
        padding-right: 48px
    }

    .footer-grid {
        grid-template-columns: repeat(4,minmax(0,max-content));
        justify-content: center;
        gap: 40px 48px
    }

    .footer-brand-col {
        text-align: center;
        border-top: 1px solid var(--on-bg-border);
        order: 0;
        grid-column: 1/-1;
        align-items: center;
        padding-top: 16px
    }

    .footer-copyright {
        text-align: center
    }
}

@media (width<=600px) {
    .footer-grid {
        grid-template-columns: repeat(2,minmax(0,max-content));
        gap: 40px 64px
    }
}

@media (width<=480px) {
    .footer-grid {
        gap: 32px 48px
    }
}

.audits-page {
    max-width: 960px;
    color: var(--foreground);
    margin: 0 auto;
    padding: 0 1.5rem 4rem
}

.audits-hero {
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
    padding: 4rem 0 3rem
}

.audits-eyebrow {
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block
}

.audits-h1 {
    letter-spacing: -1px;
    margin: 0 0 1rem;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1
}

.audits-lede {
    color: var(--muted-fg);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 16px;
    line-height: 1.6
}

.audits-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    display: flex
}

.audits-stat {
    text-align: center
}

.audits-stat-num {
    color: var(--foreground);
    font-size: 32px;
    font-weight: 700;
    line-height: 1
}

.audits-stat-label {
    color: var(--muted-fg);
    letter-spacing: 1px;
    margin-top: 8px;
    font-size: 11px
}

.audits-list-section {
    flex-direction: column;
    display: flex
}

.audits-list-head {
    margin-bottom: 1.25rem
}

.audits-list-title {
    color: var(--foreground);
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 600
}

.audits-list-sub {
    color: var(--muted-fg);
    margin: 0;
    font-size: 13px
}

.audit-group {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: .75rem;
    padding: 1.25rem 1.5rem;
    transition: border-color .2s
}

.audit-group:hover {
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border))
}

.audit-group-head {
    align-items: center;
    gap: 12px;
    padding-bottom: .5rem;
    display: flex
}

.audit-group-logo {
    object-fit: contain;
    flex-shrink: 0;
    width: 40px;
    height: 40px
}

.audit-group-logo.logo-light,.audit-group-logo.logo-dark {
    transform: scale(1.15)
}

.audit-group-icon svg {
    width: 32px;
    height: 32px
}

.audit-group-name {
    color: var(--foreground);
    margin: 0;
    font-size: 16px;
    font-weight: 600
}

.audit-group-meta {
    color: var(--muted-fg);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-left: auto;
    font-size: 11px;
    font-weight: 500
}

.audit-chain-row {
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: .875rem 0;
    display: flex
}

.audit-chain-label {
    min-width: 160px;
    color: var(--muted-fg);
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    font-size: 13px;
    font-weight: 500;
    display: flex
}

.audit-chain-logo {
    object-fit: contain;
    flex-shrink: 0;
    width: 20px;
    height: 20px
}

.audit-chain-dot {
    border-radius: 50%;
    flex-shrink: 0;
    width: 14px;
    height: 14px
}

.audit-chain-buttons {
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
    display: flex
}

.audit-btn {
    border: 1px solid var(--border);
    color: var(--foreground);
    cursor: pointer;
    white-space: nowrap;
    background: 0 0;
    border-radius: 8px;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
    display: inline-flex
}

.audit-btn:hover {
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px)
}

.audit-btn-security,.audit-btn-economic {
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border))
}

.audit-group-logo.logo-light {
    display: none
}

.audit-group-logo.logo-dark,[data-theme=light] .audit-group-logo.logo-light {
    display: block
}

[data-theme=light] .audit-group-logo.logo-dark {
    display: none
}

@media (width<=768px) {
    .audits-page {
        padding: 0 1rem 3rem
    }

    .audits-hero {
        margin-bottom: 2rem;
        padding: 2.5rem 0 2rem
    }

    .audits-h1 {
        font-size: 32px
    }

    .audits-lede {
        font-size: 14px
    }

    .audits-stats {
        gap: 2rem
    }

    .audits-stat-num {
        font-size: 26px
    }

    .audit-group {
        padding: 1rem 1.25rem
    }

    .audit-group-head {
        flex-wrap: wrap
    }

    .audit-group-name {
        font-size: 14px
    }

    .audit-group-logo {
        width: 28px;
        height: 28px
    }

    .audit-chain-buttons.is-multi {
        margin-left: 0
    }

    .audit-group-icon svg {
        width: 22px;
        height: 22px
    }

    .audit-group-meta {
        text-align: right;
        width: 100%;
        margin-top: -2px;
        margin-left: 46px
    }

    .audit-chain-row {
        gap: .75rem
    }

    .audit-chain-label {
        min-width: 120px;
        padding-left: 4px
    }
}

.audit-group-icon {
    color: var(--foreground);
    justify-content: center;
    align-items: center;
    display: flex
}

.audit-group-logo.logo-im {
    margin-left: 2px
}

.audit-platform-logos {
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    display: flex
}

.audit-platform-item {
    color: var(--muted-fg);
    align-items: center;
    gap: 6px;
    font-size: 13px;
    display: inline-flex
}

.audit-platform-logo {
    object-fit: contain;
    flex-shrink: 0;
    width: 18px;
    height: 18px
}

.tokens-page {
    max-width: 960px;
    color: var(--foreground);
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem
}

.tokens-secondary-grid {
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    display: grid;
    position: relative
}

@media (width<=900px) {
    .tokens-secondary-grid {
        grid-template-columns: 1fr
    }
}

.token-card {
    background: var(--card);
    border: 1px solid var(--border);
    z-index: 1;
    border-radius: 16px;
    padding: 2rem;
    scroll-margin-top: 80px;
    position: relative
}

.token-card--flagship {
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent), 0 8px 32px -16px var(--glow)
}

.token-card--secondary {
    padding: 1.5rem
}

.token-card--secondary .token-card__head {
    gap: 1rem;
    margin-bottom: 1rem
}

.token-card--secondary .token-card__logo {
    border-radius: 12px;
    width: 48px;
    height: 48px
}

.token-card--secondary .token-card__name {
    font-size: 20px
}

.token-card--secondary .token-card__fullname {
    font-size: 12px
}

.token-card--secondary .token-card__tagline {
    font-size: 13px
}

.token-card--secondary .token-contracts__title {
    margin-bottom: 8px;
    font-size: 10px
}

.token-card__head {
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex
}

.token-card__logo {
    border-radius: 14px;
    flex-shrink: 0;
    width: 64px;
    height: 64px
}

.token-card--flagship .token-card__logo {
    width: 80px;
    height: 80px
}

.token-card__title {
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    display: flex
}

.token-card__name {
    letter-spacing: -.5px;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    display: flex
}

.token-card--flagship .token-card__name {
    font-size: 34px
}

.token-card__fullname {
    color: var(--muted-fg);
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 500
}

.token-card__tagline {
    color: var(--accent);
    margin: 0;
    font-size: 15px;
    font-weight: 500
}

.token-card__desc {
    color: var(--muted-fg);
    margin: 0 0 1.5rem;
    font-size: 15px;
    line-height: 1.6
}

.token-card__desc-link {
    color: inherit;
    text-underline-offset: 3px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    -webkit-text-decoration-color: color-mix(in srgb, var(--foreground) 30%, transparent);
    text-decoration-color: color-mix(in srgb, var(--foreground) 30%, transparent);
    white-space: nowrap;
    transition: color .15s,text-decoration-color .15s
}

.token-card__desc-link:hover {
    color: var(--foreground);
    -webkit-text-decoration-color: var(--accent);
    text-decoration-color: var(--accent)
}

.token-card__desc-link-icon {
    vertical-align: -2px;
    margin-left: 3px;
    transition: transform .15s,color .15s;
    display: inline-block
}

.token-card__desc-link:hover .token-card__desc-link-icon {
    color: var(--accent);
    transform: translate(2px,-2px)
}

.token-cta {
    border-top: 1px solid var(--border);
    flex-flow: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    display: flex
}

.token-cta__lead {
    color: var(--foreground);
    font-size: 14px;
    font-weight: 500
}

.token-cta__links {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    display: flex
}

.token-cta__platform {
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    text-decoration: none;
    transition: border-color .12s,background .12s,transform .12s;
    display: inline-flex
}

.token-cta__platform:hover {
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
    background: color-mix(in srgb, var(--accent) 6%, var(--background));
    transform: translateY(-1px)
}

.token-cta__platform img {
    width: 18px;
    height: 18px
}

.token-cta__dapp {
    margin-left: 6px;
    font-size: 14px;
    font-weight: 500
}

.token-highlights {
    background: color-mix(in srgb, var(--accent) 6%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
    border-radius: 12px;
    grid-template-columns: repeat(3,1fr);
    grid-template-areas: "usd cycling holders";
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    display: grid
}

.token-highlight {
    text-align: center
}

.token-highlight--cycling {
    grid-area: cycling
}

.token-highlight--usd {
    grid-area: usd
}

.token-highlight--holders {
    grid-area: holders
}

.token-highlight__value {
    color: var(--foreground);
    font-size: 22px;
    font-weight: 700;
    line-height: 1
}

.token-highlight__label {
    letter-spacing: 1px;
    color: var(--muted-fg);
    margin-top: 6px;
    font-size: 11px
}

.token-highlight--cycling .token-highlight__value {
    font-variant-numeric: tabular-nums;
    justify-content: center;
    align-items: center;
    gap: 8px;
    animation: .35s ease-out token-cycle-fade;
    display: inline-flex
}

@keyframes token-cycle-fade {
    0% {
        opacity: 0;
        transform: translateY(2px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.token-highlight__chain-logo {
    border-radius: 50%;
    flex-shrink: 0;
    width: 20px;
    height: 20px
}

.token-highlight__cycling-chain {
    animation: .35s ease-out token-cycle-fade;
    display: inline-block
}

.token-features {
    grid-template-columns: repeat(2,1fr);
    gap: 8px 1.5rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    display: grid
}

.token-features li {
    color: var(--foreground);
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.5;
    position: relative
}

.token-features li:before {
    content: "";
    background: var(--accent);
    border-radius: 50%;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 8px;
    left: 0
}

.token-contracts__title {
    letter-spacing: 1px;
    color: var(--muted-fg);
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 600
}

.token-contract-row {
    background: var(--background);
    border: 1px solid var(--border);
    width: 100%;
    color: var(--foreground);
    border-radius: 10px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: .75rem;
    margin-bottom: 8px;
    padding: 10px 14px;
    transition: border-color .12s,background .12s;
    display: grid
}

.token-contract-row.is-copied {
    border-color: var(--success);
    background: color-mix(in srgb, var(--success) 8%, var(--background))
}

.token-contract-chain-cluster {
    align-items: center;
    gap: 8px;
    display: inline-flex
}

.token-contract-chain {
    cursor: pointer;
    font: inherit;
    color: inherit;
    background: 0 0;
    border: none;
    border-radius: 6px;
    align-items: center;
    gap: 10px;
    margin: -4px -6px;
    padding: 4px 6px;
    transition: color .12s,background .12s;
    display: inline-flex
}

.token-contract-chain:hover {
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 6%, transparent)
}

.token-contract-chain-logo {
    border-radius: 50%;
    flex-shrink: 0;
    width: 22px;
    height: 22px
}

.token-contract-chain-dot {
    border-radius: 50%;
    flex-shrink: 0;
    width: 12px;
    height: 12px
}

.token-contract-chain-name {
    font-size: 14px;
    font-weight: 500
}

.token-contract-copy-icon {
    color: var(--muted-fg);
    align-items: center;
    transition: color .12s;
    display: inline-flex
}

.token-contract-chain:hover .token-contract-copy-icon {
    color: var(--accent)
}

.token-contract-row.is-copied .token-contract-copy-icon {
    color: var(--success)
}

.token-contract-address {
    color: var(--muted-fg);
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: right;
    font-family: SF Mono,Menlo,Consolas,monospace;
    font-size: 13px;
    overflow: hidden
}

.token-card--secondary .token-contract-address {
    text-align: left
}

.token-card--secondary .token-contract-row {
    grid-template-columns: 1fr;
    gap: 6px
}

.token-contract-external {
    width: 28px;
    height: 28px;
    color: var(--muted-fg);
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: color .12s,background .12s;
    display: inline-flex
}

.token-contract-external:hover {
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 8%, transparent)
}

.token-contract-external--disabled {
    opacity: .35;
    cursor: default
}

@media (width<=768px) {
    .token-card {
        padding: 1.5rem
    }

    .token-card__head {
        gap: 1rem
    }

    .token-card__logo {
        width: 52px;
        height: 52px
    }

    .token-card--flagship .token-card__logo {
        width: 64px;
        height: 64px
    }

    .token-card__name {
        gap: 8px;
        font-size: 22px
    }

    .token-card--flagship .token-card__name {
        font-size: 26px
    }

    .token-card__fullname,.token-card--secondary .token-card__fullname {
        font-size: clamp(9px,2.5vw,12px)
    }

    .token-highlights {
        grid-template-columns: 1fr;
        grid-template-areas: "usd""cycling""holders";
        gap: .75rem;
        padding: 1rem
    }

    .token-highlight__value {
        font-size: 22px
    }

    .token-features {
        grid-template-columns: 1fr
    }

    .token-contract-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px 12px
    }

    .token-contract-address {
        text-align: left;
        letter-spacing: -.02em;
        font-size: clamp(10px,2.7vw,13px)
    }

    .token-cta {
        text-align: center;
        justify-content: center
    }
}

.spell-count-badge {
    z-index: 40;
    pointer-events: none;
    align-items: baseline;
    gap: 6px;
    font-size: 12px;
    line-height: 1;
    animation: .4s ease-out badgeFadeIn;
    display: inline-flex;
    position: absolute;
    top: 76px;
    right: max(24px,50vw - 616px)
}

.spell-count-badge-num {
    color: var(--foreground);
    font-variant-numeric: tabular-nums;
    font-weight: 700
}

.spell-count-badge-label {
    color: var(--muted-fg);
    font-weight: 500
}

@keyframes badgeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-4px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (width<=768px) {
    .spell-count-badge {
        padding: 4px 10px;
        font-size: 11px;
        top: 72px;
        right: 4px
    }
}
