:root {
    --bg: #000000;
    --surface: #111318;
    --surface-raised: #1e2329;
    --surface-subtle: #0b0d10;
    --line: rgba(132, 142, 156, 0.22);
    --line-strong: rgba(132, 142, 156, 0.34);
    --ink: #f5f5f5;
    --muted: #848e9c;
    --soft: #c8ccd2;
    --yellow: #f0b90b;
    --yellow-ink: #181a20;
    --success: #0ecb81;
    --warning: #f3bd46;
    --danger: #ef6a6a;
    --shadow: 0 16px 48px rgba(0, 0, 0, 0.46);
    --radius-card:14px
}

* {
    box-sizing:border-box
}

body, html {
    background:var(--bg)
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    font-family: var(--font-ibm-plex-sans), "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing:antialiased
}

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

button {
    border: 0;
    cursor:pointer
}

button:disabled {
    cursor: not-allowed;
    opacity:.48
}

a {
    color:inherit
}

.app-shell {
    position: relative;
    isolation: isolate;
    min-height: 100dvh;
    max-width: 640px;
    margin: 0 auto;
    padding: max(18px, env(safe-area-inset-top)) 20px calc(96px + env(safe-area-inset-bottom));
    overflow-x:clip
}

.page-stage, .topbar {
    position: relative;
    z-index:1
}

.page-stage {
    animation: page-drop-in .24s cubic-bezier(.2, .75, .25, 1) both;
    will-change:transform, opacity
}

.ambient-sparkles {
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100%, 640px);
    overflow: hidden;
    transform: translateX(-50%);
    pointer-events:none
}

.ambient-sparkles span {
    position: absolute;
    top: -8%;
    left: var(--sparkle-x);
    width: var(--sparkle-size);
    height: var(--sparkle-size);
    opacity: 0;
    border-radius: 50%;
    background: #f8d866;
    box-shadow: 0 0 7px rgba(240, 185, 11, .75), 0 0 16px rgba(240, 185, 11, .24);
    animation: sparkle-fall var(--sparkle-speed) linear var(--sparkle-delay) infinite, sparkle-glint 2.8s ease-in-out var(--sparkle-delay) infinite;
    will-change:transform, opacity
}

.ambient-sparkles span:first-child {
    --sparkle-x: 7%;
    --sparkle-size: 2px;
    --sparkle-speed: 13s;
    --sparkle-delay:-2s
}

.ambient-sparkles span:nth-child(2) {
    --sparkle-x: 18%;
    --sparkle-size: 3px;
    --sparkle-speed: 17s;
    --sparkle-delay:-11s
}

.ambient-sparkles span:nth-child(3) {
    --sparkle-x: 29%;
    --sparkle-size: 1px;
    --sparkle-speed: 12s;
    --sparkle-delay:-7s
}

.ambient-sparkles span:nth-child(4) {
    --sparkle-x: 41%;
    --sparkle-size: 2px;
    --sparkle-speed: 19s;
    --sparkle-delay:-15s
}

.ambient-sparkles span:nth-child(5) {
    --sparkle-x: 53%;
    --sparkle-size: 2px;
    --sparkle-speed: 14s;
    --sparkle-delay:-5s
}

.ambient-sparkles span:nth-child(6) {
    --sparkle-x: 64%;
    --sparkle-size: 3px;
    --sparkle-speed: 18s;
    --sparkle-delay:-13s
}

.ambient-sparkles span:nth-child(7) {
    --sparkle-x: 74%;
    --sparkle-size: 1px;
    --sparkle-speed: 11s;
    --sparkle-delay:-8s
}

.ambient-sparkles span:nth-child(8) {
    --sparkle-x: 84%;
    --sparkle-size: 2px;
    --sparkle-speed: 16s;
    --sparkle-delay:-4s
}

.ambient-sparkles span:nth-child(9) {
    --sparkle-x: 94%;
    --sparkle-size: 3px;
    --sparkle-speed: 20s;
    --sparkle-delay:-17s
}

.ambient-sparkles span:nth-child(10) {
    --sparkle-x: 12%;
    --sparkle-size: 1px;
    --sparkle-speed: 15s;
    --sparkle-delay:-10s
}

.ambient-sparkles span:nth-child(11) {
    --sparkle-x: 58%;
    --sparkle-size: 1px;
    --sparkle-speed: 13s;
    --sparkle-delay:-9s
}

.ambient-sparkles span:nth-child(12) {
    --sparkle-x: 88%;
    --sparkle-size: 2px;
    --sparkle-speed: 17s;
    --sparkle-delay:-6s
}

@keyframes sparkle-fall {
    0% {
        transform: translate3d(0, -4vh, 0) rotate(0deg);
        opacity:0
    }

    10% {
        opacity:.58
    }

    55% {
        transform: translate3d(18px, 52vh, 0) rotate(120deg);
        opacity:.35
    }

    to {
        transform: translate3d(-12px, 112vh, 0) rotate(260deg);
        opacity:0
    }
}

@keyframes sparkle-glint {
    0%, to {
        filter:brightness(.8)
    }

    50% {
        filter:brightness(1.65)
    }
}

@keyframes page-drop-in {
    0% {
        opacity: .55;
        transform:translate3d(0, -14px, 0)
    }

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

.topbar {
    justify-content: space-between;
    gap: 12px;
    margin-bottom:28px
}

.brand, .topbar {
    display: flex;
    align-items:center
}

.brand {
    gap: 9px;
    padding: 0;
    color: inherit;
    background: transparent;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .035em;
    text-align:start
}

.brand:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 5px;
    border-radius:8px
}

.brand-logo {
    display: block;
    width: min(210px, 57vw);
    height:auto
}

.top-actions {
    display: flex;
    gap:8px
}

.icon-button, .square-button {
    display: grid;
    place-items: center;
    color: var(--soft);
    background: #11151b;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    width: 44px;
    height: 44px;
    transition:background .2s ease, color .2s ease, border-color .2s ease
}

.icon-button:hover, .square-button:hover {
    border-color: rgba(240, 185, 11, .5);
    color:var(--yellow)
}

.top-actions .icon-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #252a31, #15191f 31%, #0d1015);
    box-shadow:inset 0 1px 0 rgba(255, 255, 255, .14), inset 0 -1px 0 rgba(0, 0, 0, .5), 0 7px 18px rgba(0, 0, 0, .25)
}

.top-actions .icon-button:before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 12px;
    background: linear-gradient(132deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .05) 28%, transparent 57%);
    pointer-events:none
}

.top-actions .icon-button > svg {
    position: relative;
    z-index:1
}

.vault-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    min-height: 193px;
    padding: 20px;
    background: linear-gradient(130deg, #11141a 4%, #11141a 56%, #241e0a 120%);
    box-shadow:var(--shadow)
}

.vault-card:before {
    content: "";
    position: absolute;
    height: 2px;
    inset: 0 26% auto 0;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    opacity:.65
}

.vault-glow {
    position: absolute;
    right: -41px;
    top: -48px;
    width: 200px;
    height: 200px;
    border: 34px solid rgba(240, 185, 11, .11);
    transform: rotate(45deg);
    border-radius:28px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size:14px
}

.balance-value, .eyebrow {
    position: relative;
    z-index:1
}

