:root {
  color-scheme: light;
  --color-bg: 243 244 246;
  --color-bg-soft: 255 255 255;
  --color-bg-section: 249 250 251;
  --color-text: 17 19 24;
  --color-text-sub: 91 94 103;
  --color-text-sup: 130 130 138;
  --color-text-mute: 158 158 166;
  --color-line: 226 228 232;
  --color-line-solid: 211 214 220;
  --color-up: 0 179 122;
  --color-down: 242 79 91;
  --color-up-bg: 224 248 240;
  --color-down-bg: 255 235 238;
  --color-hover-bg: 243 243 245;
  --shadow-card: 0 1px 2px rgb(0 0 0 / 0.03), 0 8px 28px rgb(0 0 0 / 0.05);
  --shadow-pop: 0 24px 64px rgb(0 0 0 / 0.16);
  --shadow-pc-card: 0 16px 48px rgb(0 0 0 / 0.09);
  --enterprise-radius: 12px;
  --enterprise-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.dark {
  color-scheme: dark;
  --color-bg: 0 0 0;
  --color-bg-soft: 15 15 16;
  --color-bg-section: 7 7 8;
  --color-text: 245 245 247;
  --color-text-sub: 166 166 174;
  --color-text-sup: 116 116 124;
  --color-text-mute: 88 88 94;
  --color-line: 28 28 30;
  --color-line-solid: 43 43 46;
  --color-up: 0 192 135;
  --color-down: 246 70 93;
  --color-up-bg: 4 48 39;
  --color-down-bg: 57 20 29;
  --color-hover-bg: 22 22 24;
  --shadow-card: none;
  --shadow-pop: 0 28px 72px rgb(0 0 0 / 0.62);
  --shadow-pc-card: 0 18px 56px rgb(0 0 0 / 0.38);
}

/* The reference canvas stays pure black only when dark mode is active. */
html.dark {
  color-scheme: dark;
  --color-bg: 0 0 0;
  --color-bg-soft: 18 18 19;
  --color-bg-section: 8 8 9;
  --color-text: 247 247 249;
  --color-text-sub: 166 166 174;
  --color-text-sup: 112 112 120;
  --color-text-mute: 82 82 88;
  --color-line: 30 30 32;
  --color-line-solid: 47 47 50;
  --color-up: 0 192 135;
  --color-down: 246 70 93;
  --color-up-bg: 4 48 39;
  --color-down-bg: 57 20 29;
  --color-hover-bg: 23 23 25;
  --shadow-card: none;
  --shadow-pop: 0 28px 72px rgb(0 0 0 / 0.62);
}

html {
  background: rgb(var(--color-bg));
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
#root {
  min-height: 100%;
  background: rgb(var(--color-bg));
  color: rgb(var(--color-text));
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family:
    Inter,
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    Helvetica,
    Arial,
    sans-serif;
  font-feature-settings:
    "kern" 1,
    "liga" 1,
    "tnum" 1;
  letter-spacing: -0.012em;
}

::selection {
  color: #fff;
  background: rgb(var(--color-up) / 0.72);
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgb(var(--color-line-solid)) transparent;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgb(var(--color-line-solid));
  background-clip: padding-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  letter-spacing: -0.024em;
}

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  transition:
    color 160ms var(--enterprise-ease),
    background-color 160ms var(--enterprise-ease),
    border-color 160ms var(--enterprise-ease),
    opacity 160ms var(--enterprise-ease),
    transform 160ms var(--enterprise-ease),
    box-shadow 160ms var(--enterprise-ease);
}

button:active:not(:disabled),
a:active {
  transform: translateY(1px);
}

:where(button, a, input, select, textarea):focus-visible {
  outline: 2px solid rgb(var(--color-text));
  outline-offset: 3px;
}

input,
select,
textarea {
  border-color: rgb(var(--color-line-solid)) !important;
  background-color: rgb(var(--color-bg-soft)) !important;
  color: rgb(var(--color-text)) !important;
}

input::placeholder,
textarea::placeholder {
  color: rgb(var(--color-text-mute)) !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgb(var(--color-text-sub)) !important;
  box-shadow: 0 0 0 3px rgb(var(--color-text) / 0.07);
}

html.dark [class~="bg-white"] {
  background-color: rgb(var(--color-bg-section)) !important;
}

html.dark [class~="text-black"] {
  color: rgb(var(--color-text)) !important;
}

html.dark [class~="border-gray-100"],
html.dark [class~="border-gray-200"],
html.dark [class~="border-slate-100"],
html.dark [class~="border-slate-200"] {
  border-color: rgb(var(--color-line)) !important;
}

[class*="bg-bgSection"],
[class*="bg-bgSoft"] {
  border-color: rgb(var(--color-line)) !important;
}

[class*="rounded-"][class*="border-"] {
  box-shadow: var(--shadow-card);
}

html.dark [class*="rounded-"][class*="border-"] {
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.018);
}

[class*="shadow-"] {
  --tw-shadow-color: rgb(0 0 0 / 0.16);
}

html.dark [class*="shadow-"] {
  --tw-shadow-color: rgb(0 0 0 / 0.58);
}

