@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --bg: #000000;
  --surface: rgba(6, 6, 6, 0.98);
  --surface-2: rgba(10, 10, 10, 0.98);
  --surface-3: rgba(14, 14, 14, 0.98);
  --text: #f7f7f7;
  --muted: #a8a8a8;
  --frost: rgba(255, 255, 255, 0.12);
  --frost-alt: rgba(255, 255, 255, 0.08);
  --ring: rgba(255, 255, 255, 0.14) 0 0 0 1px;
  --orange: #9c9c9c;
  --green: #9c9c9c;
  --slate: #d8d8d8;
  --yellow: #9c9c9c;
  --red: #9c9c9c;
  --teal: #9c9c9c;
  --violet: #9c9c9c;
  --accent: #ffffff;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 14px;
  --max: 1480px;
  --sidebar: 312px;
}

.max-w-3xl {
    max-width: 100% !important; 
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  max-width: 100%;
  overflow-x: clip;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none !important;
}
body {
  background: #000;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: #fff; }
code, pre { font-family: "Fira Code", monospace; }

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

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-shell .bg-slate-900\/70,
.site-shell .bg-slate-950\/40,
.site-shell .bg-slate-950\/60,
.site-shell .bg-slate-950\/80,
.site-shell .bg-white\/\[0\.03\],
.site-shell .bg-white\/\[0\.025\],
.site-shell .bg-white\/\[0\.02\],
.site-shell .bg-black\/45,
.site-shell .bg-black\/40,
.site-shell .bg-black\/50,
.site-shell .bg-black\/70 {
  background: #0c0c0c !important;
}

.site-shell .border-slate-200\/10,
.site-shell .border-white\/10,
.site-shell .border-white\/\[0\.10\] {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.site-shell .shadow-black\/10,
.site-shell .shadow-black\/20,
.site-shell .shadow-black\/30 {
  --tw-shadow-color: rgba(0, 0, 0, 0.9) !important;
  background: #0c0c0c;
}

.public-shell {
  background: #000;
}

.public-frame,
.auth-frame {
  width: min(100%, var(--max));
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 22px 36px;
  display: grid;
  gap: 34px;
}

.public-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: sticky;
  top: 12px;
  -webkit-backdrop-filter: blur(22px);
  z-index: 40;
  transition:
    padding 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 220ms cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.public-header.is-scrolled,
body.public-nav-open .public-header {
  padding: 14px 18px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.86);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.public-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}

.public-nav {
  display: flex;
  align-items: center;
  min-width: 0;
  justify-content: center;
}

.public-nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
  min-width: 0;
}

.sheet-handle,
.public-sheet-head,
.sidebar-sheet-chrome,
.public-sheet-actions {
  display: none;
}

.public-nav a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 42px;
  padding: 8px 2px;
  white-space: nowrap;
  transition:
    color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.public-nav a:hover,
.public-nav a:focus-visible {
  color: #fff;
}

.public-nav .button {
  padding-inline: 14px;
}

.public-nav-toggle {
  display: none !important;
  min-width: 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: #b42b2f !important;
  font-size: 1.66em;
}

.public-nav-toggle:hover,
.public-nav-toggle:focus-visible {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: #c23236 !important;
}

.public-nav-toggle .ui-icon,
.sidebar-toggle .ui-icon {
  font-size: 1.66em;
}

.public-mobile-cta {
  display: none !important;
}

.public-sheet-cta {
  width: 100%;
}

.public-sheet-actions .button.solid {
  background: #b42b2f;
  border-color: rgba(180, 43, 47, 0.95);
  color: #fff;
  box-shadow: 0 12px 26px rgba(180, 43, 47, 0.22);
}

.public-sheet-actions .button.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.public-desktop-action {
  display: inline-flex;
}

.public-header .button.ghost,
.public-header .button.solid,
.public-header .button.accent,
.public-mobile-cta {
  background: #b42b2f;
  border-color: rgba(180, 43, 47, 0.95);
  color: #fff;
  box-shadow: 0 12px 26px rgba(180, 43, 47, 0.22);
}

.public-header .button.ghost:hover,
.public-header .button.solid:hover,
.public-header .button.accent:hover,
.public-mobile-cta:hover {
  background: #c23236;
  border-color: rgba(194, 50, 54, 0.98);
  color: #fff;
}

.public-header .button.ghost .accent,
.public-header .button.solid .accent,
.public-header .button.accent .accent,
.public-mobile-cta .accent {
  color: inherit;
}

.public-main {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.auth-main {
  width: 100%;
  display: grid;
  gap: 24px;
}

.app-frame {
  width: min(100%, var(--max));
  max-width: 100%;
  margin: 0 auto;
  padding: 18px;
  overflow-x: clip;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(5, 5, 5, 0.9);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: sticky;
  top: 12px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 40;
}

.app-header.app-header-static {
  position: relative;
  top: auto;
}

.brand-block {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.brand {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: none;
}

.brand-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.brand-title {
  display: block;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.86rem;
  display: block;
  max-width: 50ch;
  overflow-wrap: anywhere;
}

.kicker,
.eyebrow,
.nav-group-title,
.status-pill,
.pill,
.table-head,
.timeline-index,
.tech,
.meta-grid .kicker,
.auth-points strong,
.brand-subtitle,
.mini-card .kicker,
.pricing-card .kicker,
.section-head h2,
.feature-card strong {
  font-family: "Poppins", sans-serif;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-balance {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.status-pill-balance {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-balance-label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-balance-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.balance-visibility-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 999px;
}

.balance-visibility-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header-controls,
.account-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.header-controls {
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.icon-button {
  min-width: 44px;
  padding-inline: 12px;
}

.theme-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-light {
  display: none;
}

body.theme-light .theme-toggle-dark {
  display: none;
}

body.theme-light .theme-toggle-light {
  display: inline-flex;
}

.status-pill,
.button,
.nav-group a {
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  font-size: 0.8rem;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.status-pill {
  color: #e7e7e7;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button.is-disabled,
.button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}

.button:hover,
.nav-group a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
}

.button:active,
.nav-group a:active {
  transform: translateY(0) scale(0.985);
}

.button.solid {
  
  border-color: rgba(255,255,255,0.92);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  padding: 12px 32px;
  background: #b42b30;
  color: #ffffff;
  cursor: pointer;
}

.button.solid.button-small,
.button.ghost.button-small {
  padding: 0.6rem 0.95rem;
  font-size: 0.82rem;
}

.button.accent {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(226,226,226,0.92));
  color: #000;
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.button.solid .accent,
.button.ghost .accent {
  color: var(--accent);
}

.button.ghost {
  background: #b42b30;
    color: #ffffff;
    font-size: 0.8rem;
    width: fit-content;
    backdrop-filter: blur(6px);
    padding: 12px 22px;
    font-family: "Poppins", sans-serif;
}

.button.icon-action,
.icon-action {
  position: relative;
  overflow: visible;
}

.button.solid.icon-action,
.button.ghost.icon-action,
.button.icon-action {
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0 !important;
  gap: 0;
  font-size: 0;
}

.button-full {
  width: 100%;
}

.account-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 24px));
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(3, 3, 3, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  z-index: 60;
}

.account-menu-head {
  display: grid;
  gap: 4px;
  padding: 4px 4px 8px;
}

.account-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

.account-menu-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  font-size: 0.94rem;
}

.account-menu-panel a:hover,
.account-menu-panel a:focus-visible {
  background: rgba(255,255,255,0.06);
}

.account-menu-panel a.is-danger {
  color: var(--text);
}

.sidebar-toggle {
  display: none;
}

.app-grid {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-top: 18px;
  min-width: 0;
}

.sidebar {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 108px;
  align-self: start;
  min-width: 0;
}

.sidebar-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sidebar-sheet-head strong,
.public-sheet-head strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.sheet-head-spacer {
  display: block;
  width: 1px;
  min-height: 1px;
}

.sidebar-panel,
.card {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(0, 0, 0, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 0 0 1px rgba(176, 199, 217, 0.08);
  min-width: 0;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: #0c0c0c;
}

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

.sidebar-nav {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.nav-group {
  display: grid;
  gap: 6px;
  border-radius: 18px;
  min-width: 0;
}

.nav-group-title,
.kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
  display: none;
}

.nav-group a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  background: transparent;
}

.nav-submenu {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.nav-submenu summary {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  border: 1px solid var(--frost);
  border-radius: var(--radius-pill);
  padding: 9px 12px;
  cursor: pointer;
  list-style: none;
  font-size: 0.8rem;
  background: transparent;
}

.nav-submenu summary::-webkit-details-marker {
  display: none;
}

.nav-submenu summary::after {
  content: "+";
  margin-left: auto;
  color: var(--muted);
}

.nav-submenu[open] summary::after {
  content: "−";
}

.nav-submenu-links {
  display: grid;
  gap: 6px;
  padding-left: 14px;
}

.nav-group a .ui-icon {
  opacity: 0.94;
}

.nav-group a:focus-visible,
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 2px;
}

.workspace {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 14px;
}

.panel-lock-shell {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.panel-lock-preview {
  position: relative;
  min-height: 100%;
  filter: blur(10px) saturate(0.78);
  transform: scale(1.015);
  transform-origin: top center;
}

.panel-lock-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 16%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.78) 68%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
}

.panel-lock-overlay {
  position: absolute;
  inset: 0 0 auto 0;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
  z-index: 2;
}

.panel-lock-card {
  width: min(100%, 521px);
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    padding: 33px 24px;
    border-radius: 26px;
    background: rgb(12 12 12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel-lock-kicker {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-lock-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.panel-lock-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.panel-lock-button {
  margin-top: 6px;
  min-width: 210px;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.2rem); }

.hero {
  padding: 18px 0 8px;
  display: grid;
  gap: 18px;
}

.hero.compact { padding-top: 8px; }

.app-frame .hero {
  gap: 10px;
}

p.lede {
    margin-top: -9px !important;
    display: none;
}

select, textarea {
  padding: 14px !important;
}


.app-frame .hero h1 {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  /*max-width: 16ch;*/
}

.app-frame .hero.compact h1 {
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  margin: 0;
}

.app-frame .lede {
  font-size: 0.95rem;
  line-height: 1.58;
  /*max-width: 58ch;*/
  display: none;
}

.app-frame .section-head h2 {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.16;
}

.app-frame .card,
.app-frame .sidebar-panel {
  border-radius: 20px;
}

.app-frame .button,
.app-frame .nav-group a,
.app-frame .status-pill {
  min-height: 40px;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.motion-reveal.is-visible {
  animation: rise-in 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--motion-delay, 0ms);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes success-pop {
  0% {
    transform: scale(0.72);
    opacity: 0.2;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.app-frame .hero {
  gap: 10px;
}

.app-frame .hero h1 {
  font-size: clamp(1.9rem, 2.8vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  /*max-width: 14ch;*/
}

.app-frame .hero.compact h1 {
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
}

.dashboard-hero-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-frame .lede {
  font-size: 0.98rem;
  line-height: 1.62;
  /*max-width: 60ch;*/
  display: none;
}

.app-frame .section-head h2 {
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.app-frame .card,
.app-frame .sidebar-panel {
  border-radius: 24px;
}

.app-frame .button,
.app-frame .nav-group a,
.app-frame .status-pill {
  min-height: 42px;
}

.home-hero h1 {
  /*max-width: 16ch;*/
  font-size: clamp(3.8rem, 8.4vw, 5.1rem);
  line-height: 0.96;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  margin-top: 41px;
  padding: 41px 0 24px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.home-hero .hero-copy {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.home-hero .hero-copy-centered {
  align-content: center;
  justify-items: center;
  min-height: 100%;
}

.home-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 6px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #d3d3d3;
  font-size: 0.94rem;
}

.home-live-pill-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-live-pill-dot-shell {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(139, 195, 74, 0.56);
}

.home-live-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8bc34a;
}

.home-live-pill-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-live-pill-value span {
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.home-hero .actions {
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero .lede {
  margin-inline: auto;
  display: none;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
  z-index: -1;
}

.home-hero-image {
  width: min(100%, 770px);
  max-width: 770px;
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.home-hero-image-fade {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 750px);
  height: 568px;
  z-index: -1;
  background: linear-gradient(180deg, rgb(255 0 0 / 0%) -2%, rgb(0 0 0) 75%);
}

.hero-panel {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.hero-trust .mini-grid {
  margin-top: 2px;
}

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

.support-strip {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  overflow: hidden;
}

.support-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.support-strip-wide {
  width: 100%;
}

.support-strip-wide-home .support-marquee:nth-child(n+4) {
  display: none;
}

.support-strip-head {
  position: relative;
  z-index: 1;
  display: block;
  justify-items: center;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.support-strip-head h2 {
  font-size: clamp(1.35rem, 2.3vw, 4rem);
    margin-top: 4px;
    font-weight: 700;
    color: #fff;
}

.support-strip-head .muted {
  max-width: 34ch;
  text-align: right;
}

.support-strip-secondary {
  gap: 20px;
  padding: 26px 24px 24px;
}

.support-strip-head-secondary {
  justify-items: start;
  align-items: start;
  text-align: left;
}

.support-strip-copy-secondary {
  display: grid;
  justify-items: start;
  align-items: center;
  min-height: 72px;
}

.support-strip-head-secondary h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
  text-align: left;
}

.support-strip-secondary .support-marquee-stack {
  gap: 14px;
}

.support-strip-secondary .support-marquee-stack {
  gap: 12px;
}

.support-orbit-mobile {
  display: none;
}

.support-strip-dark {
 border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  max-height: 160px;
}

.support-marquee-stack-static {
  rotate: -32deg;
  width: 760px;
}

.support-marquee-stack-network {
  margin-top: -79px;
  margin-left: 11px;
}

.support-marquee-stack-token {
  margin-top: -39px;
  margin-left: 4px;
}

.support-chip-secondary {
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.support-chip-logo-secondary {
  width: 58px !important;
  height: 58px !important;
  border-width: 0;
  background: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.support-strip-network .support-chip-secondary,
.support-strip-token .support-chip-secondary {
  border-color: rgba(255, 255, 255, 0.08);
}

.support-static-row {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.support-static-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  width: 100%;
}

.support-marquee-stack {
  display: grid;
  gap: 12px;
}

.support-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.support-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 18px;
  will-change: transform;
}

.support-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.support-marquee-left .support-track {
  animation: support-marquee-left 34s linear infinite;
}

.support-marquee-right .support-track {
  animation: support-marquee-right 34s linear infinite;
}

.support-marquee-speed-1 .support-track {
  animation-duration: 34s;
}

.support-marquee-speed-2 .support-track {
  animation-duration: 30s;
}

.support-marquee-speed-3 .support-track {
  animation-duration: 38s;
}

.support-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  padding: 4px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}


.support-chip span {
  color: #f4f4f4;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-right: 11px;
}

.support-chip-logo {
  width: 48px;
  height: 48px;
  flex: none;
  object-fit: cover;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}

@keyframes support-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@keyframes support-marquee-right {
  from {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-track {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }
}

.public-section {
  display: grid;
  gap: 16px;
  padding: 8px 0;
}

.public-section.tight {
  padding-top: 0;
}

.template-showcase-section {
  margin-top: 91px;
}

.home-access-stage {
  position: relative;
  width: auto;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  min-height: 100vh;
  display: grid;
  align-items: start;
  padding: clamp(3.5rem, 10vh, 7rem) 0 clamp(7rem, 22vh, 12rem);
  overflow: hidden;
}

.home-access-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(100%, 100vh);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0.36) 68%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 100% 55%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.home-access-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(180px, 28vh, 340px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.88) 60%, #000 100%);
  pointer-events: none;
  z-index: 3;
}

.home-access-stage-art {
  position: absolute;
  z-index: 0;
  width: min(717px, 58vw);
  right: 0;
  top: -28px;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 32px 90px rgba(0, 0, 0, 0.55));
}

.home-access-shell {
  margin: 0 auto;
  width: min(100%, 1130px);
  max-width: 1130px;
  display: grid;
  gap: 0;
  border-radius: 26px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.home-access-card {
  background: rgb(14 14 14 / 14%);
    backdrop-filter: blur(3px);
    gap: 0;
    padding: 0;
    max-height: none;
}

.home-access-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 23px 44px;
  border-bottom: 7px solid #b42b2f;
}

.home-access-title {
  min-width: fit-content;
  margin: 0;
  font-weight: 600;
}

.home-access-type {
  display: block;
  margin-top: 4px;
  font-family: "Fira Code", monospace;
}

.home-access-price {
  display: block;
  margin-top: 8px;
  font-size: 29px;
  font-weight: 900;
}

.home-access-button {
  min-width: 222px;
  justify-content: center;
}

.home-access-button-mobile {
  display: none;
}

.home-access-body {
  padding: 31px 44px;
}

.home-access-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  width: 100%;
  margin-left: 53px;
}

.home-access-feature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
  font-family: "Fira Code", monospace;
}

.home-access-feature i {
  color: #b42b2f !important;
  font-size: 18px;
  margin-right: 0 !important;
}

.home-access-feature:nth-child(2) i {
  color: #b42b2f !important;
}

@media (max-width: 900px) {
  .home-access-stage {
    min-height: auto;
    padding: 36px 0 96px;
  }

  .home-access-stage-art {
    width: min(660px, 90vw);
    right: -18px;
    top: 0;
    opacity: 0.78;
  }
}

@media (max-width: 640px) {
  .home-access-stage {
    padding: 24px 0 76px;
  }

  .home-access-stage-art {
    width: min(500px, 102vw);
    right: -56px;
    top: 22px;
    opacity: 0.54;
  }

  .home-access-shell {
    width: 100%;
    max-width: 100%;
  }
}

.template-showcase-shell {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 128px;
  border-radius: 28px;
  border: none;
  background: none;
  box-shadow: none;
}

.template-showcase-shell .section-head {
  justify-content: center;
}

.template-showcase-shell .section-head > div {
  text-align: center;
}

.template-showcase-shell .section-head h2 {
  font-size: clamp(1.35rem, 2.3vw, 4rem);
}

.home-section-head {
  text-align: center;
  margin-bottom: 41px;
}

.home-section-head-template {
  margin-bottom: 0;
}

.home-section-title,
.template-showcase-shell .section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 4rem);
  font-weight: 700;
  line-height: 1.04;
}

.home-section-subtitle,
.template-showcase-copy {
  display: block;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.home-section-subtitle {
  margin-top: -2px;
}

.template-showcase-copy {
  max-width: none;
  text-align: center;
  margin-top: -2px;
  margin-bottom: 81px;
}

.template-showcase-copy + .template-showcase-copy {
  display: none;
}

.template-showcase-grid {
  position: relative;
  column-count: 3;
  column-gap: 16px;
  margin-top: 0;
  margin-bottom: 0;
}

.template-showcase-card {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background-color: #0b0b0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 1px -7px 63px -18px #000;
}

.template-showcase-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.template-showcase-image-wrap img {
  width: 100%;
  display: block;
}

.template-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.45) 58%, rgba(0,0,0,0.92) 100%);
}

.template-showcase-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.96) 100%);
}