.balance-value {
    margin: 13px 0 8px;
    font-size: clamp(40px, 11vw, 58px);
    line-height: 1;
    font-weight: 780;
    letter-spacing: -.055em;
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.profile-count {
    font-size:34px
}

.balance-subtitle {
    position: relative;
    z-index: 1;
    color: var(--soft);
    font-size:14px
}

.asset-tabs {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 25px;
    padding: 4px;
    border-radius: 14px;
    background:rgba(4, 5, 8, .58)
}

.asset-tab {
    color: var(--muted);
    background: transparent;
    border-radius: 10px;
    min-height: 44px;
    font-weight: 700;
    font-size:13px
}

.asset-tab.active {
    color: var(--yellow-ink);
    background: var(--yellow);
    box-shadow:0 4px 14px rgba(240, 185, 11, .2)
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin:14px 0 18px
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: var(--radius-card);
    padding: 11px 16px;
    font-weight: 600;
    transition:transform .2s ease, filter .2s ease, background .2s ease
}

.button:active {
    transform:scale(.98)
}

.button-primary {
    color: var(--yellow-ink);
    background:var(--yellow)
}

.button-primary:hover {
    filter:brightness(1.06)
}

.button-secondary {
    color: var(--ink);
    background: var(--surface-raised);
    border:1px solid var(--line)
}

.button-ghost {
    color: var(--soft);
    background: transparent;
    border:1px solid var(--line)
}

.button-danger {
    color: #ffdada;
    background: rgba(239, 106, 106, .12);
    border:1px solid rgba(239, 106, 106, .24)
}

.button-small {
    min-height: 44px;
    padding: 8px 11px;
    border-radius: 12px;
    font-size:13px
}

.new-deal-button {
    width: 100%;
    min-height: 72px;
    flex-direction: column;
    gap: 1px;
    font-size:18px
}

.new-deal-button small {
    font-size: 12px;
    font-weight: 600;
    opacity:.72
}

.content-stack {
    display: grid;
    gap: 14px;
    margin-top:26px
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin:2px 2px 9px
}

.section-head h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing:-.025em
}

.section-head span {
    color: var(--muted);
    font-size:12px
}

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow:hidden
}

.panel-body {
    padding:16px
}

.deal-list, .profile-list, .rate-list {
    display:grid
}

.deal-card, .profile-row, .rate-row {
    border-bottom:1px solid var(--line)
}

.deal-card:last-child, .profile-row:last-child, .rate-row:last-child {
    border-bottom:0
}

.rate-row {
    justify-content: space-between;
    min-height: 62px;
    padding:0 16px
}

.rate-left, .rate-row {
    display: flex;
    align-items:center
}

.rate-left {
    gap:10px
}

.asset-disc {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--yellow-ink);
    background:var(--yellow)
}

.asset-disc.crypto {
    color: #dce2ed;
    background:#28313f
}

.asset-disc.stars {
    color: #221900;
    background:#f5ce4e
}

.rate-pair {
    font-weight: 720;
    font-size:14px
}

.rate-source {
    margin-top: 2px;
    color: var(--muted);
    font-size:11px
}

.rate-value {
    font-size: 14px;
    font-weight: 750;
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.empty-state {
    padding: 26px 16px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    line-height:1.45
}

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

.home-tools {
    display: grid;
    gap: 14px;
    margin-top:14px
}

.search-card {
    padding:8px
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding-left: 8px;
    color:var(--muted)
}

.search-form input {
    min-width: 0;
    flex: 1 1;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: none;
    font-size:15px
}

.search-form input::placeholder {
    color:var(--muted)
}

.search-form .square-button {
    flex: 0 0 auto;
    width: 44px;
    height:44px
}

.search-results {
    border-top:1px solid var(--line)
}

.search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 8px 5px;
    font-size:13px
}

.search-result div {
    display: grid;
    gap:3px
}

.search-result span {
    color: var(--muted);
    font-size:11px
}

.search-empty {
    padding: 11px 8px 4px;
    color: var(--muted);
    font-size:13px
}

.converter {
    padding:16px
}

.converter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom:18px
}

.converter-header h2 {
    margin: 0;
    font-size:18px
}

.converter-field {
    display: grid;
    gap:7px
}

.converter-field > span {
    color: var(--muted);
    font-size:12px
}

.converter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height:45px
}

.converter-row input, .converter-row select {
    min-width: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline:none
}

.converter-row input, .converter-row strong {
    flex: 1 1;
    font-size: 27px;
    font-weight: 760;
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.converter-row select {
    max-width: 130px;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-raised);
    font-weight:700
}

.converter-field small {
    color: var(--muted);
    font-size:12px
}

.converter-swap {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: -3px auto 2px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--yellow);
    background:var(--surface-raised)
}

.deal-card {
    padding:15px 16px
}

.deal-card-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap:12px
}

.deal-card-copy {
    min-width:0
}

.deal-product-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #f5bd27;
    border: 1px solid rgba(240, 185, 11, .24);
    border-radius: 12px;
    background: radial-gradient(circle at 35% 28%, rgba(240, 185, 11, .2), transparent 58%), #101319;
    box-shadow:inset 0 1px 0 rgba(255, 224, 118, .12), 0 0 18px rgba(240, 185, 11, .08)
}

.deal-info-button {
    align-self:center
}

.action-row, .deal-meta, .deal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:10px
}

.deal-ref {
    font-weight: 600;
    font-size: 17px;
    letter-spacing:.02em
}

.deal-state {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 720;
    white-space: nowrap;
    background: rgba(255, 255, 255, .05);
    color:var(--soft)
}

.deal-state.WAITING_PAYMENT {
    color: var(--success);
    background: rgba(14, 203, 129, .15);
    border-color:transparent
}

.deal-state.AWAITING_BUYER_CONFIRMATION, .deal-state.FUNDED {
    color: #ffdc72;
    background:rgba(240, 185, 11, .12)
}

.deal-state.COMPLETED {
    color: #8ee0b2;
    background:rgba(82, 197, 138, .12)
}

.deal-state.DISPUTED {
    color: #ffadad;
    background:rgba(239, 106, 106, .12)
}

.deal-description {
    margin: 10px 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.42;
    overflow-wrap:anywhere
}

.deal-meta {
    color: var(--muted);
    font-size:13px
}

.deal-amount {
    color: var(--ink);
    font-weight: 780;
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.action-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top:13px
}

.bottom-nav {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 640px);
    padding: 8px 10px max(9px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(0, 0, 0, .94);
    border-top: 1px solid rgba(132, 142, 156, .16);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter:blur(18px)
}

.nav-item {
    min-height: 58px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    color: var(--muted);
    background: transparent;
    font-size: 11px;
    font-weight:400
}

.nav-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 32px;
    border-radius:10px
}

.nav-item svg {
    width:21px
}

.nav-item.active {
    color: var(--yellow);
    font-weight:500
}

.nav-item.active .nav-icon {
    background:rgba(240, 185, 11, .12)
}

.nav-item.active .nav-icon svg {
    fill: none;
    stroke:currentColor
}

.nav-create {
    align-self: end;
    width: 54px;
    height: 54px;
    margin: -22px auto 0;
    border-radius: 50%;
    color: var(--yellow-ink);
    background: var(--yellow);
    box-shadow:0 9px 25px rgba(240, 185, 11, .27)
}

.sheet-backdrop {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: grid;
    align-items: end;
    background:rgba(0, 0, 0, .58)
}

.sheet {
    width: min(100%, 640px);
    max-height: min(84dvh, 740px);
    margin: 0 auto;
    overflow-y: auto;
    border: 1px solid var(--line-strong);
    border-bottom: 0;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    background: #101319;
    box-shadow:0 -18px 55px rgba(0, 0, 0, .32)
}

.sheet-handle {
    width: 42px;
    height: 4px;
    border-radius: 9px;
    margin: 10px auto 2px;
    background:rgba(255, 255, 255, .18)
}

.sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 17px;
    border-bottom:1px solid var(--line)
}

.sheet-header h2 {
    margin: 0;
    font-size:18px
}

.sheet-content {
    padding:16px
}

.form-grid {
    display: grid;
    gap:13px
}

.field {
    display: grid;
    gap:7px
}

.field label {
    color: var(--muted);
    font-size: 12px;
    font-weight:670
}

.field input, .field select, .field textarea {
    width: 100%;
    color: var(--ink);
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    padding:12px
}

.field textarea {
    min-height: 104px;
    resize: vertical;
    line-height:1.4
}

.field input:focus, .field select:focus, .field textarea:focus {
    border-color: rgba(240, 185, 11, .65);
    box-shadow:0 0 0 3px rgba(240, 185, 11, .11)
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:8px
}

.choice {
    min-height: 47px;
    color: var(--soft);
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight:700
}

.choice.selected {
    color: var(--yellow);
    border-color: rgba(240, 185, 11, .7);
    background:rgba(240, 185, 11, .08)
}

.notice {
    padding: 12px;
    color: var(--soft);
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line);
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap:anywhere
}