header,
[class~="sticky"][class~="top-0"] {
  border-color: rgb(var(--color-line)) !important;
  background-color: rgb(var(--color-bg) / 0.88) !important;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

header > div {
  max-width: 1440px;
  margin-inline: auto;
}

header > div > div:first-child {
  min-width: 0;
  flex: 1 1 auto;
}

header > div > div:last-child {
  flex: 0 0 auto;
  margin-left: auto;
}

header nav {
  min-width: 0;
  align-items: center;
}

nav a,
nav button {
  letter-spacing: -0.01em;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-variant-numeric: tabular-nums;
}

thead th {
  color: rgb(var(--color-text-sup));
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: none;
}

tbody tr {
  transition: background-color 140ms ease;
}

tbody tr:hover {
  background: rgb(var(--color-hover-bg) / 0.72);
}

td,
th {
  border-color: rgb(var(--color-line)) !important;
}

[class*="text-up"],
[class*="text-green"] {
  font-variant-numeric: tabular-nums;
}

[class*="text-down"],
[class*="text-red"] {
  font-variant-numeric: tabular-nums;
}

html.dark [class*="bg-primary"],
html.dark button[class*="bg-black"] {
  border-color: #f5f5f7 !important;
  background: #f5f5f7 !important;
  color: #050505 !important;
}

:root:not(.dark) [class*="bg-primary"],
:root:not(.dark) button[class*="bg-black"] {
  border-color: #111114 !important;
  background: #111114 !important;
  color: #fff !important;
}

img[src*="logo" i] {
  object-fit: contain;
}

[class*="coin"] img,
[class*="symbol"] img,
img[alt*="USDT" i],
img[alt*="BTC" i],
img[alt*="ETH" i] {
  border-radius: 50%;
  background: rgb(var(--color-bg-soft));
  box-shadow: 0 0 0 1px rgb(var(--color-line));
}

[role="dialog"],
[class*="popover" i],
[class*="dropdown" i] {
  border-color: rgb(var(--color-line-solid)) !important;
  box-shadow: var(--shadow-pop) !important;
}

[class*="toast" i] {
  border: 1px solid rgb(var(--color-line-solid));
  box-shadow: var(--shadow-pop);
  backdrop-filter: blur(18px);
}

.enterprise-brand-image,
img[src*="aster-pro-mark.png"],
img[src*="aster-pro-mark.svg"] {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

.enterprise-nav-original-home-icon {
  display: none !important;
}

.enterprise-nav-home-mark {
  display: block;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
}

@media (max-width: 768px) {
  nav.fixed.bottom-0 .enterprise-nav-home-link {
    transform: none;
  }

  nav.fixed.bottom-0 .enterprise-nav-home-link > span {
    margin-top: 0 !important;
  }
}

.enterprise-auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.enterprise-auth-brand img {
  width: 44px;
  height: 44px;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
}

.enterprise-auth-brand div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.enterprise-auth-brand strong {
  color: rgb(var(--color-text));
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.enterprise-auth-brand span {
  color: rgb(var(--color-text-sup));
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  [class*="min-w-[1280px]"],
  [class*="min-w-[1200px]"] {
    min-width: 0 !important;
  }

  [class~="px-8"],
  [class~="px-10"],
  [class~="px-12"] {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

@media (max-width: 720px) {
  :root {
    --enterprise-radius: 10px;
  }

  body {
    font-size: 14px;
    padding-bottom: env(safe-area-inset-bottom);
  }

  header,
  [class~="sticky"][class~="top-0"] {
    min-height: 58px;
  }

  [class*="h-[70px]"] {
    height: 58px !important;
  }

  [class~="px-6"],
  [class~="px-8"],
  [class~="px-10"],
  [class~="px-12"] {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  [class~="gap-8"],
  [class~="gap-10"],
  [class~="gap-12"] {
    gap: 16px !important;
  }

  button,
  [role="button"],
  input,
  select {
    min-height: 40px;
  }

  table {
    min-width: 680px;
  }

  [class*="overflow-x"] {
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  nav.fixed.bottom-0 {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(68px + env(safe-area-inset-bottom)) !important;
    min-height: 68px !important;
    max-height: calc(90px + env(safe-area-inset-bottom)) !important;
    padding-top: 2px !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
    overflow: visible !important;
    border-color: rgb(var(--color-line)) !important;
    background: rgb(var(--color-bg) / 0.96) !important;
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    box-shadow: 0 -8px 28px rgb(0 0 0 / 0.06) !important;
  }

  html.dark nav.fixed.bottom-0 {
    box-shadow: 0 -8px 28px rgb(0 0 0 / 0.42) !important;
  }

  nav.fixed.bottom-0 > div {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-template-rows: 60px !important;
    width: min(100%, 480px) !important;
    height: 60px !important;
    margin-inline: auto !important;
    padding: 0 10px 2px !important;
    gap: 0 !important;
  }

  nav.fixed.bottom-0 > div > a,
  nav.fixed.bottom-0 > div > button {
    display: flex !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 58px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 2px !important;
    overflow: visible !important;
    white-space: nowrap;
  }

  nav.fixed.bottom-0 > div > :is(a, button) > span {
    margin-top: 0 !important;
    font-size: 11px !important;
    line-height: 11px !important;
    transform: translateY(-1px);
  }

  nav.fixed.bottom-0 > div > :is(a, button) > :not(span) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  nav.fixed.bottom-0 .enterprise-nav-home-mark {
    position: static !important;
    margin: 0 0 -1px !important;
    transform: none !important;
  }

  .enterprise-mobile-home-header {
    position: relative;
    isolation: isolate;
  }

  .enterprise-original-profile-entry {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .enterprise-home-account-entry {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: auto;
    left: 0;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 0;
    transform: translateY(-50%);
    color: rgb(var(--color-text));
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

  .enterprise-home-account-entry img {
    width: 34px;
    height: 34px;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    object-fit: contain;
  }

  .enterprise-home-account-entry span {
    display: none !important;
  }

  .enterprise-exchange-switcher {
    display: none !important;
  }

  .enterprise-mobile-home-header > div:nth-child(3) {
    margin-right: 0;
  }

  .enterprise-switcher-caret {
    color: rgb(var(--color-text-sup));
    font-size: 11px;
  }

  .enterprise-original-home-hero,
  .enterprise-original-home-actions,
  .enterprise-original-home-deposit {
    display: none !important;
  }

  .enterprise-home-state {
    position: relative;
    overflow: hidden;
    margin-top: 22px;
    border: 1px solid rgb(var(--color-line));
    border-radius: 20px;
    background: rgb(var(--color-bg-section));
    box-shadow: var(--shadow-card);
  }

  .enterprise-home-state::before {
    position: absolute;
    top: 0;
    left: 24px;
    width: 64px;
    height: 2px;
    border-radius: 999px;
    background: rgb(var(--color-up));
    content: "";
  }

  .enterprise-home-state-guest {
    padding: 24px 20px 20px;
  }

  .enterprise-state-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(var(--color-text-sup));
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.025em;
  }

  .enterprise-state-eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(var(--color-up));
    box-shadow: 0 0 0 4px rgb(var(--color-up) / 0.12);
  }

  .enterprise-home-state h1 {
    margin: 13px 0 0 !important;
    color: rgb(var(--color-text));
    font-size: 24px !important;
    font-weight: 850;
    line-height: 1.18 !important;
    letter-spacing: -0.035em;
  }

  .enterprise-home-state-guest > p {
    max-width: 320px;
    margin: 9px 0 0;
    color: rgb(var(--color-text-sub));
    font-size: 13px;
    line-height: 1.55;
  }

  .enterprise-state-primary {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 14px;
    background: rgb(var(--color-up));
    color: #fff !important;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
  }

  .enterprise-state-primary:hover {
    filter: brightness(1.04);
  }

  .enterprise-state-secondary {
    display: block;
    margin-top: 13px;
    color: rgb(var(--color-text-sub));
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
  }

  .enterprise-home-state-member {
    overflow: visible;
    margin-top: 30px;
    padding: 7px 4px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .enterprise-home-state-member::before {
    display: none;
  }

  .enterprise-asset-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: clamp(10px, 3.2vw, 16px);
  }

  .enterprise-asset-copy {
    min-width: 0;
  }

  .enterprise-asset-label {
    color: rgb(var(--color-text-sub));
    font-size: 13px;
    font-weight: 650;
  }

  .enterprise-asset-label span {
    margin-left: 4px;
    color: rgb(var(--color-text-mute));
    font-size: 10px;
  }

  .enterprise-asset-value {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 7px;
  }

  .enterprise-asset-value strong {
    overflow: hidden;
    max-width: 220px;
    color: rgb(var(--color-text));
    font-family: "SF Pro Display", Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(30px, 8.4vw, 40px);
    font-feature-settings:
      "tnum" 1,
      "lnum" 1,
      "ss01" 1;
    font-variant-numeric: tabular-nums lining-nums;
    font-weight: 820;
    line-height: 0.98;
    letter-spacing: -0.038em;
    text-overflow: ellipsis;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap;
  }

  .enterprise-asset-value span {
    color: rgb(var(--color-text-sub));
    font-size: 13px;
    font-weight: 700;
  }

  .enterprise-asset-meta {
    margin-top: 9px;
    color: rgb(var(--color-text-sup));
    font-size: 12px;
    line-height: 1.35;
  }

  .enterprise-asset-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    padding: 0 2px;
    border: 0;
  }

  .enterprise-asset-actions a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: rgb(var(--color-text-sub));
    text-decoration: none;
  }

  .enterprise-asset-actions span {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(var(--color-line-solid));
    border-radius: 50%;
    background: rgb(var(--color-bg-soft));
    color: rgb(var(--color-text));
    font-size: 20px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.035);
  }

  .enterprise-asset-actions b {
    overflow: hidden;
    max-width: 100%;
    color: rgb(var(--color-text));
    font-size: 12px;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Retained for the compiled application shell; the enhanced home grid uses
     enterprise-home-service-grid and does not render these as duplicate UI. */
  .enterprise-quick-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
  }

  .enterprise-quick-services > a {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 58px;
    grid-template-columns: 24px minmax(0, 1fr) 7px;
    gap: 6px;
    align-items: center;
    padding: 8px 7px;
    overflow: hidden;
    border: 1px solid rgb(var(--color-line));
    border-radius: 12px;
    background: rgb(var(--color-bg-soft));
    color: rgb(var(--color-text));
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.025);
  }

  .enterprise-quick-services > a:active {
    opacity: 0.72;
    transform: scale(0.985);
  }

  .enterprise-service-icon {
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgb(var(--color-primary) / 0.12);
    color: rgb(var(--color-primary));
    font-size: 14px;
    font-weight: 760;
  }

  .enterprise-service-icon-benefit {
    background: rgb(124 58 237 / 0.13);
    color: rgb(139 92 246);
  }

  .enterprise-service-icon-buy {
    background: rgb(16 185 129 / 0.12);
    color: rgb(16 185 129);
  }

  .enterprise-service-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
  }

  .enterprise-service-copy strong,
  .enterprise-service-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .enterprise-service-copy strong {
    font-size: 10px;
    font-weight: 720;
    letter-spacing: -0.01em;
  }

  .enterprise-service-copy small {
    color: rgb(var(--color-text-sup));
    font-size: 7px;
    line-height: 1.15;
  }

  .enterprise-quick-services > a > b {
    color: rgb(var(--color-text-sup));
    font-size: 16px;
    font-weight: 500;
  }

  .enterprise-market-tabs {
    gap: 22px !important;
    margin-top: 34px !important;
    padding-right: 2px;
    padding-left: 2px;
  }

  .enterprise-home-notice {
    display: grid;
    min-height: 38px;
    grid-template-columns: 22px auto minmax(0, 1fr) 12px;
    gap: 7px;
    align-items: center;
    margin-top: 17px;
    padding: 0 11px;
    overflow: hidden;
    border: 1px solid rgb(var(--color-line));
    border-radius: 12px;
    background: rgb(var(--color-bg-soft));
    color: rgb(var(--color-text));
    text-decoration: none;
  }

  .enterprise-notice-icon {
    color: rgb(var(--color-primary));
    font-size: 12px;
  }
  .enterprise-notice-label {
    font-size: 10px;
    font-weight: 760;
  }
  .enterprise-notice-track {
    position: relative;
    display: block;
    height: 17px;
    overflow: hidden;
    color: rgb(var(--color-text-sub));
    font-size: 9px;
    line-height: 17px;
  }
  .enterprise-notice-track b {
    position: absolute;
    inset: 0;
    overflow: hidden;
    font-weight: 560;
    text-overflow: ellipsis;
    white-space: nowrap;
    animation: enterprise-notice-cycle 7s infinite;
  }
  .enterprise-notice-track b:nth-child(2) {
    animation-delay: 3.5s;
    opacity: 0;
  }
  .enterprise-notice-more {
    color: rgb(var(--color-text-sup));
    font-size: 16px;
  }
  @keyframes enterprise-notice-cycle {
    0%,
    42% {
      opacity: 1;
      transform: translateY(0);
    }
    48%,
    92% {
      opacity: 0;
      transform: translateY(-100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .enterprise-home-carousel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    margin-top: 12px;
    border: 1px solid rgb(var(--color-line));
    border-radius: 14px;
    background: rgb(var(--color-bg-soft));
    box-shadow: var(--shadow-card);
  }

  .enterprise-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 420ms cubic-bezier(0.22, 0.78, 0.2, 1);
    will-change: transform;
  }

  .enterprise-carousel-slide {
    position: relative;
    display: block;
    min-width: 100%;
    aspect-ratio: 2.85 / 1;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
  }

  .enterprise-carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    object-fit: cover;
  }

  .enterprise-carousel-copy {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 19px;
    display: flex;
    max-width: 64%;
    flex-direction: column;
    gap: 5px;
    transform: translateY(-50%);
    text-shadow: 0 2px 14px rgb(0 0 0 / 0.55);
  }

  .enterprise-carousel-copy strong {
    overflow: hidden;
    font-size: 19px;
    font-weight: 820;
    letter-spacing: -0.025em;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .enterprise-carousel-copy small {
    overflow: hidden;
    color: rgb(255 255 255 / 0.76);
    font-size: 11px;
    font-weight: 620;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .enterprise-carousel-dots {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .enterprise-carousel-dots button {
    width: 5px;
    height: 5px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.42);
    transition:
      width 180ms ease,
      background 180ms ease;
  }

  .enterprise-carousel-dots button.is-active {
    width: 16px;
    background: #fff;
  }

  .enterprise-market-tabs > button {
    min-height: 36px;
    padding-bottom: 10px !important;
    color: rgb(var(--color-text-sub));
    font-size: 15px;
    font-weight: 650;
    white-space: nowrap;
  }

  .enterprise-market-tabs > button[class*="border-text"] {
    color: rgb(var(--color-text));
    font-weight: 800;
  }

  .enterprise-favorite-market {
    display: none;
  }

  .enterprise-favorite-market.is-visible {
    display: block;
  }

  .enterprise-original-market-list.is-hidden-by-favorites {
    display: none !important;
  }

  .enterprise-favorite-subnav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    margin-top: 13px;
    padding: 0 2px 10px;
    border-bottom: 1px solid rgb(var(--color-line));
    scrollbar-width: none;
  }

  .enterprise-favorite-subnav::-webkit-scrollbar {
    display: none;
  }

  .enterprise-favorite-subnav button,
  .enterprise-favorite-subnav a {
    position: relative;
    display: inline-flex;
    min-width: max-content;
    min-height: 36px;
    align-items: center;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgb(var(--color-text-sub));
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
  }

  .enterprise-favorite-subnav button.is-active {
    background: rgb(var(--color-primary) / 0.12);
    color: rgb(var(--color-primary));
    font-weight: 800;
  }

  .enterprise-favorite-subnav button.is-active::after {
    position: absolute;
    right: 20%;
    bottom: -11px;
    left: 20%;
    height: 3px;
    border-radius: 999px;
    background: rgb(var(--color-text));
    content: none;
  }

  .enterprise-favorite-subnav a {
    position: sticky;
    right: 0;
    min-width: 30px;
    justify-content: flex-end;
    margin-left: auto;
    background: rgb(var(--color-bg));
    color: rgb(var(--color-text-sup));
    font-size: 18px;
  }

  .enterprise-favorite-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 16px;
  }

  .enterprise-favorite-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 105px;
    overflow: hidden;
    padding: 17px 15px 13px;
    border: 1px solid rgb(var(--color-line));
    border-radius: 16px;
    background: rgb(var(--color-bg-soft));
    color: rgb(var(--color-text));
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.025);
  }

  .enterprise-favorite-card:active {
    transform: scale(0.985);
  }

  .enterprise-favorite-pair {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 4px;
    padding-right: 30px;
    white-space: nowrap;
  }

  .enterprise-favorite-pair strong {
    overflow: hidden;
    color: rgb(var(--color-text));
    font-size: 17px;
    font-weight: 780;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
  }

  .enterprise-favorite-pair span {
    color: rgb(var(--color-text-sup));
    font-size: 11px;
    font-weight: 650;
  }

  .enterprise-favorite-change {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 720;
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }

  .enterprise-favorite-change[data-direction="up"] {
    color: rgb(var(--color-up));
  }

  .enterprise-favorite-change[data-direction="down"] {
    color: rgb(var(--color-down));
  }

  .enterprise-favorite-change[data-direction="flat"] {
    color: rgb(var(--color-text-sub));
  }

  .enterprise-favorite-price {
    overflow: hidden;
    margin-top: 7px;
    padding-right: 30px;
    color: rgb(var(--color-text-sup));
    font-size: 10px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .enterprise-favorite-check {
    position: absolute;
    top: 17px;
    right: 14px;
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(var(--color-text));
    color: rgb(var(--color-bg));
    font-size: 13px;
    font-weight: 900;
  }

  .enterprise-market-list {
    width: 100%;
    margin-top: 8px;
  }

  .enterprise-market-list-head,
  .enterprise-market-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 88px 76px;
    column-gap: 9px;
    align-items: center;
  }

  .enterprise-market-list-head {
    min-height: 38px;
    border-bottom: 1px solid rgb(var(--color-line));
    color: rgb(var(--color-text-sup));
    font-size: 10px;
    font-weight: 620;
  }

  .enterprise-market-list-head span:first-child {
    grid-column: 1 / 3;
  }

  .enterprise-market-list-head span:nth-child(2),
  .enterprise-market-list-head span:nth-child(3) {
    text-align: right;
  }

  .enterprise-market-row {
    min-height: 78px;
    border-bottom: 1px solid rgb(var(--color-line) / 0.78);
    color: rgb(var(--color-text));
    text-decoration: none;
  }

  .enterprise-market-row:last-child {
    border-bottom: 0;
  }

  .enterprise-market-row:active {
    opacity: 0.72;
  }

  .enterprise-market-logo {
    position: relative;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgb(var(--color-line));
    border-radius: 50%;
    background: rgb(var(--color-bg-soft));
    color: rgb(var(--color-text-sub));
  }

  .enterprise-market-logo img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50% !important;
    background: rgb(var(--color-bg-soft)) !important;
    object-fit: cover !important;
  }

  .enterprise-market-logo b {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .enterprise-market-instrument,
  .enterprise-market-row-price {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
  }

  .enterprise-market-instrument {
    gap: 5px;
  }

  .enterprise-market-instrument strong {
    overflow: hidden;
    font-size: 15px;
    font-weight: 760;
    letter-spacing: -0.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .enterprise-market-instrument strong small {
    color: rgb(var(--color-text-sup));
    font-size: 10px;
    font-weight: 620;
  }

  .enterprise-market-instrument em {
    overflow: hidden;
    color: rgb(var(--color-text-sup));
    font-size: 10px;
    font-style: normal;
    font-weight: 560;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .enterprise-market-row-price {
    align-items: flex-end;
    gap: 5px;
    text-align: right;
  }

  .enterprise-market-row-price strong {
    overflow: hidden;
    max-width: 88px;
    font-size: 14px;
    font-variant-numeric: tabular-nums lining-nums;
    font-weight: 720;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .enterprise-market-row-price small {
    overflow: hidden;
    max-width: 88px;
    color: rgb(var(--color-text-sup));
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .enterprise-market-row-change {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-variant-numeric: tabular-nums lining-nums;
    font-weight: 740;
  }

  .enterprise-market-row-change[data-direction="up"] {
    background: rgb(var(--color-up));
  }

  .enterprise-market-row-change[data-direction="down"] {
    background: rgb(var(--color-down));
  }

  .enterprise-market-row-change[data-direction="flat"] {
    background: rgb(var(--color-bg-soft));
    color: rgb(var(--color-text-sub));
  }

  .enterprise-favorite-add-all {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 19px;
    border: 0;
    border-radius: 999px;
    background: rgb(var(--color-up));
    color: #fff;
    font-size: 15px;
    font-weight: 780;
  }

  .enterprise-auth-route .page-motion {
    max-width: 440px !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .enterprise-auth-route .enterprise-auth-title {
    margin-top: 22px !important;
    font-size: 30px !important;
    font-weight: 850 !important;
    letter-spacing: -0.04em !important;
  }

  .enterprise-auth-route input {
    min-height: 52px !important;
    border-radius: 13px !important;
  }

  .enterprise-auth-route button {
    border-radius: 999px;
  }

  body:not(.enterprise-auth-route) main button,
  body:not(.enterprise-auth-route) main [role="button"] {
    border-radius: 999px;
  }

  main {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: clamp(28px, 9vw, 40px) !important;
    line-height: 1.08 !important;
  }
}

.enterprise-trade-route main {
  position: relative;
}

.enterprise-trade-switcher {
  display: grid;
  width: min(calc(100% - 28px), 520px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin: 12px auto 10px;
  padding: 4px;
  border: 1px solid rgb(var(--color-line));
  border-radius: 999px;
  background: rgb(var(--color-bg-soft));
}

.enterprise-trade-switcher button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgb(var(--color-text-sub));
  font-size: 13px;
  font-weight: 720;
}

.enterprise-trade-switcher button.is-active {
  background: rgb(var(--color-primary));
  color: #fff;
  box-shadow: 0 7px 20px rgb(var(--color-primary) / 0.22);
}

.enterprise-event-contract-panel {
  display: none;
  width: min(calc(100% - 28px), 520px);
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgb(var(--color-line));
  border-radius: 18px;
  background: rgb(var(--color-bg-soft));
  box-shadow: var(--shadow-card);
}

main[data-enterprise-trade-view="event"]
  > :not(.enterprise-trade-switcher):not(.enterprise-event-contract-panel) {
  display: none !important;
}

main[data-enterprise-trade-view="event"] .enterprise-event-contract-panel {
  display: block;
}

.enterprise-event-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.enterprise-event-head > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgb(var(--color-primary) / 0.14);
  color: rgb(var(--color-primary));
  font-size: 21px;
}

.enterprise-event-head div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.enterprise-event-head strong {
  font-size: 16px;
  font-weight: 800;
}
.enterprise-event-head small {
  color: rgb(var(--color-text-sup));
  font-size: 9px;
  font-weight: 650;
}

.enterprise-event-empty {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px dashed rgb(var(--color-line-solid));
  border-radius: 16px;
  text-align: center;
}

.enterprise-event-empty > span {
  color: rgb(var(--color-primary));
  font-size: 35px;
}
.enterprise-event-empty strong {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 760;
}
.enterprise-event-empty p {
  max-width: 260px;
  margin: 7px 0 0;
  color: rgb(var(--color-text-sup));
  font-size: 11px;
  line-height: 1.5;
}
.enterprise-event-risk {
  margin-top: 13px;
  color: rgb(var(--color-text-sup));
  font-size: 10px;
  line-height: 1.5;
}

main[data-enterprise-assets-view="true"] > :not(#enterprise-assets-page):not(nav.fixed) {
  display: none !important;
}

#enterprise-assets-page {
  width: min(calc(100% - 28px), 920px);
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: 4px 0 112px;
  color: rgb(var(--color-text));
  font-variant-numeric: tabular-nums lining-nums;
}

.enterprise-assets-top-tabs {
  display: flex;
  gap: clamp(22px, 5vw, 44px);
  align-items: center;
  min-height: 64px;
  overflow-x: auto;
  scrollbar-width: none;
}

.enterprise-assets-top-tabs::-webkit-scrollbar {
  display: none;
}

.enterprise-assets-top-tabs button {
  position: relative;
  min-width: max-content;
  min-height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(var(--color-text-sub));
  font-size: 17px;
  font-weight: 760;
}

.enterprise-assets-top-tabs button.is-active {
  color: rgb(var(--color-text));
}

.enterprise-assets-top-tabs button.is-active::after {
  position: absolute;
  right: 3px;
  bottom: 4px;
  left: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgb(var(--color-primary));
  content: "";
}

.enterprise-assets-hero {
  display: grid;
  min-height: 185px;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 24px;
  padding: 28px 18px 20px;
}

.enterprise-assets-total {
  min-width: 0;
}

.enterprise-assets-total > small {
  display: block;
  color: rgb(var(--color-text-sub));
  font-size: 13px;
  font-weight: 650;
}

.enterprise-assets-total > small span {
  margin-left: 3px;
  color: rgb(var(--color-text-mute));
  font-size: 9px;
}

.enterprise-assets-total > div {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.enterprise-assets-total > div strong {
  overflow: hidden;
  max-width: 100%;
  font-family: "SF Pro Display", Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 7vw, 48px);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.042em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-assets-total > div b {
  color: rgb(var(--color-text-sub));
  font-size: 13px;
  font-weight: 720;
}

.enterprise-assets-total p {
  margin: 11px 0 0;
  color: rgb(var(--color-text-sup));
  font-size: 11px;
}

.enterprise-assets-trend {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.enterprise-assets-spark {
  width: 145px;
  height: 54px;
  filter: drop-shadow(0 4px 7px rgb(var(--color-primary) / 0.18));
}

.enterprise-assets-spark polyline {
  fill: none;
  stroke: rgb(var(--color-primary));
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.enterprise-assets-trend small {
  color: rgb(var(--color-text-sup));
  font-size: 9px;
}

.enterprise-assets-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 8px;
}

.enterprise-assets-actions a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgb(var(--color-text));
  text-decoration: none;
}

.enterprise-assets-actions a > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgb(var(--color-line-solid));
  border-radius: 50%;
  background: rgb(var(--color-bg-soft));
  box-shadow: inset 0 1px rgb(255 255 255 / 0.035);
}

.enterprise-assets-actions svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.enterprise-assets-actions b {
  overflow: hidden;
  max-width: 100%;
  font-size: 12px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-assets-notice {
  display: grid;
  min-height: 76px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  padding: 13px 16px;
  border: 1px solid rgb(var(--color-line));
  border-radius: 15px;
  background: rgb(var(--color-bg-soft));
}

.enterprise-assets-notice-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgb(var(--color-text));
  border-radius: 50%;
  font-size: 17px;
  font-weight: 780;
}

.enterprise-assets-notice strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-assets-notice > b {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgb(var(--color-bg));
  color: rgb(var(--color-text-sub));
  font-size: 9px;
}

.enterprise-assets-list {
  margin-top: 36px;
}

.enterprise-assets-list > header {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.enterprise-assets-list > header > nav {
  display: flex;
  gap: 22px;
}

.enterprise-assets-list > header > nav button {
  position: relative;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(var(--color-text-sub));
  font-size: 15px;
  font-weight: 730;
}

.enterprise-assets-list > header > nav button.is-active {
  color: rgb(var(--color-text));
}

.enterprise-assets-list > header > nav button.is-active::after {
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 3px;
  border-radius: 99px;
  background: rgb(var(--color-text));
  content: "";
}

.enterprise-assets-tools {
  display: flex;
  align-items: center;
  gap: 9px;
}

.enterprise-assets-tools label {
  display: flex;
  width: 175px;
  height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgb(var(--color-line));
  border-radius: 999px;
  background: rgb(var(--color-bg-soft));
}

.enterprise-assets-tools label svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgb(var(--color-text-sub));
  stroke-linecap: round;
  stroke-width: 1.8;
}

.enterprise-assets-tools input {
  min-width: 0;
  width: 100%;
  padding: 0 !important;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  color: rgb(var(--color-text));
  font-size: 10px;
}

.enterprise-assets-tools > button {
  display: flex;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgb(var(--color-text-sub));
}

.enterprise-assets-tools > button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.enterprise-assets-tools > button span:nth-child(2) {
  width: 13px;
}

.enterprise-assets-tools > button.is-active {
  background: rgb(var(--color-primary) / 0.12);
  color: rgb(var(--color-primary));
}

.enterprise-assets-columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0 9px;
  color: rgb(var(--color-text-sup));
  font-size: 10px;
}

.enterprise-assets-rows {
  border-top: 1px solid rgb(var(--color-line));
}

.enterprise-assets-row {
  display: grid;
  min-height: 82px;
  grid-template-columns: minmax(0, 1fr) minmax(160px, auto);
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgb(var(--color-line));
}

.enterprise-assets-name {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.enterprise-assets-name > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.enterprise-assets-name strong {
  font-size: 14px;
  font-weight: 780;
}

.enterprise-assets-name small,
.enterprise-assets-row-value small {
  color: rgb(var(--color-text-sup));
  font-size: 10px;
}

.enterprise-assets-coin-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #343437;
  color: #fff;
  font-size: 20px;
  font-weight: 820;
  box-shadow: inset 0 1px rgb(255 255 255 / 0.16);
}

.enterprise-assets-coin-icon.coin-btc { background: #f7931a; }
.enterprise-assets-coin-icon.coin-eth { background: #627eea; }
.enterprise-assets-coin-icon.coin-trx { background: #ef0027; }
.enterprise-assets-coin-icon.coin-usdt { background: #26a17b; }
.enterprise-assets-coin-icon.coin-usdc { background: #2775ca; }
.enterprise-assets-coin-icon.coin-sol { background: linear-gradient(145deg, #9945ff, #14f195); }
.enterprise-assets-coin-icon.coin-xrp { background: #23292f; }
.enterprise-assets-coin-icon.coin-doge { background: #c2a633; }
.enterprise-assets-coin-icon.coin-bnb { background: #f3ba2f; color: #181818; }

.enterprise-assets-row-value {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

.enterprise-assets-row-value strong {
  font-size: 13px;
  font-weight: 740;
}

.enterprise-assets-empty,
.enterprise-assets-loading,
.enterprise-assets-guest {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgb(var(--color-text-sub));
  text-align: center;
}

.enterprise-assets-empty span {
  color: rgb(var(--color-primary));
  font-size: 38px;
}

.enterprise-assets-loading span {
  width: 34px;
  height: 34px;
  border: 3px solid rgb(var(--color-line-solid));
  border-top-color: rgb(var(--color-primary));
  border-radius: 50%;
  animation: enterprise-assets-spin 0.8s linear infinite;
}

.enterprise-assets-guest img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.enterprise-assets-guest a {
  min-width: 150px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgb(var(--color-primary));
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
}

@keyframes enterprise-assets-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
  #enterprise-assets-page {
    width: calc(100% - 24px);
    padding-top: 0;
  }

  .enterprise-assets-top-tabs {
    gap: 24px;
    min-height: 58px;
  }

  .enterprise-assets-top-tabs button {
    min-height: 46px;
    font-size: 15px;
  }

  .enterprise-assets-hero {
    min-height: 172px;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 8px;
    padding: 24px 10px 18px 16px;
  }

  .enterprise-assets-total > div strong {
    font-size: clamp(31px, 9vw, 39px);
  }

  .enterprise-assets-spark {
    width: 105px;
    height: 46px;
  }

  .enterprise-assets-actions {
    gap: 8px;
    padding: 0;
  }

  .enterprise-assets-actions a > span {
    width: 49px;
    height: 49px;
  }

  .enterprise-assets-actions svg {
    width: 23px;
    height: 23px;
  }

  .enterprise-assets-notice {
    min-height: 70px;
    margin-top: 25px;
    padding: 11px 13px;
  }

  .enterprise-assets-list {
    margin-top: 30px;
  }

  .enterprise-assets-tools label {
    width: 38px;
    padding: 0 10px;
    overflow: hidden;
  }

  .enterprise-assets-tools label:focus-within {
    width: 142px;
  }

  .enterprise-assets-tools input {
    min-width: 102px;
  }

  .enterprise-assets-row {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) minmax(125px, auto);
    gap: 10px;
  }

  .enterprise-assets-coin-icon {
    width: 39px;
    height: 39px;
    font-size: 18px;
  }

  .enterprise-assets-row-value strong {
    font-size: 12px;
  }
}

/* ========================================================================== */
/* UI22 — typography, interaction and desktop exchange portal                 */
/* ========================================================================== */

:root {
  --ui22-accent: 18 91 255;
  --ui22-cyan: 56 222 255;
  --ui22-panel: 12 13 15;
  --ui22-panel-raised: 18 19 22;
  --ui22-hairline: 38 39 43;
  --ui22-radius-sm: 10px;
  --ui22-radius-md: 16px;
  --ui22-radius-lg: 24px;
}

html.dark,
html.dark body,
html.dark #root {
  background: #000;
}

body {
  font-family: Inter, "SF Pro Text", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", "PingFang SC",
    "Noto Sans CJK SC", "Microsoft YaHei", Arial, sans-serif;
  font-variant-numeric: tabular-nums slashed-zero;
  font-synthesis: none;
}

:where(h1, h2, h3) {
  text-wrap: balance;
}

:where(button, [role="button"], input, select, textarea) {
  min-height: 40px;
  border-radius: var(--ui22-radius-sm);
}

:where(button, [role="button"]):not(:disabled) {
  cursor: pointer;
}

:where(button, [role="button"]):disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.enterprise-market-page-tabs button,
.enterprise-assets-tabs button,
.enterprise-home-market-tabs button,
.enterprise-event-tabs button {
  min-height: 36px;
  padding-inline: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -0.012em;
}

.enterprise-market-page-tabs button.is-active,
.enterprise-assets-tabs button.is-active,
.enterprise-home-market-tabs button.is-active,
.enterprise-event-tabs button.is-active {
  border-color: rgb(var(--color-line-solid));
  background: #fff;
  color: #070708;
  box-shadow: 0 8px 28px rgb(255 255 255 / 0.08);
}

.enterprise-action-button,
.enterprise-auth-submit,
.enterprise-home-fund-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 30px rgb(var(--ui22-accent) / 0.2);
}

.enterprise-action-button:hover,
.enterprise-auth-submit:hover,
.enterprise-home-fund-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.enterprise-market-row,
.enterprise-assets-row,
.enterprise-defi-product-row {
  transition:
    background-color 160ms var(--enterprise-ease),
    transform 160ms var(--enterprise-ease);
}

.enterprise-market-row:hover,
.enterprise-assets-row:hover,
.enterprise-defi-product-row:hover {
  background: rgb(255 255 255 / 0.035);
}

.enterprise-pc-portal {
  display: none;
}

@media (min-width: 1024px) {
  body.enterprise-pc-home-route {
    min-width: 1024px;
    background:
      radial-gradient(circle at 73% 12%, rgb(var(--ui22-accent) / 0.12), transparent 30%),
      radial-gradient(circle at 12% 44%, rgb(var(--ui22-cyan) / 0.04), transparent 26%),
      #000;
  }

  body.enterprise-pc-home-route > #root {
    display: none !important;
  }

  .enterprise-pc-portal {
    display: block;
    min-height: 100vh;
    overflow: hidden;
    color: #f7f7f8;
    background: transparent;
  }

  .enterprise-pc-portal a {
    color: inherit;
    text-decoration: none;
  }

  .enterprise-pc-header {
    position: relative;
    z-index: 5;
    display: grid;
    width: min(1440px, calc(100% - 72px));
    min-height: 78px;
    margin: 0 auto;
    grid-template-columns: 230px minmax(0, 1fr) 230px;
    align-items: center;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
  }

  .enterprise-pc-brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 11px;
  }

  .enterprise-pc-brand img {
    width: 31px;
    height: 31px;
    object-fit: contain;
  }

  .enterprise-pc-brand strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.045em;
  }

  .enterprise-pc-header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.5vw, 42px);
  }

  .enterprise-pc-header nav a,
  .enterprise-pc-actions a {
    font-size: 13px;
    font-weight: 650;
  }

  .enterprise-pc-header nav a {
    color: #aaaab1;
  }

  .enterprise-pc-header nav a:hover {
    color: #fff;
  }

  .enterprise-pc-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .enterprise-pc-actions a {
    display: inline-flex;
    min-height: 40px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
  }

  .enterprise-pc-actions .is-quiet {
    color: #b5b5bc;
  }

  .enterprise-pc-actions .is-primary,
  .enterprise-pc-hero-actions > a:first-child {
    background: #fff;
    color: #050506;
    box-shadow: 0 10px 34px rgb(255 255 255 / 0.11);
  }

  .enterprise-pc-actions .is-primary:hover,
  .enterprise-pc-hero-actions > a:first-child:hover {
    background: rgb(var(--ui22-accent));
    color: #fff;
    transform: translateY(-2px);
  }

  .enterprise-pc-portal main {
    width: min(1440px, calc(100% - 72px));
    margin: 0 auto;
  }

  .enterprise-pc-hero {
    position: relative;
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(520px, 0.94fr) minmax(440px, 0.76fr);
    align-items: center;
    gap: 56px;
  }

  .enterprise-pc-hero-copy {
    position: relative;
    z-index: 2;
    padding: 84px 0 70px;
  }

  .enterprise-pc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a9a9b0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .enterprise-pc-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(var(--ui22-cyan));
    box-shadow: 0 0 20px rgb(var(--ui22-cyan) / 0.9);
  }

  .enterprise-pc-hero h1 {
    max-width: 820px;
    margin: 24px 0 22px;
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 760;
    line-height: 0.98;
    letter-spacing: -0.065em;
  }

  .enterprise-pc-hero-copy > p {
    max-width: 680px;
    margin: 0;
    color: #a6a6ad;
    font-size: 17px;
    font-weight: 470;
    line-height: 1.75;
    letter-spacing: -0.015em;
  }

  .enterprise-pc-hero-actions {
    display: flex;
    margin-top: 38px;
    align-items: center;
    gap: 12px;
  }

  .enterprise-pc-hero-actions a {
    display: inline-flex;
    min-width: 142px;
    min-height: 52px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 0.13);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 720;
  }

  .enterprise-pc-hero-actions .is-secondary {
    background: rgb(255 255 255 / 0.035);
    color: #d9d9dd;
  }

  .enterprise-pc-hero-actions .is-secondary:hover {
    border-color: rgb(255 255 255 / 0.32);
    background: rgb(255 255 255 / 0.075);
  }

  .enterprise-pc-visual {
    position: relative;
    min-height: 500px;
    isolation: isolate;
  }

  .enterprise-pc-visual::before {
    position: absolute;
    z-index: -1;
    inset: 11% 5% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(var(--ui22-accent) / 0.34), transparent 66%);
    content: "";
    filter: blur(18px);
  }

  .enterprise-pc-visual > img {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 164px;
    height: 164px;
    padding: 34px;
    border: 1px solid rgb(255 255 255 / 0.15);
    border-radius: 42px;
    background: linear-gradient(145deg, rgb(20 22 28 / 0.9), rgb(4 5 7 / 0.94));
    box-shadow:
      0 42px 100px rgb(0 0 0 / 0.6),
      0 0 80px rgb(var(--ui22-accent) / 0.22),
      inset 0 1px rgb(255 255 255 / 0.12);
    transform: translate(-50%, -50%) rotate(-6deg);
  }

  .enterprise-pc-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgb(255 255 255 / 0.11);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-14deg);
  }

  .enterprise-pc-orbit::before {
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(var(--ui22-cyan));
    box-shadow: 0 0 18px rgb(var(--ui22-cyan));
    content: "";
  }

  .enterprise-pc-orbit.orbit-a {
    width: 360px;
    height: 360px;
  }

  .enterprise-pc-orbit.orbit-b {
    width: 500px;
    height: 240px;
    transform: translate(-50%, -50%) rotate(30deg);
  }

  .enterprise-pc-grid {
    position: absolute;
    inset: 8% 0 0;
    opacity: 0.2;
    background-image:
      linear-gradient(rgb(255 255 255 / 0.12) 1px, transparent 1px),
      linear-gradient(90deg, rgb(255 255 255 / 0.12) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle, #000 0, transparent 68%);
  }

  .enterprise-pc-markets,
  .enterprise-pc-products {
    padding: 86px 0;
    border-top: 1px solid rgb(255 255 255 / 0.085);
  }

  .enterprise-pc-section-head {
    display: flex;
    margin-bottom: 34px;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
  }

  .enterprise-pc-section-head span,
  .enterprise-pc-trust > div:first-child > span {
    color: rgb(var(--ui22-cyan));
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
  }

  .enterprise-pc-section-head h2,
  .enterprise-pc-trust h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 720;
    letter-spacing: -0.045em;
  }

  .enterprise-pc-section-head p,
  .enterprise-pc-trust p {
    max-width: 650px;
    margin: 14px 0 0;
    color: #96969e;
    font-size: 15px;
    line-height: 1.7;
  }

  .enterprise-pc-section-head > a {
    color: #aaaab1;
    font-size: 13px;
    font-weight: 650;
  }

  .enterprise-pc-section-head > a:hover {
    color: #fff;
  }

  .enterprise-pc-quote-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .enterprise-pc-quote {
    display: grid;
    min-height: 150px;
    padding: 24px;
    grid-template-columns: 1fr auto;
    align-content: space-between;
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: var(--ui22-radius-md);
    background: linear-gradient(145deg, rgb(255 255 255 / 0.047), rgb(255 255 255 / 0.018));
  }

  .enterprise-pc-quote:hover {
    border-color: rgb(var(--ui22-accent) / 0.58);
    background: rgb(var(--ui22-accent) / 0.075);
    transform: translateY(-3px);
  }

  .enterprise-pc-quote .enterprise-home-market-title {
    grid-column: 1 / -1;
  }

  .enterprise-pc-quote .enterprise-home-market-title strong {
    font-size: 15px;
    font-weight: 720;
  }

  .enterprise-pc-quote .enterprise-home-market-title small {
    margin-left: 8px;
    color: #73737b;
    font-size: 10px;
  }

  .enterprise-pc-quote .enterprise-home-market-price {
    font-size: 25px;
    font-weight: 650;
    letter-spacing: -0.035em;
  }

  .enterprise-pc-quote .enterprise-home-market-change {
    align-self: center;
    font-size: 13px;
    font-weight: 680;
  }

  .enterprise-pc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .enterprise-pc-product-grid > a {
    position: relative;
    min-height: 280px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.085);
    border-radius: var(--ui22-radius-md);
    background: rgb(var(--ui22-panel) / 0.78);
  }

  .enterprise-pc-product-grid > a::after {
    position: absolute;
    right: -45px;
    bottom: -75px;
    width: 190px;
    height: 190px;
    border: 1px solid rgb(var(--ui22-accent) / 0.34);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 70px rgb(var(--ui22-accent) / 0.1);
  }

  .enterprise-pc-product-grid > a:hover {
    border-color: rgb(var(--ui22-accent) / 0.55);
    background: rgb(var(--ui22-accent) / 0.075);
    transform: translateY(-4px);
  }

  .enterprise-pc-product-grid b {
    color: #606068;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .enterprise-pc-product-grid h3 {
    margin: 68px 0 12px;
    font-size: 21px;
    font-weight: 690;
  }

  .enterprise-pc-product-grid p {
    margin: 0;
    color: #8f8f97;
    font-size: 13px;
    line-height: 1.65;
  }

  .enterprise-pc-product-grid i {
    position: absolute;
    top: 26px;
    right: 26px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 50%;
    color: #b9b9c0;
    font-style: normal;
  }

  .enterprise-pc-trust {
    display: grid;
    min-height: 320px;
    margin: 40px 0 90px;
    padding: 54px;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: var(--ui22-radius-lg);
    background:
      linear-gradient(120deg, rgb(var(--ui22-accent) / 0.12), transparent 46%),
      rgb(var(--ui22-panel));
  }

  .enterprise-pc-signal {
    display: flex;
    height: 150px;
    align-items: end;
    justify-content: center;
    gap: 12px;
  }

  .enterprise-pc-signal i {
    width: clamp(12px, 2vw, 24px);
    height: calc(24px + var(--signal-height, 40) * 1px);
    border-radius: 999px;
    background: linear-gradient(to top, rgb(var(--ui22-accent)), rgb(var(--ui22-cyan)));
    box-shadow: 0 0 24px rgb(var(--ui22-accent) / 0.28);
  }

  .enterprise-pc-signal i:nth-child(1) { --signal-height: 18; }
  .enterprise-pc-signal i:nth-child(2) { --signal-height: 46; }
  .enterprise-pc-signal i:nth-child(3) { --signal-height: 80; }
  .enterprise-pc-signal i:nth-child(4) { --signal-height: 52; }
  .enterprise-pc-signal i:nth-child(5) { --signal-height: 104; }
  .enterprise-pc-signal i:nth-child(6) { --signal-height: 70; }
  .enterprise-pc-signal i:nth-child(7) { --signal-height: 116; }
  .enterprise-pc-signal i:nth-child(8) { --signal-height: 88; }

  .enterprise-pc-footer {
    display: grid;
    width: min(1440px, calc(100% - 72px));
    min-height: 112px;
    margin: 0 auto;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    border-top: 1px solid rgb(255 255 255 / 0.08);
    color: #6f6f77;
    font-size: 11px;
  }

  .enterprise-pc-footer p {
    margin: 0;
    text-align: center;
  }

  .enterprise-pc-footer .enterprise-pc-brand img {
    width: 24px;
    height: 24px;
  }

  .enterprise-pc-footer .enterprise-pc-brand strong {
    font-size: 12px;
  }
}