.template-showcase-actions {
  position: absolute;
  left: 50%;
  bottom: 210px;
  z-index: 2;
  transform: translateX(-50%);
  width: min(100% - 56px, 760px);
}

.template-showcase-cta {
  width: 100%;
  text-align: center;
  line-height: 1.45;
  justify-content: center;
  white-space: normal;
  padding-inline: 1.25rem;
}

.template-showcase-shell .actions {
  justify-content: center;
}

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

.template-library-card {
  position: relative;
  min-height: 260px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.78);
}

.template-library-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.template-library-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.34) 48%, rgba(0,0,0,0.92) 100%);
}

.template-library-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 260px;
  gap: 14px;
  padding: 20px;
}

.dashboard-address-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.dashboard-address-stack {
  display: grid;
  gap: 1rem;
}

.dashboard-address-box {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-address-box small {
  color: rgba(161, 161, 170, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dashboard-address-row code {
  flex: 1;
  min-width: 0;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.55;
  word-break: break-all;
}

.exchange-list-card .exchange-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.iframe-code-box {
  width: 100%;
  min-height: 132px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.55;
}

.iframe-preview {
  width: 100%;
  min-height: 960px;
  border: 0;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.48);
}

.iframe-embed-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 18px;
}

.faq-shell {
  display: grid;
  gap: 24px;
  padding: 22px 0 8px;
}

.faq-head {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.faq-head h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1;
}

.faq-head p {
  max-width: 48ch;
  color: rgba(255,255,255,0.65);
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(255,255,255,0.8);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  color: rgba(255,255,255,0.68);
  line-height: 1.68;
}

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

.lede {
  /*max-width: 68ch;*/
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #ddd;
  display: none;
}

.auth-shell {
  display: grid;
  place-items: center;
  min-height: min(78vh, 880px);
  padding: 34px 0 18px;
}

.auth-card {
  width: min(100%, 980px);
  padding: 0;
  overflow: hidden;
}

.auth-grid {
  background-image: url(https://i.imgur.com/2OsQehC.png);
    /* background-size: contain; */
    background-position-x: -46px;
    background-position-y: -869px;
    background-repeat: no-repeat;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 520px;
}

.auth-copy {
  padding: clamp(30px, 4.4vw, 54px);
  display: grid;
  align-content: center;
  gap: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    /* background-image: url(https://i.imgur.com/2OsQehC.png); */
    /* background-size: cover; */
    /* background-position-x: 23px; */
    /* background-repeat: no-repeat; */
    backdrop-filter: blur(3px);
}

.auth-copy h1 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.auth-points {
  display: none;
  gap: 14px;
}

.auth-points > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-points strong {
  font-size: 0.96rem;
}

.auth-points span,
.hint {
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-form-panel {
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  align-content: center;
  gap: 18px;
}

.auth-form-panel .form {
  gap: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.form {
  display: grid;
  gap: 14px;
}

.captcha-shell {
  display: grid;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
}

.captcha-shell .h-captcha {
  min-height: 78px;
}

.form label {
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  appearance: none;
  transition:
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]):focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(6,7,10,0.94), 0 0 0 5px rgba(255,255,255,0.12);
}

textarea { resize: vertical; min-height: 120px; }

.actions, .fineprint, .stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fineprint {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: #d7dce7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.notice::before {
  content: "i";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #8cc7ff;
  background: rgba(140, 199, 255, 0.18);
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1;
}

.notice.success::before {
  content: "OK";
  color: #8be1ad;
  background: rgba(139, 225, 173, 0.2);
  font-size: 0.62rem;
}

.notice.error::before,
.notice.danger::before {
  content: "!";
  color: #ff8f8f;
  background: rgba(255, 143, 143, 0.18);
}

.notice.warning::before {
  content: "!";
  color: #ffc46b;
  background: rgba(255, 196, 107, 0.2);
}

.notice.success {
  color: #dff7e8;
  border-color: rgba(139, 225, 173, 0.18);
  background: linear-gradient(180deg, rgba(139, 225, 173, 0.12), rgba(139, 225, 173, 0.04));
}
.notice.info {
  color: #dceeff;
  border-color: rgba(140, 199, 255, 0.18);
  background: linear-gradient(180deg, rgba(140, 199, 255, 0.12), rgba(140, 199, 255, 0.04));
}
.notice.error,
.notice.danger {
  color: #ffdada;
  border-color: rgba(255, 143, 143, 0.18);
  background: linear-gradient(180deg, rgba(255, 143, 143, 0.12), rgba(255, 143, 143, 0.04));
}
.notice.warning {
  color: #ffedcd;
  border-color: rgba(255, 196, 107, 0.18);
  background: linear-gradient(180deg, rgba(255, 196, 107, 0.12), rgba(255, 196, 107, 0.04));
}

.table {
  display: grid;
  gap: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
}

.table-head {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
}

.list-item:last-child {
  border-bottom: 0;
}

.admin-inline-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(180, 139, 63, 0.22);
  background: rgba(39, 28, 10, 0.72);
}

.admin-inline-notice-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 14px;
  background: rgba(180, 139, 63, 0.16);
  color: #f4d598;
}

.admin-inline-notice-copy {
  display: grid;
  gap: 0.22rem;
}

.admin-inline-notice-copy strong {
  color: #fff4db;
}

.admin-inline-notice-copy p {
  margin: 0;
  color: rgba(245, 222, 179, 0.86);
}

.muted { color: var(--muted); }
.divider { height: 1px; background: var(--frost); margin: 18px 0; }

.timeline-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid var(--frost);
  flex: none;
}

.section-head,
.split-head,
.exchange-card-top,
.inline-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-head {
  margin-bottom: 16px;
}

.split-head {
  margin-bottom: 16px;
}

.inline-brand {
  justify-content: flex-start;
}

.admin-icon-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-row-inline-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.admin-action-cluster {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.admin-actions-col {
  width: 1%;
  min-width: 220px;
  white-space: nowrap;
}

.admin-actions-col .admin-action-cluster {
  width: 100%;
}

.exchange-logo {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.exchange-logo.large {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.asset-snapshot-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 12px;
}

.asset-balance-card {
  display: grid;
  gap: 10px;
  padding: 14px !important;
}

.asset-balance-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.asset-balance-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}

.asset-logo-shell {
  position: relative;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 17px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.asset-logo-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 16px;
  background: rgba(4, 6, 10, 0.92);
}

.asset-logo-shell.is-fallback::after {
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.1), transparent 72%),
    linear-gradient(180deg, rgba(20, 24, 32, 0.98), rgba(9, 12, 18, 0.98));
}

.asset-logo-shell.is-fallback::before {
  content: attr(data-symbol);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  padding: 8px;
  border-radius: 16px;
  color: #f5f7fa;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.asset-logo {
  position: relative;
  z-index: 1;
}

.asset-logo {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  background: transparent;
  display: block;
}

.asset-balance-symbol {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.asset-balance-meta {
  min-width: 0;
}

.asset-balance-subtitle {
  margin-top: 1px;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}

.asset-value-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #e8eaee;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.asset-value-pill.is-muted {
  color: var(--muted);
}

.asset-balance-amount {
  font-size: 1.04rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.inline-action-form {
  display: inline-flex;
}

.status-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 10px;
}

.status-check-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-check-card i {
  font-size: 0.95rem;
}

.status-check-card.is-ok {
  color: #8be1ad;
  border-color: rgba(139, 225, 173, 0.18);
}

.status-check-card.is-fail {
  color: #ff8f8f;
  border-color: rgba(255, 143, 143, 0.18);
}

.job-claim-card {
  display: grid;
  gap: 2px;
}

.auto-check-indicator {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
  color: #d8d8d8;
  font-size: 0.82rem;
}

.auto-check-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.auto-check-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8f8f;
  box-shadow: 0 0 0 4px rgba(255,143,143,0.12);
}

.auto-check-state.is-on .auto-check-dot {
  background: #8be1ad;
  box-shadow: 0 0 0 4px rgba(139,225,173,0.12);
}

.auto-check-state.is-on {
  color: #8be1ad;
}

.auto-check-state.is-off {
  color: #ff8f8f;
}

.tooltip-wrap {
  position: relative;
  display: inline-flex;
}

.tooltip-wrap::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 30;
  left: 50%;
  bottom: calc(100% + 10px);
  min-width: 210px;
  max-width: 260px;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(13, 15, 21, 0.96);
  color: #f3f5f8;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity .16s ease, transform .16s ease;
}

.tooltip-wrap::before {
  content: "";
  position: absolute;
  z-index: 31;
  left: 50%;
  bottom: calc(100% + 5px);
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(13, 15, 21, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px) rotate(45deg);
  transition: opacity .16s ease, transform .16s ease;
}

.tooltip-wrap:hover::after,
.tooltip-wrap:focus-within::after,
.tooltip-wrap:hover::before,
.tooltip-wrap:focus-within::before {
  opacity: 1;
  transform: translate(-50%, 0) rotate(0deg);
}

.tooltip-wrap:hover::before,
.tooltip-wrap:focus-within::before {
  transform: translate(-50%, 0) rotate(45deg);
}

.asset-balance-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.asset-breakdown-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.96em;
  line-height: 1;
  color: currentColor;
  flex: none;
  opacity: 0.88;
}

.pill {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-pill);
    padding: 3px 12px;
    font-size: 10px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 300;
}

.pill.is-success {
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  color: #fff;
}
.pill.is-warning {
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  color: #fff;
}
.pill.is-danger {
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  color: #fff;
}
.pill.is-neutral {
  color: #d4d4d4;
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.08);
  padding: 1px 12px;
  font-size: 0.7rem;
}

.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

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

.mini-card {
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 8px;
}

.feature-grid,
.pricing-grid,
.meta-grid {
  display: grid;
  gap: 12px;
}

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

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

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

.feature-card,
.pricing-card {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 10px;
}

.feature-card .ui-icon,
.stat-card .ui-icon,
.mini-card .ui-icon {
  color: var(--accent);
}

.feature-card .ui-icon {
  font-size: 1.15rem;
}

.stat-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.exchange-tile {
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}

.exchange-tile strong {
  display: block;
}

.exchange-tile .muted {
  font-size: 0.86rem;
}

.exchange-color-dot {
  display: none !important;
}

.feature-card strong {
  font-size: 1rem;
}

.feature-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.price-line {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.04em;
}

.warning-box {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 8px;
}

.warning-box.is-warning {
  border-color: rgba(255, 255, 255, 0.16); background: #1e1e1e; margin: 16px 0px;
}

.warning-box strong {
  margin-bottom: -6px;
}

.warning-box p {
  font-size: 12px;
    color: #ccc;
}

.warning-box.is-danger {
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
}

.warning-box.is-neutral {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.empty-state {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 10px;
  place-items: start;
}

.empty-state .ui-icon {
  font-size: 1.3rem;
  color: var(--accent);
}

.stat-card h2 {
  margin-top: 4px;
}

.split-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.callout {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255,255,255,0.03);
}

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

.toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text) !important;
  cursor: pointer;
}

.toggle span:last-child,
.toggle > span {
  flex: 1 1 auto;
}

.toggle .ui-icon {
  order: 1;
}

.toggle span:last-child,
.toggle > span {
  order: 2;
}

.toggle input[type="checkbox"],
.switch-card input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 52px;
  height: 30px;
  margin: 0;
  flex: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  cursor: pointer;
  order: 3;
  margin-left: auto;
  transition: background 180ms ease, border-color 180ms ease;
}

.toggle input[type="checkbox"]::after,
.switch-card input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.toggle input[type="checkbox"]:checked,
.switch-card input[type="checkbox"]:checked {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.92);
}

.toggle input[type="checkbox"]:checked::after,
.switch-card input[type="checkbox"]:checked::after {
  transform: translateX(22px);
  background: #000000;
}

.toggle input[type="checkbox"]:focus-visible,
.switch-card input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 2px;
}

.switch-control-wide {
  width: 100%;
}

.switch-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-field-card {
  display: grid;
  gap: 10px;
}

.field-help-text {
  margin: 0;
  color: rgba(203, 213, 225, 0.68);
  font-size: 0.84rem;
  line-height: 1.55;
}

.telegram-setup-steps {
  display: grid;
  gap: 14px;
}

.telegram-setup-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.telegram-setup-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.telegram-setup-step strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}

.telegram-setup-step p {
  margin: 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.telegram-option-grid {
  display: grid;
  gap: 12px;
}

.telegram-option-card {
  display: flex !important;
  align-items: flex-start;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.telegram-option-card input {
  order: 2;
  margin-top: 0;
  margin-left: auto;
  flex: none;
  align-self: center;
}

.telegram-option-copy {
  order: 1;
  display: grid;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.telegram-option-copy strong {
  color: #fff;
  font-size: 0.94rem;
}

.telegram-option-copy p {
  margin: 0;
  color: rgba(203, 213, 225, 0.68);
  font-size: 0.84rem;
  line-height: 1.55;
}

.exchange-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
}

.exchange-card-top {
  align-items: flex-start;
}

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

.exchange-hero {
  padding-bottom: 18px;
}

.site-footer {
  margin-top: 320px;
}

.footer-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  padding: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.footer-brand h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

.footer-brand p {
  max-width: 42rem;
}

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

.footer-columns h3 {
  margin: 0 0 10px;
  font-size: 0.84rem;
  color: var(--text);
}

.footer-columns a,
.footer-policy-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-policy-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-watermark {
  position: absolute;
  inset: auto 18px 4px auto;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 6vw, 4.25rem);
  letter-spacing: 0.06em;
  color: rgba(240, 240, 240, 0.035);
  user-select: none;
  pointer-events: none;
}

.layout-public-home {
  display: grid;
  gap: 34px;
}

.layout-public-home .section-head,
.layout-public-home .split-head {
  margin-bottom: 20px;
}

.layout-public-home .card {
  padding: 26px;
}

.layout-public-home .feature-grid,
.layout-public-home .pricing-grid,
.layout-public-home .exchange-grid {
  gap: 18px;
}

.layout-public-home .home-hero .lede {
  /*max-width: 60ch;*/
}

.layout-public-home .pricing-card {
  padding: 22px;
}

.layout-public-home .exchange-tile {
  min-height: 104px;
}

.readiness-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-user-directory {
  display: grid;
  gap: 0.95rem;
}

.admin-snapshot-list {
  display: grid;
  gap: 0.9rem;
}

.admin-snapshot-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.admin-snapshot-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.admin-snapshot-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.admin-snapshot-topline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-snapshot-topline strong {
  font-size: 1.02rem;
  color: #fff;
}

.admin-snapshot-subline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.92rem;
}

.admin-snapshot-subline span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  vertical-align: middle;
}

.admin-snapshot-facts {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-snapshot-side {
  display: grid;
  gap: 0.18rem;
  min-width: 132px;
  text-align: right;
}

.admin-snapshot-side strong {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1;
}

.admin-snapshot-side span {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.82rem;
}

.admin-user-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.admin-user-main {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.admin-user-identity {
  display: grid;
  gap: 0.15rem;
}

.admin-user-identity strong {
  font-size: 1rem;
  color: #ffffff;
}

.admin-user-identity span {
  color: rgba(203, 213, 225, 0.72);
}

.admin-user-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-user-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
}

.admin-user-panel {
  display: grid;
  gap: 1rem;
}

.admin-user-balance-card {
  display: grid;
  gap: 1rem;
}

.admin-user-balance-hero {
  display: grid;
  gap: 0.25rem;
}

.admin-user-balance-hero strong {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1;
  color: #fff;
}

.admin-user-balance-hero span {
  color: rgba(203, 213, 225, 0.72);
}

.admin-user-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.admin-user-stat-tile {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.34);
}

.admin-user-stat-tile span,
.admin-user-summary-line span,
.admin-user-exchange-meta,
.admin-user-log-copy span,
.admin-user-log-meta span {
  color: rgba(203, 213, 225, 0.72);
}

.admin-user-stat-tile strong,
.admin-user-summary-line strong,
.admin-user-exchange-copy strong,
.admin-user-log-copy strong,
.admin-user-log-meta strong {
  color: #fff;
}

.admin-user-summary-list,
.admin-user-stack {
  display: grid;
  gap: 0.85rem;
}

.admin-user-summary-line,
.admin-user-exchange-row,
.admin-user-log-row {
  display: grid;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.34);
}