.notice.warning {
    color: #f6d17f;
    border-color: rgba(240, 185, 11, .24);
    background:rgba(240, 185, 11, .07)
}

.notice.success {
    color: #a5e5bd;
    border-color: rgba(82, 197, 138, .24);
    background:rgba(82, 197, 138, .08)
}

.notice.danger {
    color: #ffc5c5;
    border-color: rgba(239, 106, 106, .24);
    background:rgba(239, 106, 106, .08)
}

.inline-code {
    display: block;
    margin-top: 8px;
    padding: 9px;
    word-break: break-all;
    color: var(--ink);
    background: rgba(0, 0, 0, .18);
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size:12px
}

.status-line {
    margin: 0 0 12px;
    color: var(--muted);
    font-size:13px
}

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

.language-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    padding: 0 13px;
    color: var(--ink);
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 13px;
    text-align:start
}

.language-button.active {
    border-color:rgba(240, 185, 11, .6)
}

.language-flag {
    font-size:20px
}

.loading {
    display: grid;
    place-items: center;
    min-height: 240px;
    color: var(--muted);
    font-size:14px
}

.section-page {
    display: grid;
    gap: 18px;
    animation:page-in .24s ease both
}

.page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height:42px
}

.page-heading h1 {
    margin: 3px 0 0;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight:600
}

.heading-icon {
    color:var(--yellow)
}

.live-chip, .online-pill, .profile-badge, .wallet-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--soft);
    background: rgba(255, 255, 255, .045);
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 8px 10px;
    font-size: 11px;
    white-space:nowrap
}

.live-chip {
    color: var(--success);
    background: rgba(14, 203, 129, .15);
    border-color: transparent;
    padding: 7px 10px;
    font-size: 10px;
    font-weight:500
}

.live-chip svg {
    flex:0 0 auto
}

.profile-badge, .wallet-status {
    color: #a5e5bd;
    border-color: rgba(82, 197, 138, .25);
    background:rgba(82, 197, 138, .08)
}

.live-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow:0 0 0 4px rgba(82, 197, 138, .12)
}

.promo-rail {
    display: grid;
    gap:10px
}

.promo-rail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline:2px
}

.promo-rail-head .eyebrow {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing:.08em
}

.promo-rail-head .eyebrow svg {
    width:14px
}

.promo-hint {
    color: var(--muted);
    font-size: 12px;
    font-weight:400
}

.promo-viewport {
    overflow-x: auto;
    padding: 1px 0 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action:pan-x
}

.promo-viewport::-webkit-scrollbar {
    display:none
}

.promo-track {
    display: flex;
    gap: 10px;
    width: max-content;
    padding:0 1px
}

.promo-track::-webkit-scrollbar {
    display:none
}

.promo-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 min(calc(100vw - 76px), 397px);
    min-height: 108px;
    padding: 17px;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    pointer-events: none;
    -webkit-user-select: none;
    user-select:none
}

.promo-card:after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -50px;
    top: -54px;
    border: 18px solid rgba(255, 255, 255, .08);
    border-radius:50%
}

.promo-gold {
    background: radial-gradient(circle at 15% 55%, rgba(240, 185, 11, .2), transparent 40%), linear-gradient(112deg, #51400d, #2b260f 38%, #171a1f 84%);
    border-color: rgba(240, 185, 11, .52);
    box-shadow:0 10px 26px rgba(240, 185, 11, .1), inset 0 0 28px rgba(255, 218, 88, .06)
}

.promo-violet {
    background: linear-gradient(135deg, rgba(145, 107, 255, .17), rgba(17, 20, 26, .92));
    border-color:rgba(145, 107, 255, .25)
}

.promo-green {
    background: linear-gradient(135deg, rgba(82, 197, 138, .15), rgba(17, 20, 26, .92));
    border-color:rgba(82, 197, 138, .25)
}

.promo-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    color: var(--yellow);
    border: 1px solid rgba(240, 185, 11, .65);
    border-radius: 13px;
    background: rgba(15, 13, 5, .32);
    box-shadow:0 0 20px rgba(240, 185, 11, .12)
}

.promo-violet .promo-icon {
    color: #b9a2ff;
    border-color:rgba(185, 162, 255, .35)
}

.promo-green .promo-icon {
    color: #8ee0b2;
    border-color:rgba(142, 224, 178, .35)
}

.promo-copy {
    display: grid;
    gap: 4px;
    min-width:0
}

.promo-copy strong {
    font-size: 16px;
    font-weight:600
}

.promo-copy span {
    color: var(--soft);
    font-size: 13px;
    line-height:1.3
}

.deal-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:10px
}

.deal-menu-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    min-height: 122px;
    padding: 15px;
    color: var(--ink);
    text-align: start;
    border: 1px solid rgba(132, 142, 156, .24);
    border-radius: var(--radius-card);
    background: var(--surface-raised);
    transition:transform .22s ease, border-color .22s ease, background .22s ease
}

.deal-menu-card.selected, .deal-menu-card:hover {
    border-color: rgba(132, 142, 156, .34);
    background:#242a31
}

.deal-menu-card:active {
    transform:translateY(1px) scale(.99)
}

.deal-menu-card > span:nth-child(2) {
    display: grid;
    gap: 4px;
    min-width:0
}

.deal-menu-card strong {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 1.12;
    font-weight:500
}

.deal-menu-card small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25;
    font-weight:400
}

.deal-menu-card > svg {
    flex: 0 0 auto;
    margin-left: auto;
    color:var(--muted)
}

.deal-menu-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    color: #f0c537;
    border-radius: 12px;
    background:rgba(10, 12, 16, .38)
}

.deal-menu-card:nth-child(3) .deal-menu-icon {
    color:#e1c994
}

.deal-menu-primary {
    background: linear-gradient(135deg, #d89e00, #edbd2b 52%, #d7a000);
    box-shadow:0 11px 25px rgba(240, 185, 11, .2), inset 0 1px 0 rgba(255, 255, 255, .16), inset 0 -1px 0 rgba(106, 70, 0, .2)
}

.deal-menu-primary, .deal-menu-primary:hover {
    color: var(--yellow-ink);
    border-color:transparent
}

.deal-menu-primary:hover {
    background: linear-gradient(135deg, #e0a900, #f0c53a 52%, #dea500);
    box-shadow:0 13px 29px rgba(240, 185, 11, .25), inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -1px 0 rgba(106, 70, 0, .18)
}

.deal-menu-primary strong {
    font-weight:600
}

.deal-menu-primary .deal-menu-icon {
    color: var(--yellow-ink);
    background:rgba(24, 26, 32, .1)
}

.deal-menu-primary > svg {
    color:var(--yellow-ink)
}

.deal-menu-create {
    grid-column: 1/-1;
    min-height:96px
}

.deal-copy-icon {
    color:#f3a712
}

.section-deals {
    position: relative;
    isolation: isolate;
    overflow-x: clip;
    background:radial-gradient(circle at 18% 42%, rgba(240, 185, 11, .035), transparent 26%), #030406
}

.section-deals:before {
    z-index: 0;
    top: 24px;
    left: 0;
    width: 100%;
    height: 350px;
    background-image: linear-gradient(180deg, rgba(3, 4, 6, .08), rgba(3, 4, 6, .03) 58%, #030406), url(/binance-shield-hero.webp);
    background-repeat: no-repeat;
    background-position: 64% top;
    background-size: auto 350px;
    animation: shield-breathe 6.8s ease-in-out infinite;
    will-change:transform
}

.section-deals:after, .section-deals:before {
    content: "";
    position: absolute;
    pointer-events:none
}

.section-deals:after {
    z-index: 0;
    top: 48px;
    right: 1%;
    width: 53%;
    height: 290px;
    opacity: .7;
    background-image: radial-gradient(circle at 12% 12%, rgba(250, 194, 35, .8) 0 1px, transparent 2px), radial-gradient(circle at 78% 23%, rgba(250, 194, 35, .65) 0 1px, transparent 2px), radial-gradient(circle at 53% 62%, rgba(250, 194, 35, .55) 0 1px, transparent 2px);
    background-size: 91px 73px, 137px 101px, 113px 83px;
    -webkit-mask-image: linear-gradient(180deg, black, transparent 92%);
    mask-image:linear-gradient(180deg, black, transparent 92%)
}

.section-deals .topbar {
    position: relative;
    z-index: 1;
    min-height: 58px;
    margin-bottom:0
}

.section-deals .brand-logo {
    width: min(232px, 56vw);
    filter:drop-shadow(0 0 13px rgba(240, 185, 11, .1))
}

.section-deals .top-actions {
    gap:10px
}

.section-deals .top-actions .icon-button {
    width: 52px;
    height: 52px;
    color: #e4e5e9;
    border-color: rgba(255, 255, 255, .17);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(43, 46, 53, .92), rgba(22, 25, 31, .96) 44%, rgba(8, 10, 14, .98));
    box-shadow:inset 0 1px 0 rgba(255, 255, 255, .15), inset 0 -1px 0 rgba(0, 0, 0, .72), 0 10px 26px rgba(0, 0, 0, .42), 0 0 0 1px rgba(240, 185, 11, .025)
}

.section-deals .top-actions .icon-button:before {
    border-radius: 13px;
    background:linear-gradient(132deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .035) 34%, transparent 62%)
}

.deals-page {
    gap:0
}

.deals-page .page-heading {
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 190px;
    margin-bottom:22px
}

.deals-hero-meta {
    position:relative
}

.deals-hero-orbit-highlight {
    position: absolute;
    z-index: 0;
    top: 67px;
    right: -82px;
    width: 310px;
    height: 80px;
    pointer-events:none
}

.deals-hero-orbit-highlight span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: .48;
    background: conic-gradient(from var(--orbit-angle), transparent 0 76%, rgba(255, 232, 145, .05) 80%, rgba(255, 207, 63, .72) 86%, transparent 92% 100%);
    -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    mask: radial-gradient(closest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    animation: orbit-highlight-turn 10s linear infinite;
    filter:drop-shadow(0 0 4px rgba(240, 185, 11, .38))
}

.deals-hero-meta .live-chip {
    position: relative;
    z-index:2
}

@keyframes shield-breathe {
    0%, to {
        transform:translateZ(0)
    }

    50% {
        transform:translate3d(0, -7px, 0)
    }
}

@property --orbit-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value:0deg
}