@media (min-width: 1024px) and (max-width: 1220px) {
  .enterprise-pc-header,
  .enterprise-pc-portal main,
  .enterprise-pc-footer {
    width: calc(100% - 44px);
  }

  .enterprise-pc-header {
    grid-template-columns: 180px minmax(0, 1fr) 180px;
  }

  .enterprise-pc-header nav {
    gap: 18px;
  }

  .enterprise-pc-hero {
    min-height: 570px;
    grid-template-columns: minmax(500px, 1fr) 400px;
    gap: 24px;
  }

  .enterprise-pc-product-grid > a {
    min-height: 260px;
    padding: 22px;
  }
}

@media (max-width: 1023px) {
  .enterprise-pc-portal {
    display: none !important;
  }

  body.enterprise-pc-home-route > #root {
    display: block;
  }

  :where(button, [role="button"], input, select, textarea) {
    min-height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* UI21 precision pass: shared density, contrast and interaction polish. */
:root {
  --ui21-surface: 13 13 14;
  --ui21-surface-raised: 20 20 22;
  --ui21-border: 37 37 40;
  --ui21-accent: 182 255 34;
  --ui21-positive: 0 192 135;
  --ui21-negative: 246 70 93;
  --ui21-content-width: 980px;
}

html.dark,
html.dark body,
html.dark #root {
  background: #000 !important;
}