.admin-user-summary-line {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-user-exchange-row,
.admin-user-log-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-user-exchange-copy,
.admin-user-log-copy,
.admin-user-log-meta {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.admin-user-exchange-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.admin-user-log-copy span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.admin-user-log-meta {
  text-align: right;
  justify-items: end;
}

@media (max-width: 960px) {
  .admin-user-summary-grid {
    grid-template-columns: 1fr;
  }

  .admin-snapshot-row,
  .admin-user-exchange-row,
  .admin-user-log-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .admin-snapshot-main {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-snapshot-facts,
  .admin-snapshot-side,
  .admin-user-log-meta {
    justify-content: flex-start;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .admin-user-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-snapshot-row,
  .admin-user-summary-line,
  .admin-user-exchange-row,
  .admin-user-log-row {
    padding: 0.9rem;
  }

  .admin-snapshot-side {
    min-width: 0;
  }
}

.readiness-table {
  overflow-x: auto;
}

.readiness-table .table {
  min-width: 1280px;
}

.readiness-table .table-row {
  grid-template-columns:
    minmax(180px, 1.2fr)
    minmax(140px, 0.9fr)
    minmax(150px, 1fr)
    minmax(110px, 0.7fr)
    minmax(140px, 0.85fr)
    minmax(120px, 0.8fr)
    minmax(110px, 0.8fr)
    minmax(260px, 1.6fr);
  align-items: start;
}

.readiness-table .table-head {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(7, 9, 13, 0.94);
  backdrop-filter: blur(12px);
  padding-top: 10px;
}

.readiness-table .table-row:last-child {
  border-bottom: 0;
}

.exchange-setup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.onboarding-shell {
  display: grid;
  gap: 24px;
}

.onboarding-hero.compact {
  gap: 14px;
}

.onboarding-hero {
  display: grid;
  gap: 18px;
}

.onboarding-brand.compact {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
}

.onboarding-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.onboarding-brand h1 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  line-height: 0.96;
}

.onboarding-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.onboarding-badges.compact {
  margin-top: -2px;
}

.onboarding-summary {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.summary-line .ui-icon {
  color: var(--accent);
  margin-top: 2px;
}

.summary-line.accent-line {
  color: var(--text);
}

.summary-line.accent-line .ui-icon {
  color: var(--accent);
}

.onboarding-top-grid {
  gap: 20px;
}

.onboarding-slim-grid {
  gap: 18px;
}

.onboarding-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.setup-timeline {
  display: grid;
  gap: 12px;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-step:last-child {
  border-bottom: 0;
}

.timeline.compact-timeline {
  gap: 8px;
}

.timeline-item.compact {
  padding: 10px 0;
}

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

.compact-row {
  display: grid;
  grid-template-columns: minmax(140px, 170px) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.compact-row dt {
  min-width: 0;
}

.compact-row dd {
  margin: 0;
  min-width: 0;
  display: flex;
  justify-content: flex-start;
}

.row-stack {
  display: grid;
  gap: 10px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 100%;
  table-layout: auto;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  word-break: normal;
  overflow-wrap: anywhere;
}

.data-table th {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table tbody tr:last-child {
  border-bottom: 0;
}

.api-link-row,
.copy-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.copy-inline {
  width: 100%;
  justify-content: space-between;
}

.copy-inline-wide {
  align-items: center;
  gap: 12px;
}

.copy-value {
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
}

.api-link-row {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.api-link-inline {
  justify-content: space-between;
}

.api-link-text {
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
  min-width: 0;
  flex: 1 1 auto;
}

.icon-action {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
}

.button.icon-action {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  padding-inline: 0;
  line-height: 1;
}

.icon-action-lg {
  width: 40px;
  height: 40px;
}

.icon-action:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.icon-action .ui-icon {
  font-size: 0.98rem;
  margin: 0 auto;
}

[data-tooltip]::before,
[data-tooltip]::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  z-index: 60;
}

[data-tooltip]::before {
  content: "";
  bottom: calc(100% + 4px);
  transform: translate(-50%, 4px);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(10, 10, 10, 0.96);
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  bottom: calc(100% + 10px);
  transform: translate(-50%, 6px);
  padding: 0.45rem 0.62rem;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.74rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::before,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.copy-feedback {
  min-width: 70px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transition: opacity 160ms ease;
}

.copy-feedback.is-visible {
  opacity: 1;
}

.toast-host {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: grid;
  gap: 10px;
  z-index: 80;
  pointer-events: none;
  justify-items: center;
}

.toast-message {
  min-width: 160px;
  width: max-content;
  max-width: min(420px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 24, 0.94);
  color: #eef2ff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast-message::before {
  content: "i";
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9bc8ff;
  background: rgba(109, 160, 255, 0.16);
}

.toast-message.is-success {
  border-color: rgba(94, 234, 212, 0.22);
  background: linear-gradient(180deg, rgba(11, 28, 24, 0.96), rgba(7, 18, 17, 0.94));
  color: #e9fff7;
}

.toast-message.is-success::before {
  content: "OK";
  color: #8df0c6;
  background: rgba(33, 186, 117, 0.2);
  font-size: 0.62rem;
}

.toast-message.is-error,
.toast-message.is-danger {
  border-color: rgba(255, 143, 143, 0.22);
  background: linear-gradient(180deg, rgba(42, 14, 18, 0.96), rgba(24, 8, 11, 0.94));
  color: #ffe9e9;
}

.toast-message.is-error::before,
.toast-message.is-danger::before {
  content: "!";
  color: #ff9a9a;
  background: rgba(255, 107, 107, 0.18);
}

.toast-message.is-warning {
  border-color: rgba(255, 196, 107, 0.24);
  background: linear-gradient(180deg, rgba(43, 25, 8, 0.96), rgba(22, 14, 6, 0.94));
  color: #fff2de;
}

.toast-message.is-warning::before {
  content: "!";
  color: #ffc46b;
  background: rgba(255, 196, 107, 0.18);
}

.toast-message.is-info::before {
  content: "i";
}

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

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

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.72);
  backdrop-filter: blur(16px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: min(86vh, 920px);
  overflow: auto;
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20,22,28,0.98), rgba(10,11,14,0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-panel-wide {
  width: min(100%, 920px);
}

.modal-panel-run {
  width: min(100%, 720px);
}

.modal-panel input,
.modal-panel textarea,
.modal-panel select {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.modal-panel input::placeholder,
.modal-panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.modal-panel input:focus,
.modal-panel textarea:focus,
.modal-panel select:focus {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(6, 7, 10, 0.94), 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.modal.is-open .modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.modal-close {
  flex: none;
}

body.modal-open {
  overflow: hidden;
}

.ajax-modal-loading,
.ajax-success-state {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 20px 16px;
  text-align: center;
}

.ajax-modal-body {
  display: grid;
  gap: 18px;
}

.ajax-spinner {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.92);
  animation: spin 880ms linear infinite;
}

.ajax-success-state strong {
  font-size: 1.02rem;
}

.ajax-success-ring {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 2px solid rgba(72, 187, 120, 0.82);
  background: rgba(34, 197, 94, 0.12);
  color: #7ff0aa;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.06);
  animation: success-pop 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ajax-success-mark {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
}

.ajax-error-box {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(45, 15, 15, 0.96);
  color: #fff;
}

.ajax-error-box strong {
  display: block;
  margin-bottom: 6px;
}

.theme-light {
  --bg: #000000;
  --surface: rgba(6, 6, 6, 0.98);
  --surface-2: rgba(10, 10, 10, 0.98);
  --surface-3: rgba(14, 14, 14, 0.98);
  --text: #f7f7f7;
  --muted: #a8a8a8;
  --frost: rgba(255, 255, 255, 0.12);
  --frost-alt: rgba(255, 255, 255, 0.08);
  --ring: rgba(255, 255, 255, 0.14) 0 0 0 1px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.02), transparent 24%),
    #000;
  color: #f7f7f7;
}

body.theme-light .app-header,
body.theme-light .sidebar,
body.theme-light .sidebar-panel,
body.theme-light .card,
body.theme-light .footer-card,
body.theme-light .notice,
body.theme-light .modal-panel,
body.theme-light .nav-group,
body.theme-light .status-pill,
body.theme-light .button,
body.theme-light .pill,
body.theme-light .list-item,
body.theme-light .timeline-item,
body.theme-light .job-event,
body.theme-light .account-menu-panel,
body.theme-light .card-soft {
  background: rgba(0, 0, 0, 0.98);
  color: #f7f7f7;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

body.theme-light .status-pill,
body.theme-light .pill {
  background: rgba(255,255,255,0.03);
  color: #f7f7f7;
}

body.theme-light .button.solid {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(232,232,232,0.92));
  color: #000;
  border-color: rgba(255,255,255,0.9);
}

body.theme-light input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
body.theme-light select,
body.theme-light textarea {
  background: rgba(255,255,255,0.03);
  color: #f7f7f7;
  border-color: rgba(255,255,255,0.14);
}

body.theme-light .modal-backdrop {
  background: rgba(0, 0, 0, 0.82);
}

body.theme-light .text-white,
body.theme-light .text-slate-100 {
  color: #f7f7f7 !important;
}

body.theme-light .text-neutral-200,
body.theme-light .text-neutral-300,
body.theme-light .text-neutral-400,
body.theme-light .text-neutral-500 {
  color: #a8a8a8 !important;
}

body.theme-light .bg-black\/45,
body.theme-light .bg-black\/40,
body.theme-light .bg-black\/50,
body.theme-light .bg-black\/70,
body.theme-light .bg-slate-900\/70,
body.theme-light .bg-slate-950\/40,
body.theme-light .bg-slate-950\/60,
body.theme-light .bg-slate-950\/80,
body.theme-light .bg-white\/\[0\.03\],
body.theme-light .bg-white\/\[0\.025\],
body.theme-light .bg-white\/\[0\.02\] {
  background: rgba(0, 0, 0, 0.98) !important;
}

body.theme-light .border-white\/10,
body.theme-light .border-slate-200\/10,
body.theme-light .border-white\/\[0\.10\] {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body.theme-light .muted,
body.theme-light .brand-subtitle,
body.theme-light .nav-group-title,
body.theme-light .kicker,
body.theme-light .eyebrow {
  color: rgba(255,255,255,0.58);
}

body.theme-light .button:hover,
body.theme-light .nav-group a:hover,
body.theme-light .account-menu-panel a:hover,
body.theme-light .button.ghost:hover,
body.theme-light .button.ghost:focus-visible {
  background: rgba(255,255,255,0.06);
}

body.theme-light .account-menu-panel a.is-danger {
  color: #f7f7f7;
}

.theme-light .theme-toggle-light {
  display: inline-flex;
}

.theme-light .theme-toggle-dark {
  display: none;
}

.onboarding-actions {
  margin-top: 2px;
}

.jobs-shell {
  display: grid;
  gap: 0px;
}

.simple-checklist {
  display: grid;
  gap: 12px;
}

.simple-checklist-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255,255,255,0.03);
}

.simple-checklist-item strong {
  display: block;
  margin-bottom: 4px;
}

.exchange-onboarding-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.exchange-onboarding-column {
  min-width: 0;
  display: grid;
  align-content: start;
}

.exchange-onboarding-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.onboarding-actions-compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.onboarding-actions-compact .button {
  min-height: 40px;
  padding: 8px 14px;
}

.exchange-onboarding-inline-notes {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.exchange-onboarding-inline-notes .warning-box strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.onboarding-inline-alert {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.onboarding-inline-alert-copy {
  display: grid;
  gap: 4px;
}

.onboarding-inline-alert-copy strong {
  display: block;
}

.onboarding-inline-alert .button {
  justify-self: start;
  width: auto;
  white-space: nowrap;
}

.button-compact {
  min-height: 36px;
  padding: 8px 14px;
}

.exchange-address-modal-grid {
  display: grid;
  gap: 18px;
}

.exchange-address-card {
  display: grid;
  gap: 14px;
}

.exchange-address-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.exchange-address-line code {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #f4f7fb;
  font-size: 0.88rem;
  word-break: break-all;
}

.exchange-address-steps {
  display: grid;
  gap: 12px;
}

.exchange-address-steps strong {
  line-height: 1.5;
}

details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

.job-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}

.job-summary {
  display: grid;
  gap: 8px;
}

.job-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.job-event-list {
  display: grid;
  gap: 10px;
}

.job-event {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.job-event:last-child {
  border-bottom: 0;
}

.job-event .event-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.job-event .event-time {
  color: var(--muted);
  font-size: 0.8rem;
}

.timeline-compact {
  display: grid;
  gap: 4px;
}

.timeline-compact-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 8px 0;
}

.timeline-compact-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: -8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline-compact-item.is-last::before {
  bottom: 16px;
}

.timeline-compact-marker {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.timeline-compact-marker.is-success {
  color: #8be1ad;
  background: #8be1ad52;
  border-color: rgba(139, 225, 173, 0.4);
}

.timeline-compact-marker.is-info {
  color: #8cc7ff;
  background: rgba(140, 199, 255, 0.3);
  border-color: rgba(140, 199, 255, 0.38);
}

.timeline-compact-marker.is-warning {
  color: #ffc46b;
  background: rgba(255, 196, 107, 0.28);
  border-color: rgba(255, 196, 107, 0.4);
}

.timeline-compact-marker.is-danger {
  color: #ff8f8f;
  background: rgba(255, 143, 143, 0.28);
  border-color: rgba(255, 143, 143, 0.4);
}

.timeline-compact-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.timeline-compact-body {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.timeline-compact-message {
  margin: 5px 0 0;
  color: #d7d7d7;
  font-size: 0.9rem;
  line-height: 1.45;
}

.timeline-compact-time {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.onboarding-form-card {
  display: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.filter-bar .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-count {
  font-size: 0.72rem;
  color: inherit;
  opacity: 0.72;
}

.admin-detail-modal-copy {
  display: grid;
  gap: 0.95rem;
}

.admin-detail-section {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.admin-detail-section strong {
  color: #ffffff;
}

.admin-detail-section p {
  margin: 0;
  color: rgba(228, 228, 231, 0.84);
  line-height: 1.62;
}

.admin-detail-list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(228, 228, 231, 0.84);
  display: grid;
  gap: 0.38rem;
}

.credential-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-block {
  display: grid;
  gap: 8px;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
}

.exchange-guidance {
  display: grid;
  gap: 16px;
  align-content: start;
}

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

.card-soft {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-meta-list {
  display: grid;
  gap: 12px;
}

.guide-meta-row {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-meta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-head.compact {
  margin-bottom: 0;
}

.exchange-setup-grid .card {
  min-height: 100%;
}

.admin-library-list {
  display: grid;
  gap: 12px;
}

.admin-library-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.admin-library-thumb {
  width: 96px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.admin-library-icon,
.admin-library-topic-badge {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.admin-library-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.admin-library-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.admin-library-copy strong {
  font-size: 1rem;
}

.admin-library-copy p {
  margin: 0;
  color: rgba(212, 212, 216, 0.76);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.admin-library-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.knowledge-shell {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.knowledge-sidebar,
.knowledge-content {
  min-width: 0;
}

.knowledge-topic-list {
  display: grid;
  gap: 12px;
}

.knowledge-topic-group {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.knowledge-topic-group.is-active {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.knowledge-topic-link,
.knowledge-item-link {
  display: block;
  text-decoration: none;
}

.knowledge-topic-link {
  color: #f8fafc;
  font-weight: 600;
}

.knowledge-item-links {
  display: grid;
  gap: 6px;
}

.knowledge-item-link {
  padding: 9px 11px;
  border-radius: 14px;
  color: rgba(212, 212, 216, 0.8);
  background: rgba(255, 255, 255, 0.02);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  border: 1px solid transparent;
}

.knowledge-item-link:hover,
.knowledge-item-link.is-active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.knowledge-article-body {
  color: #ececec;
  line-height: 1.7;
}

.knowledge-article-body > :first-child {
  margin-top: 0;
}

.knowledge-article-body > :last-child {
  margin-bottom: 0;
}

.knowledge-article-body h1,
.knowledge-article-body h2,
.knowledge-article-body h3,
.knowledge-article-body h4 {
  color: #ffffff;
  margin: 1.25rem 0 0.55rem;
}

.knowledge-article-body p,
.knowledge-article-body ul,
.knowledge-article-body ol,
.knowledge-article-body blockquote {
  margin: 0 0 0.95rem;
}

.knowledge-article-body ul,
.knowledge-article-body ol {
  padding-left: 1.3rem;
}

.knowledge-article-body a {
  color: #ffffff;
  text-decoration: underline;
}

.knowledge-article-body code,
.knowledge-article-body pre {
  font-family: "Poppins", sans-serif;
}

.knowledge-article-body pre {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow-x: auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.tool-card {
  display: grid;
  gap: 18px;
}

.tool-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.tool-card-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.tool-card-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tool-card-logo span {
  color: #f8fafc;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tool-card h2 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.tool-card p {
  margin: 0;
  color: rgba(212, 212, 216, 0.76);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.onboarding-shell .warning-box p,
.onboarding-panel .warning-box p {
  margin: 0;
}

.onboarding-shell .warning-box strong,
.onboarding-panel .warning-box strong {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.qr-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-2fa-active-card {
  min-height: 220px;
  align-items: center;
  justify-content: center;
}

.qr-frame {
  width: 260px;
  height: 260px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  display: grid;
  place-items: center;
}

.qr-frame canvas,
.qr-frame img,
.qr-frame table {
  width: 100% !important;
  height: 100% !important;
}

.hint {
  display: block;
  margin-top: 6px;
}

body.sidebar-open .sidebar {
  display: grid;
}

@media (max-width: 1080px) {
  body.sidebar-open {
    overflow: hidden;
  }
  body.public-nav-open {
    overflow: hidden;
  }
  body.sidebar-open::before,
  body.public-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(0, 0, 0, 0.72);
  }
  .public-header {
    top: 10px;
    gap: 14px;
    padding: 8px 0 10px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .public-header.is-scrolled,
  body.public-nav-open .public-header {
    padding: 12px 16px;
  }
  .brand-logo {
    width: 44px;
    height: 44px;
  }
  .public-header-actions {
    flex: 0 0 auto;
  }
  .public-nav-toggle {
    display: inline-flex !important;
  }
  .public-nav {
    position: static;
    width: 0;
    justify-content: flex-start;
  }
  .public-nav-panel {
    position: fixed !important;
    inset: auto 0 0 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch !important;
    align-content: start;
    gap: 10px;
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    max-height: 60vh;
    padding: 12px 14px calc(16px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px 28px 0 0;
    background: rgba(5, 5, 5, 0.97);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.52);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 220ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 46;
  }
  .public-sheet-handle,
  .public-sheet-head {
    display: flex;
  }
  .public-sheet-handle {
    width: 52px;
    height: 5px;
    margin: 0 auto 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
  }
  .public-sheet-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 0 0 6px;
  }
  .public-sheet-head > div {
    min-width: 0;
  }
  .public-sheet-close,
  .sidebar-sheet-close {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
  .public-nav-panel a,
  .public-nav-panel .button {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    justify-self: stretch;
    align-self: stretch;
    justify-content: flex-start;
    white-space: normal;
    min-height: 48px;
    padding-inline: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }
  body.public-nav-open .public-nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .public-sheet-actions {
    display: grid;
    gap: 10px;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }
  .home-hero {
    min-height: auto;
    margin-top: 18px;
    padding-top: 22px;
  }
  .home-live-pill {
    padding-inline: 18px;
    gap: 14px;
    font-size: 0.9rem;
  }
  .home-hero-image {
    width: min(100%, 640px);
    top: -96px;
  }
  .home-hero-image-fade {
    width: min(100%, 640px);
    height: 360px;
  }
  .support-strip-head-secondary h2 {
    max-width: none;
  }
  .template-showcase-grid,
  .template-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .template-showcase-grid {
    column-count: 2;
  }
  .app-grid { grid-template-columns: 1fr; }
  .app-header {
    top: 10px;
    padding: 14px 16px;
    gap: 14px;
  }
  .brand-subtitle {
    max-width: 34ch;
  }
  .sidebar {
    position: fixed !important;
    inset: auto 0 0 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: grid;
    width: 100%;
    max-width: 100%;
    max-height: 60vh;
    padding: 12px 14px calc(18px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 46;
    background: rgba(4, 4, 4, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.52);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .sidebar-toggle { display: inline-flex; }
  .sidebar-sheet-chrome {
    display: grid;
    gap: 10px;
    margin-bottom: 4px;
  }
  .sidebar-sheet-handle {
    display: block;
    width: 52px;
    height: 5px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
  }
  body.sidebar-open .sidebar {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .iframe-preview {
    min-height: 720px;
  }
  .dashboard-address-grid {
    grid-template-columns: 1fr;
  }
  .faq-item summary {
    padding: 18px 20px;
  }
  .workspace {
    position: relative;
    z-index: 1;
  }
  .auth-grid { grid-template-columns: 1fr; }
  .auth-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .exchange-setup-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .app-frame { padding: 12px; }
  .public-frame,
  .auth-frame {
    padding: 18px 14px 24px;
    gap: 24px;
  }
  .app-header,
  .public-header {
    align-items: flex-start;
  }
  .app-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .public-header {
    top: 8px;
    padding: 10px 12px;
    border-radius: 22px;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .brand-block {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
  .public-header.is-scrolled,
  body.public-nav-open .public-header {
    padding: 10px 12px;
  }
  .public-header .brand-subtitle {
    display: none;
  }
  .brand-with-logo {
    gap: 12px;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  .brand-title {
    font-size: 1.55rem;
    line-height: 1;
  }
  .public-header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    gap: 8px;
    min-width: auto;
  }
  .public-desktop-action {
    display: none !important;
  }
  .public-nav {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 0;
    height: 0;
    overflow: visible;
    pointer-events: none;
  }
  .public-mobile-cta {
    display: none !important;
  }
  .public-nav-toggle {
    align-self: center;
  }
  .public-nav-panel {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 10px 10px calc(14px + env(safe-area-inset-bottom, 0px));
  }
  .home-hero {
    min-height: calc(100svh - 92px);
    margin-top: 0;
    padding: 12px 0 20px;
    align-items: center;
    justify-items: center;
    text-align: center;
  }
  .home-hero .hero-copy {
    gap: 14px;
    width: 100%;
    margin-top: clamp(18rem, 76vw, 25rem);
    justify-items: center;
  }
  .home-hero .hero-copy-centered {
    justify-items: center;
    align-content: center;
    min-height: 100%;
  }
  .home-hero h1 {
    font-size: clamp(2.8rem, 10.2vw, 3.9rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    max-width: 8ch;
    margin-inline: auto;
  }
  .home-hero .lede {
    display: none;
  }
  .home-live-pill {
    align-self: center;
    width: auto;
    max-width: min(calc(100vw - 28px), 100%);
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
    text-align: center;
    margin-inline: auto;
    padding: 7px 18px;
    border-radius: 20px;
    background: rgba(73, 73, 73, 0.66);
    border-color: rgba(255, 255, 255, 0.22);
  }
  .home-live-pill-value {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .home-hero-media {
    inset: 0 0 auto;
    height: clamp(420px, 64svh, 560px);
    align-items: flex-start;
  }
  .home-hero-image {
    width: min(calc(240vw - 24px), 750px);
        max-width: 600px;
        top: 16px;
  }
  .home-hero-image-fade {
    width: min(calc(100vw - 40px), 360px);
    height: 380px;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0) 10%, rgb(0 0 0) 90%);
  }
  .support-strip {
    padding: 18px;
    gap: 14px;
  }
  .support-strip-grid {
    gap: 14px;
  }
  .support-strip-wide-home {
    min-height: 100svh;
    display: grid;
    align-content: center;
  }
  .support-strip-wide-home .support-marquee:nth-child(n+4) {
    display: block;
  }
  .support-strip-network,
  .support-strip-token {
    min-height: 340px;
    max-height: none !important;
    padding: 18px 16px;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .support-strip-network .support-chip-secondary,
  .support-strip-token .support-chip-secondary {
    padding: 4px;
    background: rgba(255, 255, 255, 0.035);
  }
  .support-strip-network .support-chip-logo-secondary,
  .support-strip-token .support-chip-logo-secondary {
    width: 36px !important;
    height: 36px !important;
    box-shadow: none;
  }
  .support-strip-network .support-strip-head-secondary,
  .support-strip-token .support-strip-head-secondary,
  .support-strip-network .support-marquee-stack,
  .support-strip-token .support-marquee-stack {
    display: none;
  }
  .home-access-card {
    min-height: auto;
    max-height: none !important;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgb(14 14 14 / 20%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  }
  .home-access-card .home-access-body {
    display: grid !important;
    justify-items: stretch;
    align-items: start;
    gap: 16px;
  }
  .home-access-card .home-access-features {
    display: grid !important;
  }
  .support-orbit-mobile {
    display: block;
  }
  .support-orbit {
    position: relative;
    width: min(100%, 336px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: visible;
  }
  .support-orbit::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 258px;
    height: 258px;
    border-radius: 999px;
    background:
      radial-gradient(circle, rgba(112, 255, 164, 0.08) 0%, rgba(132, 255, 201, 0.03) 30%, rgba(255, 255, 255, 0.02) 48%, rgba(255, 255, 255, 0) 74%);
    transform: translate(-50%, -50%);
    filter: blur(26px);
    pointer-events: none;
  }
  .support-orbit::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 296px;
    height: 296px;
    border-radius: 999px;
    background:
      repeating-conic-gradient(
        from -8deg,
        rgba(180, 255, 110, 0.14) 0deg 1.4deg,
        rgba(180, 255, 110, 0) 1.4deg 15deg
      );
    mask-image: radial-gradient(circle, transparent 0 84px, #000 112px, transparent 154px);
    -webkit-mask-image: radial-gradient(circle, transparent 0 84px, #000 112px, transparent 154px);
    transform: translate(-50%, -50%);
    opacity: 0.44;
    filter: blur(0.5px);
    pointer-events: none;
  }
  .support-orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--orbit-size, 56px);
    height: var(--orbit-size, 56px);
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: var(--orbit-opacity, 1);
    filter: blur(var(--orbit-blur, 0px));
    transform:
      translate(-50%, -50%)
      rotate(var(--orbit-angle))
      translateY(calc(var(--orbit-radius) * -1))
      rotate(calc(var(--orbit-angle) * -1))
      scale(var(--orbit-scale, 1));
  }
  .support-orbit-center {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 190px;
    min-height: 162px;
    padding: 18px 20px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 40% 60% 52% 48% / 44% 36% 64% 56%;
    background:
      radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 30%),
      radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68) 64%),
      linear-gradient(180deg, rgba(20, 20, 20, 0.46), rgba(8, 8, 8, 0.52));
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow:
      0 28px 54px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      inset 0 -18px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);
    transform: translate(-50%, -50%) rotate(-9deg);
    z-index: 2;
    overflow: visible;
  }
  .support-orbit-center::before {
    content: "";
    position: absolute;
    inset: -24px -18px -18px;
    border-radius: 44% 56% 50% 50% / 48% 42% 58% 52%;
    background:
      radial-gradient(circle, rgba(42, 42, 42, 0.2) 0%, rgba(18, 18, 18, 0.08) 48%, rgba(18, 18, 18, 0) 76%);
    filter: blur(22px);
    z-index: -1;
    pointer-events: none;
  }
  .support-orbit-center::after {
    content: "";
    position: absolute;
    inset: 10px 8px 18px 14px;
    border-radius: 47% 53% 44% 56% / 50% 42% 58% 50%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 66%);
    pointer-events: none;
  }
  .support-orbit-title {
    display: block;
    color: #fff;
    font-size: clamp(1.02rem, 4.8vw, 1.2rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-wrap: balance;
    transform: rotate(9deg);
  }
  .support-orbit-item-1 { --orbit-angle: -8deg; --orbit-radius: 152px; --orbit-size: 56px; --orbit-opacity: 0.18; --orbit-blur: 13px; --orbit-scale: 0.78; }
  .support-orbit-item-2 { --orbit-angle: 18deg; --orbit-radius: 148px; --orbit-size: 56px; --orbit-opacity: 1; --orbit-scale: 1; }
  .support-orbit-item-3 { --orbit-angle: 42deg; --orbit-radius: 154px; --orbit-size: 56px; --orbit-opacity: 0.18; --orbit-blur: 14px; --orbit-scale: 0.76; }
  .support-orbit-item-4 { --orbit-angle: 66deg; --orbit-radius: 150px; --orbit-size: 56px; --orbit-opacity: 1; --orbit-scale: 1; }
  .support-orbit-item-5 { --orbit-angle: 92deg; --orbit-radius: 156px; --orbit-size: 56px; --orbit-opacity: 0.16; --orbit-blur: 15px; --orbit-scale: 0.74; }
  .support-orbit-item-6 { --orbit-angle: 118deg; --orbit-radius: 150px; --orbit-size: 56px; --orbit-opacity: 0.92; --orbit-scale: 0.98; }
  .support-orbit-item-7 { --orbit-angle: 144deg; --orbit-radius: 148px; --orbit-size: 56px; --orbit-opacity: 0.2; --orbit-blur: 12px; --orbit-scale: 0.8; }
  .support-orbit-item-8 { --orbit-angle: 170deg; --orbit-radius: 152px; --orbit-size: 56px; --orbit-opacity: 1; --orbit-scale: 1; }
  .support-orbit-item-9 { --orbit-angle: 196deg; --orbit-radius: 148px; --orbit-size: 56px; --orbit-opacity: 0.18; --orbit-blur: 14px; --orbit-scale: 0.78; }
  .support-orbit-item-10 { --orbit-angle: 224deg; --orbit-radius: 154px; --orbit-size: 56px; --orbit-opacity: 0.9; --orbit-scale: 0.98; }
  .support-orbit-item-11 { --orbit-angle: 252deg; --orbit-radius: 120px; --orbit-size: 56px; --orbit-opacity: 1; --orbit-scale: 1; }
  .support-orbit-item-12 { --orbit-angle: 286deg; --orbit-radius: 122px; --orbit-size: 56px; --orbit-opacity: 0.22; --orbit-blur: 10px; --orbit-scale: 0.86; }
  .support-orbit-item-13 { --orbit-angle: 318deg; --orbit-radius: 118px; --orbit-size: 56px; --orbit-opacity: 0.94; --orbit-scale: 0.98; }
  .support-orbit-item-14 { --orbit-angle: 10deg; --orbit-radius: 122px; --orbit-size: 56px; --orbit-opacity: 0.22; --orbit-blur: 10px; --orbit-scale: 0.86; }
  .support-orbit-item-15 { --orbit-angle: 50deg; --orbit-radius: 120px; --orbit-size: 56px; --orbit-opacity: 1; --orbit-scale: 1; }
  .support-orbit-item-16 { --orbit-angle: 90deg; --orbit-radius: 118px; --orbit-size: 56px; --orbit-opacity: 0.2; --orbit-blur: 9px; --orbit-scale: 0.84; }
  .support-orbit-item-17 { --orbit-angle: 132deg; --orbit-radius: 122px; --orbit-size: 56px; --orbit-opacity: 0.92; --orbit-scale: 0.97; }
  .support-orbit-item-18 { --orbit-angle: 212deg; --orbit-radius: 120px; --orbit-size: 56px; --orbit-opacity: 0.22; --orbit-blur: 10px; --orbit-scale: 0.86; }
  .support-orbit-item-19 { --orbit-angle: 340deg; --orbit-radius: 174px; --orbit-size: 62px; --orbit-opacity: 0.1; --orbit-blur: 18px; --orbit-scale: 1.12; }
  .support-orbit-item-20 { --orbit-angle: 58deg; --orbit-radius: 180px; --orbit-size: 64px; --orbit-opacity: 0.09; --orbit-blur: 20px; --orbit-scale: 1.14; }
  .support-orbit-item-21 { --orbit-angle: 156deg; --orbit-radius: 176px; --orbit-size: 60px; --orbit-opacity: 0.11; --orbit-blur: 18px; --orbit-scale: 1.08; }
  .support-orbit-item-22 { --orbit-angle: 250deg; --orbit-radius: 182px; --orbit-size: 64px; --orbit-opacity: 0.09; --orbit-blur: 20px; --orbit-scale: 1.14; }
  .support-orbit-item-23 { --orbit-angle: 300deg; --orbit-radius: 170px; --orbit-size: 58px; --orbit-opacity: 0.12; --orbit-blur: 16px; --orbit-scale: 1.04; }
  .support-orbit-item-24 { --orbit-angle: 118deg; --orbit-radius: 170px; --orbit-size: 58px; --orbit-opacity: 0.12; --orbit-blur: 16px; --orbit-scale: 1.04; }
  .support-strip-head h2,
  .support-strip-head-secondary h2 {
    font-size: clamp(1.2rem, 7vw, 1.7rem);
  }
  .template-showcase-section {
    margin-top: 56px;
  }
  .template-showcase-shell {
    padding: 20px 14px 108px;
  }
  .template-showcase-grid {
    column-count: 1 !important;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
  }
  .template-showcase-card {
    position: relative;
    margin-bottom: 0;
  }
  .template-showcase-card + .template-showcase-card {
    margin-top: -68%;
  }
  .template-showcase-card:nth-child(1) { z-index: 1; }
  .template-showcase-card:nth-child(2) { z-index: 2; }
  .template-showcase-card:nth-child(3) { z-index: 3; }
  .template-showcase-card:nth-child(4) { z-index: 4; }
  .template-showcase-card:nth-child(5) { z-index: 5; }
  .template-showcase-card:nth-child(6) { z-index: 6; }
  .template-showcase-copy {
    margin-bottom: 42px !important;
  }
  .public-section#features .stat-card {
    overflow: hidden;
    cursor: pointer;
  }
  .public-section#features .stat-card > div:first-child {
    height: auto !important;
    max-height: 240px;
    min-height: 0;
    overflow: hidden;
  }
  .public-section h3 {
    font-size: clamp(2rem, 2.3vw, 4rem) !important;
    font-weight: 600 !important;
    max-width: 90%;
    margin-inline: auto;
    text-align: center;
  }
  .home-section-title,
  .template-showcase-shell .section-head h2 {
    font-size: clamp(2rem, 2.3vw, 4rem) !important;
    font-weight: 600 !important;
    max-width: 90%;
    margin-inline: auto;
    text-align: center;
  }
  .home-section-subtitle,
  .template-showcase-copy {
    display: none;
  }
  .public-section#features .stat-card > div:first-child img {
    display: block;
    width: 100%;
    margin-top: -119px;
    transition: margin-top 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .public-section#features .stat-card h2 {
    margin-top: -16px;
    transition: margin-top 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .public-section#features .stat-card.is-image-revealed > div:first-child img {
    margin-top: 0;
  }
  .public-section#features .stat-card.is-image-revealed h2 {
    margin-top: 4px;
  }
  .template-showcase-actions {
    width: calc(100% - 28px);
    bottom: 14px;
  }
  .home-access-shell {
    margin: 36px auto 72px;
    width: 100%;
    background-position: center top;
    background-size: cover;
  }
  .home-access-top,
  .home-access-body {
    padding: 20px 18px;
  }
  .home-access-top {
    grid-template-columns: 1fr;
  }
  .home-access-button-desktop {
    display: none;
  }
  .home-access-button-mobile {
    display: inline-flex;
    width: auto;
    min-width: min(260px, 100%);
    margin-top: 14px;
    align-self: center;
    justify-self: center;
  }
  .home-access-button {
    width: 100%;
    min-width: 0;
  }
  .home-access-button-mobile.home-access-button {
    width: auto;
    max-width: 100%;
  }
  .home-access-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-left: 0;
  }
  .panel-lock-shell {
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 22px;
  }
  .panel-lock-overlay {
    padding: 18px;
  }
  .panel-lock-card {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .panel-lock-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }
  .panel-lock-card p {
    font-size: 0.92rem;
  }
  .panel-lock-button {
    width: 100%;
    min-width: 0;
  }
  .app-header {
    top: 8px;
    padding: 12px 14px;
    border-radius: 22px;
  }
  .app-header .brand-subtitle {
    display: none;
  }
  .app-header .brand-title {
    font-size: 1.4rem;
  }
  .header-actions {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 0;
  }
  .header-balance,
  .account-menu {
    display: none;
  }
  .status-pill-balance {
    max-width: 100%;
  }
  .header-balance-value {
    min-width: 0;
  }
  .header-balance-value [data-balance-value] {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .account-menu-panel {
    width: min(320px, calc(100vw - 28px));
  }
  .sidebar {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 60vh;
    border-radius: 24px 24px 0 0;
  }
  .footer-grid,
  .qr-layout,
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }
  .mini-grid, .toggle-grid { grid-template-columns: 1fr; }
  .feature-grid,
  .pricing-grid,
  .meta-grid { grid-template-columns: 1fr; }
  .readiness-summary { grid-template-columns: 1fr 1fr; }
  .exchange-setup-grid { grid-template-columns: 1fr; }
  .exchange-onboarding-grid { grid-template-columns: 1fr; }
  .onboarding-actions-compact {
    flex-direction: column;
    align-items: stretch;
  }
  .onboarding-actions-compact .button {
    width: 100%;
  }
  .exchange-address-modal-grid { grid-template-columns: 1fr; }
  .onboarding-brand { grid-template-columns: 1fr; }
  .credential-summary { grid-template-columns: 1fr; }
  .split-card,
  .section-head,
  .split-head,
  .exchange-card-top,
  .inline-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  .list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .table-row {
    grid-template-columns: 1fr;
  }
  .modal {
    place-items: end center;
    padding: 0;
  }
  .modal-panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 24px 24px 0 0;
    padding: 18px 16px 20px;
  }
  .billing-method-sheet,
  .billing-progress-head,
  .billing-highlight {
    grid-template-columns: 1fr;
  }
  .billing-action-summary,
  .billing-history-item,
  .billing-payment-top,
  .billing-step-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .billing-progress-actions,
  .billing-highlight-meta {
    justify-items: start;
  }
  .billing-phase-track {
    grid-template-columns: 1fr 1fr;
  }
  .billing-method-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .billing-confirm-grid,
  .billing-payment-stats,
  .billing-payment-meta {
    grid-template-columns: 1fr;
  }
  .support-strip-grid {
    grid-template-columns: 1fr;
  }
  .support-strip {
    padding: 20px;
  }
  .support-strip-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .support-strip-head .muted {
    max-width: none;
    text-align: left;
  }
  .support-chip {
    padding: 10px 14px;
  }
  .support-chip span {
    font-size: 0.9rem;
  }
}

@media (min-width: 960px) {
  .exchange-onboarding-grid {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .onboarding-inline-alert {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .exchange-address-modal-grid {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .modal-panel,
  .sidebar {
    transform: none !important;
    opacity: 1 !important;
  }
}

.validation-summary-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.validation-matrix-card {
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.72);
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.pill.is-warning,
.status-pill.is-warning {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
  color: #f8d48a;
}

.billing-method-sheet,
.billing-method-form,
.billing-method-summary,
.billing-method-step,
.billing-progress-head,
.billing-progress-actions,
.billing-highlight,
.billing-highlight-meta {
  display: grid;
  gap: 1rem;
}

.billing-modal-panel {
  width: min(100%, 760px);
}

.billing-action-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 38%),
    rgba(0, 0, 0, 0.28);
}

.billing-plan-inline-list {
  display: grid;
  gap: 0.75rem;
}

.billing-plan-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.billing-plan-inline strong,
.billing-action-summary strong,
.billing-history-item strong {
  display: block;
  color: #fff;
}

.billing-plan-inline span,
.billing-action-summary span,
.billing-history-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.billing-plan-inline:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
}

.billing-plan-inline.is-selected {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.billing-action-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.billing-action-summary small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
}

.billing-history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  text-align: left;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.billing-history-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.billing-history-meta {
  text-align: right;
}

.billing-modal-flow,
.billing-modal-body,
.billing-confirm-grid,
.billing-payment-shell,
.billing-payment-stats,
.billing-payment-meta {
  display: grid;
  gap: 1rem;
}

.billing-modal-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.billing-modal-step {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.billing-modal-step span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.billing-modal-step strong {
  font-size: 0.94rem;
}

.billing-modal-step.is-active,
.billing-modal-step.is-complete {
  color: #fff;
}

.billing-modal-step.is-active {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.billing-modal-step.is-complete {
  border-color: rgba(124, 242, 187, 0.24);
  background: rgba(124, 242, 187, 0.08);
}

.billing-step-card {
  display: grid;
  gap: 1rem;
}

.billing-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.billing-step-hint {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.billing-confirm-box {
  display: grid;
  gap: 0.35rem;
  min-height: 120px;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.billing-confirm-box small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
}

.billing-confirm-box strong {
  font-size: 1.2rem;
  color: #fff;
}

.billing-confirm-box span {
  color: var(--muted);
  font-size: 0.84rem;
}

.billing-payment-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

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

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

.billing-method-sheet {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.billing-method-card,
.billing-method-warning,
.billing-stat-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.34);
  padding: 1rem;
}

.billing-method-plan,
.billing-stat-value {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.billing-method-price {
  margin-top: 1rem;
  font-size: 1.35rem;
  font-weight: 600;
}

.billing-method-warning strong,
.billing-step-heading strong,
.billing-highlight-copy strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.billing-method-warning p,
.billing-step-heading p,
.billing-selection-preview,
.billing-highlight-copy p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.billing-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.billing-step-index {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.billing-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 0.8rem;
}

.billing-choice-grid-networks {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.billing-choice-chip {
  display: grid;
  gap: 0.2rem;
  min-height: 76px;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.billing-choice-chip strong {
  font-size: 1rem;
}

.billing-choice-chip span {
  color: var(--muted);
  font-size: 0.82rem;
}

.billing-choice-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.billing-choice-chip.is-selected {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 42%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.billing-choice-empty {
  padding: 1rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.billing-method-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.4rem;
}

.billing-selection-preview {
  min-height: 2.5rem;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.billing-progress-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.billing-progress-actions {
  justify-items: end;
  align-content: start;
}

.billing-phase-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.billing-phase-step {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.9rem;
}

.billing-phase-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.billing-phase-step.is-current,
.billing-phase-step.is-complete {
  color: #fff;
}

.billing-phase-step.is-current {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.billing-phase-step.is-current .billing-phase-dot {
  background: #f8d48a;
}

.billing-phase-step.is-complete .billing-phase-dot {
  background: #7cf2bb;
}

.billing-highlight {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  padding: 1rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 42%),
    rgba(0, 0, 0, 0.34);
}

.billing-highlight-meta {
  grid-auto-flow: column;
  align-content: start;
}

.billing-mini-tag {
  display: grid;
  gap: 0.25rem;
  min-width: 120px;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.billing-mini-tag small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
}

.billing-mini-tag strong {
  font-size: 0.98rem;
}

.billing-modal-panel {
  width: min(100%, 820px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(8, 12, 10, 0.98), rgba(3, 5, 4, 0.98));
  border: 1px solid rgba(134, 239, 172, 0.14);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
}

.billing-modal-flow,
.billing-modal-body {
  gap: 1.25rem;
}

.billing-checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.billing-checkout-progress-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(226, 232, 240, 0.76);
  transition:
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.billing-checkout-progress-step strong,
.billing-checkout-selector-copy strong,
.billing-checkout-preview-head h3,
.billing-payment-badge-copy strong,
.billing-payment-detail-copy strong {
  display: block;
  color: #f8fafc;
}

.billing-checkout-progress-step small,
.billing-checkout-selector-copy p,
.billing-checkout-preview-note p,
.billing-payment-badge-copy span {
  color: rgba(203, 213, 225, 0.7);
}

.billing-checkout-progress-dot {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 700;
}

.billing-checkout-progress-step.is-active {
  color: #f0fdf4;
  transform: translateY(-1px);
}

.billing-checkout-progress-step.is-active .billing-checkout-progress-dot {
  color: #f0fdf4;
}

.billing-checkout-progress-step.is-complete {
  color: #f0fdf4;
}

.billing-checkout-progress-step.is-complete .billing-checkout-progress-dot {
  color: #f0fdf4;
}

.billing-checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 1.1rem;
}

.billing-checkout-selection,
.billing-checkout-preview,
.billing-creating-state,
.billing-payment-shell-modern {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.billing-checkout-selection,
.billing-checkout-preview,
.billing-payment-shell-modern {
  padding: 1.1rem;
}

.billing-checkout-selection {
  display: grid;
  gap: 1rem;
}

.billing-checkout-selector-block {
  position: relative;
  display: grid;
  gap: 0.65rem;
  z-index: 6;
}

.billing-checkout-selector-block.is-open {
  z-index: 120;
}

.billing-checkout-selector-copy p,
.billing-checkout-preview-note p,
.billing-creating-state p {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
}

.billing-rich-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  min-height: 76px;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #f8fafc;
  text-align: left;
  transition:
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.billing-rich-select:hover,
.billing-rich-select[aria-expanded="true"] {
  border-color: rgb(207 207 207 / 32%);
    background: rgb(143 143 143 / 8%);
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.08);
}

.billing-rich-select:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.billing-rich-select-value {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.billing-rich-select-value > div {
  min-width: 0;
}

.billing-rich-select-value strong {
  display: block;
  color: #f8fafc;
}

.billing-rich-select-value span {
  display: block;
  margin-top: 0.15rem;
  color: rgba(203, 213, 225, 0.7);
  font-size: 0.84rem;
}

.billing-rich-select-caret {
  color: rgba(203, 213, 225, 0.82);
}

.billing-token-logo-shell {
  width: 48px;
  height: 48px;
  border-radius: 18px;
}

.billing-rich-select-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 80;
  padding: 0.75rem;
  border-radius: 24px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  background: rgb(22 22 22);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.billing-rich-option-list {
  display: grid;
  gap: 0.65rem;
  max-height: 280px;
  overflow: auto;
  padding-right: 0.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.55) rgba(15, 23, 42, 0.42);
}

.billing-rich-option-list::-webkit-scrollbar {
  width: 10px;
}

.billing-rich-option-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.52);
}

.billing-rich-option-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(203, 213, 225, 0.72), rgba(100, 116, 139, 0.82));
  border: 2px solid rgba(15, 23, 42, 0.72);
}

.billing-rich-option-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.86), rgba(148, 163, 184, 0.9));
}

.billing-rich-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #f8fafc;
  text-align: left;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.billing-rich-option:hover {
  transform: translateY(-1px);
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 16%);
}

.billing-rich-option.is-selected {
  border-color: rgb(255 255 255 / 42%);
}

.billing-rich-option-copy {
  min-width: 0;
}

.billing-rich-option-copy strong {
  display: block;
  color: #f8fafc;
}

.billing-rich-option-copy span {
  display: block;
  margin-top: 0.16rem;
  color: rgba(203, 213, 225, 0.74);
  font-size: 0.82rem;
  display: none;
}

.billing-checkout-preview {
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 36%),
    rgba(0, 0, 0, 0.28);
}

.billing-checkout-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.billing-checkout-preview-price {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #f0fdf4;
}

.billing-checkout-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.billing-checkout-preview-note {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  background: rgba(22, 163, 74, 0.08);
}

.billing-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.billing-step-hint {
  color: rgba(203, 213, 225, 0.7);
  font-size: 0.88rem;
}

.billing-creating-state {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 420px;
  text-align: center;
  padding: 2rem;
}

.billing-creating-orb {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.22), rgba(22, 163, 74, 0.05) 68%, transparent 69%);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.12);
}

.billing-payment-shell-modern {
  display: grid;
  gap: 1rem;
}

.billing-payment-transfer-copy {
  margin: 0;
    color: rgb(226 232 240 / 48%);
    font-size: 0.74rem;
    line-height: 1.55;
    margin-bottom: 22px;
}

.billing-payment-transfer-layout {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.billing-payment-transfer-details {
  display: grid;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: rgb(22 22 22);
  overflow: hidden;
}

.billing-payment-transfer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.05rem;
}

.billing-payment-transfer-row + .billing-payment-transfer-row {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.billing-payment-transfer-row-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.billing-payment-transfer-row-copy small {
  display: block;
  color: rgb(255 255 255 / 82%);
  font-size: 0.78rem;
  line-height: 1.4;
}

.billing-payment-transfer-value {
  display: block;
  margin-top: 0.42rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.billing-payment-top-modern {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.billing-status-pill.is-pulsing {
  animation: billing-pulse 1.6s ease-in-out infinite;
}

@keyframes billing-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.12);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

.billing-payment-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.billing-config-selection .billing-payment-highlight {
  grid-template-columns: minmax(0, 1fr);
}

.billing-payment-hero-amount small,
.billing-mini-tag small,
.billing-payment-detail-copy .text-\[0\.68rem\] {
  color: rgba(203, 213, 225, 0.68);
}

.billing-payment-highlight-side {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.billing-inline-copy {
  flex: 0 0 auto;
}

.billing-inline-copy-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(226, 232, 240, 0.86);
  box-shadow: none;
  min-width: 0;
  min-height: 0;
}

.billing-inline-copy-plain.is-copied {
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.billing-inline-copy-plain:hover {
  color: #ffffff;
  transform: none;
  background: transparent;
}

.billing-inline-copy-plain i {
  font-size: 1rem;
}

.billing-payment-transfer-row .billing-inline-copy-plain {
  color: rgb(255 255 255 / 82%);;
}

.billing-payment-transfer-row .billing-inline-copy-plain:hover {
  color: #fff;
}

.billing-payment-amount-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.billing-payment-amount-main {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.billing-payment-amount-value {
  min-width: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #f8fafc;
  word-break: break-word;
}

.billing-payment-inline-hint {
  margin: 0.35rem 0 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.8rem;
  line-height: 1.42;
}

.billing-payment-inline-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.14);
  background: rgb(76 175 80 / 13%);
  color: #f8fafc;
}

.billing-payment-inline-notice-under-address {
  margin-top: 0.95rem;
}

.billing-payment-inline-notice-transfer {
  margin-top: 0.1rem;
}

.billing-payment-detail-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.billing-payment-timer-line {
  justify-items: left;
  gap: 0.35rem;
  padding-top: 0.35rem;
  text-align: left;
}

.billing-payment-timer-line small {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.9rem;
}

.billing-payment-timer-value {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.billing-payment-timer-line strong {
  color: #34d399;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.billing-payment-timer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  animation: billing-hourglass-sway 2.3s ease-in-out infinite;
  transform-origin: 50% 65%;
}

.billing-payment-timer-icon i {
  font-size: 1rem;
}

@keyframes billing-hourglass-sway {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.billing-payment-qr-panel {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.billing-payment-transfer-qr .billing-payment-qr-card-inline {
  min-height: 156px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 0 !important;
}

.billing-payment-transfer-qr .billing-payment-qr-image {
  width: min(100%, 150px);
  border-radius: 14px;
  border: 0;
  padding: 0;
}

.billing-payment-transfer-qr .billing-payment-qr-empty {
  width: min(100%, 150px);
  min-height: 150px;
  border-radius: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  background: rgba(248, 250, 252, 0.98);
  color: rgba(100, 116, 139, 0.86);
}

.billing-payment-transfer-qr .billing-payment-qr-center-badge {
  min-width: 42px;
  min-height: 42px;
  padding: 0.2rem;
  font-size: 0.6rem;
  background: #ffffff;
  border-radius: 12px;
}

.billing-payment-qr-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  border-radius: 9px;
}

.billing-payment-transfer-qr .billing-payment-qr-center-badge span {
  line-height: 1;
  font-size: 0.55rem;
  font-weight: 700;
}

.billing-payment-qr-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.billing-payment-qr-panel-head small {
  display: block;
  color: rgba(203, 213, 225, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.billing-payment-qr-panel-head strong {
  display: block;
  margin-top: 0.18rem;
  color: #f8fafc;
}

.billing-payment-qr-card-inline {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 232px;
}

.billing-payment-qr-image {
  width: min(100%, 210px);
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #ffffff;
  padding: 0.75rem;
  object-fit: contain;
}

.billing-payment-qr-empty {
  display: grid;
  place-items: center;
  width: min(100%, 210px);
  min-height: 210px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(203, 213, 225, 0.7);
  text-align: center;
  padding: 1rem;
}

.billing-payment-qr-center-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.billing-payment-inline-notice p {
  margin: 0;
  color: rgb(76 175 80 / 93%);
  font-size: 0.88rem;
  line-height: 1.55;
}

.billing-payment-inline-notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  margin-top: 0.05rem;
}

.billing-config-selection .billing-payment-highlight-side {
  grid-template-columns: minmax(0, 1fr);
}

.billing-config-selection .billing-mini-tag.billing-mini-tag-strong {
  width: fit-content;
  min-width: 156px;
}

.billing-payment-amount-row .billing-mini-tag.billing-mini-tag-strong {
  padding: 0.45rem 0.75rem;
  border-radius: 14px;
  justify-self: end;
}

.billing-payment-amount-row .billing-mini-tag.billing-mini-tag-strong small {
  font-size: 0.62rem;
}

.billing-payment-amount-row .billing-mini-tag.billing-mini-tag-strong strong {
  font-size: 0.98rem;
  color: #6ee7b7;
}

.billing-payment-qr-panel-head .billing-inline-copy-plain i {
  font-size: 0.95rem;
}

.billing-mini-tag-strong {
  border-color: rgba(74, 222, 128, 0.18);
  background: rgba(22, 163, 74, 0.1);
}

.billing-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.billing-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.billing-payment-badge-copy {
  min-width: 0;
}

.billing-payment-badge-copy strong {
  display: block;
}

.billing-payment-badge-copy span {
  display: block;
  margin-top: 0.14rem;
  font-size: 0.8rem;
}

.billing-payment-qr-card {
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.billing-payment-detail-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.billing-payment-detail-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.billing-payment-detail-copy .copy-value {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.42;
  color: #f8fafc;
}

@media (max-width: 720px) {
  .billing-payment-transfer-layout {
    grid-template-columns: 1fr;
  }

  .billing-payment-transfer-qr {
    justify-items: center;
  }
}

.billing-payment-warning {
  border-color: rgba(74, 222, 128, 0.14) !important;
  background: rgba(22, 163, 74, 0.08) !important;
}

.billing-step-actions-payment {
  justify-content: space-between;
}

.billing-modal-panel .button.solid,
.billing-action-card .button.solid {
  background: linear-gradient(180deg, #2f67ff, #194bfa);
  border-color: rgba(110, 153, 255, 0.4);
  color: #eff6ff;
  box-shadow: 0 14px 34px rgba(25, 75, 250, 0.22);
}

.billing-modal-panel .button.solid:hover,
.billing-action-card .button.solid:hover {
  background: linear-gradient(180deg, #4678ff, #2455ff);
}

.billing-modal-panel .button.ghost:hover,
.billing-rich-select:hover,
.billing-rich-option:hover {
  transform: translateY(-1px);
}

.billing-modal-panel {
  width: min(100%, 680px);
}

.billing-checkout-progress {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: center;
}

.billing-checkout-progress-step {
  position: relative;
  gap: 0.55rem;
  padding: 0.5rem 0.4rem;
  border: 0;
  background: transparent;
  text-align: center;
}

.billing-checkout-progress-step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 0.2rem);
  width: calc(100% - 0.4rem);
  height: 1px;
  background: rgba(148, 163, 184, 0.28);
  transform: translateY(-50%);
}

.billing-checkout-progress-step:last-child::after {
  display: none;
}

.billing-checkout-progress-step strong {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.76);
}

.billing-checkout-progress-dot {
  width: 1.55rem;
  height: 1.55rem;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.24);
  color: #cbd5e1;
}

.billing-checkout-progress-step.is-active strong {
  color: #dbe7ff;
}

.billing-checkout-progress-step.is-active .billing-checkout-progress-dot {
  background: linear-gradient(180deg, #2f67ff, #194bfa);
  border-color: rgba(110, 153, 255, 0.5);
  color: #eff6ff;
}

.billing-checkout-progress-step.is-complete strong {
  color: #dcfce7;
}

.billing-checkout-progress-step.is-complete .billing-checkout-progress-dot {
  background: linear-gradient(180deg, #34d399, #16a34a);
  border-color: rgba(110, 231, 183, 0.42);
  color: #f0fdf4;
}

.billing-checkout-selection-simple {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 1.2rem;
  gap: 0.85rem;
  border-radius: 24px;
}

.billing-config-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
  position: relative;
  isolation: isolate;
  z-index: 20;
}

.billing-activated-shell {
  display: grid;
  gap: 1.35rem;
}

.billing-activated-card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 2.6rem 1.8rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(52, 211, 153, 0.14), transparent 34%),
    rgba(15, 23, 42, 0.7);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.billing-activated-icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(52, 211, 153, 0.28), rgba(22, 163, 74, 0.14));
  border: 1px solid rgba(110, 231, 183, 0.28);
  color: #34d399;
  box-shadow: 0 18px 50px rgba(22, 163, 74, 0.16);
  font-size: 2.2rem;
}

.billing-activated-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #f8fafc;
}

.billing-activated-card .muted {
  max-width: 620px;
  margin: 0;
  color: rgba(203, 213, 225, 0.78);
  line-height: 1.7;
}

.billing-activated-meta {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.billing-activated-meta-item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.38);
}

.billing-activated-meta-item small {
  color: rgba(148, 163, 184, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.billing-activated-meta-item strong {
  color: #f8fafc;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.billing-activated-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.billing-config-selection,
.billing-config-preview {
  display: grid;
  gap: 1.15rem;
  padding: 1.4rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:#0c0c0c;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  position: relative;
}

.billing-config-selection {
  z-index: 12;
  overflow: visible;
}

.billing-config-preview {
  z-index: 2;
}

.billing-history-shell {
  position: relative;
  z-index: 1;
}

.billing-config-head,
.billing-config-preview-head {
  display: grid;
  gap: 0.5rem;
}

.billing-config-preview-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.billing-config-preview-head p {
  margin: 0;
  color: rgba(203, 213, 225, 0.72);
  line-height: 1.65;
}

.billing-config-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.billing-config-plan {
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.billing-config-plan:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
}

.billing-config-plan.is-selected {
  border-color: color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.16));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 78%),
    rgba(255, 255, 255, 0.045);
}

.billing-config-plan strong,
.billing-config-contact strong,
.billing-config-total-row strong,
.billing-config-feature p {
  font-family: "Poppins", sans-serif;
}

.billing-config-plan span,
.billing-config-contact small,
.billing-config-total-row small {
  color: rgba(203, 213, 225, 0.68);
}

.billing-config-stack {
  display: grid;
  gap: 1rem;
}

.billing-inline-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.billing-inline-flow {
  display: grid;
  gap: 1rem;
  padding: 2.4rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:#0c0c0c;
  position: relative;
  overflow: visible;
}

.billing-inline-flow-complete {
  gap: 1.2rem;
}

@media (min-width: 1081px) {
  .billing-config-preview,
  .billing-inline-flow,
  .billing-inline-flow-complete {
    position: sticky;
    top: 118px;
    align-self: start;
  }
}

.billing-inline-head {
  display: grid;
  gap: 0.35rem;
}

.billing-inline-head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.4rem);
}

.billing-inline-head .muted {
  margin: 0;
  color: rgba(203, 213, 225, 0.72);
  line-height: 1.55;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  margin-top: -5px;
}

.billing-inline-view {
  display: grid;
  margin-top: 38px;
  position: relative;
  overflow: visible;
}

.billing-inline-flow .billing-checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
  margin: 8px 0px 20px 0px;
}

.billing-inline-flow .billing-checkout-progress-step {
  display: grid;
  justify-items: stretch;
  align-items: start;
  gap: 0.45rem;
  padding: 0;
  min-width: 0;
  font-family: "Poppins", sans-serif;
}

.billing-inline-flow .billing-checkout-progress-dot {
  display: none;
}

.billing-inline-flow .billing-checkout-progress-step::after {
  position: static;
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.26);
  transform: none;
  content: "";
}

.billing-inline-flow .billing-checkout-progress-step:last-child::after {
  display: block;
}

.billing-inline-flow .billing-checkout-progress-step strong {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.42rem;
  width: 100%;
  margin: 0;
  text-align: left;
  color: rgba(148, 163, 184, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  background: transparent;
}

.billing-inline-flow .billing-checkout-progress-step strong i {
  color: currentColor;
  font-size: 0.86rem;
  flex: none;
}

.billing-inline-flow .billing-checkout-progress-step.is-complete strong {
  color: #34d399;
}

.billing-inline-flow .billing-checkout-progress-step.is-complete::after {
  background: linear-gradient(90deg, #34d399, #16a34a);
}

.billing-inline-flow .billing-checkout-progress-step.is-active strong {
  color: #ffffff;
}

.billing-inline-flow .billing-checkout-progress-step.is-active::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.18));
  background-size: 220% 100%;
  animation: billing-progress-sheen 1.8s linear infinite;
}

.billing-inline-flow .billing-checkout-progress-step:not(.is-active):not(.is-complete) strong {
  color: rgba(148, 163, 184, 0.72);
}

.billing-inline-flow .billing-checkout-progress-step:not(.is-active):not(.is-complete)::after {
  background: rgba(100, 116, 139, 0.28);
}

@keyframes billing-progress-sheen {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -20% 0;
  }
}

.billing-config-selection .billing-creating-state,
.billing-config-selection .billing-payment-shell-modern {
  min-height: 0;
}

.billing-config-selection .billing-creating-state {
  padding-block: 2.5rem;
}

.billing-config-selection .billing-payment-shell-modern {
  background: none;
    border: none;
}

.billing-payment-shell-complete {
  display: grid;
  gap: 1.4rem;
  padding-top: 0.4rem;
}

.billing-complete-center {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
}

.billing-complete-center h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2rem);
  color: #f8fafc;
}

.billing-complete-center .muted {
  max-width: 620px;
  margin: 0;
  color: rgba(203, 213, 225, 0.78);
  line-height: 1.7;
  margin-top: -10px;
}

.billing-activated-meta-inline {
  margin-top: 0;
}

.billing-complete-actions {
  justify-content: center;
}

.analytics-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.analytics-page {
  display: grid;
  gap: 1.15rem;
  padding-bottom: 2.5rem;
}

.analytics-mini-card,
.analytics-metric-card,
.analytics-chart-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
      background: #0c0c0c;
}

.analytics-header-card {
  gap: 1.15rem;
}

.analytics-hero-head {
  align-items: flex-start;
}

.analytics-toolbar-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 200px;
}

.analytics-toolbar-copy span {
  color: rgba(203, 213, 225, 0.74);
  font-size: 0.9rem;
}

.analytics-toolbar-controls {
  display: grid;
  gap: 0.85rem;
  justify-items: end;
}

.analytics-mini-card small,
.analytics-metric-card small,
.analytics-inline-stat small,
.analytics-api-highlight small {
  color: rgba(148, 163, 184, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.analytics-mini-card strong,
.analytics-metric-card strong,
.analytics-inline-stat strong,
.analytics-api-highlight strong {
  font-family: "Poppins", sans-serif;
  color: #f8fafc;
}

.analytics-mini-card strong {
  font-size: 1.15rem;
}

.analytics-mini-card span,
.analytics-metric-card span {
  color: rgba(203, 213, 225, 0.74);
  line-height: 1.5;
  font-size: 0.9rem;
}

.analytics-metric-card {
  align-content: start;
  min-height: 148px;
}

.analytics-mini-card-link {
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.analytics-mini-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.analytics-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.analytics-range-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.analytics-range-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.62);
  color: rgba(226, 232, 240, 0.82);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.analytics-range-pill:hover,
.analytics-range-pill.is-active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.analytics-range-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  justify-content: flex-end;
}

.analytics-range-form label {
  gap: 0.4rem;
  color: rgba(203, 213, 225, 0.82);
  font-size: 0.9rem;
}

.analytics-range-form input {
  min-width: 150px;
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.5);
  color: #fff;
}

.analytics-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.9rem;
}

.analytics-metric-card strong {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 1.55rem;
}

.analytics-metric-card strong span {
  color: rgba(203, 213, 225, 0.74);
  font-size: 0.9rem;
}

.analytics-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.analytics-chart-card {
  min-height: 400px;
  align-content: start;
}

.analytics-chart-card-wide {
  min-height: 0;
}

.analytics-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.analytics-card-head h2 {
  margin: 0.2rem 0 0;
  font-size: 1.2rem;
}

.analytics-card-head p {
  margin: 0.35rem 0 0;
  color: rgba(203, 213, 225, 0.74);
  line-height: 1.6;
  max-width: 58ch;
}

.analytics-bar-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22px, 1fr));
  gap: 0.5rem;
  align-items: end;
  min-height: 250px;
}