@keyframes orbit-highlight-turn {
    to {
        --orbit-angle:360deg
    }
}

.deals-page .live-chip {
    gap: 8px;
    margin-bottom: 4px;
    padding: 9px 14px;
    color: #63e6aa;
    border: 1px solid rgba(53, 227, 151, .35);
    background: linear-gradient(135deg, rgba(11, 70, 48, .62), rgba(4, 28, 22, .82));
    box-shadow: inset 0 1px 0 rgba(133, 255, 203, .1), 0 0 22px rgba(14, 203, 129, .1);
    font-size:12px
}

.deals-page .promo-rail {
    gap: 12px;
    margin-bottom:20px
}

.deals-page .promo-rail-head {
    padding-inline:2px 0
}

.deals-page .promo-hint, .deals-page .promo-rail-head .eyebrow {
    color: #969aa4;
    font-size:12px
}

.deals-page .promo-rail-head .eyebrow svg {
    color: #f1bb20;
    fill:rgba(240, 185, 11, .18)
}

.deals-page .promo-card {
    min-height: 122px;
    border-radius: 15px;
    animation: promo-card-live 5.4s ease-in-out infinite;
    will-change:transform, background-position
}

.deals-page .promo-card:nth-child(2n) {
    animation-delay:-2s
}

.deals-page .promo-card:nth-child(3n) {
    animation-delay:-4s
}

@keyframes promo-card-live {
    0%, to {
        transform: translate3d(0, 1px, 0);
        background-position:50%, 47% 50%
    }

    50% {
        transform: translate3d(0, -4px, 0);
        background-position:50%, 53% 50%
    }
}

.deals-page .promo-card:after {
    display: block;
    width: 42%;
    height: 180%;
    top: -42%;
    right: auto;
    left: -64%;
    border: 0;
    border-radius: 0;
    opacity: 0;
    background: linear-gradient(105deg, transparent 15%, rgba(255, 224, 130, .13) 48%, transparent 82%);
    transform: skewX(-14deg);
    animation: promo-card-sheen 7.2s ease-in-out infinite;
    pointer-events:none
}

.deals-page .promo-card:nth-child(2n):after {
    animation-delay:-2.4s
}

.deals-page .promo-card:nth-child(3n):after {
    animation-delay:-4.8s
}

@keyframes promo-card-sheen {
    0%, 58% {
        left: -64%;
        opacity:0
    }

    66% {
        opacity:.7
    }

    86% {
        left: 122%;
        opacity:0
    }

    to {
        left: 122%;
        opacity:0
    }
}

.deals-page .promo-gold {
    padding-left: 126px;
    border-color: rgba(206, 166, 65, .5);
    background-image: linear-gradient(90deg, transparent 0 25%, rgba(3, 4, 6, .12) 38%, rgba(3, 4, 6, .68) 62%, rgba(3, 4, 6, .88)), url(/binance-gift-promo.webp);
    background-position: 50%;
    background-size: cover;
    box-shadow:inset 0 1px 0 rgba(255, 225, 132, .14), inset 0 -1px 0 rgba(0, 0, 0, .62), 0 10px 28px rgba(0, 0, 0, .42)
}

.deals-page .promo-gold .promo-icon {
    display:none
}

.deals-page .promo-violet {
    background-image:linear-gradient(90deg, transparent 0 25%, rgba(3, 4, 6, .12) 38%, rgba(3, 4, 6, .68) 62%, rgba(3, 4, 6, .88)), url(/binance-gift-protected-promo.webp)
}

.deals-page .promo-green, .deals-page .promo-violet {
    padding-left: 126px;
    border-color: rgba(206, 166, 65, .5);
    background-position: 50%;
    background-size: cover;
    box-shadow:inset 0 1px 0 rgba(255, 225, 132, .14), inset 0 -1px 0 rgba(0, 0, 0, .62), 0 10px 28px rgba(0, 0, 0, .42)
}

.deals-page .promo-green {
    background-image:linear-gradient(90deg, transparent 0 25%, rgba(3, 4, 6, .12) 38%, rgba(3, 4, 6, .68) 62%, rgba(3, 4, 6, .88)), url(/binance-security-promo.webp)
}

.deals-page .promo-green .promo-icon, .deals-page .promo-violet .promo-icon {
    display:none
}

.deals-page .promo-icon {
    width: 54px;
    height: 54px;
    color: #f4c84f;
    border-color: rgba(244, 200, 79, .58);
    background: linear-gradient(145deg, rgba(93, 67, 7, .5), rgba(13, 12, 9, .74));
    box-shadow:inset 0 1px 0 rgba(255, 232, 144, .13), 0 0 22px rgba(240, 185, 11, .13)
}

.deals-page .promo-copy strong {
    font-size: 17px;
    font-weight:600
}

.deals-page .promo-copy span {
    color: #b9bdc5;
    font-size:13px
}

.deals-page .deal-menu-grid {
    gap: 12px;
    margin-bottom:20px
}