body {
  overscroll-behavior-y: none;
  font-variant-numeric: tabular-nums lining-nums;
}

main {
  isolation: isolate;
}

button,
a,
[role="button"] {
  touch-action: manipulation;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.46;
}

img {
  image-rendering: auto;
}

/* Keep every fixed bottom navigation compact, centered and safe-area aware. */
nav.fixed.bottom-0,
nav.enterprise-reference-bottom-nav {
  right: max(10px, env(safe-area-inset-right)) !important;
  bottom: max(10px, env(safe-area-inset-bottom)) !important;
  left: max(10px, env(safe-area-inset-left)) !important;
  width: auto !important;
  max-width: 720px !important;
  margin-inline: auto !important;
  border: 1px solid rgb(var(--ui21-border)) !important;
  border-radius: 26px !important;
  background: rgb(15 15 16 / 0.94) !important;
  box-shadow: 0 18px 54px rgb(0 0 0 / 0.58) !important;
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

nav.fixed.bottom-0 > div,
nav.enterprise-reference-bottom-nav > div {
  min-height: 66px !important;
  padding: 4px 7px !important;
}

nav.fixed.bottom-0 a,
nav.fixed.bottom-0 button,
nav.enterprise-reference-bottom-nav .enterprise-bottom-nav-item {
  min-height: 54px !important;
  gap: 2px !important;
  padding: 4px 8px !important;
  border-radius: 20px !important;
}

nav.fixed.bottom-0 svg,
nav.fixed.bottom-0 img,
nav.enterprise-reference-bottom-nav svg,
nav.enterprise-reference-bottom-nav img {
  width: 22px !important;
  height: 22px !important;
}

nav.fixed.bottom-0 span:last-child,
nav.enterprise-reference-bottom-nav .enterprise-bottom-nav-item span:last-child {
  margin-top: 0 !important;
  font-size: 10px !important;
  font-weight: 650 !important;
  line-height: 1.15 !important;
}

/* Home: clearer hierarchy without adding more cards. */
.enterprise-home-route main {
  padding-bottom: calc(104px + env(safe-area-inset-bottom)) !important;
}

.enterprise-home-route .enterprise-home-state,
.enterprise-home-route .enterprise-home-notice,
.enterprise-home-route .enterprise-home-carousel,
.enterprise-home-route .enterprise-market-tabs,
.enterprise-home-route .enterprise-market-list,
.enterprise-home-route .enterprise-home-market-snapshot,
.enterprise-home-route .enterprise-home-service-grid {
  width: min(100%, var(--ui21-content-width));
  margin-right: auto;
  margin-left: auto;
}

.enterprise-home-route .enterprise-home-state-member {
  padding: 4px 6px 0;
}

.enterprise-home-route .enterprise-asset-head strong,
.enterprise-home-route .enterprise-asset-head [class*="text-3xl"],
.enterprise-home-route .enterprise-asset-head [class*="text-4xl"] {
  font-weight: 790 !important;
  letter-spacing: -0.045em !important;
}

.enterprise-home-fund-button {
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.04), 0 12px 34px rgb(182 255 34 / 0.12);
}