.analytics-bar-column {
  display: grid;
  gap: 0.45rem;
  align-items: end;
  justify-items: center;
  min-width: 0;
}

.analytics-bar-track {
  position: relative;
  width: 100%;
  min-height: 196px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.62);
  overflow: hidden;
}

.analytics-bar-fill {
  position: absolute;
  inset: auto 0 0 0;
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(180deg, #34d399, #0f766e);
}

.analytics-bar-fill.accent {
  background: linear-gradient(180deg, #60a5fa, #2563eb);
}

.analytics-bar-column span,
.analytics-line-labels span {
  color: rgba(148, 163, 184, 0.78);
  font-size: 0.74rem;
  text-align: center;
  line-height: 1.3;
  min-height: 2rem;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}

.analytics-donut-layout {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.analytics-donut {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  justify-self: center;
}

.analytics-donut::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.analytics-donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 1;
  height: fit-content;
  top: 24px;
}

.analytics-donut-center strong {
  font-size: 2rem;
}

.analytics-donut-center span {
  color: rgba(148, 163, 184, 0.82);
}

.analytics-legend {
  display: grid;
  gap: 0.7rem;
}

.analytics-legend-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.analytics-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #3b82f6;
}

.analytics-legend-row.tone-warning .analytics-legend-dot {
  background: #f59e0b;
}

.analytics-legend-row.tone-neutral .analytics-legend-dot {
  background: #3b82f6;
}

.analytics-legend-row.tone-success .analytics-legend-dot {
  background: #34d399;
}

.analytics-legend-row.tone-danger .analytics-legend-dot {
  background: #fb7185;
}

.analytics-legend-row strong {
  font-size: 0.96rem;
}

.analytics-legend-row span {
  color: rgba(226, 232, 240, 0.88);
}

.analytics-line-chart {
  display: grid;
  gap: 0.7rem;
}

.analytics-line-chart svg {
  width: 100%;
  height: 240px;
}

.analytics-line-axis {
  stroke: rgba(148, 163, 184, 0.24);
  stroke-width: 1;
}

.analytics-line-path {
  fill: none;
  stroke: url(#analyticsStableGlow);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analytics-line-labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0.45rem;
}

.analytics-hbar-list {
  display: grid;
  gap: 0.8rem;
}

.analytics-hbar-row {
  display: grid;
  grid-template-columns: minmax(140px, 210px) minmax(0, 1fr) minmax(2ch, auto);
  gap: 0.85rem;
  align-items: center;
}

.analytics-hbar-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.analytics-hbar-copy strong,
.analytics-hbar-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analytics-hbar-copy span {
  color: rgba(148, 163, 184, 0.78);
  font-size: 0.82rem;
}

.analytics-hbar-track {
  min-height: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  overflow: hidden;
}

.analytics-hbar-fill {
  min-height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #34d399, #60a5fa);
}

.analytics-hbar-value {
  font-size: 0.95rem;
}

.analytics-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.analytics-inline-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.analytics-inline-stat,
.analytics-api-highlight {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.analytics-api-highlight {
  margin-top: 0.4rem;
}

.analytics-table-wrap {
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.analytics-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.analytics-table th,
.analytics-table td {
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.analytics-table th {
  color: rgba(148, 163, 184, 0.82);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.analytics-table td {
  color: rgba(226, 232, 240, 0.9);
}

.analytics-empty-state {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
  padding: 1.1rem 0.1rem 0.1rem;
}

.analytics-empty-state p {
  margin: 0;
  color: rgba(203, 213, 225, 0.78);
}

.analytics-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.analytics-compact-shell {
  display: grid;
  gap: 0.95rem;
  padding-bottom: 0.65rem;
}

.analytics-page-head {
  gap: 0.3rem;
  padding-top: 0.1rem;
}

.analytics-toolbar-shell {
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.analytics-compact-header.card {
  display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  border: none;
  background: none;
  box-shadow: none;
}

.analytics-compact-heading {
  display: grid;
  gap: 0.22rem;
  align-content: start;
}

.analytics-compact-heading h1 {
  margin: 0;
  font-size: 1.32rem;
  letter-spacing: -0.04em;
}

.analytics-compact-heading p {
  margin: 0;
  color: rgba(203, 213, 225, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 72ch;
}

.analytics-compact-controls {
  display: block;
  width: 100%;
}

.analytics-compact-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.analytics-compact-toolbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.65rem;
}

.analytics-range-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.analytics-range-pill {
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(212, 212, 216, 0.88);
  font-size: 0.84rem;
  transform: none;
}

.analytics-range-pill:hover,
.analytics-range-pill.is-active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transform: none;
}

.analytics-range-form-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.analytics-inline-date-field {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0 0 0 0.05rem;
}

.analytics-inline-date-field span {
  color: rgba(161, 161, 170, 0.88);
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.analytics-range-form-compact input {
  min-width: 124px;
  min-height: 34px;
  padding: 0.48rem 0.62rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.84rem;
}

.analytics-compact-actions .button,
.analytics-range-form-compact .button {
  min-height: -webkit-fill-available;
  padding: 0.48rem 0.78rem;
  font-size: 0.84rem;
}

.analytics-kpi-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.analytics-kpi-card {
  display: grid;
  gap: 0.35rem;
  min-height: 118px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0c0c0c;
  box-shadow: none;
}

.analytics-kpi-card small {
  color: rgba(161, 161, 170, 0.84);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.analytics-kpi-card strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.analytics-kpi-card span {
  color: rgba(161, 161, 170, 0.84);
  font-size: 0.84rem;
  line-height: 1.45;
}

.analytics-kpi-card-success strong {
  color: #d1fae5;
}

.analytics-chart-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.analytics-chart-card-compact {
  min-height: 0;
  padding: 1rem;
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.07);
  background: #0c0c0c;
  box-shadow: none;
}

.analytics-card-head-compact {
  gap: 0.55rem;
}

.analytics-card-head-compact h2 {
  font-size: 1.02rem;
  letter-spacing: -0.025em;
}

.analytics-card-head-compact p {
  margin-top: 0.2rem;
  color: rgba(161, 161, 170, 0.84);
  font-size: 0.84rem;
  line-height: 1.45;
  max-width: none;
}

.analytics-bar-chart-compact-clean {
  min-height: 190px;
  gap: 0.4rem;
}

.analytics-bar-chart-compact-clean .analytics-bar-track {
  min-height: 148px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.analytics-bar-fill-compact {
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, rgb(180 43 48), rgb(127 25 29));
}

.analytics-bar-fill-compact.accent {
  background: linear-gradient(180deg, #34d399, rgba(52, 211, 153, 0.62));
}

.analytics-bar-column span,
.analytics-line-labels span {
  font-size: 0.72rem;
  color: rgba(161, 161, 170, 0.86);
  min-height: 1.5rem;
}

.analytics-line-chart-compact svg {
  height: 200px;
}

.analytics-line-path-compact {
  stroke-width: 2.5;
}

.analytics-line-axis {
  stroke: rgba(255, 255, 255, 0.08);
}

.analytics-donut-layout-compact {
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0.85rem;
}

.analytics-donut-compact {
  width: 132px;
  height: 132px;
}

.analytics-donut-compact::after {
  inset: 18px;
  background: rgba(7, 7, 9, 0.98);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.analytics-donut-center-compact strong {
  font-size: 1.5rem;
}

.analytics-donut-center-compact span {
  font-size: 0.78rem;
  color: rgba(161, 161, 170, 0.82);
}

.analytics-legend-compact {
  gap: 0.45rem;
}

.analytics-legend-compact .analytics-legend-row {
  padding: 0.55rem 0.7rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.analytics-legend-compact .analytics-legend-row strong {
  font-size: 0.84rem;
}

.analytics-legend-compact .analytics-legend-row span {
  font-size: 0.8rem;
}

.analytics-legend-compact .analytics-legend-row.tone-success {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.12);
}

.analytics-legend-compact .analytics-legend-row.tone-danger .analytics-legend-dot,
.analytics-legend-compact .analytics-legend-row.tone-warning .analytics-legend-dot,
.analytics-legend-compact .analytics-legend-row.tone-neutral .analytics-legend-dot {
  opacity: 0.9;
}

.analytics-top-exchanges-list {
  display: grid;
  gap: 0.65rem;
}

.analytics-top-exchange-row {
  display: grid;
  grid-template-columns: minmax(150px, 200px) minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.analytics-top-exchange-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.analytics-top-exchange-copy strong,
.analytics-top-exchange-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analytics-top-exchange-copy strong {
  font-size: 0.9rem;
}

.analytics-top-exchange-copy span {
  color: rgba(161, 161, 170, 0.82);
  font-size: 0.78rem;
}

.analytics-top-exchange-track {
  min-height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.analytics-top-exchange-fill {
  min-height: 10px;
  border-radius: inherit;
  background: linear-gradient(90deg, #b42b30, rgb(201 28 34));
}

.analytics-top-exchange-value {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
}

.analytics-support-grid .analytics-chart-card {
  min-height: 0;
}

.analytics-inline-stats-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.analytics-inline-stat,
.analytics-api-highlight-compact {
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.analytics-inline-stat small,
.analytics-api-highlight-compact small {
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.analytics-inline-stat strong,
.analytics-api-highlight-compact strong {
  font-size: 0.96rem;
}

.analytics-table-compact {
  min-width: 0;
}

.analytics-table-compact th,
.analytics-table-compact td {
  padding: 0.7rem 0.55rem;
}

.analytics-table-compact th {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(161, 161, 170, 0.84);
}

.analytics-empty-state-compact {
  min-height: 96px;
  padding: 0.85rem 0.2rem;
}

.analytics-empty-state-compact p {
  color: rgba(161, 161, 170, 0.86);
  font-size: 0.86rem;
}

@media (max-width: 1180px) {
  .analytics-kpi-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-compact-header.card {
    grid-template-columns: 1fr;
  }

  .analytics-compact-controls,
  .analytics-compact-actions,
  .analytics-compact-toolbar {
    justify-content: flex-start;
  }

  .analytics-compact-toolbar {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .template-library-grid {
    grid-template-columns: 1fr;
  }

  .analytics-toolbar-shell {
    padding: 0.85rem;
  }

  .dashboard-address-row {
    align-items: flex-start;
  }
}

.analytics-premium-page {
  gap: 1.35rem;
  padding-bottom: 1.2rem;
}

.analytics-premium-hero {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(52, 211, 153, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(7, 11, 19, 0.94);
  border-color: rgba(255, 255, 255, 0.06);
}

.analytics-premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent 38%);
}

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

.analytics-hero-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 62ch;
}

.analytics-hero-copy h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
}

.analytics-hero-copy .lede {
  margin: 0;
  max-width: 58ch;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.78);
  display: none;
}

.analytics-hero-summary {
  display: grid;
  gap: 0.18rem;
  padding-top: 0.35rem;
}

.analytics-hero-summary strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.analytics-hero-summary span {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.92rem;
}

.analytics-hero-controls {
  display: grid;
  gap: 1rem;
  justify-items: end;
  min-width: min(100%, 460px);
}

.analytics-header-actions {
  justify-content: flex-end;
}

.analytics-toolbar {
  width: min(100%, 540px);
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.025);
  align-items: start;
}

.analytics-toolbar-copy small {
  color: rgba(148, 163, 184, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.analytics-toolbar-copy strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  color: #ffffff;
  font-weight: 600;
}

.analytics-toolbar-copy span {
  max-width: 34ch;
}

.analytics-kpi-feature-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.analytics-kpi-featured {
  display: grid;
  gap: 0.65rem;
  min-height: 240px;
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(8, 12, 20, 0.92);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
  align-content: start;
}

.analytics-kpi-featured small {
  color: rgba(148, 163, 184, 0.74);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analytics-kpi-featured strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.analytics-kpi-featured strong span {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.analytics-kpi-featured h2 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.analytics-kpi-featured p {
  margin: 0;
  color: rgba(203, 213, 225, 0.74);
  line-height: 1.6;
  max-width: 34ch;
}

.analytics-kpi-featured-wide {
  background:
    radial-gradient(circle at top right, rgba(52, 211, 153, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(8, 12, 20, 0.94);
}

.analytics-kpi-featured.tone-success strong,
.analytics-legend-row.tone-success strong {
  color: #f8fffb;
}

.analytics-kpi-featured.tone-balance {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.012)),
    rgba(8, 12, 20, 0.94);
}

.analytics-kpi-featured.tone-processing {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008)),
    rgba(8, 12, 20, 0.94);
}

.analytics-kpi-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.analytics-metric-card-support {
  min-height: 154px;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: none;
}

.analytics-metric-card-support small {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.analytics-metric-card-support strong {
  font-size: 1.65rem;
  line-height: 1.05;
}

.analytics-metric-card-support span {
  font-size: 0.93rem;
}

.analytics-chart-grid-primary {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
}

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

.analytics-chart-card {
  padding: 1.35rem;
  border-radius: 28px;
  border-color: rgba(255, 255, 255, 0.05);
  background: #0c0c0c;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

.analytics-chart-card-emphasis {
  min-height: 420px;
}

.analytics-chart-card-claims {
  min-height: 420px;
}

.analytics-chart-card-support {
  min-height: 0;
}

.analytics-card-head .kicker {
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.analytics-card-head h2 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  letter-spacing: -0.03em;
}

.analytics-card-head p {
  font-size: 0.94rem;
  color: rgba(203, 213, 225, 0.74);
}

.analytics-bar-chart-soft .analytics-bar-track {
  min-height: 210px;
  background: rgba(255, 255, 255, 0.035);
}

.analytics-bar-chart-soft .analytics-bar-fill {
  border-radius: 18px 18px 12px 12px;
}

.analytics-line-chart-large svg {
  height: 280px;
}

.analytics-line-chart-large .analytics-line-path {
  stroke-width: 3.5;
}

.analytics-donut-layout-premium {
  grid-template-columns: minmax(160px, 190px) minmax(0, 1fr);
  gap: 1rem;
}

.analytics-donut-premium {
  width: 184px;
  height: 184px;
}

.analytics-donut-premium::after {
  inset: 22px;
}

.analytics-donut-center strong {
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}

.analytics-donut-center span {
  font-size: 0.88rem;
  margin-top: -11px;
}

.analytics-legend-premium {
  gap: 0.6rem;
}

.analytics-legend-row {
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(255, 255, 255, 0.05);
}

.analytics-legend-row.tone-success {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.14);
}

.analytics-legend-row.tone-danger {
  background: rgba(251, 113, 133, 0.05);
}

.analytics-leaderboard-card {
  min-height: 0;
}

.analytics-hbar-list-premium {
  gap: 1rem;
}

.analytics-hbar-row-premium {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0.3rem 0;
}

.analytics-hbar-copy-premium {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
}

.analytics-exchange-badge {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex: none;
}

.analytics-exchange-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.analytics-hbar-track-premium {
  min-height: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.analytics-hbar-track-premium .analytics-hbar-fill {
  min-height: 16px;
}

.analytics-hbar-value {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.analytics-split-grid-support {
  align-items: start;
}

.analytics-inline-stats-support {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.analytics-inline-stat,
.analytics-api-highlight {
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(255, 255, 255, 0.05);
}

.analytics-inline-stat small,
.analytics-api-highlight small {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.analytics-inline-stat strong,
.analytics-api-highlight strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.analytics-api-highlight-premium {
  margin-top: 0.15rem;
}

.analytics-empty-state {
  min-height: 160px;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 1.35rem;
}

.analytics-empty-state-soft {
  min-height: 240px;
}

.analytics-empty-state-compact {
  min-height: 120px;
}

.analytics-empty-state p {
  max-width: 34ch;
}

.billing-config-contact,
.billing-config-total-box {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(35 35 35 / 42%);
}

.billing-config-feature-list {
  display: grid;
  gap: 0.85rem;
}

.billing-config-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.billing-config-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.08));
  color: white;
  font-size: 0.85rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.billing-config-feature p {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.6;
}

.billing-config-total-box {
  gap: 0.8rem;
}

.billing-config-total-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.billing-config-submit {
  width: 100%;
  min-height: 58px;
  justify-content: center;
}

.billing-config-submit-inline {
  max-width: 320px;
}

.supported-exchanges-page {
  display: grid;
  gap: 1.75rem;
  padding-top: 1rem;
}

.supported-exchanges-head {
  display: grid;
  gap: 0.7rem;
  max-width: 780px;
}

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

.supported-exchanges-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.92);
}

.supported-exchanges-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
}

.supported-exchanges-card-head h2 {
  font-size: 1rem;
  margin: 0;
}

.supported-exchanges-card-head p {
  margin: 0.18rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.supported-exchanges-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-data-table {
  min-width: 920px;
}

.admin-health-table {
  min-width: 1180px;
}

.admin-claim-review-table {
  min-width: 1380px;
}

.admin-diagnostics-table {
  min-width: 1180px;
}

.readiness-admin-table {
  min-width: 1360px;
}

.admin-log-feed {
  display: grid;
  gap: 0.95rem;
}

.admin-log-row {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.admin-log-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-log-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.admin-log-fallback-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.admin-log-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.admin-log-title-row strong {
  color: #ffffff;
}

.admin-log-title-row small,
.admin-log-time {
  color: rgba(161, 161, 170, 0.84);
}

.admin-log-time {
  font-size: 0.78rem;
  margin-top: 0.12rem;
}

.admin-log-message {
  margin: 0;
  color: rgba(228, 228, 231, 0.86);
  line-height: 1.7;
}

@media (max-width: 780px) {
  .admin-user-row {
    grid-template-columns: 1fr;
  }

  .admin-log-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.billing-checkout-selector-head {
  display: grid;
  gap: 0.2rem;
  text-align: center;
}

.billing-checkout-selector-head h3 {
  font-size: 1.2rem;
}

.billing-checkout-selector-head p {
  margin: 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.88rem;
}

.billing-checkout-selector-label {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.billing-rich-select {
  min-height: 64px;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgb(35 35 35 / 42%);
}

.billing-token-logo-shell {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}

.billing-rich-select-menu {
  padding: 0.55rem;
  border-radius: 18px;
}

.billing-rich-option-list {
  gap: 0.45rem;
}

.billing-rich-option {
  padding: 0.45rem 0.4rem;
  border-radius: 16px;
}

.billing-selection-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.billing-selection-pill {
  display: grid;
  gap: 0.22rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.billing-selection-pill small {
  color: rgba(203, 213, 225, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.billing-selection-pill strong {
  color: #f8fafc;
  font-size: 0.92rem;
}

.billing-step-actions-simple {
  justify-content: center;
}

.billing-step-actions-simple .button {
  min-width: 168px;
}

.billing-modal-panel .muted[data-billing-modal-copy] {
  max-width: 32ch;
}

.billing-payment-shell-modern {
  gap: 0.9rem;
  padding: 1rem;
}

.billing-payment-top-modern h3 {
  font-size: 1.15rem;
}

.billing-payment-highlight {
  padding: 0.9rem 1rem;
  border-radius: 22px;
}

.billing-payment-badge,
.billing-payment-detail-card,
.billing-mini-tag {
  border-radius: 18px;
}

.billing-payment-qr-card {
  padding: 1rem;
  border-radius: 22px;
}

@media (max-width: 700px) {
  .billing-checkout-progress,
  .billing-payment-highlight {
    grid-template-columns: 1fr;
  }

  .billing-payment-detail-card,
  .billing-step-actions,
  .billing-step-actions-payment,
  .billing-checkout-preview-head,
  .billing-payment-top-modern {
    flex-direction: column;
    align-items: stretch;
  }

  .billing-rich-select {
    min-height: 72px;
  }

  .billing-payment-amount-row {
    align-items: start;
  }

  .billing-config-selection .billing-mini-tag.billing-mini-tag-strong {
    width: 100%;
    min-width: 0;
  }
}

.validation-table-wrap {
  overflow-x: auto;
}

.validation-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.validation-table th,
.validation-table td {
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  padding: 0.95rem 0.75rem;
  text-align: center;
  vertical-align: middle;
}

.validation-table th:first-child,
.validation-table td:first-child {
  text-align: left;
}

.validation-exchange-cell {
  min-width: 180px;
}

.validation-exchange-name {
  font-weight: 700;
}

.validation-phase {
  margin-top: 0.25rem;
  text-transform: lowercase;
}

.validation-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.78);
  font-size: 1rem;
}

.validation-state-success {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.26);
}

.validation-state-pending {
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.18);
}

.validation-state-failed {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.26);
}

.validation-state-partial {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.24);
}

.validation-lock-cell {
  min-width: 100px;
}

.validation-enabled-cell {
  min-width: 100px;
}

.validation-lock-cell,
.validation-enabled-cell {
  text-align: center;
}

.validation-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.validation-switch:disabled {
  cursor: wait;
  opacity: 0.65;
}

.validation-switch-track {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.22);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.validation-switch-thumb {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.26);
  transition: transform 160ms ease;
}

.validation-switch.is-on .validation-switch-track {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.45);
}

.validation-switch.is-on .validation-switch-thumb {
  transform: translateX(1.22rem);
}

.validation-switch:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 3px;
}

.validation-lock-modal-card {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}

.validation-lock-notice {
  margin: 0;
}

.api-docs-table-shell {
  margin-top: 1rem;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.34);
}

.api-docs-scrollable {
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.45) rgba(255, 255, 255, 0.04);
}

.api-docs-scrollable::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.api-docs-scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.api-docs-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.58), rgba(100, 116, 139, 0.58));
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.18);
}

.api-docs-scrollable::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(203, 213, 225, 0.72), rgba(148, 163, 184, 0.62));
}

.api-docs-summary-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.api-docs-summary-table th,
.api-docs-summary-table td {
  padding: 1rem 1rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.api-docs-summary-table th {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.api-docs-summary-table tbody tr:last-child td {
  border-bottom: 0;
}

.api-docs-summary-table code {
  color: #f8fafc;
  word-break: break-word;
}

.api-docs-anchor-row {
  color: #f8fafc;
  text-decoration: none;
}

.api-docs-anchor-row:hover code,
.api-docs-anchor-row:focus-visible code {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.api-docs-method-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.api-docs-method-get {
  border-color: rgba(96, 165, 250, 0.2);
  background: rgba(59, 130, 246, 0.14);
}

.api-docs-method-post {
  border-color: rgba(74, 222, 128, 0.2);
  background: rgba(34, 197, 94, 0.14);
}

.api-docs-helper-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.api-docs-helper-copy {
  display: grid;
  gap: 0.2rem;
}

.api-docs-helper-copy strong {
  color: #f8fafc;
}

.api-docs-helper-copy p {
  margin: 0;
  color: rgba(203, 213, 225, 0.7);
  font-size: 0.9rem;
}

.api-docs-anchor-target {
  scroll-margin-top: 110px;
}

.api-docs-workflow {
  display: grid;
  gap: 0.85rem;
}

.api-docs-workflow-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.api-docs-workflow-step:hover,
.api-docs-workflow-step:focus-visible {
  border-color: rgba(125, 211, 252, 0.28);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.api-docs-workflow-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.api-docs-workflow-index {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  color: #dbeafe;
  font-weight: 700;
}

.api-docs-workflow-step strong {
  display: block;
  color: #f8fafc;
  font-size: 0.98rem;
}

.api-docs-workflow-step p {
  margin: 0;
  color: rgba(203, 213, 225, 0.76);
  line-height: 1.6;
}

.api-docs-field-grid {
  display: grid;
  gap: 0.85rem;
}

.api-docs-field-row {
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.api-docs-field-row code {
  width: fit-content;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #dbeafe;
  font-size: 0.82rem;
}

.api-docs-field-row p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.65;
}

.api-docs-code-card {
  display: grid;
  gap: 0.8rem;
}

.api-docs-code-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.api-docs-code-label {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.api-docs-copy-button {
  min-height: 34px;
  padding: 0.38rem 0.9rem;
  font-size: 0.8rem;
}

.api-docs-copy-button.is-copied {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(74, 222, 128, 0.24);
  color: #dcfce7;
}

.api-docs-code-block {
  margin: 0;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.55);
  padding: 1rem;
  color: #e5e7eb;
  font-size: 0.84rem;
  line-height: 1.65;
}

.api-docs-code-block code {
  display: block;
  white-space: pre;
}

.api-docs-endpoint-card {
  scroll-margin-top: 110px;
}

.api-docs-endpoint-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.api-docs-endpoint-copy {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.api-docs-endpoint-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.api-docs-anchor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.9rem;
}

.api-docs-anchor-link:hover,
.api-docs-anchor-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.api-docs-endpoint-path {
  display: block;
  color: #f8fafc;
  word-break: break-word;
}

.api-docs-toggle-button {
  flex: none;
  min-width: 124px;
  justify-content: space-between;
}

.api-docs-toggle-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.api-docs-toggle-button[aria-expanded="true"] .api-docs-toggle-chevron {
  transform: rotate(180deg);
}

.api-docs-collapsible {
  margin-top: 1.1rem;
}

.api-docs-collapsible[hidden] {
  display: none;
}

.api-docs-collapsible-inner {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
  .public-nav-toggle,
  .sidebar-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
    max-width: 100%;
  }

  .support-strip-network .support-marquee-stack,
  .support-strip-token .support-marquee-stack {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .public-sheet-head strong,
  .sidebar-sheet-head strong {
    font-size: 0.94rem;
  }

  .public-nav-panel,
  .sidebar {
    max-height: 60vh;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 780px) {
  .toast-host {
    bottom: 32px;
    width: calc(100vw - 24px);
  }

  .toast-message {
    width: min(100%, 420px);
  }

  .api-docs-summary-table {
    min-width: 760px;
  }

  .api-docs-summary-table th,
  .api-docs-summary-table td {
    padding: 0.85rem;
  }

  .api-docs-code-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .api-docs-copy-button {
    align-self: flex-end;
  }

  .api-docs-code-block {
    padding: 0.9rem;
    font-size: 0.8rem;
  }

  .api-docs-helper-card,
  .api-docs-endpoint-shell {
    align-items: stretch;
    flex-direction: column;
  }

  .api-docs-workflow-step {
    grid-template-columns: 1fr;
  }

  .api-docs-toggle-button,
  .api-docs-copy-button {
    align-self: flex-end;
  }

  .api-docs-toggle-button {
    width: 100%;
    align-self: stretch;
  }
}

.iframe-builder-card,
.iframe-wizard-shell,
.iframe-result-card {
  position: relative;
}

.iframe-builder-stack,
.iframe-builder-section {
  display: grid;
  gap: 1rem;
}

.iframe-builder-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 24%, transparent), transparent 46%),
    rgba(255, 255, 255, 0.03);
}

.iframe-builder-summary-copy {
  display: grid;
  gap: 0.35rem;
}

.iframe-builder-summary-copy strong {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.iframe-builder-summary-copy p {
  margin: 0;
  color: rgba(203, 213, 225, 0.72);
}

.iframe-font-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.iframe-theme-grid,
.iframe-color-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.iframe-font-card {
  position: relative;
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.iframe-font-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

.iframe-font-card.is-active {
  border-color: color-mix(in srgb, var(--accent) 36%, rgba(255, 255, 255, 0.22));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 72%),
    rgba(255, 255, 255, 0.05);
}

.iframe-font-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.iframe-font-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.iframe-font-card small {
  color: rgba(203, 213, 225, 0.62);
}

.iframe-color-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.iframe-color-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.iframe-color-picker span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.iframe-color-picker input[type="color"] {
  width: 64px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.iframe-color-preview {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.iframe-color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.iframe-builder-code-box {
  display: grid;
}

.iframe-preview-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.iframe-preview-tall {
  min-height: 960px;
}

.iframe-font-inter {
  font-family: "Poppins", sans-serif;
}

.iframe-font-space-grotesk {
  font-family: "Space Grotesk", "Poppins", sans-serif;
}

.iframe-font-manrope {
  font-family: "Manrope", "Poppins", sans-serif;
}

.iframe-wizard-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 22px;
  display: grid;
  gap: 20px;
}

.iframe-wizard-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0 0;
}

.iframe-wizard-hero h1 {
  max-width: 12ch;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.iframe-wizard-hero-copy {
  display: grid;
  gap: 0.8rem;
}

.iframe-wizard-badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.iframe-wizard-layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 18px;
}

.iframe-wizard-sidebar,
.iframe-wizard-main {
  min-width: 0;
}

.iframe-stepper {
  display: grid;
  gap: 0.75rem;
}

.iframe-stepper-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: flex-start;
  width: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.iframe-stepper-item span {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.iframe-stepper-item strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
}

.iframe-stepper-item small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(203, 213, 225, 0.64);
}

.iframe-stepper-item.is-active,
.iframe-stepper-item.is-complete {
  border-color: color-mix(in srgb, var(--iframe-accent, #ffffff) 28%, rgba(255, 255, 255, 0.16));
}

.iframe-stepper-item.is-active span,
.iframe-stepper-item.is-complete span {
  background: color-mix(in srgb, var(--iframe-accent, #ffffff) 14%, rgba(255, 255, 255, 0.05));
  border-color: color-mix(in srgb, var(--iframe-accent, #ffffff) 36%, rgba(255, 255, 255, 0.14));
}

.iframe-selected-summary {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.iframe-selected-summary-card,
.iframe-summary-exchange {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 10px 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.iframe-selected-summary-card img,
.iframe-summary-exchange img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.iframe-selected-summary-card small,
.iframe-summary-exchange small {
  color: rgba(203, 213, 225, 0.68);
}

.iframe-step-panel {
  display: none;
}

.iframe-step-panel.is-active {
  display: grid;
  gap: 1.1rem;
}

.iframe-step-copy p {
  margin: 0;
}

.iframe-step-email-card,
.iframe-search-shell {
  display: grid;
  gap: 0.65rem;
}

.iframe-exchange-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.42) rgba(255, 255, 255, 0.04);
}

.iframe-exchange-grid::-webkit-scrollbar {
  width: 10px;
}

.iframe-exchange-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.iframe-exchange-grid::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.45);
  border-radius: 999px;
}

.iframe-exchange-card {
  display: grid;
  gap: 0.85rem;
 padding: 10px;
    border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.iframe-exchange-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.iframe-exchange-card.is-active {
  border-color: color-mix(in srgb, var(--iframe-accent, #ffffff) 34%, rgba(255, 255, 255, 0.16));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--iframe-accent, #ffffff) 10%, transparent), transparent 68%),
    rgba(255, 255, 255, 0.045);
}

.iframe-exchange-card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.iframe-exchange-card-head img {
 width: 36px;
    height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.iframe-exchange-card-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.iframe-exchange-card-copy strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.iframe-exchange-card-copy small {
  color: rgba(203, 213, 225, 0.68);
  overflow: hidden;
  text-overflow: ellipsis;
}

.iframe-exchange-card p,
.iframe-empty-search p {
  margin: 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.9rem;
}

.iframe-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.iframe-stage-grid {
  display: grid;
  gap: 1rem;
}

.iframe-note-card,
.iframe-address-card,
.iframe-summary-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.iframe-note-card strong,
.iframe-address-card .kicker,
.iframe-summary-card .kicker {
  color: #fff;
}

.iframe-bullet-list {
  display: grid;
  gap: 0.7rem;
}

.iframe-bullet-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: flex-start;
}

.iframe-bullet-item span {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
}

.iframe-bullet-item p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.iframe-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.iframe-address-line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
}

.iframe-address-line code {
  color: #fff;
  overflow-wrap: anywhere;
}

.iframe-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.iframe-dynamic-fields {
  display: grid;
  gap: 1rem;
}

.iframe-summary-panel {
  display: grid;
  gap: 1rem;
}

.iframe-summary-list {
  display: grid;
  gap: 0.8rem;
}

.iframe-summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.iframe-summary-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.iframe-summary-list span {
  color: rgba(203, 213, 225, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.telegram-settings-shell .section-head {
  align-items: flex-start;
}

.telegram-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.telegram-settings-left,
.telegram-settings-right {
  display: grid;
  gap: 1rem;
}

.security-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.security-timeline {
  display: grid;
  gap: 1rem;
}

.security-timeline-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
}

.security-timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
}

.security-timeline-copy {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.security-timeline-copy p,
.security-timeline-copy small {
  margin: 0.25rem 0 0;
  color: rgba(203, 213, 225, 0.72);
}

.security-2fa-modal-panel {
  overflow: hidden;
}

.security-2fa-modal-body {
  display: grid;
  gap: 1.1rem;
  padding: 1.25rem;
}

.security-2fa-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.security-2fa-qr-wrap {
  display: grid;
  justify-content: center;
}

.security-2fa-secret-card,
.security-2fa-active-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.security-secret-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.security-secret-copy-row code {
  overflow-wrap: anywhere;
}

.security-2fa-code-shell {
  display: grid;
  gap: 0.8rem;
}

.security-code-inputs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.6rem;
}

.security-code-inputs input {
  width: 100%;
  min-height: 64px;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 18px;
}

.security-2fa-active-card {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.security-2fa-active-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
  .iframe-wizard-layout,
  .iframe-final-grid,
  .telegram-settings-grid,
  .iframe-font-grid,
  .iframe-theme-grid,
  .iframe-color-grid,
  .iframe-exchange-grid {
    grid-template-columns: 1fr;
  }

  .iframe-wizard-hero,
  .iframe-builder-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .iframe-wizard-badge-stack {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .iframe-wizard-shell {
    padding: 14px;
  }

  .iframe-wizard-hero h1 {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .iframe-step-actions,
  .iframe-address-line,
  .iframe-color-row {
    align-items: stretch;
    flex-direction: column;
  }

  .iframe-step-actions .button,
  .iframe-address-line .button,
  .iframe-builder-card .actions .button {
    width: 100%;
  }

  .iframe-preview-tall {
    min-height: 780px;
  }

  .dashboard-hero-inline,
  .exchange-list-card .exchange-card-top,
  .security-actions,
  .security-2fa-modal-head,
  .security-secret-copy-row {
    align-items: stretch;
    flex-direction: column;
  }

  .security-code-inputs {
    gap: 0.4rem;
  }

  .security-code-inputs input {
    min-height: 56px;
    font-size: 1.45rem;
  }
}

.iframe-minimal-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.iframe-minimal-card {
  width: min(100%, 760px);
  display: grid;
  gap: 1.2rem;
  padding: 1.4rem;
  border-radius: 34px;
  border: 1px solid var(--iframe-border, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(180deg, var(--iframe-sheen-top, rgba(255, 255, 255, 0.04)), var(--iframe-sheen-bottom, rgba(255, 255, 255, 0.015))),
    var(--iframe-surface, rgba(0, 0, 0, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  position: relative;
  overflow: hidden;
}

.iframe-theme-shell {
  background: var(--iframe-bg, #050505) !important;
  color: var(--iframe-text, #ffffff) !important;
  --iframe-surface: rgba(6, 6, 6, 0.96);
  --iframe-surface-soft: rgba(255, 255, 255, 0.03);
  --iframe-surface-strong: rgba(0, 0, 0, 0.45);
  --iframe-border: rgba(255, 255, 255, 0.08);
  --iframe-muted: rgba(203, 213, 225, 0.68);
  --iframe-sheen-top: rgba(255, 255, 255, 0.04);
  --iframe-sheen-bottom: rgba(255, 255, 255, 0.015);
}

.iframe-theme-shell.iframe-theme-light {
  --iframe-surface: rgba(255, 255, 255, 0.94);
  --iframe-surface-soft: rgba(15, 23, 42, 0.035);
  --iframe-surface-strong: rgba(15, 23, 42, 0.04);
  --iframe-border: rgba(15, 23, 42, 0.10);
  --iframe-muted: rgba(71, 85, 105, 0.78);
  --iframe-sheen-top: rgba(255, 255, 255, 0.82);
  --iframe-sheen-bottom: rgba(15, 23, 42, 0.015);
}

.iframe-theme-shell .warning-box,
.iframe-theme-shell .iframe-stage-card,
.iframe-theme-shell .iframe-final-note,
.iframe-theme-shell .iframe-inline-address,
.iframe-theme-shell .iframe-copy-row,
.iframe-theme-shell .iframe-guide-step-row,
.iframe-theme-shell .iframe-fallback-card,
.iframe-theme-shell .iframe-mini-chip,
.iframe-theme-shell .iframe-progress-pill,
.iframe-theme-shell .toggle,
.iframe-theme-shell .iframe-exchange-tile {
  background: var(--iframe-surface-soft) !important;
  border-color: var(--iframe-border) !important;
  color: var(--iframe-text) !important;
}

.iframe-theme-shell .iframe-exchange-tile.is-active {
  background: color-mix(in srgb, var(--iframe-accent, #ffffff) 10%, var(--iframe-surface-soft)) !important;
}

.iframe-theme-shell .iframe-progress-track {
  background: color-mix(in srgb, var(--iframe-text, #ffffff) 10%, transparent);
}

.iframe-theme-shell .field-label,
.iframe-theme-shell .iframe-section-label,
.iframe-theme-shell .iframe-progress-step,
.iframe-theme-shell .iframe-progress-copy p,
.iframe-theme-shell .iframe-progress-pill small,
.iframe-theme-shell .iframe-exchange-tile small,
.iframe-theme-shell .iframe-copy-row small,
.iframe-theme-shell .muted,
.iframe-theme-shell .iframe-minimal-list-item p,
.iframe-theme-shell .iframe-option-copy p,
.iframe-theme-shell .field-help-text {
  color: var(--iframe-muted) !important;
}

.iframe-theme-shell input,
.iframe-theme-shell textarea,
.iframe-theme-shell select {
  background: var(--iframe-surface-soft);
  color: var(--iframe-text);
  border-color: var(--iframe-border);
}

.iframe-progress-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.iframe-progress-copy {
  display: grid;
  gap: 0.45rem;
}

.iframe-progress-step,
.iframe-section-label {
  color: rgba(203, 213, 225, 0.66);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.iframe-progress-copy h1 {
  font-size: clamp(1.55rem, 3.5vw, 2.45rem);
  line-height: 1.04;
  /*max-width: 14ch;*/
}

.iframe-progress-copy p {
  margin: 0;
  color: rgba(203, 213, 225, 0.68);
  max-width: 44ch;
}

.iframe-progress-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.iframe-progress-pill img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.iframe-progress-pill strong {
  display: block;
  font-family: "Poppins", sans-serif;
}

.iframe-progress-pill small {
  color: rgba(203, 213, 225, 0.65);
}

.iframe-progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.iframe-progress-track span {
  display: block;
  width: 33%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--iframe-accent, #ffffff) 72%, #ffffff), rgba(255, 255, 255, 0.85));
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.iframe-panel {
  display: none;
}

.iframe-panel.is-active {
  display: grid;
  animation: iframe-panel-rise 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.iframe-panel-stack {
  display: grid;
  gap: 1rem;
}

.iframe-exchange-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 420px;
  gap: 0.8rem;
}

.iframe-exchange-tile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.9rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.iframe-exchange-tile:hover {
  transform: translateY(-1px);
}

.iframe-exchange-tile.is-active {
  border-color: color-mix(in srgb, var(--iframe-accent, #ffffff) 34%, rgba(255, 255, 255, 0.16));
  background: rgba(255, 255, 255, 0.06);
}

.iframe-exchange-tile img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.iframe-exchange-tile strong {
  display: block;
  font-family: "Poppins", sans-serif;
}

.iframe-exchange-tile small {
  display: block;
  margin-top: 0.18rem;
  color: rgba(203, 213, 225, 0.64);
}

.iframe-stage-card,
.iframe-final-note {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
    gap: 12px;
}

.iframe-stage-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.iframe-stage-headline strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
}

.iframe-stage-headline p {
  margin: 0.35rem 0 0;
  color: var(--iframe-muted, rgba(203, 213, 225, 0.68));
  max-width: 44ch;
}

.iframe-stage-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.iframe-inline-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
}

.iframe-inline-address code {
  overflow-wrap: anywhere;
}

.iframe-inline-address small {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--iframe-muted, rgba(203, 213, 225, 0.68));
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iframe-minimal-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.iframe-minimal-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: flex-start;
}

.iframe-minimal-list-item span {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--iframe-accent, #ffffff) 60%, rgba(255, 255, 255, 0.75));
}

.iframe-minimal-list-item p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.iframe-mini-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.iframe-mini-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}

.iframe-guide-stack,
.iframe-guide-steps {
  display: grid;
  gap: 0.85rem;
}

.iframe-setup-stack,
.iframe-warning-stack {
  display: grid;
  gap: 0.8rem;
}

.iframe-setup-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.iframe-setup-card:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--iframe-accent, #ffffff) 18%, rgba(255, 255, 255, 0.12));
  background: color-mix(in srgb, var(--iframe-accent, #ffffff) 5%, rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.iframe-setup-card-index {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: color-mix(in srgb, var(--iframe-accent, #ffffff) 12%, rgba(255, 255, 255, 0.06));
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  flex: none;
  margin-top: 0.15rem;
}

.iframe-setup-card-copy {
  display: grid;
  gap: 0.3rem;
  align-self: center;
}

.iframe-setup-card-copy strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  line-height: 1.3;
}

.iframe-setup-card-copy p,
.iframe-warning-card p {
  margin: 0;
  color: var(--iframe-muted, rgba(203, 213, 225, 0.68));
  line-height: 1.55;
  font-size: 13px;
  margin-top: -7px;
}

.iframe-warning-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.iframe-warning-dot {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--iframe-accent, #ffffff) 64%, #ffffff);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--iframe-accent, #ffffff) 16%, transparent);
}

.iframe-copy-row,
.iframe-guide-step-row,
.iframe-fallback-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.iframe-fallback-card strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
}

.iframe-fallback-card p {
  margin: 0;
  color: var(--iframe-muted, rgba(203, 213, 225, 0.68));
  line-height: 1.55;
}

.iframe-copy-row,
.iframe-guide-step-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.iframe-copy-row small {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(203, 213, 225, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.iframe-copy-row strong {
  display: block;
  overflow-wrap: anywhere;
}

.iframe-copy-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
}

.iframe-copy-icon:hover {
  background: rgba(255, 255, 255, 0.08);
}

.iframe-guide-step-index {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.iframe-guide-step-row p {
  margin: 0;
}

.iframe-minimal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.iframe-loading-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 5;
}

.iframe-loading-overlay.is-visible {
  opacity: 1;
}

.iframe-loading-card {
  width: min(100%, 360px);
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 1.15rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: color-mix(in srgb, var(--iframe-surface, rgba(0, 0, 0, 0.96)) 92%, rgba(255, 255, 255, 0.05));
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.iframe-loading-card strong {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.iframe-loading-card p {
  margin: 0;
  color: var(--iframe-muted, rgba(203, 213, 225, 0.68));
}

.iframe-loading-orbit {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 3px solid color-mix(in srgb, var(--iframe-accent, #ffffff) 24%, rgba(255, 255, 255, 0.1));
  border-top-color: color-mix(in srgb, var(--iframe-accent, #ffffff) 90%, #ffffff);
  animation:
    iframe-spin 900ms linear infinite,
    iframe-orbit-pulse 1600ms ease-in-out infinite;
}

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

@keyframes iframe-orbit-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--iframe-accent, #ffffff) 0%, transparent);
  }
  50% {
    box-shadow: 0 0 0 12px color-mix(in srgb, var(--iframe-accent, #ffffff) 14%, transparent);
  }
}

@keyframes iframe-panel-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 780px) {
  .template-showcase-grid {
    column-count: 1;
  }

  .template-showcase-shell {
    padding: 24px 18px 118px;
  }

  .template-showcase-actions {
    width: calc(100% - 36px);
    bottom: 18px;
  }

  .analytics-mini-grid,
  .analytics-metric-grid,
  .analytics-chart-grid,
  .analytics-split-grid,
  .analytics-inline-stats,
  .analytics-kpi-feature-grid,
  .analytics-kpi-support-grid,
  .analytics-kpi-grid-compact,
  .analytics-chart-grid-compact,
  .billing-config-shell,
  .billing-activated-meta,
  .billing-config-plan-grid,
  .billing-selection-inline {
    grid-template-columns: 1fr;
  }

  .analytics-toolbar,
  .analytics-range-form,
  .analytics-donut-layout,
  .analytics-hbar-row {
    grid-template-columns: 1fr;
  }

  .analytics-toolbar {
    display: grid;
  }

  .analytics-toolbar-controls {
    justify-items: stretch;
  }

  .analytics-hero-controls {
    justify-items: stretch;
    min-width: 0;
    width: 100%;
  }

  .analytics-compact-header.card {
    grid-template-columns: 1fr;
  }

  .analytics-compact-controls,
  .analytics-compact-actions,
  .analytics-compact-toolbar {
    justify-content: stretch;
  }

  .analytics-compact-controls {
    align-items: stretch;
  }

  .analytics-compact-actions,
  .analytics-compact-toolbar,
  .analytics-range-form-compact {
    width: 100%;
  }

  .analytics-compact-actions .button,
  .analytics-range-form-compact .button {
    width: 100%;
  }

  .analytics-inline-date-field {
    width: 100%;
  }

  .analytics-inline-date-field input {
    width: 100%;
  }

  .analytics-range-form {
    display: grid;
  }

  .analytics-donut-layout {
    justify-items: center;
  }

  .analytics-hbar-row {
    display: grid;
  }

  .analytics-hbar-row-premium {
    grid-template-columns: 1fr;
  }

  .analytics-top-exchange-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .knowledge-shell,
  .admin-library-row {
    grid-template-columns: 1fr;
  }

  .admin-library-row {
    align-items: start;
  }

  .admin-library-thumb {
    width: 100%;
    height: 140px;
  }

  .analytics-premium-hero,
  .analytics-chart-card,
  .analytics-kpi-featured,
  .analytics-metric-card-support {
    padding: 1.1rem;
    border-radius: 24px;
  }

  .billing-config-selection,
  .billing-config-preview {
    padding: 1rem;
    border-radius: 24px;
  }

  .billing-config-total-row {
    align-items: stretch;
    flex-direction: column;
  }

  .iframe-minimal-shell {
    padding: 12px;
  }

  .iframe-minimal-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .iframe-progress-head
   {
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: repeat(1, minmax(0, 1fr));
        display: grid;
  }

  .iframe-inline-address {
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) auto;
    display: grid;
  }

  .iframe-minimal-actions {
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }

  .iframe-progress-copy h1 {
    max-width: none;
  }

  .iframe-exchange-grid-compact {
    grid-template-columns: 1fr;
  }

 

  .iframe-setup-card-index {
    margin-top: 0;
  }

  .iframe-minimal-actions .button {
    width: 100%;
  }
}
.supported-exchanges-link {
    text-decoration: none;
    color: inherit;
}

.public-scroll-target {
    scroll-margin-top: 8.5rem;
}

.blog-index-shell,
.blog-post-shell,
.exchange-landing-hero,
.exchange-landing-features,
.exchange-landing-detail-grid,
.exchange-landing-stats {
    width: min(1180px, 100%);
    margin-inline: auto;
}

.blog-post-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 8, 0.86);
    text-decoration: none;
    color: inherit;
    transition: transform 180ms ease, border-color 180ms ease;
}

.blog-post-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
}

.blog-post-card-media {
    position: relative;
    min-height: 240px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8), rgba(12, 12, 12, 0.96));
    background-size: cover;
    background-position: center;
}

.blog-post-card.is-compact .blog-post-card-media {
    min-height: 180px;
}

.blog-post-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.9) 100%);
}

.blog-post-card-copy {
    display: grid;
    gap: 0.9rem;
    padding: 1.25rem 1.25rem 1.4rem;
}

.blog-post-card-copy h2,
.blog-post-card-copy h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1.45vw, 1.55rem);
    line-height: 1.12;
}

.blog-post-card-copy p {
    margin: 0;
    color: rgba(229, 229, 229, 0.78);
    line-height: 1.7;
}

.blog-post-card-meta,
.blog-post-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    color: rgba(220, 220, 220, 0.72);
    font-size: 0.92rem;
}

.blog-post-hero {
    position: relative;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: clamp(360px, 62vh, 720px);
    border-radius: 36px;
    overflow: hidden;
    background-color: #050505;
    background-position: center top;
    background-size: cover;
}

.blog-post-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.42) 25%, rgba(0, 0, 0, 0.78) 68%, #050505 100%);
}

.blog-post-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    padding: clamp(2rem, 5vw, 4rem);
    max-width: 880px;
}

.blog-post-hero-inner h1 {
    margin: 0;
    font-size: clamp(2rem, 4.8vw, 4.8rem);
    line-height: 0.95;
}

.blog-post-body {
    width: min(860px, 100%);
    margin: 0 auto;
    color: rgba(238, 238, 238, 0.92);
    font-size: 1.05rem;
    line-height: 1.88;
}

.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #fff;
    line-height: 1.15;
}

.blog-post-body p,
.blog-post-body ul,
.blog-post-body ol,
.blog-post-body blockquote {
    margin: 0 0 1.1rem;
}

.blog-post-body ul,
.blog-post-body ol {
    padding-left: 1.3rem;
}

.blog-post-body a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
}

.blog-post-body blockquote {
    padding: 1rem 1.1rem;
    border-left: 3px solid rgba(255, 255, 255, 0.18);
    color: rgba(239, 239, 239, 0.8);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 18px 18px 0;
}

.blog-related-posts {
    width: min(1180px, 100%);
    margin: 3rem auto 0;
}

.exchange-landing-card,
.exchange-detail-card,
.exchange-stat-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.82);
    padding: 1.5rem;
}

.exchange-landing-card {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-end;
}

.exchange-home-hero {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.exchange-home-logo {
    width: 94px;
    height: 94px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.95rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.exchange-home-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.exchange-landing-brand {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.exchange-landing-logo {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.9rem;
}

.exchange-landing-brand h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.96;
}

.exchange-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.exchange-landing-stats {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exchange-stat-card strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.2rem;
    color: #fff;
}

.exchange-stat-card p,
.exchange-feature-card p {
    margin: 0;
    color: rgba(229, 229, 229, 0.76);
    line-height: 1.7;
}

.exchange-feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exchange-feature-card {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.exchange-feature-icon {
    color: #fff;
    line-height: 1;
}

.exchange-landing-detail-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exchange-summary-list {
    display: grid;
    gap: 0.9rem;
}

.exchange-summary-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.exchange-summary-list span {
    color: rgba(228, 228, 228, 0.68);
}

.exchange-summary-list strong {
    color: #fff;
    text-align: right;
}

.exchange-step-list {
    margin: 0;
    padding-left: 1.15rem;
    color: rgba(235, 235, 235, 0.82);
    line-height: 1.75;
}

.exchange-step-list li + li {
    margin-top: 0.7rem;
}

.exchange-step-list.is-compact li + li {
    margin-top: 0.45rem;
}

.quill-admin-shell {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: rgba(5, 5, 5, 0.92);
}

.quill-admin-shell .ql-toolbar.ql-snow,
.quill-admin-shell .ql-container.ql-snow {
    border: 0;
}

.quill-admin-shell .ql-toolbar.ql-snow {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.quill-admin-shell .ql-snow .ql-stroke {
    stroke: rgba(255, 255, 255, 0.82);
}

.quill-admin-shell .ql-snow .ql-fill,
.quill-admin-shell .ql-snow .ql-picker {
    color: rgba(255, 255, 255, 0.82);
}

.quill-admin-editor {
    min-height: 360px;
    color: #fff;
}

.quill-admin-editor .ql-editor {
    min-height: 360px;
    font-size: 1rem;
    line-height: 1.7;
}

.quill-admin-editor .ql-editor.ql-blank::before {
    color: rgba(255, 255, 255, 0.38);
    font-style: normal;
}

@media (max-width: 1100px) {
    .blog-post-grid,
    .exchange-landing-stats,
    .exchange-feature-grid,
    .exchange-landing-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .blog-post-grid,
    .exchange-landing-stats,
    .exchange-feature-grid,
    .exchange-landing-detail-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .exchange-landing-card,
    .exchange-landing-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-post-hero {
        width: calc(100% - 1rem);
        min-height: 320px;
        border-radius: 28px;
    }

    .exchange-home-logo {
        width: 82px;
        height: 82px;
        border-radius: 24px;
    }
}