.deals-page .deal-menu-card {
    min-height: 124px;
    padding: 15px;
    gap: 12px;
    border-color: rgba(204, 160, 55, .42);
    border-radius: 15px;
    background: radial-gradient(circle at 24% 18%, rgba(240, 185, 11, .07), transparent 32%), linear-gradient(145deg, #17191e, #0c0e12 58%, #07080b);
    box-shadow:inset 0 1px 0 rgba(255, 221, 116, .08), inset 0 -1px 0 rgba(0, 0, 0, .74), 0 11px 26px rgba(0, 0, 0, .38), 0 0 18px rgba(240, 185, 11, .035)
}

.deals-page .deal-menu-card.selected, .deals-page .deal-menu-card:hover {
    border-color: rgba(235, 185, 61, .66);
    background:radial-gradient(circle at 24% 18%, rgba(240, 185, 11, .1), transparent 34%), linear-gradient(145deg, #1b1c20, #0b0d11 62%)
}

.deals-page .deal-menu-icon {
    width: 54px;
    height: 54px;
    color: #f0b90b;
    border: 1px solid rgba(240, 185, 11, .4);
    border-radius: 14px;
    background: radial-gradient(circle at 35% 28%, rgba(240, 185, 11, .2), transparent 58%), linear-gradient(145deg, #292412, #0b0c10 74%);
    box-shadow:inset 0 1px 0 rgba(255, 229, 133, .13), 0 0 23px rgba(240, 185, 11, .1)
}

.deals-page .deal-menu-card:nth-child(3) .deal-menu-icon {
    color:#f4bd27
}

.deals-page .deal-menu-card strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    font-size: 16px;
    line-height: 1.15;
    font-weight:600
}

.deals-page .deal-menu-card small {
    color: #a8abb3;
    font-size: 13px;
    line-height:1.3
}

.deals-page .deal-menu-card > svg {
    color:#bfc2c9
}

.deals-page .deal-menu-primary {
    min-height: 100px;
    color: #15171b;
    border-color: rgba(255, 225, 119, .54);
    background: linear-gradient(105deg, #d89500, #efb40a 27%, #f4c521 73%, #e9ad05);
    box-shadow:inset 0 1px 0 rgba(255, 249, 213, .45), inset 0 -2px 0 rgba(127, 75, 0, .22), 0 11px 32px rgba(240, 185, 11, .38), 0 0 34px rgba(240, 185, 11, .18)
}

.deals-page .deal-menu-primary:hover {
    color: #15171b;
    border-color: rgba(255, 232, 139, .65);
    background: linear-gradient(105deg, #dda006, #f2bd16 35%, #f7cd31 73%, #edb50d);
    box-shadow:inset 0 1px 0 rgba(255, 249, 213, .52), inset 0 -2px 0 rgba(127, 75, 0, .19), 0 13px 36px rgba(240, 185, 11, .42), 0 0 38px rgba(240, 185, 11, .2)
}

.deals-page .deal-menu-primary .deal-menu-icon {
    color: #17191d;
    border-color: rgba(78, 47, 0, .26);
    background: linear-gradient(145deg, rgba(152, 93, 0, .22), rgba(255, 220, 101, .15));
    box-shadow:inset 0 1px 0 rgba(255, 244, 190, .32), 0 7px 16px rgba(116, 69, 0, .16)
}

.deals-page .deal-menu-primary small {
    color:rgba(20, 22, 26, .62)
}

.deals-page .deal-menu-primary > svg {
    width: 48px;
    height: 48px;
    padding: 14px;
    color: #f2bc1b;
    border-radius: 50%;
    background: #07090d;
    box-shadow:inset 0 1px 0 rgba(255, 255, 255, .08), 0 7px 18px rgba(55, 33, 0, .22)
}

.deals-page .section-head {
    margin:0 2px 12px
}

.deals-page .section-head h2 {
    font-size: 21px;
    font-weight:600
}

.deals-page > .panel {
    border-color: rgba(197, 158, 62, .27);
    background: linear-gradient(145deg, #121419, #08090d 76%);
    box-shadow:inset 0 1px 0 rgba(255, 225, 130, .06), 0 10px 28px rgba(0, 0, 0, .36)
}

.deals-page .deal-card {
    padding:18px
}

.deals-page .deal-ref {
    font-size: 19px;
    font-weight:600
}

.deals-page .deal-product-icon {
    color: #f2b91b;
    border-color:rgba(240, 185, 11, .28)
}

.deal-info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 108px;
    min-height: 38px;
    margin: -7px -7px 0 0;
    padding: 7px 9px;
    color: #e8bc3f;
    border: 1px solid rgba(240, 185, 11, .28);
    border-radius: 12px;
    background: rgba(240, 185, 11, .08);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.15;
    text-align: start;
    transition:color .18s ease, background .18s ease, transform .18s ease
}

.deal-info-button svg {
    flex:0 0 auto
}

.deal-info-button:focus-visible, .deal-info-button:hover {
    color: #ffd96a;
    background: rgba(240, 185, 11, .14);
    outline:1px solid rgba(240, 185, 11, .32)
}

.deal-info-button:active {
    transform:scale(.96)
}

.deal-status-overlay {
    position: fixed;
    z-index: 120;
    inset: 0;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    color: var(--ink);
    background: #050608;
    animation:deal-status-in .22s ease both
}

.deal-status-shell {
    width: min(100%, 620px);
    min-height: 100%;
    margin: 0 auto;
    padding: max(18px, env(safe-area-inset-top)) 18px max(28px, env(safe-area-inset-bottom));
    background:radial-gradient(circle at 94% 3%, rgba(240, 185, 11, .09), transparent 26%), #050608
}

.deal-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height:48px
}

.deal-status-back, .deal-status-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: var(--soft);
    border: 1px solid rgba(255, 255, 255, .09);
    background:#15171c
}

.deal-status-back {
    gap: 7px;
    padding: 0 14px 0 11px;
    border-radius: 14px;
    font-weight:700
}

.deal-status-close {
    width: 44px;
    border-radius:50%
}

.deal-status-back:focus-visible, .deal-status-back:hover, .deal-status-close:focus-visible, .deal-status-close:hover {
    color: var(--yellow);
    border-color: rgba(240, 185, 11, .35);
    outline:none
}

.deal-status-reference {
    margin: 27px 2px 19px;
    font-size: clamp(27px, 8vw, 38px);
    line-height: 1;
    letter-spacing:-.045em
}

.deal-progress-card, .deal-status-amount-card, .deal-status-facts, .deal-status-message, .deal-status-success {
    border: 1px solid rgba(240, 185, 11, .19);
    border-radius: 18px;
    background: linear-gradient(145deg, #181b21, #0d0f13);
    box-shadow:inset 0 1px 0 rgba(255, 255, 255, .045), 0 14px 34px rgba(0, 0, 0, .3)
}

.deal-progress-card {
    padding:18px 15px 16px
}

.deal-status-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform:uppercase
}

.deal-progress-card > strong {
    display: block;
    font-size: 18px;
    line-height:1.3
}

.deal-progress-card > strong b {
    color:var(--yellow)
}

.deal-progress-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top:23px
}

.deal-progress-track:after, .deal-progress-track:before {
    content: "";
    position: absolute;
    top: 8px;
    inset-inline-start: 10%;
    width: 80%;
    height: 3px;
    border-radius:99px
}

.deal-progress-track:before {
    background:#34373d
}

.deal-progress-track:after {
    width: var(--deal-progress);
    background: var(--yellow);
    box-shadow:0 0 13px rgba(240, 185, 11, .7)
}

.deal-progress-stage {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 0;
    color:#656970
}

.deal-progress-stage > span {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    color: transparent;
    border: 2px solid #4a4d54;
    border-radius: 50%;
    background:#17191e
}

.deal-progress-stage.is-complete {
    color:var(--yellow)
}

.deal-progress-stage.is-complete > span {
    color: #111318;
    border-color: var(--yellow);
    background: var(--yellow);
    box-shadow:0 0 15px rgba(240, 185, 11, .56)
}

.deal-progress-stage small {
    width: 100%;
    overflow: hidden;
    font-size: 9px;
    font-weight: 750;
    text-align: center;
    text-overflow: ellipsis;
    white-space:nowrap
}

.deal-progress-card > p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 19px 0 0;
    color: var(--muted);
    font-size:11px
}

.deal-progress-card > p svg {
    color:var(--yellow)
}

.deal-progress-exception {
    border-color:rgba(246, 70, 93, .3)
}

.deal-progress-exception > strong b {
    color:#f6465d
}

.deal-status-amount-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    margin-top: 14px;
    padding:17px
}

.deal-status-amount-card > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #15171a;
    border-radius: 50%;
    background: var(--yellow);
    font-size: 11px;
    font-weight:900
}

.deal-status-amount-card strong {
    font-size: clamp(24px, 7vw, 34px);
    letter-spacing:-.035em
}

.deal-status-amount-card p {
    margin: 7px 0 0;
    overflow-wrap: anywhere;
    color: var(--soft);
    font-size: 13px;
    line-height:1.45
}

.deal-status-facts {
    margin: 14px 0 0;
    padding:6px 17px
}