.enterprise-home-fund-button:hover {
  background: #c3ff45;
  transform: translateY(-1px);
}

.enterprise-home-service-grid a > span {
  border: 1px solid #27272a;
  border-radius: 13px;
  background: #151516;
}

.enterprise-home-service-grid a:hover > span {
  border-color: #3a3a3e;
  background: #1b1b1d;
  transform: translateY(-2px);
}

.enterprise-home-market-card {
  background: linear-gradient(145deg, #141415, #0b0b0c);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.025);
}

.enterprise-home-market-card:hover {
  border-color: #38383b;
  transform: translateY(-2px);
}

.enterprise-home-carousel,
.enterprise-home-notice {
  overflow: hidden;
  border: 1px solid #262629;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.025);
}

/* Market: denser professional rows and more legible price columns. */
.enterprise-standalone-market {
  max-width: var(--ui21-content-width);
}

.enterprise-market-page-header {
  position: sticky;
  z-index: 12;
  top: 0;
  background: rgb(0 0 0 / 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

.enterprise-market-page-tabs button,
.enterprise-market-page-tabs a {
  letter-spacing: -0.025em;
}

.enterprise-market-page-tabs button.is-active::after {
  display: block;
  width: 18px;
  height: 3px;
  margin: -4px auto 0;
  border-radius: 99px;
  background: rgb(var(--ui21-accent));
  content: "";
}

.enterprise-standalone-market-panel .enterprise-market-row {
  transition: background-color 150ms ease, transform 150ms ease;
}

.enterprise-standalone-market-panel .enterprise-market-row:hover {
  background: #0b0b0c;
}

.enterprise-standalone-market-panel .enterprise-market-row-price strong,
.enterprise-standalone-market-panel .enterprise-market-row-change {
  letter-spacing: -0.025em;
}

.enterprise-standalone-market-panel .enterprise-favorite-card {
  background: linear-gradient(145deg, #111112, #070708);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.024);
}

.enterprise-standalone-market-panel .enterprise-favorite-card:hover {
  border-color: #3b3b3f;
  transform: translateY(-2px);
}

/* Assets: open exchange ledger, balanced alignment and crisp actions. */
body.enterprise-assets-route #enterprise-assets-page {
  width: min(100%, var(--ui21-content-width));
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
}

.enterprise-assets-hero {
  padding-inline: 6px;
}

.enterprise-assets-total > div strong {
  font-weight: 790;
  letter-spacing: -0.05em;
}

.enterprise-assets-actions a > span {
  border: 1px solid #29292c;
  background: #171719;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.025);
}

.enterprise-assets-actions a:hover > span {
  border-color: #3c3c40;
  background: #202023;
  transform: translateY(-2px);
}

.enterprise-assets-notice {
  border: 1px solid #2a2a2d;
  border-radius: 15px;
  background: linear-gradient(135deg, #1b1b1e, #121214) !important;
}

.enterprise-assets-row {
  min-height: 76px;
  border-bottom: 1px solid #171719 !important;
}

.enterprise-assets-row:hover {
  background: #09090a;
}

.enterprise-assets-coin-icon {
  box-shadow: 0 0 0 1px #252528, 0 6px 18px rgb(0 0 0 / 0.28);
}

/* Discover / profile / auth: one rhythm and one surface language. */
.enterprise-discover-shell,
#enterprise-profile-page,
.enterprise-login-route .page-motion {
  max-width: var(--ui21-content-width);
}

.enterprise-discover-route .enterprise-defi-product-row {
  border-bottom: 1px solid #18181a;
  transition: background-color 150ms ease;
}

.enterprise-discover-route .enterprise-defi-product-row:hover {
  background: #09090a;
}

.enterprise-profile-identity {
  border-bottom: 1px solid #18181a;
}

.enterprise-profile-service > span {
  border: 1px solid #242427;
  border-radius: 13px;
  background: #111112;
}

.enterprise-profile-service:hover > span {
  border-color: #3a3a3e;
  background: #1a1a1c;
  transform: translateY(-2px);
}

.enterprise-login-route .enterprise-auth-container input,
.enterprise-login-route .enterprise-auth-input {
  border: 1px solid #2b2b2e !important;
  border-radius: 14px !important;
  background: #171719 !important;
}

.enterprise-login-route .enterprise-auth-container input:focus {
  border-color: #66666d !important;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 0.055) !important;
}

.enterprise-login-route .enterprise-auth-submit,
.enterprise-login-route .enterprise-auth-provider {
  border-radius: 999px !important;
}

/* Trade and event-contract surfaces: improve existing controls without changing business logic. */
body:not(.enterprise-home-route):not(.enterprise-market-route):not(.enterprise-assets-route):not(.enterprise-discover-route):not(.enterprise-profile-route):not(.enterprise-login-route) main {
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

[role="dialog"] {
  border: 1px solid #303034 !important;
  border-radius: 22px !important;
  background: #111113 !important;
}

[role="dialog"] button[class*="rounded"],
main button[class*="rounded-full"] {
  font-weight: 760;
}

canvas {
  image-rendering: auto;
}

@media (hover: hover) {
  button:not(:disabled):hover,
  a:hover {
    filter: brightness(1.04);
  }
}

@media (min-width: 1024px) {
  .enterprise-home-route main,
  .enterprise-standalone-market,
  #enterprise-assets-page,
  #enterprise-profile-page,
  .enterprise-discover-shell {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 640px) {
  :root {
    --ui21-content-width: 100%;
  }

  nav.fixed.bottom-0,
  nav.enterprise-reference-bottom-nav {
    right: max(7px, env(safe-area-inset-right)) !important;
    bottom: max(7px, env(safe-area-inset-bottom)) !important;
    left: max(7px, env(safe-area-inset-left)) !important;
    border-radius: 23px !important;
  }

  nav.fixed.bottom-0 > div,
  nav.enterprise-reference-bottom-nav > div {
    min-height: 62px !important;
  }

  nav.fixed.bottom-0 a,
  nav.fixed.bottom-0 button,
  nav.enterprise-reference-bottom-nav .enterprise-bottom-nav-item {
    min-height: 51px !important;
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .enterprise-home-route .enterprise-home-state,
  .enterprise-home-route .enterprise-home-notice,
  .enterprise-home-route .enterprise-home-carousel,
  .enterprise-home-route .enterprise-market-tabs,
  .enterprise-home-route .enterprise-market-list,
  .enterprise-home-route .enterprise-home-market-snapshot,
  .enterprise-home-route .enterprise-home-service-grid {
    width: 100%;
  }

  .enterprise-home-service-grid a > span,
  .enterprise-profile-service > span {
    border-radius: 11px;
  }

  .enterprise-standalone-market-panel .enterprise-market-row {
    min-height: 74px;
  }

  .enterprise-assets-actions {
    gap: 10px;
  }

  .enterprise-assets-actions a > span {
    width: 48px;
    height: 48px;
  }

  [role="dialog"] {
    border-radius: 20px 20px 0 0 !important;
  }
}

@supports (padding: max(0px)) {
  body {
    padding-right: env(safe-area-inset-right);
    padding-left: env(safe-area-inset-left);
  }
}

/* Home and markets: pure-black reference layout. Business routes and quote APIs stay unchanged. */
.dark body.enterprise-home-route,
.dark body.enterprise-market-route,
.dark body.enterprise-home-route #root,
.dark body.enterprise-market-route #root,
.dark body.enterprise-home-route main,
.dark body.enterprise-market-route main {
  background: #000 !important;
  color: #f7f7f8;
}

.enterprise-home-route .enterprise-home-state-member {
  color: #f7f7f8;
}

.enterprise-home-route .enterprise-asset-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.enterprise-home-fund-button {
  display: inline-flex;
  min-width: 132px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #b6ff22;
  color: #090a0a !important;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
}

.enterprise-home-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 8px;
  margin-top: 30px;
}

.enterprise-home-service-grid a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #f1f1f3;
  text-decoration: none;
}

.enterprise-home-service-grid a > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #f7f7f8;
  font-size: 24px;
  line-height: 1;
}

.enterprise-home-service-grid a > b {
  overflow: hidden;
  max-width: 100%;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-home-market-snapshot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 28px;
}

.enterprise-home-market-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 84px;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 9px 8px;
  align-content: center;
  padding: 14px 15px;
  border: 1px solid #202023;
  border-radius: 14px;
  background: #111112;
  color: #f7f7f8;
  text-decoration: none;
}

.enterprise-home-market-title {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 6px;
}

.enterprise-home-market-title strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-home-market-title small {
  overflow: hidden;
  color: #7f7f87;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-home-market-price {
  grid-column: 1;
  color: #f7f7f8;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  font-weight: 740;
}

.enterprise-home-market-change {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
}

.enterprise-home-market-change[data-direction="up"] { color: #00c087; }
.enterprise-home-market-change[data-direction="down"] { color: #f6465d; }
.enterprise-home-market-change[data-direction="flat"] { color: #7f7f87; }

.enterprise-market-route .enterprise-market-original {
  display: none !important;
}

.enterprise-standalone-market {
  width: min(100%, 980px);
  min-height: calc(100dvh - 72px);
  margin: 0 auto;
  padding: 18px 24px calc(94px + env(safe-area-inset-bottom));
  background: #000;
  color: #f7f7f8;
}

.enterprise-market-page-header {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border: 0 !important;
  background: #000 !important;
  backdrop-filter: none !important;
}

.enterprise-market-page-tabs {
  display: flex;
  align-items: center;
  gap: 28px;
}

.enterprise-market-page-tabs button,
.enterprise-market-page-tabs a,
.enterprise-market-page-tools button,
.enterprise-market-page-tools a {
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7f7f87;
  font-size: 17px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
}

.enterprise-market-page-tabs button.is-active {
  color: #f7f7f8;
  font-weight: 850;
}

.enterprise-market-page-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}

.enterprise-market-page-tools button,
.enterprise-market-page-tools a {
  color: #f7f7f8;
  font-size: 25px;
}

.enterprise-market-page-search {
  position: absolute;
  z-index: 3;
  inset: 7px 0;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #2a2a2d;
  border-radius: 999px;
  background: #171718;
}

.enterprise-market-page-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #f7f7f8 !important;
  box-shadow: none !important;
}

.enterprise-market-page-search button {
  display: grid;
  width: 32px;
  height: 32px;
  min-height: 32px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #29292c;
  color: #f7f7f8;
  font-size: 20px;
}

.enterprise-standalone-market.is-searching .enterprise-market-page-search {
  display: flex;
}

.enterprise-standalone-market-panel {
  display: block !important;
  margin-top: 4px;
}

.enterprise-standalone-market-panel .enterprise-favorite-subnav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 11px 0 13px;
  border-bottom: 1px solid #202023;
  scrollbar-width: none;
}

.enterprise-standalone-market-panel .enterprise-favorite-subnav::-webkit-scrollbar {
  display: none;
}

.enterprise-standalone-market-panel .enterprise-favorite-subnav button,
.enterprise-standalone-market-panel .enterprise-favorite-subnav a {
  display: inline-flex;
  min-width: max-content;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #888890;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

.enterprise-standalone-market-panel .enterprise-favorite-subnav button.is-active {
  background: #202022;
  color: #f7f7f8;
}

.enterprise-standalone-market-panel .enterprise-favorite-subnav a {
  position: sticky;
  right: 0;
  margin-left: auto;
  background: #000;
}

.enterprise-standalone-market-panel .enterprise-favorite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.enterprise-standalone-market-panel .enterprise-favorite-card {
  position: relative;
  display: block;
  min-height: 118px;
  padding: 20px 18px;
  border: 1px solid #29292c;
  border-radius: 16px;
  background: #090909;
  color: #f7f7f8;
  text-decoration: none;
}

.enterprise-standalone-market-panel .enterprise-favorite-pair {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding-right: 32px;
}

.enterprise-standalone-market-panel .enterprise-favorite-pair strong {
  font-size: 19px;
}

.enterprise-standalone-market-panel .enterprise-favorite-pair span,
.enterprise-standalone-market-panel .enterprise-favorite-price {
  color: #77777f;
  font-size: 11px;
}

.enterprise-standalone-market-panel .enterprise-favorite-change {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 740;
}

.enterprise-standalone-market-panel .enterprise-favorite-change[data-direction="up"] { color: #b6ff22; }
.enterprise-standalone-market-panel .enterprise-favorite-change[data-direction="down"] { color: #f6465d; }
.enterprise-standalone-market-panel .enterprise-favorite-change[data-direction="flat"] { color: #77777f; }

.enterprise-standalone-market-panel .enterprise-favorite-check {
  position: absolute;
  top: 18px;
  right: 16px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 6px;
  background: #f7f7f8;
  color: #080809;
  font-size: 13px;
}

.enterprise-standalone-market-panel .enterprise-market-list {
  margin-top: 8px;
}

.enterprise-standalone-market-panel .enterprise-market-list-head,
.enterprise-standalone-market-panel .enterprise-market-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(92px, 0.8fr) 92px;
  gap: 10px;
  align-items: center;
}

.enterprise-standalone-market-panel .enterprise-market-list-head {
  min-height: 48px;
  border-bottom: 1px solid #202023;
  color: #65656d;
  font-size: 11px;
}

.enterprise-standalone-market-panel .enterprise-market-list-head span:first-child {
  grid-column: 1 / 3;
}

.enterprise-standalone-market-panel .enterprise-market-list-head span:nth-child(n + 2) {
  text-align: right;
}

.enterprise-standalone-market-panel .enterprise-market-row {
  min-height: 82px;
  border-bottom: 1px solid #131315;
  color: #f7f7f8;
  text-decoration: none;
}

.enterprise-standalone-market-panel .enterprise-market-logo {
  display: grid;
  width: 36px;
  height: 36px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #242427;
  border-radius: 50%;
  background: #111112;
}

.enterprise-standalone-market-panel .enterprise-market-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enterprise-standalone-market-panel .enterprise-market-instrument,
.enterprise-standalone-market-panel .enterprise-market-row-price {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.enterprise-standalone-market-panel .enterprise-market-instrument strong,
.enterprise-standalone-market-panel .enterprise-market-row-price strong {
  overflow: hidden;
  font-size: 15px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-standalone-market-panel .enterprise-market-instrument small,
.enterprise-standalone-market-panel .enterprise-market-instrument em,
.enterprise-standalone-market-panel .enterprise-market-row-price small {
  overflow: hidden;
  color: #77777f;
  font-size: 10px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-standalone-market-panel .enterprise-market-row-price {
  align-items: flex-end;
  text-align: right;
}

.enterprise-standalone-market-panel .enterprise-market-row-change {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #050505;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 780;
}

.enterprise-standalone-market-panel .enterprise-market-row-change[data-direction="up"] { background: #b6ff22; }
.enterprise-standalone-market-panel .enterprise-market-row-change[data-direction="down"] { background: #f6465d; color: #fff; }
.enterprise-standalone-market-panel .enterprise-market-row-change[data-direction="flat"] { background: #1b1b1d; color: #77777f; }

.enterprise-standalone-market-panel .enterprise-favorite-add-all {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 0;
  border-radius: 16px;
  background: #f7f7f8;
  color: #080809;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .enterprise-home-route .enterprise-home-state-member {
    margin-top: 18px;
  }

  .enterprise-home-route .enterprise-asset-head {
    padding: 0 4px;
  }

  .enterprise-home-fund-button {
    min-width: 118px;
    min-height: 44px;
    padding: 0 18px;
  }

  .enterprise-home-service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px 4px;
  }

  .enterprise-home-service-grid a > span {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .enterprise-home-market-snapshot {
    margin-top: 24px;
  }

  .enterprise-home-market-card {
    min-height: 74px;
    padding: 11px 12px;
  }

  .enterprise-standalone-market {
    width: 100%;
    padding: 8px 16px calc(84px + env(safe-area-inset-bottom));
  }

  .enterprise-market-page-tabs {
    gap: 24px;
  }

  .enterprise-market-page-tabs button,
  .enterprise-market-page-tabs a {
    font-size: 16px;
  }

  .enterprise-standalone-market-panel .enterprise-market-list-head,
  .enterprise-standalone-market-panel .enterprise-market-row {
    grid-template-columns: 34px minmax(0, 1fr) 86px 78px;
    gap: 8px;
  }

  .enterprise-standalone-market-panel .enterprise-market-logo {
    width: 32px;
    height: 32px;
  }

  .enterprise-standalone-market-panel .enterprise-market-row-change {
    min-height: 36px;
    border-radius: 10px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .enterprise-home-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .enterprise-home-market-snapshot,
  .enterprise-standalone-market-panel .enterprise-favorite-grid {
    gap: 8px;
  }

  .enterprise-market-page-tabs {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Shared mobile navigation proportions from the supplied templates. */
nav.enterprise-reference-bottom-nav {
  right: max(10px, env(safe-area-inset-right)) !important;
  bottom: max(10px, env(safe-area-inset-bottom)) !important;
  left: max(10px, env(safe-area-inset-left)) !important;
  width: auto !important;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgb(var(--color-line-solid)) !important;
  border-radius: 28px !important;
  background: rgb(17 17 18 / 0.96) !important;
  box-shadow: 0 16px 48px rgb(0 0 0 / 0.46) !important;
  backdrop-filter: blur(18px);
}

nav.enterprise-reference-bottom-nav > div {
  min-height: 68px !important;
  padding: 4px 8px !important;
}

nav.enterprise-reference-bottom-nav .enterprise-bottom-nav-item {
  min-width: 0 !important;
  min-height: 56px !important;
  justify-content: center !important;
  gap: 3px !important;
  padding: 5px 9px !important;
  border-radius: 22px !important;
}

nav.enterprise-reference-bottom-nav .enterprise-bottom-nav-item svg,
nav.enterprise-reference-bottom-nav .enterprise-home-mark {
  width: 23px !important;
  height: 23px !important;
}

nav.enterprise-reference-bottom-nav .enterprise-bottom-nav-item span:last-child {
  margin: 0 !important;
  font-size: 10px !important;
  line-height: 1.1 !important;
}

@media (min-width: 760px) {
  nav.enterprise-reference-bottom-nav {
    max-width: 720px;
  }
}

/* Discover / DeFi and login reference layouts. These selectors are route-scoped. */
html.enterprise-forced-black-route {
  color-scheme: dark;
  --color-bg: 0 0 0;
  --color-bg-soft: 17 17 18;
  --color-bg-section: 8 8 9;
  --color-text: 248 248 250;
  --color-text-sub: 166 166 174;
  --color-text-sup: 112 112 120;
  --color-text-mute: 82 82 90;
  --color-line: 28 28 30;
  --color-line-solid: 43 43 46;
  --enterprise-defi-accent: 183 255 33;
  background: #000;
}

html.enterprise-forced-black-route body,
html.enterprise-forced-black-route #root,
html.enterprise-forced-black-route main {
  background: #000 !important;
  color: rgb(var(--color-text)) !important;
}

.enterprise-discover-route .enterprise-discover-page {
  width: 100%;
  min-height: 100dvh;
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
}

.enterprise-discover-shell {
  width: min(100% - 32px, 840px);
  margin: 0 auto;
  padding: 30px 0 12px;
}

.enterprise-defi-head {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.enterprise-defi-head h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 6vw, 42px) !important;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.045em;
}

.enterprise-defi-head a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
}

.enterprise-defi-head svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enterprise-defi-search {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 0.04);
  border-radius: 28px;
  background: #202021;
}

.enterprise-defi-search svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}

.enterprise-defi-search input {
  width: 100%;
  min-height: 50px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 16px;
}

.enterprise-defi-banner {
  display: grid;
  min-height: 196px;
  grid-template-columns: minmax(0, 1fr) 100px;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.055);
  border-radius: 24px;
  background: #1d1d1f;
}

.enterprise-defi-banner h2,
.enterprise-defi-learn h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 4vw, 31px);
  line-height: 1.22;
}

.enterprise-defi-banner p,
.enterprise-defi-learn p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgb(var(--color-text-sub));
  font-size: 14px;
  line-height: 1.55;
}

.enterprise-defi-banner > span {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background: rgb(var(--enterprise-defi-accent));
  box-shadow: 0 0 44px rgb(var(--enterprise-defi-accent) / 0.15);
}

.enterprise-defi-banner img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0);
}

.enterprise-defi-section-title {
  margin: 50px 0 0;
  color: #fff;
  font-size: 25px;
  font-weight: 760;
}

.enterprise-defi-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.enterprise-defi-categories button {
  display: flex;
  min-width: 0;
  min-height: 86px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #fff;
  font-size: 25px;
}

.enterprise-defi-categories button:hover,
.enterprise-defi-categories button:focus-visible {
  background: #121213;
}

.enterprise-defi-categories button span:last-child {
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-defi-data-state {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  border-top: 1px solid rgb(var(--color-line));
  border-bottom: 1px solid rgb(var(--color-line));
  text-align: center;
}

.enterprise-defi-data-state[hidden] {
  display: none;
}

.enterprise-defi-data-state strong {
  color: #fff;
  font-size: 14px;
}

.enterprise-defi-data-state span {
  color: rgb(var(--color-text-sup));
  font-size: 12px;
}

.enterprise-defi-learn {
  margin-top: 46px;
  padding-bottom: 18px;
}

.enterprise-defi-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.enterprise-defi-values > span {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgb(var(--color-line));
  border-radius: 22px;
  background: #111112;
  color: rgb(var(--enterprise-defi-accent));
  font-size: 40px;
}

.enterprise-defi-values b {
  color: #fff;
  font-size: 17px;
}

.enterprise-discover-route .enterprise-discover-original-title,
.enterprise-defi-product-row.is-filtered {
  display: none !important;
}

.enterprise-discover-route .enterprise-defi-product-row {
  border-color: rgb(var(--color-line)) !important;
  background: #000 !important;
}

.enterprise-login-route .enterprise-auth-brand {
  display: none !important;
}

.enterprise-login-route main {
  min-height: 100dvh;
}

.enterprise-login-route .page-motion {
  width: min(100%, 520px) !important;
  margin: 0 auto !important;
  padding: 48px 26px 72px !important;
}

.enterprise-login-route .enterprise-auth-container {
  width: 100%;
}

.enterprise-login-route .enterprise-auth-title {
  margin: 72px 0 48px !important;
  color: #fff !important;
  font-size: clamp(36px, 9vw, 48px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.055em !important;
}

.enterprise-login-route .enterprise-auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.enterprise-login-route .enterprise-auth-container input,
.enterprise-login-route .enterprise-auth-input {
  min-height: 58px !important;
  border: 1px solid rgb(255 255 255 / 0.025) !important;
  border-radius: 14px !important;
  background: #222223 !important;
  color: #fff !important;
  font-size: 16px !important;
  box-shadow: none !important;
}

.enterprise-login-route .enterprise-auth-container input:focus {
  border-color: rgb(255 255 255 / 0.32) !important;
}

.enterprise-login-route .enterprise-auth-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  border: 0 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #050505 !important;
  font-size: 17px;
  font-weight: 780;
}

.enterprise-login-route .enterprise-auth-submit:disabled {
  background: #141415 !important;
  color: #55555b !important;
  opacity: 1 !important;
}

.enterprise-login-route .enterprise-auth-provider {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgb(255 255 255 / 0.035) !important;
  border-radius: 999px !important;
  background: #222223 !important;
  color: #fff !important;
  font-weight: 680;
}

.enterprise-login-route [role="tablist"] {
  display: flex;
  gap: 28px;
  margin-bottom: 20px;
}

.enterprise-login-route [role="tab"] {
  min-height: 42px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgb(var(--color-text-sup)) !important;
  font-size: 17px;
  font-weight: 680;
}

.enterprise-login-route [role="tab"][aria-selected="true"] {
  color: #fff !important;
}

.enterprise-login-route a {
  color: #fff;
  text-underline-offset: 4px;
}

@media (max-width: 640px) {
  .enterprise-discover-shell {
    width: calc(100% - 28px);
    padding-top: 20px;
  }

  .enterprise-defi-banner {
    min-height: 170px;
    grid-template-columns: minmax(0, 1fr) 72px;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .enterprise-defi-banner > span {
    width: 68px;
    height: 68px;
  }

  .enterprise-defi-banner img {
    width: 40px;
    height: 40px;
  }

  .enterprise-defi-categories {
    gap: 2px;
  }

  .enterprise-defi-values > span {
    min-height: 138px;
  }

  .enterprise-login-route .page-motion {
    padding-right: 22px !important;
    padding-left: 22px !important;
  }
}

/* Profile: reference-led service directory, while preserving original routes/actions. */
main[data-enterprise-profile-view="true"] > :not(#enterprise-profile-page):not(nav.fixed) {
  display: none !important;
}

body.enterprise-profile-route main,
body.enterprise-assets-route main {
  background: rgb(var(--color-bg));
}

.dark body.enterprise-profile-route main,
.dark body.enterprise-assets-route main {
  background: #000;
}

#enterprise-profile-page {
  width: min(calc(100% - 28px), 920px);
  min-height: calc(100vh - 28px);
  margin: 0 auto;
  padding: 12px 0 132px;
  color: rgb(var(--color-text));
}

.enterprise-profile-toolbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
}

.enterprise-profile-toolbar button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgb(var(--color-text));
}

.enterprise-profile-toolbar svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.enterprise-profile-identity {
  display: grid;
  min-height: 116px;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
  padding: 8px 2px 18px;
}

.enterprise-profile-identity > img {
  width: 72px;
  height: 72px;
  border: 1px solid rgb(var(--color-line-solid));
  border-radius: 18px;
  background: rgb(var(--color-bg-soft));
  object-fit: cover;
}

.enterprise-profile-identity > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.enterprise-profile-identity strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-profile-identity p {
  margin: 0;
  color: rgb(var(--color-text-sup));
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.enterprise-profile-identity div > span {
  padding: 4px 10px;
  border-radius: 5px;
  background: rgb(var(--color-primary) / 0.16);
  color: rgb(var(--color-primary));
  font-size: 10px;
  font-weight: 720;
}

.enterprise-profile-identity > b {
  color: rgb(var(--color-text-sub));
  font-size: 29px;
  font-weight: 360;
}

.enterprise-profile-group {
  margin-top: 28px;
}

.enterprise-profile-group h2 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.015em;
}

.enterprise-profile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 26px;
}

.enterprise-profile-service {
  display: flex;
  min-width: 0;
  min-height: 76px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 2px;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgb(var(--color-text));
  font: inherit;
  text-align: center;
  text-decoration: none;
}

.enterprise-profile-service > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgb(var(--color-primary));
}

.enterprise-profile-service svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.enterprise-profile-service b {
  overflow: hidden;
  width: 100%;
  color: rgb(var(--color-text));
  font-size: 11px;
  font-weight: 610;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enterprise-profile-service:active {
  opacity: 0.66;
  transform: scale(0.97);
}

.enterprise-profile-group-common {
  margin-top: 40px;
}

.enterprise-profile-more {
  margin: 43px 0 72px;
  color: rgb(var(--color-text-sub));
  font-size: 14px;
  text-align: center;
}

.enterprise-profile-more span {
  margin-left: 4px;
}

.enterprise-profile-about {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(var(--color-line));
  color: rgb(var(--color-text-sub));
  font-size: 13px;
}

.enterprise-profile-about b {
  font-size: 11px;
  font-weight: 650;
}

/* Assets reference has open rows on a pure surface rather than stacked cards. */
.enterprise-assets-rows,
.enterprise-assets-row {
  border-color: transparent;
}

.dark .enterprise-assets-notice {
  background: #1d1e22;
}

@media (max-width: 640px) {
  #enterprise-profile-page {
    width: calc(100% - 30px);
    padding-top: 3px;
  }

  .enterprise-profile-toolbar {
    min-height: 58px;
  }

  .enterprise-profile-identity {
    min-height: 112px;
  }

  .enterprise-profile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 4px;
    row-gap: 24px;
  }

  .enterprise-profile-group {
    margin-top: 24px;
  }

  .enterprise-profile-group-common {
    margin-top: 38px;
  }
}

/* ========================================================================== */
/* UI23 — adaptive light canvas, compact assets and unique home actions        */
/* ========================================================================== */

.enterprise-home-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 10px;
  margin-top: 24px;
}

.enterprise-home-service-grid a {
  gap: 7px;
  color: rgb(var(--color-text));
}

.enterprise-home-service-grid a > span {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(var(--color-line));
  border-radius: 13px;
  background: rgb(var(--color-bg-soft));
  color: rgb(var(--color-text));
  font-size: 20px;
  box-shadow: var(--shadow-card);
}

.enterprise-home-service-grid a > b {
  color: rgb(var(--color-text));
  font-size: 11px;
  font-weight: 680;
}

.enterprise-market-page-title {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: rgb(var(--color-text));
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.enterprise-market-page-tools [data-market-search-toggle][aria-expanded="true"] {
  color: rgb(var(--color-primary));
}

body.enterprise-assets-route #enterprise-assets-page {
  width: min(calc(100% - 32px), 820px);
  min-height: 0;
  padding: 2px 0 calc(96px + env(safe-area-inset-bottom));
}

.enterprise-assets-top-tabs {
  min-height: 54px;
}

.enterprise-assets-top-tabs button {
  min-height: 44px;
}

.enterprise-assets-hero {
  min-height: 148px;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 14px;
  padding: 18px 0 14px;
}