.deal-status-facts > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 51px;
    border-bottom:1px solid var(--line)
}

.deal-status-facts > div:last-child {
    border-bottom:0
}

.deal-status-facts dt {
    color: var(--muted);
    font-size:13px
}

.deal-status-facts dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 13px;
    font-weight: 750;
    text-align:end
}

.deal-status-message {
    margin-top: 14px;
    padding: 16px 17px;
    border-inline-start:3px solid var(--yellow)
}

.deal-status-message > span {
    color: var(--yellow);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform:uppercase
}

.deal-status-message p {
    margin: 8px 0 0;
    color: var(--soft);
    font-size: 14px;
    line-height:1.5
}

.deal-status-manager {
    display: grid;
    gap: 13px;
    margin-top: 14px;
    padding: 16px 17px;
    border: 1px solid rgba(240, 185, 11, .28);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(240, 185, 11, .12), #0d0f13 70%);
    box-shadow:inset 0 1px 0 rgba(255, 230, 143, .07), 0 14px 34px rgba(0, 0, 0, .3)
}

.deal-status-manager > div {
    display: grid;
    gap:4px
}

.deal-status-manager > div span {
    color: var(--soft);
    font-size:14px
}

.deal-status-manager > div strong {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform:uppercase
}

.deal-status-manager button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    color: #17191d;
    border-radius: 13px;
    background: var(--yellow);
    font-size: 14px;
    font-weight:850
}

.deal-status-manager button:focus-visible, .deal-status-manager button:hover {
    background: #ffd45a;
    outline: 2px solid rgba(240, 185, 11, .3);
    outline-offset:2px
}

.deal-status-message-cancelled, .deal-status-message-disputed {
    border-color: rgba(246, 70, 93, .26);
    border-inline-start-color:#f6465d
}

.deal-status-message-cancelled > span, .deal-status-message-disputed > span {
    color:#f6465d
}

.deal-status-success {
    display: grid;
    justify-items: center;
    gap: 9px;
    margin-top: 14px;
    padding: 21px;
    color: #0ecb81;
    border-color:rgba(14, 203, 129, .25)
}

.deal-status-success > span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 2px solid;
    border-radius: 50%;
    box-shadow:0 0 21px rgba(14, 203, 129, .18)
}

.deal-status-success strong {
    font-size:15px
}

@keyframes deal-status-in {
    0% {
        opacity: 0;
        transform:translateY(8px)
    }

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

.app-shell .bottom-nav {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: min(calc(100% - 24px), 616px);
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(12, 14, 19, .92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .065), 0 -4px 26px rgba(0, 0, 0, .42), 0 12px 38px rgba(0, 0, 0, .46);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
    backdrop-filter:blur(22px) saturate(125%)
}

.app-shell .nav-item {
    min-height: 62px;
    gap: 5px;
    font-size:12px
}

.app-shell .nav-item.active .nav-icon {
    background: radial-gradient(circle, rgba(240, 185, 11, .23), rgba(240, 185, 11, .06) 72%);
    box-shadow:inset 0 1px 0 rgba(255, 224, 114, .1), 0 0 19px rgba(240, 185, 11, .12)
}

.wallet-hero {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(240, 185, 11, .32);
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(240, 185, 11, .16), #11141a 62%);
    box-shadow:var(--shadow)
}

.wallet-hero:after {
    content: "";
    position: absolute;
    width: 185px;
    height: 185px;
    right: -63px;
    top: -74px;
    border: 28px solid rgba(240, 185, 11, .1);
    border-radius: 38px;
    transform:rotate(45deg)
}

.wallet-hero-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size:13px
}

.wallet-hero > strong {
    position: relative;
    z-index: 1;
    display: block;
    margin: 11px 0 5px;
    font-size: clamp(36px, 10vw, 52px);
    letter-spacing: -.055em;
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.wallet-hero > small {
    position: relative;
    z-index: 1;
    color: var(--soft);
    font-size:12px
}

.wallet-tabs {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 22px;
    padding: 4px;
    border-radius: 13px;
    background:rgba(4, 5, 8, .52)
}

.wallet-tabs button {
    min-height: 42px;
    color: var(--muted);
    border-radius: 9px;
    background: transparent;
    font-size: 12px;
    font-weight:750
}

.wallet-tabs button.active {
    color: var(--yellow-ink);
    background:var(--yellow)
}

.wallet-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:10px
}

.wallet-actions .button {
    min-height:56px
}

.wallet-list {
    overflow:hidden
}

.wallet-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 68px;
    padding: 9px 15px;
    color: var(--ink);
    text-align: start;
    background: transparent;
    border-bottom: 1px solid var(--line);
    transition:background .18s ease
}

.wallet-row:last-child {
    border-bottom:0
}

.wallet-row:hover {
    background:rgba(255, 255, 255, .035)
}

.wallet-row .rate-left > span {
    display: grid;
    gap:3px
}

.wallet-row small, .wallet-row-right {
    color: var(--muted);
    font-size:11px
}

.wallet-row-right {
    display: inline-flex;
    align-items: center;
    gap:8px
}

.wallet-row-right strong {
    color: var(--ink);
    font-size: 13px;
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.wallet-rates {
    display: grid;
    grid-template-columns:1fr 1fr
}

.wallet-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 52px;
    padding: 0 14px;
    border-bottom:1px solid var(--line)
}

.wallet-rate:nth-last-child(-n + 2) {
    border-bottom:0
}

.wallet-rate span {
    color: var(--muted);
    font-size:12px
}

.wallet-rate strong {
    font-size: 13px;
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.wallet-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px 13px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 12px;
    line-height:1.4
}

.wallet-note svg {
    flex: 0 0 auto;
    color:var(--yellow)
}

.review-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(240, 185, 11, .25);
    border-radius: var(--radius-card);
    background:linear-gradient(135deg, rgba(240, 185, 11, .12), var(--surface))
}

.review-summary > div:first-child {
    display: grid;
    gap:5px
}

.review-summary .eyebrow {
    font-size:11px
}

.review-summary strong {
    font-size: 42px;
    line-height: .95;
    letter-spacing:-.05em
}

.review-summary strong span {
    color: var(--muted);
    font-size: 18px;
    letter-spacing:0
}

.review-summary small {
    color: var(--muted);
    font-size:12px
}

.review-stars {
    color: var(--yellow);
    letter-spacing: 3px;
    font-size: 17px;
    white-space:nowrap
}

.online-pill strong {
    color:var(--ink)
}

.online-pill strong, .rolling-number {
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.rolling-number {
    display: inline-flex;
    align-items: flex-start;
    height: 1.2em;
    line-height:1.2
}

.rolling-number-visible {
    display: inline-flex;
    align-items: stretch;
    height: 1.2em;
    overflow:hidden
}

.rolling-number-separator {
    display: inline-flex;
    align-items: center;
    min-width: .25em;
    height: 1.2em;
    line-height:1.2em
}

.rolling-digit {
    display: inline-flex;
    align-items: flex-start;
    width: .62em;
    height: 1.2em;
    overflow: hidden;
    vertical-align:top
}

.rolling-digit-track {
    display: flex;
    flex-direction: column;
    height: 12em;
    will-change: transform;
    transition:transform .7s cubic-bezier(.22, 1, .36, 1)
}

.rolling-digit-track > span {
    display: grid;
    place-items: center;
    flex: 0 0 1.2em;
    height: 1.2em;
    line-height:1.2em
}

.review-composer {
    display: grid;
    gap: 13px;
    padding:16px
}

.ton-connect-notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap:2px 8px
}

.ton-connect-notice > svg {
    margin-top:2px
}

.ton-wallet-action {
    grid-column: 2;
    width: 100%;
    margin-top:7px
}

.composer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color:var(--yellow)
}

.composer-title strong {
    color: var(--ink);
    font-size:16px
}

.rating-picker {
    display: flex;
    gap:3px
}

.rating-picker button {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    color: var(--muted);
    border-radius: 12px;
    background:var(--surface-raised)
}

.rating-picker button.active {
    color:var(--yellow)
}

.review-locked {
    gap: 8px;
    color:var(--muted)
}

.feed-head, .review-locked {
    display: flex;
    align-items:center
}