.enterprise-assets-total > div strong {
  font-size: clamp(30px, 7vw, 44px);
}

.enterprise-assets-spark {
  width: 124px;
  height: 48px;
}

.enterprise-assets-actions {
  gap: 14px;
  padding: 0;
}

.enterprise-assets-actions a {
  gap: 8px;
}

.enterprise-assets-actions a > span {
  width: 48px;
  height: 48px;
  border-color: rgb(var(--color-line-solid));
  background: rgb(var(--color-bg-soft));
}

.enterprise-assets-notice {
  min-height: 62px;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgb(var(--color-bg-soft));
}

.enterprise-assets-list {
  margin-top: 24px;
}

.enterprise-assets-row {
  min-height: 72px;
  padding: 9px 0;
}

html[data-theme="light"],
html[data-theme="light"] body,
html[data-theme="light"] #root,
html[data-theme="light"] main {
  color-scheme: light;
  background: rgb(var(--color-bg)) !important;
  color: rgb(var(--color-text));
}

html[data-theme="light"] body.enterprise-pc-home-route {
  background:
    radial-gradient(circle at 73% 12%, rgb(var(--ui22-accent) / 0.09), transparent 31%),
    radial-gradient(circle at 12% 44%, rgb(var(--ui22-cyan) / 0.05), transparent 27%),
    rgb(var(--color-bg)) !important;
}

html[data-theme="light"] .enterprise-pc-portal {
  color: rgb(var(--color-text));
}

html[data-theme="light"] .enterprise-pc-header {
  border-color: rgb(var(--color-line-solid));
}

html[data-theme="light"] .enterprise-pc-header nav a,
html[data-theme="light"] .enterprise-pc-actions .is-quiet,
html[data-theme="light"] .enterprise-pc-eyebrow,
html[data-theme="light"] .enterprise-pc-hero-copy > p,
html[data-theme="light"] .enterprise-pc-section-head p,
html[data-theme="light"] .enterprise-pc-trust p,
html[data-theme="light"] .enterprise-pc-section-head > a,
html[data-theme="light"] .enterprise-pc-footer {
  color: rgb(var(--color-text-sub));
}

html[data-theme="light"] .enterprise-pc-header nav a:hover,
html[data-theme="light"] .enterprise-pc-section-head > a:hover {
  color: rgb(var(--color-text));
}

html[data-theme="light"] .enterprise-pc-actions .is-primary,
html[data-theme="light"] .enterprise-pc-hero-actions > a:first-child {
  background: rgb(var(--color-text));
  color: rgb(var(--color-bg-soft));
}

html[data-theme="light"] .enterprise-pc-hero-actions .is-secondary,
html[data-theme="light"] .enterprise-pc-quote,
html[data-theme="light"] .enterprise-pc-product-grid > a,
html[data-theme="light"] .enterprise-pc-trust {
  border-color: rgb(var(--color-line-solid));
  background: rgb(var(--color-bg-soft));
  color: rgb(var(--color-text));
  box-shadow: var(--shadow-card);
}

html[data-theme="light"] .enterprise-pc-visual > img {
  border-color: rgb(var(--color-line-solid));
  background: linear-gradient(145deg, #fff, #edf0f5);
  box-shadow: 0 28px 70px rgb(24 32 48 / 0.16), 0 0 70px rgb(var(--ui22-accent) / 0.13);
}

html[data-theme="light"] body.enterprise-home-route,
html[data-theme="light"] body.enterprise-market-route,
html[data-theme="light"] body.enterprise-home-route #root,
html[data-theme="light"] body.enterprise-market-route #root,
html[data-theme="light"] body.enterprise-home-route main,
html[data-theme="light"] body.enterprise-market-route main,
html[data-theme="light"] .enterprise-standalone-market,
html[data-theme="light"] .enterprise-market-page-header {
  background: rgb(var(--color-bg)) !important;
  color: rgb(var(--color-text));
}

html[data-theme="light"] .enterprise-home-route .enterprise-home-state-member,
html[data-theme="light"] .enterprise-home-service-grid a,
html[data-theme="light"] .enterprise-home-service-grid a > span,
html[data-theme="light"] .enterprise-home-service-grid a > b,
html[data-theme="light"] .enterprise-market-page-tabs button,
html[data-theme="light"] .enterprise-market-page-tabs a,
html[data-theme="light"] .enterprise-market-page-tools button,
html[data-theme="light"] .enterprise-market-page-tools a {
  color: rgb(var(--color-text));
}

html[data-theme="light"] .enterprise-home-carousel,
html[data-theme="light"] .enterprise-home-notice,
html[data-theme="light"] .enterprise-home-market-card,
html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-favorite-card,
html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-market-logo,
html[data-theme="light"] .enterprise-market-page-search {
  border-color: rgb(var(--color-line-solid));
  background: rgb(var(--color-bg-soft));
  color: rgb(var(--color-text));
  box-shadow: var(--shadow-card);
}

html[data-theme="light"] .enterprise-home-market-price,
html[data-theme="light"] .enterprise-home-market-title strong,
html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-favorite-card,
html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-market-row,
html[data-theme="light"] .enterprise-market-page-search input {
  color: rgb(var(--color-text)) !important;
}

html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-favorite-subnav {
  border-color: rgb(var(--color-line));
}

html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-favorite-subnav button {
  color: rgb(var(--color-text-sub));
}

html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-favorite-subnav button.is-active {
  background: #e5e7eb;
  color: rgb(var(--color-text));
}

html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-market-list-head,
html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-market-row {
  border-color: rgb(var(--color-line));
}

html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-favorite-check,
html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-favorite-add-all {
  background: rgb(var(--color-text));
  color: rgb(var(--color-bg-soft));
}

html[data-theme="light"] .enterprise-standalone-market-panel .enterprise-market-row-change[data-direction="flat"] {
  background: #e5e7eb;
  color: rgb(var(--color-text-sub));
}

html[data-theme="light"] .enterprise-assets-actions a > span,
html[data-theme="light"] .enterprise-assets-notice,
html[data-theme="light"] .enterprise-profile-service > span {
  border-color: rgb(var(--color-line-solid));
  background: rgb(var(--color-bg-soft));
  color: rgb(var(--color-text));
  box-shadow: var(--shadow-card);
}

html[data-theme="light"] .enterprise-defi-head h1,
html[data-theme="light"] .enterprise-defi-head a,
html[data-theme="light"] .enterprise-defi-section-title,
html[data-theme="light"] .enterprise-defi-banner h2,
html[data-theme="light"] .enterprise-defi-learn h2,
html[data-theme="light"] .enterprise-defi-categories button,
html[data-theme="light"] .enterprise-defi-categories button span:last-child,
html[data-theme="light"] .enterprise-defi-data-state strong,
html[data-theme="light"] .enterprise-defi-values b {
  color: rgb(var(--color-text));
}

html[data-theme="light"] .enterprise-defi-search,
html[data-theme="light"] .enterprise-defi-banner,
html[data-theme="light"] .enterprise-defi-values > span,
html[data-theme="light"] .enterprise-discover-route .enterprise-defi-product-row {
  border-color: rgb(var(--color-line-solid)) !important;
  background: rgb(var(--color-bg-soft)) !important;
  box-shadow: var(--shadow-card);
}

html[data-theme="light"] .enterprise-defi-categories button:hover,
html[data-theme="light"] .enterprise-defi-categories button:focus-visible {
  background: #e9ebef;
}

html[data-theme="light"] .enterprise-login-route .enterprise-auth-title,
html[data-theme="light"] .enterprise-login-route [role="tab"][aria-selected="true"],
html[data-theme="light"] .enterprise-login-route a {
  color: rgb(var(--color-text)) !important;
}

html[data-theme="light"] .enterprise-login-route .enterprise-auth-container input,
html[data-theme="light"] .enterprise-login-route .enterprise-auth-input,
html[data-theme="light"] .enterprise-login-route .enterprise-auth-provider {
  border-color: rgb(var(--color-line-solid)) !important;
  background: rgb(var(--color-bg-soft)) !important;
  color: rgb(var(--color-text)) !important;
  box-shadow: var(--shadow-card) !important;
}

html[data-theme="light"] .enterprise-login-route .enterprise-auth-submit {
  background: rgb(var(--color-text)) !important;
  color: rgb(var(--color-bg-soft)) !important;
}

html[data-theme="light"] .enterprise-login-route .enterprise-auth-submit:disabled {
  background: #e4e6ea !important;
  color: rgb(var(--color-text-mute)) !important;
}

html[data-theme="light"] [role="dialog"] {
  border-color: rgb(var(--color-line-solid)) !important;
  background: rgb(var(--color-bg-soft)) !important;
  color: rgb(var(--color-text)) !important;
}

html[data-theme="light"] nav.enterprise-reference-bottom-nav {
  border-color: rgb(var(--color-line-solid)) !important;
  background: rgb(255 255 255 / 0.94) !important;
  box-shadow: 0 14px 42px rgb(24 32 48 / 0.14) !important;
}

@media (max-width: 640px) {
  body.enterprise-assets-route #enterprise-assets-page {
    width: calc(100% - 32px);
    padding-top: 0;
  }

  .enterprise-assets-top-tabs {
    min-height: 52px;
  }

  .enterprise-assets-top-tabs button {
    min-height: 42px;
  }

  .enterprise-assets-hero {
    min-height: 142px;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 6px;
    padding: 16px 0 12px;
  }

  .enterprise-assets-spark {
    width: 88px;
    height: 40px;
  }

  .enterprise-assets-actions {
    gap: 8px;
  }

  .enterprise-assets-actions a > span {
    width: 44px;
    height: 44px;
  }

  .enterprise-assets-notice {
    min-height: 60px;
    margin-top: 18px;
  }

  .enterprise-assets-list {
    margin-top: 22px;
  }

  .enterprise-assets-row {
    min-height: 70px;
  }

  .enterprise-home-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 6px;
    margin-top: 22px;
  }

  .enterprise-home-service-grid a > span {
    width: 40px;
    height: 40px;
  }
}