.feed-head {
    justify-content: space-between;
    gap:10px
}

.feed-head h2 {
    margin: 0;
    font-size:18px
}

.feed-head span {
    color: var(--muted);
    font-size:11px
}

.review-feed {
    display: grid;
    gap:10px
}

.review-vertical-viewport {
    height: 456px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(240, 185, 11, .35) transparent;
    touch-action:pan-y
}

.review-vertical-track {
    display: grid;
    gap: 10px;
    transform:translateY(0)
}

.review-vertical-track .review-item {
    height: 144px;
    overflow: hidden;
    animation:review-card-in .36s ease both
}

@keyframes review-card-in {
    0% {
        opacity: 0;
        transform:translateY(7px)
    }

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

.review-item {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background:var(--surface)
}

.review-item.review-demo {
    border-color: rgba(240, 185, 11, .13);
    background:linear-gradient(135deg, rgba(240, 185, 11, .045), var(--surface))
}

.review-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap:12px
}

.review-item-top > div {
    display: grid;
    gap:4px
}

.review-item-top strong {
    font-size:13px
}

.review-item-top small {
    color: var(--muted);
    font-size: 11px;
    white-space:nowrap
}

.review-stars-small {
    color: var(--yellow);
    font-size: 12px;
    letter-spacing:1px
}

.review-item p {
    margin: 10px 0;
    color: var(--soft);
    font-size: 13px;
    line-height:1.45
}

.review-item-meta {
    flex-wrap: wrap;
    gap: 7px;
    color: var(--muted);
    font-size:11px
}

.leader-promo, .review-item-meta {
    display: flex;
    justify-content:space-between
}

.leader-promo {
    position: relative;
    align-items: stretch;
    gap: 14px;
    min-height: 158px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(240, 185, 11, .48);
    border-radius: var(--radius-card);
    background: radial-gradient(circle at 88% 18%, rgba(240, 185, 11, .34), transparent 34%), linear-gradient(135deg, #3a2b07, #17140d 50%, #101319);
    box-shadow:0 0 34px rgba(240, 185, 11, .12), inset 0 0 28px rgba(240, 185, 11, .05)
}

.leader-promo:after, .leader-promo:before {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 220, 114, .18);
    border-radius: 50%;
    pointer-events:none
}

.leader-promo:before {
    width: 210px;
    height: 210px;
    right: -70px;
    top:-98px
}

.leader-promo:after {
    width: 145px;
    height: 145px;
    right: -21px;
    top:-60px
}

.leader-promo-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 7px;
    max-width:76%
}

.leader-promo-label {
    color: #ffe28a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform:uppercase
}

.leader-promo h2 {
    margin: 0;
    color: #fff1b1;
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1;
    letter-spacing:-.055em
}

.leader-promo p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    line-height:1.4
}

.leader-promo-period {
    color: rgba(255, 255, 255, .6);
    font-size:11px
}

.leader-promo-period strong {
    margin-left: 4px;
    color: var(--yellow);
    font-size:14px
}

.leader-promo-prize {
    position: relative;
    z-index: 1;
    align-self: center;
    color: var(--yellow);
    font-size: clamp(28px, 9vw, 47px);
    font-weight: 900;
    letter-spacing: -.08em;
    transform: rotate(-7deg);
    text-shadow:0 4px 22px rgba(240, 185, 11, .35)
}

.leader-hero {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px;
    border: 1px solid rgba(240, 185, 11, .25);
    border-radius: var(--radius-card);
    background:linear-gradient(120deg, rgba(240, 185, 11, .13), var(--surface))
}

.leader-hero > div:nth-child(2) {
    display: grid;
    gap: 4px;
    flex:1 1
}

.leader-hero strong {
    font-size:15px
}

.leader-hero span {
    color: var(--muted);
    font-size:12px
}

.leader-hero > svg {
    color:var(--yellow)
}

.leader-medal {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    color: var(--yellow);
    border-radius: 14px;
    background:rgba(240, 185, 11, .13)
}

.leader-list {
    overflow:hidden
}

.leader-row {
    display: grid;
    grid-template-columns: 29px 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-height: 69px;
    padding: 9px 14px;
    border-bottom:1px solid var(--line)
}

.leader-row:last-child {
    border-bottom:0
}

.leader-row.current {
    background:rgba(240, 185, 11, .08)
}

.leader-rank {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    text-align:center
}

.rank-1 {
    color:#f5cf56
}

.rank-2 {
    color:#b8c2d0
}

.rank-3 {
    color:#ce916a
}

.leader-avatar, .profile-avatar {
    display: grid;
    place-items: center;
    color: var(--yellow-ink);
    background: var(--yellow);
    border-radius: 50%;
    font-size: 12px;
    font-weight:800
}

.leader-avatar {
    width: 36px;
    height:36px
}

.leader-name {
    display: grid;
    min-width: 0;
    gap:4px
}

.leader-name strong {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:13px
}

.leader-award {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 5px;
    vertical-align: -5px;
    border: 1px solid;
    border-radius: 8px;
    background:rgba(255, 255, 255, .05)
}

.leader-award-diamond {
    color: #bde7ff;
    border-color: rgba(189, 231, 255, .55);
    background:rgba(189, 231, 255, .11)
}

.leader-award-silver {
    color: #d9e1ea;
    border-color: rgba(217, 225, 234, .48);
    background:rgba(217, 225, 234, .1)
}

.leader-award-gold {
    color: var(--yellow);
    border-color: rgba(240, 185, 11, .55);
    background:rgba(240, 185, 11, .12)
}

.leader-name small, .leader-score small {
    color: var(--muted);
    font-size: 11px;
    font-feature-settings: "tnum";
    font-variant-numeric:tabular-nums
}

.leader-score {
    display: grid;
    gap: 3px;
    text-align:end
}

.leader-score strong {
    color: var(--yellow);
    font-size: 16px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    white-space:nowrap
}

.your-position {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 15px;
    color: var(--soft);
    border: 1px solid rgba(240, 185, 11, .25);
    border-radius: 14px;
    background: rgba(240, 185, 11, .07);
    font-size:12px
}

.your-position strong {
    color: var(--yellow);
    font-size:19px
}

.your-position span:last-child {
    margin-left: auto;
    color:var(--muted)
}

.leader-participation {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 13px 15px;
    color: #ffe28a;
    border: 1px solid rgba(240, 185, 11, .24);
    border-radius: 14px;
    background: rgba(240, 185, 11, .07);
    font-size: 12px;
    line-height:1.4
}

.leader-participation svg {
    flex: 0 0 auto;
    margin-top: 1px;
    color:var(--yellow)
}

.profile-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    padding:18px
}

.profile-avatar {
    width: 54px;
    height: 54px;
    font-size:17px
}

.profile-hero > div:last-child {
    display: grid;
    gap:5px
}

.profile-hero strong {
    font-size:17px
}

.profile-hero span {
    color: var(--muted);
    font-size:12px
}

@keyframes page-in {
    0% {
        opacity: .72;
        transform:translateY(4px)
    }

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

@media (max-width: 380px) {
    .app-shell {
        padding-inline:12px
    }

    .brand {
        font-size:18px
    }

    .asset-tabs {
        gap:1px
    }

    .asset-tab {
        font-size:11px
    }

    .deal-menu-card {
        gap: 8px;
        padding:11px
    }

    .deal-menu-icon {
        width: 42px;
        height:42px
    }

    .deal-menu-card strong {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        font-size:15px
    }

    .deals-page .live-chip {
        padding: 7px 9px;
        font-size:9px
    }

    .deals-page .deal-menu-card {
        min-height: 128px;
        padding: 13px;
        gap:9px
    }

    .deals-page .deal-menu-icon {
        width: 46px;
        height:46px
    }

    .deals-page .deal-menu-primary {
        min-height:94px
    }
}

@media (max-width: 430px) {
    .deals-page .deal-menu-card {
        padding: 12px;
        gap:8px
    }

    .deals-page .deal-menu-icon {
        width: 46px;
        height:46px
    }

    .deals-page .deal-menu-card strong {
        font-size:15px
    }

    .deals-page .deal-menu-card > svg {
        width:16px
    }

    .deals-page .deal-menu-primary > svg {
        width: 48px;
        height:48px
    }
}

@media (prefers-reduced-motion: reduce) {
    .review-vertical-track, .review-vertical-track .review-item, .rolling-digit-track {
        animation: none;
        transition:none
    }

    *, :after, :before {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration:.01ms !important
    }
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0460-052f, u + 1c80-1c8a, u + 20b4, u + 2de0-2dff, u + a640-a69f, u + fe2e-fe2f
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/28793f5c5e3d822d-s.p.woff2) format("woff2");
    unicode-range:u + 0301, u + 0400-045f, u + 0490-0491, u + 04b0-04b1, u + 2116
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0370-0377, u + 037a-037f, u + 0384-038a, u + 038c, u + 038e-03a1, u + 03a3-03ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0102-0103, u + 0110-0111, u + 0128-0129, u + 0168-0169, u + 01a0-01a1, u + 01af-01b0, u + 0300-0301, u + 0303-0304, u + 0308-0309, u + 0323, u + 0329, u + 1ea0-1ef9, u + 20ab
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0100-02ba, u + 02bd-02c5, u + 02c7-02cc, u + 02ce-02d7, u + 02dd-02ff, u + 0304, u + 0308, u + 0329, u + 1d00-1dbf, u + 1e00-1e9f, u + 1ef2-1eff, u + 2020, u + 20a0-20ab, u + 20ad-20c0, u + 2113, u + 2c60-2c7f, u + a720-a7ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 00??, u + 0131, u + 0152-0153, u + 02bb-02bc, u + 02c6, u + 02da, u + 02dc, u + 0304, u + 0308, u + 0329, u + 2000-206f, u + 20ac, u + 2122, u + 2191, u + 2193, u + 2212, u + 2215, u + feff, u + fffd
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0460-052f, u + 1c80-1c8a, u + 20b4, u + 2de0-2dff, u + a640-a69f, u + fe2e-fe2f
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/28793f5c5e3d822d-s.p.woff2) format("woff2");
    unicode-range:u + 0301, u + 0400-045f, u + 0490-0491, u + 04b0-04b1, u + 2116
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0370-0377, u + 037a-037f, u + 0384-038a, u + 038c, u + 038e-03a1, u + 03a3-03ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0102-0103, u + 0110-0111, u + 0128-0129, u + 0168-0169, u + 01a0-01a1, u + 01af-01b0, u + 0300-0301, u + 0303-0304, u + 0308-0309, u + 0323, u + 0329, u + 1ea0-1ef9, u + 20ab
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0100-02ba, u + 02bd-02c5, u + 02c7-02cc, u + 02ce-02d7, u + 02dd-02ff, u + 0304, u + 0308, u + 0329, u + 1d00-1dbf, u + 1e00-1e9f, u + 1ef2-1eff, u + 2020, u + 20a0-20ab, u + 20ad-20c0, u + 2113, u + 2c60-2c7f, u + a720-a7ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 00??, u + 0131, u + 0152-0153, u + 02bb-02bc, u + 02c6, u + 02da, u + 02dc, u + 0304, u + 0308, u + 0329, u + 2000-206f, u + 20ac, u + 2122, u + 2191, u + 2193, u + 2212, u + 2215, u + feff, u + fffd
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0460-052f, u + 1c80-1c8a, u + 20b4, u + 2de0-2dff, u + a640-a69f, u + fe2e-fe2f
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/28793f5c5e3d822d-s.p.woff2) format("woff2");
    unicode-range:u + 0301, u + 0400-045f, u + 0490-0491, u + 04b0-04b1, u + 2116
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0370-0377, u + 037a-037f, u + 0384-038a, u + 038c, u + 038e-03a1, u + 03a3-03ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0102-0103, u + 0110-0111, u + 0128-0129, u + 0168-0169, u + 01a0-01a1, u + 01af-01b0, u + 0300-0301, u + 0303-0304, u + 0308-0309, u + 0323, u + 0329, u + 1ea0-1ef9, u + 20ab
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0100-02ba, u + 02bd-02c5, u + 02c7-02cc, u + 02ce-02d7, u + 02dd-02ff, u + 0304, u + 0308, u + 0329, u + 1d00-1dbf, u + 1e00-1e9f, u + 1ef2-1eff, u + 2020, u + 20a0-20ab, u + 20ad-20c0, u + 2113, u + 2c60-2c7f, u + a720-a7ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 00??, u + 0131, u + 0152-0153, u + 02bb-02bc, u + 02c6, u + 02da, u + 02dc, u + 0304, u + 0308, u + 0329, u + 2000-206f, u + 20ac, u + 2122, u + 2191, u + 2193, u + 2212, u + 2215, u + feff, u + fffd
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0460-052f, u + 1c80-1c8a, u + 20b4, u + 2de0-2dff, u + a640-a69f, u + fe2e-fe2f
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/28793f5c5e3d822d-s.p.woff2) format("woff2");
    unicode-range:u + 0301, u + 0400-045f, u + 0490-0491, u + 04b0-04b1, u + 2116
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0370-0377, u + 037a-037f, u + 0384-038a, u + 038c, u + 038e-03a1, u + 03a3-03ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0102-0103, u + 0110-0111, u + 0128-0129, u + 0168-0169, u + 01a0-01a1, u + 01af-01b0, u + 0300-0301, u + 0303-0304, u + 0308-0309, u + 0323, u + 0329, u + 1ea0-1ef9, u + 20ab
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0100-02ba, u + 02bd-02c5, u + 02c7-02cc, u + 02ce-02d7, u + 02dd-02ff, u + 0304, u + 0308, u + 0329, u + 1d00-1dbf, u + 1e00-1e9f, u + 1ef2-1eff, u + 2020, u + 20a0-20ab, u + 20ad-20c0, u + 2113, u + 2c60-2c7f, u + a720-a7ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 00??, u + 0131, u + 0152-0153, u + 02bb-02bc, u + 02c6, u + 02da, u + 02dc, u + 0304, u + 0308, u + 0329, u + 2000-206f, u + 20ac, u + 2122, u + 2191, u + 2193, u + 2212, u + 2215, u + feff, u + fffd
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0460-052f, u + 1c80-1c8a, u + 20b4, u + 2de0-2dff, u + a640-a69f, u + fe2e-fe2f
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/28793f5c5e3d822d-s.p.woff2) format("woff2");
    unicode-range:u + 0301, u + 0400-045f, u + 0490-0491, u + 04b0-04b1, u + 2116
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0370-0377, u + 037a-037f, u + 0384-038a, u + 038c, u + 038e-03a1, u + 03a3-03ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0102-0103, u + 0110-0111, u + 0128-0129, u + 0168-0169, u + 01a0-01a1, u + 01af-01b0, u + 0300-0301, u + 0303-0304, u + 0308-0309, u + 0323, u + 0329, u + 1ea0-1ef9, u + 20ab
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 0100-02ba, u + 02bd-02c5, u + 02c7-02cc, u + 02ce-02d7, u + 02dd-02ff, u + 0304, u + 0308, u + 0329, u + 1d00-1dbf, u + 1e00-1e9f, u + 1ef2-1eff, u + 2020, u + 20a0-20ab, u + 20ad-20c0, u + 2113, u + 2c60-2c7f, u + a720-a7ff
}

@font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format("woff2");
    unicode-range:u + 00??, u + 0131, u + 0152-0153, u + 02bb-02bc, u + 02c6, u + 02da, u + 02dc, u + 0304, u + 0308, u + 0329, u + 2000-206f, u + 20ac, u + 2122, u + 2191, u + 2193, u + 2212, u + 2215, u + feff, u + fffd
}

@font-face {
    font-family: IBM Plex Sans Fallback;
    src: local("Arial");
    ascent-override: 101.32%;
    descent-override: 27.18%;
    line-gap-override: 0.00%;
    size-adjust:101.17%
}

.__className_483886 {
    font-family: IBM Plex Sans, IBM Plex Sans Fallback;
    font-style:normal
}

.__variable_483886 {
    --font-ibm-plex-sans: "IBM Plex Sans", "IBM Plex Sans Fallback"
}

