@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

:root {
  --font-main: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --purple-deep: #2e1065;
  --purple-primary: #7c3aed;
  --purple-light: #f5f3ff;
  --text-main: #2e1065;
  --text-muted: rgba(46, 16, 101, 0.55);
  --border-soft: rgba(124, 58, 237, 0.12);
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --shadow-purple: 0 24px 60px rgba(46, 16, 101, 0.2);
  --bg: #f5f3ff;
  --surface: #ffffff;
  --surface-muted: var(--purple-light);
  --text: var(--text-main);
  --muted: var(--text-muted);
  --primary: var(--purple-primary);
  --primary-dark: var(--purple-deep);
  --primary-soft: var(--purple-light);
  --accent: #7c3aed;
  --border: var(--border-soft);
  --danger: #db2777;
  --success: #15803d;
  --shadow: var(--shadow-purple);
  --soft-shadow: 0 10px 30px rgba(46, 16, 101, 0.09);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.16), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.5;
}

body.app-auth-loading [data-auth-sensitive],
body.app-auth-loading [data-user-name],
body.app-auth-loading [data-user-initials],
body.app-auth-loading [data-wallet-balance],
body.app-auth-loading [data-dashboard-transactions],
body.app-auth-loading [data-transaction-history] {
  visibility: hidden;
}

body.vd-app-body.app-auth-loading .vd-app-shell {
  visibility: hidden;
}

body.admin-shell-page.app-auth-loading .admin-shell {
  visibility: hidden;
}

body:not(.is-admin) [data-admin-link] {
  display: none !important;
}

/* Violet Dream system refresh */
:root {
  --vd-deep: #2e1065;
  --vd-primary: #7c3aed;
  --vd-primary-2: #a855f7;
  --vd-light: #f5f3ff;
  --vd-muted: #8b7aa8;
  --vd-line: #ede7ff;
  --vd-white: #ffffff;
  --vd-shadow: 0 24px 70px rgba(46, 16, 101, 0.14);
}

body.vd-body,
body.vd-app-body,
body.vd-auth-body,
body.vd-admin-body {
  margin: 0;
  font-family: "Outfit", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--vd-deep);
  background: #fff;
}

.vd-wrap {
  width: min(1400px, calc(100% - 56px));
  margin: 0 auto;
}

.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;
}

.vd-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--vd-deep);
  text-decoration: none;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.vd-mark {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: url("../assets/reteller-r-logo.svg") center / contain no-repeat;
  display: inline-block;
  color: transparent;
  box-shadow: none;
  font-size: 0;
  overflow: hidden;
}

.vd-mark::after {
  content: none;
  display: none;
}

.vd-mark.letter::after {
  content: none;
  display: none;
}

.vd-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--vd-line);
  border-radius: 999px;
  background: rgba(245, 243, 255, 0.82);
  color: var(--vd-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border: 0;
  border-radius: 22px;
  background: var(--vd-deep);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(46, 16, 101, 0.22);
}

.vd-btn.primary {
  background: linear-gradient(135deg, var(--vd-primary), var(--vd-primary-2));
}

.vd-btn.ghost {
  background: #fff;
  color: var(--vd-primary);
  border: 1px solid var(--vd-line);
  box-shadow: none;
}

.vd-home-nav {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.vd-home-nav nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.vd-home-nav nav a,
.vd-home-nav .login-link {
  color: var(--vd-deep);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vd-home-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.vd-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 82px;
  align-items: center;
  padding: 108px 0 116px;
}

.vd-hero h1,
.vd-section-head h2,
.vd-auth-panel h1,
.vd-app-title h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.vd-hero h1 span,
.vd-section-head h2 span,
.vd-app-title h1 span {
  color: var(--vd-primary);
}

.vd-hero p,
.vd-section-head p,
.vd-auth-panel p,
.vd-app-title p {
  color: var(--vd-muted);
  font-size: 24px;
  line-height: 1.55;
  font-weight: 500;
}

.vd-hero-copy {
  display: grid;
  gap: 34px;
}

.vd-users {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #b0a1cc;
  font-weight: 800;
}

.vd-orbs {
  display: inline-flex;
}

.vd-orbs span {
  width: 48px;
  height: 48px;
  margin-left: -10px;
  border-radius: 50%;
  background: #e9d5ff;
  border: 3px solid #fff;
}

.vd-orbs span:first-child {
  margin-left: 0;
}

.vd-orbs span:nth-child(2) { background: #c4b5fd; }
.vd-orbs span:nth-child(3) { background: #a78bfa; }

.vd-recharge {
  border: 1px solid var(--vd-line);
  border-radius: 40px;
  background: #fff;
  padding: 42px;
  box-shadow: var(--vd-shadow);
}

.vd-recharge h2,
.vd-card h3,
.vd-panel h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.vd-provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.vd-provider-grid button,
.vd-provider-card {
  min-height: 118px;
  border: 1px solid var(--vd-line);
  border-radius: 22px;
  background: #fff;
  color: #a99aba;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.vd-provider-grid button.active {
  background: var(--vd-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(124, 58, 237, 0.28);
}

.vd-provider-grid img {
  max-width: 72%;
  max-height: 48px;
  object-fit: contain;
}

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

.vd-field label {
  color: #a99aba;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vd-field input,
.vd-field select,
.field input,
.field select {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--vd-line);
  border-radius: 18px;
  background: #fbfaff;
  color: var(--vd-deep);
  padding: 0 18px;
  font: inherit;
  font-weight: 750;
  box-sizing: border-box;
}

.vd-field + .vd-field {
  margin-top: 22px;
}

.vd-section {
  padding: 104px 0;
}

.vd-section.alt {
  background: rgba(245, 243, 255, 0.62);
}

.vd-section-head {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

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

.vd-card {
  min-height: 250px;
  border-radius: 34px;
  background: #fff;
  padding: 44px;
  display: grid;
  align-content: center;
  gap: 28px;
}

.vd-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #f0e9ff;
  display: grid;
  place-items: center;
  color: var(--vd-primary);
}

.vd-card p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 20px;
  line-height: 1.5;
}

.vd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 56px;
  border-radius: 36px;
  background: rgba(245, 243, 255, 0.82);
}

.vd-stats strong {
  display: block;
  font-size: 56px;
  letter-spacing: -0.06em;
}

.vd-stats span {
  color: #b0a1cc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vd-cta {
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 42%, rgba(124, 58, 237, 0.55), transparent 30%),
    linear-gradient(135deg, #240052, #2e1065 55%, #5b21b6);
  color: #fff;
  padding: 74px;
  overflow: hidden;
}

.vd-cta h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.07em;
}

.vd-cta ul {
  list-style: none;
  padding: 0;
  margin: 34px 0;
  display: grid;
  gap: 18px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.vd-footer {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c2b8d4;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vd-app-body {
  background: var(--vd-light);
}

.vd-app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
}

.vd-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #fff;
  border-right: 1px solid var(--vd-line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  box-sizing: border-box;
  z-index: 60;
}

.vd-menu {
  display: grid;
  gap: 11px;
}

.vd-menu-label {
  margin: 18px 0 8px;
  color: #c0b4d3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.vd-menu a,
.vd-menu button {
  min-height: 52px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #7d6c99;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.vd-menu a.active,
.vd-menu a:hover,
.vd-menu button:hover {
  background: var(--vd-deep);
  color: #fff;
  box-shadow: 0 14px 30px rgba(46, 16, 101, 0.22);
}

.vd-sidebar-bottom {
  margin-top: auto;
  display: grid;
  gap: 14px;
}

.vd-elite {
  margin-top: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--vd-deep), var(--vd-primary));
  color: #fff;
  padding: 28px;
}

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

.vd-topbar {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 48px;
  background: rgba(245, 243, 255, 0.82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.vd-mobile-toggle,
.vd-square-btn {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  color: var(--vd-deep);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 42px rgba(46, 16, 101, 0.12);
}

.vd-mobile-toggle {
  display: none;
}

.vd-topbar-search {
  flex: 1;
  max-width: 560px;
  position: relative;
}

.vd-topbar-search input {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 22px;
  background: #fff;
  padding: 0 24px 0 56px;
  font: inherit;
  color: var(--vd-deep);
  box-sizing: border-box;
}

.vd-profile-pill {
  min-height: 64px;
  border-radius: 24px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px 0 10px;
  color: var(--vd-deep);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(46, 16, 101, 0.08);
}

.vd-avatar {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--vd-deep), var(--vd-primary));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.vd-content {
  padding: 48px;
}

.vd-app-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 42px;
}

.vd-app-title h1 {
  font-size: clamp(44px, 5.4vw, 72px);
}

.vd-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
}

.vd-wallet-card {
  min-height: 360px;
  border-radius: 34px;
  padding: 44px;
  background:
    radial-gradient(circle at 74% 35%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(135deg, #260052, #39107a 55%, #7c3aed);
  color: #fff;
  overflow: hidden;
}

.vd-wallet-card small,
.vd-summary-card small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.vd-wallet-card strong {
  display: block;
  margin: 48px 0 18px;
  font-size: clamp(58px, 7vw, 96px);
  letter-spacing: -0.07em;
}

.vd-wallet-actions {
  display: flex;
  gap: 16px;
  margin-top: 42px;
}

.vd-wallet-actions button {
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 20px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font: inherit;
  font-weight: 900;
}

.vd-wallet-actions button:first-child {
  background: #fff;
  color: var(--vd-deep);
}

.vd-side-metrics {
  display: grid;
  gap: 28px;
}

.vd-summary-card,
.vd-panel,
.vd-admin-card {
  border: 1px solid var(--vd-line);
  border-radius: 34px;
  background: #fff;
  padding: 34px;
}

.vd-summary-card strong {
  display: block;
  margin-top: 32px;
  font-size: 42px;
  letter-spacing: -0.06em;
}

.vd-summary-card small {
  color: #b0a1cc;
}

.vd-panel {
  margin-top: 36px;
}

.vd-quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.vd-quick-grid a {
  display: grid;
  place-items: center;
  gap: 14px;
  color: var(--vd-deep);
  text-decoration: none;
  font-weight: 900;
}

.vd-quick-grid .vd-icon {
  width: 76px;
  height: 76px;
}

.vd-activity-row,
.seller-activity-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
}

.vd-activity-row + .vd-activity-row,
.seller-activity-row + .seller-activity-row {
  border-top: 1px solid var(--vd-line);
}

.vd-activity-row > span,
.seller-activity-row > span {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: var(--vd-light);
  display: grid;
  place-items: center;
  color: var(--vd-primary);
  font-weight: 900;
}

.vd-activity-row strong,
.seller-activity-row strong {
  display: block;
  font-size: 18px;
}

.vd-activity-row small,
.seller-activity-row small {
  display: block;
  color: #a99aba;
  font-weight: 700;
  line-height: 1.45;
}

.seller-empty-state {
  padding: 28px 0;
  color: #a99aba;
  font-weight: 800;
}

.vd-auth-body {
  min-height: 100vh;
}

.vd-auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45% 55%;
}

.vd-auth-side {
  padding: 76px 72px;
  background:
    radial-gradient(circle at 76% 86%, rgba(124, 58, 237, .95), transparent 36%),
    linear-gradient(135deg, #240052, var(--vd-deep));
  color: #fff;
  display: flex;
  flex-direction: column;
}

.vd-auth-side .vd-brand {
  color: #fff;
}

.vd-auth-copy {
  margin: auto 0;
}

.vd-auth-copy h2 {
  margin: 34px 0 24px;
  font-size: clamp(52px, 5vw, 76px);
  line-height: .96;
  letter-spacing: -0.07em;
}

.vd-auth-copy p {
  color: rgba(255,255,255,.72);
  font-size: 23px;
  line-height: 1.5;
  max-width: 560px;
}

.vd-auth-right {
  display: grid;
  place-items: center;
  padding: 46px;
}

.vd-auth-panel {
  width: min(620px, 100%);
}

.vd-auth-panel h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.vd-auth-form {
  margin-top: 38px;
  display: grid;
  gap: 22px;
}

.vd-divider {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #c0b4d3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vd-divider::before,
.vd-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--vd-line);
}

.vd-auth-foot {
  text-align: center;
  color: #a99aba;
  font-weight: 800;
}

.vd-auth-foot a {
  color: var(--vd-primary);
  text-decoration: none;
  font-weight: 900;
}

.vd-service-shell {
  min-height: 100vh;
  background: var(--vd-light);
}

.vd-service-content {
  padding: 54px 48px;
}

.vd-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: start;
}

.vd-form-stack {
  display: grid;
  gap: 24px;
}

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

.vd-package-field[hidden],
.vd-field[hidden],
.amount-chips[hidden] {
  display: none !important;
}

.vd-summary {
  position: sticky;
  top: 136px;
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(135deg, #260052, #39107a 55%, #7c3aed);
  color: #fff;
  box-shadow: var(--vd-shadow);
}

.vd-summary dl {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.vd-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.vd-summary dt {
  color: rgba(255,255,255,.68);
}

.vd-admin-body {
  background: #f7f7fb;
}

.admin-vortex-shell {
  font-family: "Outfit", Inter, sans-serif;
}

.toast {
  z-index: 200;
}

.amount-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.amount-chips button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--vd-line);
  border-radius: 16px;
  background: #fff;
  color: var(--vd-primary);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.vd-provider-strip {
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--vd-line);
  text-align: left;
  vertical-align: top;
}

@media (max-width: 1050px) {
  .vd-home-nav {
    grid-template-columns: 1fr auto;
  }

  .vd-home-nav nav,
  .vd-home-actions .login-link {
    display: none;
  }

  .vd-hero,
  .vd-section-head,
  .vd-dashboard-grid,
  .vd-service-layout {
    grid-template-columns: 1fr;
  }

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

  .vd-app-shell {
    grid-template-columns: 1fr;
  }

  .vd-sidebar {
    position: fixed;
    width: 292px;
    transform: translateX(-110%);
    transition: transform .22s ease;
    box-shadow: var(--vd-shadow);
  }

  body.seller-menu-open .vd-sidebar {
    transform: translateX(0);
  }

  .vd-mobile-toggle {
    display: grid;
    flex-shrink: 0;
  }

  .vd-topbar {
    padding: 24px;
    min-height: auto;
    align-items: center;
  }

  .vd-topbar-search {
    display: none;
  }

  .vd-content,
  .vd-service-content {
    padding: 42px 24px;
  }

  .vd-auth-shell {
    grid-template-columns: 1fr;
  }

  .vd-auth-side {
    display: none;
  }

  .vd-auth-right {
    min-height: 100vh;
    padding: 28px;
  }
}

@media (max-width: 680px) {
  .vd-wrap {
    width: calc(100% - 48px);
  }

  .vd-home-nav {
    min-height: 92px;
  }

  .vd-brand {
    font-size: 26px;
  }

  .vd-mark {
    width: 52px;
    height: 52px;
  }

  .vd-btn {
    width: 100%;
  }

  .vd-home-actions .vd-btn {
    width: auto;
    min-height: 58px;
    padding: 0 24px;
  }

  .vd-hero {
    padding: 62px 0 76px;
    gap: 46px;
  }

  .vd-hero h1,
  .vd-section-head h2 {
    font-size: 68px;
    line-height: .9;
  }

  .vd-hero p,
  .vd-section-head p,
  .vd-auth-panel p,
  .vd-app-title p {
    font-size: 22px;
  }

  .vd-recharge,
  .vd-card,
  .vd-panel,
  .vd-summary-card {
    border-radius: 30px;
    padding: 28px;
  }

  .vd-provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vd-cards,
  .vd-stats,
  .vd-field-row {
    grid-template-columns: 1fr;
  }

  .vd-section {
    padding: 72px 0;
  }

  .vd-stats {
    padding: 34px;
  }

  .vd-cta {
    padding: 42px 32px;
    border-radius: 32px;
  }

  .vd-footer {
    min-height: 112px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
  }

  .vd-topbar {
    gap: 14px;
  }

  .vd-square-btn,
  .vd-mobile-toggle {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .vd-profile-pill {
    flex: 1;
    min-width: 0;
    padding-right: 14px;
  }

  .vd-profile-pill b {
    display: none;
  }

  .vd-app-title {
    display: grid;
    margin-bottom: 34px;
  }

  .vd-app-title h1 {
    font-size: 56px;
  }

  .vd-wallet-card {
    padding: 34px;
    min-height: 430px;
  }

  .vd-wallet-card strong {
    font-size: 74px;
  }

  .vd-wallet-actions {
    display: grid;
  }

  .vd-quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 14px;
  }

  .vd-activity-row,
  .seller-activity-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .vd-activity-row b,
  .seller-activity-row b {
    grid-column: 2;
  }

  .vd-auth-panel h1 {
    font-size: 38px;
  }
}

body.home-page {
  background:
    radial-gradient(circle at 88% 10%, rgba(127, 63, 242, 0.06), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #fbf9ff 100%);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 18px;
}

.brand-logo {
  display: block;
  width: 174px;
  height: auto;
}

.site-footer .brand-logo {
  width: 188px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links .nav-cta {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  padding: 9px 15px;
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.22);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: #ffffff;
}

.nav-button {
  border: 0;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  cursor: pointer;
  padding: 9px 15px;
  font-weight: 900;
}

.nav-button:hover {
  background: var(--primary);
  color: #ffffff;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 20px 64px;
}

.home-page-main {
  max-width: 1240px;
  padding-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 36px;
  align-items: center;
  min-height: 410px;
}

.home-hero {
  position: relative;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.86fr);
  min-height: 620px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 255, 0.84)),
    radial-gradient(circle at 88% 12%, rgba(236, 72, 153, 0.18), transparent 22rem);
  box-shadow: 0 34px 90px rgba(76, 29, 149, 0.13);
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
}

.home-hero::before {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(124, 58, 237, 0.13);
  border-radius: 26px;
  content: "";
}

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

.home-hero .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
}

.home-hero .hero-copy p {
  max-width: 620px;
  font-size: 20px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 590px;
  margin-top: 30px;
}

.hero-metrics span {
  display: grid;
  gap: 2px;
  min-height: 82px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  color: var(--muted);
  font-weight: 800;
}

.hero-metrics strong {
  color: var(--primary-dark);
  font-size: 28px;
  line-height: 1;
}

.hero-checkout {
  z-index: 1;
  align-self: center;
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(76, 29, 149, 0.18);
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.home-strip article {
  display: grid;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.home-strip span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.home-strip strong {
  color: var(--text);
  font-size: 20px;
}

.home-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 610px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.25);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #be185d);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--primary);
  box-shadow: var(--soft-shadow);
}

.service-panel,
.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.service-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.service-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--primary), #a66bff);
  content: "";
}

.service-panel h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-chip {
  white-space: nowrap;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
}

.panel-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.service-tabs,
.amount-chips {
  display: grid;
  gap: 8px;
}

.service-tabs {
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fbf9ff;
  padding: 6px;
}

.service-tab,
.amount-chips button {
  min-height: 38px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.service-tab.active,
.service-tab:hover {
  background: linear-gradient(135deg, var(--primary), #a66bff);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(38, 0, 93, 0.18);
}

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

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

.field[hidden] {
  display: none;
}

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

.field-row .field-wide {
  grid-column: 1 / -1;
}

.package-field[hidden],
[data-data-bundle-field][hidden] {
  display: none;
}

[data-amount-field][hidden],
[data-amount-chips][hidden] {
  display: none;
}

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

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fbf9ff;
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(127, 63, 242, 0.13);
}

.field-error {
  min-height: 14px;
  color: var(--danger);
  font-size: 12px;
}

.amount-chips {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amount-chips button {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: var(--soft-shadow);
}

.amount-chips button:hover {
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}

.transaction-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f5efff);
  padding: 13px 15px;
}

.transaction-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.transaction-summary strong {
  color: var(--primary-dark);
  font-size: 18px;
}

.services-section {
  margin-top: 48px;
  scroll-margin-top: 92px;
}

.services-heading {
  margin-bottom: 18px;
}

.services-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

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

.card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card {
  display: grid;
  grid-column: span 2;
  gap: 18px;
  min-height: 190px;
  padding: 20px;
  isolation: isolate;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -46px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 68%);
  content: "";
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-copy {
  display: grid;
  align-content: start;
  gap: 8px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-tag {
  width: fit-content;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 900;
}

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

.status-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.provider-strip,
.service-icons,
.quick-providers,
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider-strip {
  margin-top: 20px;
}

.service-icons {
  min-height: 48px;
  margin-bottom: 0;
}

.service-icons-wide {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.provider-badge {
  display: inline-flex;
  min-width: 72px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: var(--soft-shadow);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.provider-badge.logo-chip {
  min-width: 58px;
  min-height: 46px;
  border-radius: 14px;
  padding: 8px;
}

.provider-badge:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: var(--shadow);
}

.provider-badge img {
  display: block;
  max-width: 82px;
  max-height: 34px;
  object-fit: contain;
}

.provider-badge.logo-chip img {
  max-width: 60px;
  max-height: 28px;
}

.provider-badge.wide-logo {
  min-width: 154px;
  width: 154px;
}

.provider-badge.wide-logo img {
  max-width: 128px;
  max-height: 34px;
}

.provider-track .provider-badge.wide-logo {
  flex: 0 0 168px;
}

.provider-track .provider-badge.wide-logo img {
  max-width: 142px;
}

.provider-badge.text-logo {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
}

.provider-section,
.quick-providers {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  margin-top: 28px;
  padding: 22px;
}

.provider-marquee {
  overflow: hidden;
  border-radius: 16px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.provider-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: provider-slide 30s linear infinite;
}

.provider-marquee:hover .provider-track {
  animation-play-state: paused;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
}

.provider-grid .provider-badge,
.quick-providers .provider-badge {
  min-height: 58px;
}

@keyframes provider-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.pill {
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--primary-dark);
  box-shadow: var(--soft-shadow);
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 700;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(360px, calc(100vw - 36px));
  border-radius: 14px;
  background: var(--primary-dark);
  color: #ffffff;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--danger);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: var(--soft-shadow);
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 800;
}

.highlight {
  color: var(--primary);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 20px;
}

.footer-brand p {
  max-width: 380px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-group,
.footer-meta {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-group h3,
.footer-meta h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 14px;
}

.footer-group a {
  color: var(--muted);
  font-weight: 700;
}

.footer-group a:hover {
  color: var(--primary);
}

.footer-meta {
  color: var(--muted);
  font-size: 14px;
}

.auth-page {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 38px;
  align-items: center;
}

.auth-copy h1 {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.auth-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.auth-panel {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.form-note a {
  color: var(--primary);
  font-weight: 800;
}

.dashboard-page {
  display: grid;
  gap: 28px;
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f2ff 55%, #efe7ff 100%);
  box-shadow: var(--soft-shadow);
  padding: 28px;
}

.dashboard-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.dashboard-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

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

.metric-card,
.activity-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.metric-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.metric-card span,
.metric-card small {
  color: var(--muted);
}

.metric-card strong {
  color: var(--primary-dark);
  font-size: 30px;
  line-height: 1;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.activity-panel {
  padding: 22px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 24px;
}

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

.transaction-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fdfcff;
  padding: 14px;
}

.transaction-row span {
  font-weight: 800;
}

.transaction-row strong {
  color: var(--primary-dark);
}

.transaction-row small {
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 6px 10px;
  font-weight: 800;
}

body.dashboard-shell-page {
  background: #fbf9ff;
}

.seller-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
}

.seller-mobile-header,
.seller-drawer-backdrop {
  display: none;
}

.seller-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  align-content: start;
  gap: 28px;
  height: 100vh;
  border-right: 1px solid var(--border);
  background: #ffffff;
  padding: 24px 18px;
}

.seller-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seller-drawer-toggle,
.seller-drawer-close {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.seller-drawer-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #26005d;
  box-shadow: 0 14px 26px rgba(38, 0, 93, 0.22);
}

.seller-drawer-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.seller-drawer-toggle span + span {
  margin-top: 5px;
}

.seller-drawer-close {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f3edff;
  color: #26005d;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.seller-brand .brand-logo {
  width: 154px;
}

.seller-menu {
  display: grid;
  gap: 8px;
}

.seller-menu-label {
  margin: 0 0 8px 16px;
  color: #c2b4d3;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seller-menu a,
.seller-menu button {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #85749d;
  cursor: pointer;
  padding: 0 16px;
  text-align: left;
  font-weight: 900;
}

.seller-menu a span,
.seller-menu button span {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f3edff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 1000;
}

.seller-menu a:hover,
.seller-menu button:hover,
.seller-menu a.active {
  background: #26005d;
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(38, 0, 93, 0.18);
}

.seller-menu a:hover span,
.seller-menu button:hover span,
.seller-menu a.active span {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.seller-upgrade {
  display: grid;
  gap: 12px;
  margin-top: auto;
  border-radius: 18px;
  background: linear-gradient(145deg, #26005d, var(--primary));
  color: #ffffff;
  padding: 18px;
  box-shadow: 0 22px 44px rgba(124, 58, 237, 0.24);
}

.seller-upgrade span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 1000;
}

.seller-upgrade h2,
.seller-upgrade p {
  margin: 0;
}

.seller-upgrade p {
  color: #ddccff;
  font-size: 14px;
}

.seller-main {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 26px clamp(20px, 3vw, 38px) 42px;
}

.seller-topbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 66px auto;
  gap: 18px;
  align-items: center;
}

.seller-search {
  position: relative;
  display: block;
}

.seller-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.seller-search input {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--soft-shadow);
  outline: none;
  padding: 0 24px;
  font-weight: 900;
}

.seller-search input::placeholder {
  color: #a998bd;
}

.seller-icon-button,
.seller-profile {
  min-height: 62px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.seller-icon-button {
  color: var(--primary);
  cursor: pointer;
  font-weight: 1000;
}

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

.seller-profile > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #26005d;
  color: #ffffff;
  font-weight: 1000;
}

.seller-profile strong,
.seller-profile small {
  display: block;
  white-space: nowrap;
}

.seller-profile small {
  color: #a797bd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seller-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.seller-welcome h1 {
  max-width: 760px;
  margin: 0;
  color: #26005d;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

.seller-welcome h1 span {
  color: var(--primary);
}

.seller-welcome p {
  margin: 12px 0 0;
  color: #9585ae;
  font-size: 17px;
  font-weight: 800;
}

.seller-wallet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.seller-balance-card,
.seller-side-metrics article,
.seller-services-panel,
.seller-chart-card,
.seller-activity-card,
.seller-support-card {
  border: 1px solid #f0e8fb;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(76, 29, 149, 0.06);
}

.seller-balance-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.12), transparent 9rem),
    linear-gradient(145deg, #26005d 0%, #3a087d 48%, var(--primary) 100%);
  color: #ffffff;
  padding: clamp(22px, 3vw, 34px);
}

.seller-balance-card > span,
.seller-side-metrics span {
  color: #c9b8e4;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seller-balance-card strong {
  display: block;
  margin: 28px 0 8px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.seller-balance-card small {
  color: #d9cbf6;
  font-weight: 900;
}

.seller-balance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.seller-balance-actions button {
  min-height: 42px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  padding: 0 18px;
  font-weight: 1000;
}

.seller-balance-actions button:first-child {
  background: #ffffff;
  color: #26005d;
}

.seller-side-metrics {
  display: grid;
  gap: 18px;
}

.seller-side-metrics article {
  display: grid;
  align-content: center;
  min-height: 121px;
  gap: 8px;
  padding: 22px;
}

.seller-side-metrics strong {
  color: #26005d;
  font-size: 28px;
  line-height: 1;
}

.seller-side-metrics small {
  color: #9585ae;
  font-weight: 800;
}

.seller-services-panel {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 3vw, 30px);
}

.seller-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.seller-section-head h2,
.seller-section-head p {
  margin: 0;
}

.seller-section-head h2 {
  color: #26005d;
  font-size: 24px;
}

.seller-section-head p {
  color: #a091b7;
  font-weight: 800;
}

.seller-section-head a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seller-quick-services {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.seller-quick-services a {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #26005d;
  font-weight: 1000;
}

.seller-quick-services span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #f4effc;
  color: var(--primary);
  font-weight: 1000;
}

.seller-quick-services a:first-child span {
  background: linear-gradient(135deg, var(--primary), #b57bff);
  color: #ffffff;
}

.seller-vend-panel {
  box-shadow: none;
}

.service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: start;
}

.service-page-copy {
  display: grid;
  gap: 14px;
  border: 1px solid #f0e8fb;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(76, 29, 149, 0.06);
  padding: clamp(22px, 3vw, 34px);
}

.service-page-copy h1,
.service-page-copy p {
  margin: 0;
}

.service-page-copy h1 {
  color: #26005d;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.service-page-copy h1 span {
  color: var(--primary);
}

.service-page-copy p {
  max-width: 520px;
  color: #9585ae;
  font-weight: 800;
}

.service-page-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.service-page-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #26005d;
  font-weight: 900;
}

.service-page-list li::before {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3edff;
  color: var(--primary);
  content: "✓";
  font-size: 12px;
  font-weight: 1000;
}

.service-fixed-field {
  display: none;
}

.seller-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
  gap: 18px;
}

.seller-chart-card,
.seller-activity-card,
.seller-support-card {
  padding: clamp(20px, 3vw, 30px);
}

.seller-segments {
  display: inline-flex;
  gap: 6px;
  border-radius: 16px;
  background: #f4effc;
  padding: 6px;
}

.seller-segments span {
  min-width: 42px;
  border-radius: 12px;
  color: #a091b7;
  padding: 8px 10px;
  text-align: center;
  font-weight: 1000;
}

.seller-segments span:first-child {
  background: #ffffff;
  color: #26005d;
  box-shadow: var(--soft-shadow);
}

.seller-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  min-height: 200px;
  margin-top: 24px;
  border-bottom: 1px solid #eee5fb;
  padding: 0 12px;
}

.seller-bars span {
  min-height: 36px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #c9a9ff, var(--primary));
}

.seller-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  padding: 16px 12px 0;
}

.seller-days span {
  color: #b6a7c8;
  text-align: center;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seller-activity-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.seller-activity-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.seller-activity-row > span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f4effc;
  color: var(--primary);
  font-weight: 1000;
}

.seller-activity-row strong,
.seller-activity-row small {
  display: block;
}

.seller-activity-row strong {
  color: #26005d;
  font-size: 17px;
}

.seller-activity-row small {
  color: #a091b7;
  font-weight: 800;
}

.seller-activity-row b {
  color: #26005d;
  white-space: nowrap;
}

.seller-history-card {
  border-radius: 40px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}

.seller-empty-state {
  color: var(--muted);
  font-weight: 800;
  padding: 20px 0;
}

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

.seller-support-card h2,
.seller-support-card p {
  margin: 0;
}

.seller-support-card p {
  color: var(--muted);
  font-weight: 800;
}

body.admin-shell-page {
  background: #faf8ff;
}

body.admin-shell-page .admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

body.admin-shell-page .admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 34px;
  height: 100vh;
  border-right: 1px solid var(--border);
  background: #ffffff;
  padding: 26px 16px 18px;
  box-shadow: none;
  z-index: 8;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #26005d;
  font-size: 25px;
  font-weight: 1000;
  padding: 0 10px 20px;
  border-bottom: 1px solid #f1eafb;
}

.admin-logo-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #7928ca, #360071);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(75, 20, 158, 0.24);
}

.admin-menu {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.admin-menu a,
.admin-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  border-radius: 0 16px 16px 0;
  color: #75648d;
  padding: 10px 14px 10px 28px;
  font-weight: 900;
  cursor: pointer;
}

.admin-menu a:hover,
.admin-menu a.active,
.admin-menu summary:hover {
  background: #f4effc;
  color: #26005d;
}

.admin-menu a.active {
  border-left: 3px solid var(--primary);
}

.admin-menu-label {
  margin: 18px 14px 8px;
  color: #b6a7c9;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-menu details {
  display: grid;
  gap: 4px;
}

.admin-menu details a {
  margin-left: 12px;
  min-height: 36px;
  font-size: 14px;
}

body.admin-shell-page .admin-workspace {
  display: grid;
  align-content: start;
  gap: 34px;
  min-width: 0;
  padding: 0 36px 42px;
}

.admin-topbar,
.admin-department {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) auto;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  border-bottom: 1px solid #eee6fb;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.admin-topbar h1 {
  margin: 4px 0 0;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-department {
  display: none;
}

.admin-department.active {
  display: grid;
  gap: 24px;
}

.admin-note {
  max-width: 780px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.7;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, 190px) minmax(150px, 190px) minmax(130px, 160px);
  gap: 14px;
  margin: 0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #eee6fb;
  padding: 18px;
}

.admin-toolbar.two-column {
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 220px);
}

.admin-search,
.admin-filter {
  gap: 7px;
}

.admin-search span,
.admin-filter span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-add-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  align-items: end;
  border: 0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #eee6fb;
  padding: 24px;
  margin-bottom: 18px;
}

.admin-add-form-panel {
  margin-top: 18px;
  margin-bottom: 0;
}

.admin-add-form .button {
  min-height: 52px;
  white-space: nowrap;
}

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

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: var(--text);
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #f0eafa;
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: #a291b9;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small {
  color: var(--muted);
  margin-top: 3px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f4effc;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: capitalize;
}

.status-pill.response,
.status-pill.webhook {
  background: #edf7f0;
  color: #16834a;
}

.status-pill.successful {
  background: #edf7f0;
  color: #16834a;
}

.status-pill.automatic {
  background: #edf7f0;
  color: #16834a;
}

.status-pill.manual {
  background: #f4effc;
  color: #5b21b6;
}

.status-pill.pending {
  background: #fff8e8;
  color: #a15c00;
}

.status-pill.failed,
.status-pill.error {
  background: #fff0f2;
  color: #be123c;
}

.log-payload {
  max-width: 420px;
  max-height: 180px;
  overflow: auto;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.admin-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a291b9;
  font-weight: 900;
}

.admin-breadcrumb span::after {
  content: "›";
  margin-left: 12px;
  color: #c8bbd9;
}

.admin-breadcrumb b {
  color: #26005d;
}

.admin-global-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 14px;
  background: #f6f2fb;
  padding: 0 18px;
  color: #a291b9;
}

.admin-global-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #26005d;
  font-weight: 800;
}

.admin-icon-button,
.admin-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid #e8ddfb;
  border-radius: 14px;
  background: #ffffff;
  color: #684c84;
  padding: 0 18px;
  font-weight: 1000;
  cursor: pointer;
}

.admin-icon-button {
  width: 48px;
  padding: 0;
  color: var(--primary);
}

.admin-action-button.primary,
.admin-action-button.dark {
  border-color: #26005d;
  background: #26005d;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(38, 0, 93, 0.16);
}

.admin-profile-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1eafb;
  padding: 18px 12px 0;
}

.admin-profile-mini span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7928ca, #26005d);
  color: #ffffff;
  font-weight: 1000;
}

.admin-profile-mini strong,
.admin-profile-mini small {
  display: block;
}

.admin-profile-mini small {
  color: #a291b9;
  font-weight: 800;
}

.admin-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.admin-page-head h1 {
  margin: 0;
  color: #26005d;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.admin-page-head p {
  margin: 10px 0 0;
  color: #8a78a1;
  font-size: 18px;
  font-weight: 800;
}

.admin-page-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.admin-stat-card {
  min-height: 136px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #eee6fb;
  padding: 26px 28px;
}

.admin-stat-card span {
  display: block;
  color: #a291b9;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-stat-card strong {
  display: block;
  margin-top: 12px;
  color: #26005d;
  font-size: 34px;
  line-height: 1;
}

.admin-stat-card small {
  display: block;
  margin-top: 8px;
  color: #75648d;
  font-weight: 800;
}

.admin-data-card {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #eee6fb;
}

.admin-log-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #eee6fb;
  padding: 18px;
}

.admin-segment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 14px;
  background: #f6f2fb;
  padding: 6px;
}

.admin-segment button {
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #8a78a1;
  padding: 0 16px;
  font-weight: 1000;
  cursor: pointer;
}

.admin-segment button.active {
  background: #ffffff;
  color: #26005d;
  box-shadow: 0 6px 16px rgba(38, 0, 93, 0.1);
}

.admin-log-table td:nth-child(4) strong {
  color: #26005d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.api-log-card .log-payload {
  max-width: 380px;
  min-height: 150px;
  border: 1px solid #eee6fb;
  border-radius: 16px;
  background: #fbf9ff;
  padding: 18px;
  color: #2f1562;
}

.table-input {
  width: 100%;
  min-width: 96px;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
  padding: 7px 9px;
}

.table-input.mini {
  width: 58px;
  min-width: 58px;
  min-height: 28px;
  margin: 2px 3px;
  padding: 4px 6px;
}

.table-input:disabled {
  background: var(--surface-muted);
  color: var(--muted);
}

.manual-price {
  display: inline-flex;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--primary-dark);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 900;
}

.switch-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

/* Vortex-inspired public homepage */
.home-page {
  background: #ffffff;
}

.home-page .site-header {
  position: sticky;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.92);
}

.home-page .nav {
  max-width: 1240px;
  padding: 28px 28px 18px;
}

.home-page .site-header {
  position: relative;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.home-page .brand-logo {
  width: 178px;
}

.home-page .nav-links {
  gap: 34px;
  color: #25005d;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .nav-links .nav-cta {
  min-width: 190px;
  justify-content: center;
  border-radius: 22px;
  padding: 16px 26px;
  background: linear-gradient(135deg, #7f3ff2, #8b3cf1);
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(127, 63, 242, 0.3);
}

.home-page .button-primary {
  background: linear-gradient(135deg, #25005d, #7f3ff2);
  box-shadow: 0 18px 36px rgba(36, 0, 90, 0.22);
}

.home-page .button-primary:hover {
  background: linear-gradient(135deg, #1d0048, #6f31dd);
}

.home-page-main {
  max-width: 1240px;
  padding: 72px 28px 64px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.82fr);
  gap: clamp(34px, 6vw, 72px);
  min-height: 620px;
  align-items: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.home-hero::before {
  display: none;
}

.home-hero .eyebrow {
  display: inline-flex;
  border: 1px solid #eadff8;
  border-radius: 999px;
  background: #fbf9ff;
  color: var(--primary);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero .hero-copy h1,
.vortex-section-heading h2,
.vortex-cta h2 {
  font-family: var(--font-main);
  font-weight: 1000;
  letter-spacing: 0;
}

.home-hero .hero-copy h1 {
  max-width: 760px;
  margin: 54px 0 28px;
  color: #25005d;
  font-size: clamp(58px, 6.6vw, 104px);
  line-height: 0.92;
  text-transform: uppercase;
}

.home-hero .hero-copy h1 span,
.vortex-section-heading h2 span {
  color: var(--primary);
}

.home-hero .hero-copy p {
  max-width: 570px;
  margin-bottom: 36px;
  color: #9383aa;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.55;
}

.home-page .button {
  min-height: 72px;
  border-radius: 24px;
  padding: 0 34px;
  font-size: 20px;
  font-weight: 900;
}

.hero-dark-button {
  background: linear-gradient(135deg, #25005d, #300071);
  box-shadow: 0 18px 36px rgba(36, 0, 90, 0.22);
}

.hero-dark-button:hover {
  background: linear-gradient(135deg, #1d0048, #3b008c);
}

.active-users {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 22px;
  color: #a092bc;
  font-weight: 900;
}

.active-users span {
  width: 36px;
  height: 36px;
  margin-right: -10px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #e7d8ff;
}

.active-users span:nth-child(2) {
  background: #c9a9ff;
}

.active-users span:nth-child(3) {
  margin-right: 16px;
  background: #a876f4;
}

.hero-checkout {
  min-height: 500px;
  border: 0;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: none;
  padding: clamp(26px, 3.5vw, 44px);
}

.home-page .vortex-card,
.home-page .utility-card,
.home-page .vortex-stats,
.home-page .provider-section {
  border: 0;
}

.hero-checkout::before {
  display: none;
}

.hero-checkout .panel-heading {
  align-items: center;
  margin-bottom: 22px;
}

.hero-checkout .panel-kicker,
.hero-checkout .panel-subtitle {
  display: none;
}

.hero-checkout h2 {
  color: #26045a;
  font-size: clamp(22px, 2.2vw, 28px);
}

.hero-checkout .wallet-chip {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: transparent;
}

.hero-checkout .wallet-chip::after {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.hero-checkout .service-tabs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  overflow-x: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 4px;
  scrollbar-width: thin;
}

.hero-checkout .service-tab {
  min-height: 70px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
  color: #a598bb;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-checkout .service-tab.active,
.hero-checkout .service-tab:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 20px 32px rgba(124, 58, 237, 0.28);
}

.hero-checkout .field label {
  color: #aa9abb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-checkout .field input,
.hero-checkout .field select {
  min-height: 50px;
  border: 0;
  border-radius: 18px;
  background: #f4effc;
  color: #26045a;
  font-size: 16px;
  font-weight: 900;
}

.hero-checkout .transaction-summary {
  border: 0;
  border-radius: 18px;
  background: #f4effc;
}

.hero-checkout .button-primary {
  min-height: 56px;
  border-radius: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vortex-feature-section,
.services-section,
.provider-section {
  margin-top: 54px;
}

.vortex-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.38fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.vortex-section-heading h2 {
  max-width: 640px;
  margin: 0;
  color: #25005d;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
}

.vortex-section-heading p {
  margin: 0 0 10px;
  color: #9383aa;
  font-size: 17px;
  line-height: 1.5;
}

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

.vortex-card,
.utility-card {
  min-height: 210px;
  border: 1px solid #f1eafb;
  border-radius: 32px;
  background: #ffffff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 24px 70px rgba(38, 0, 93, 0.045);
}

.vortex-card:hover,
.utility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(38, 0, 93, 0.12);
}

.vortex-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f1eaff;
  color: var(--primary);
  font-size: 16px;
  font-weight: 1000;
}

.vortex-card h3,
.utility-card h3 {
  margin: 36px 0 12px;
  color: #25005d;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.04;
}

.vortex-card p,
.utility-card p {
  max-width: 380px;
  margin: 0;
  color: #9585ae;
  font-size: 16px;
  line-height: 1.55;
}

.vortex-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  border: 1px solid #f1eafb;
  border-radius: 32px;
  background: #fbf9ff;
  padding: clamp(22px, 3vw, 34px);
}

.vortex-stats span {
  display: grid;
  gap: 8px;
  color: #aa9abb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vortex-stats strong {
  color: #25005d;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.utilities-heading {
  margin-bottom: 54px;
}

.utility-grid {
  grid-auto-rows: 1fr;
}

.provider-section {
  border: 1px solid #f1eafb;
  border-radius: 32px;
  background: #ffffff;
  padding: 24px;
}

.vortex-cta {
  position: relative;
  overflow: hidden;
  margin-top: 62px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 78%, rgba(127, 63, 242, 0.45), transparent 18rem),
    linear-gradient(135deg, #25005d 0%, #35106b 55%, #67459b 100%);
  color: #ffffff;
  padding: clamp(30px, 5vw, 56px);
}

.vortex-cta::after {
  position: absolute;
  right: -8%;
  top: -18%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 34% 66% 42% 58%;
  background: rgba(255, 255, 255, 0.09);
  content: "";
  transform: rotate(-18deg);
}

.vortex-cta > div {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.vortex-cta .eyebrow {
  color: #c9a9ff;
}

.vortex-cta h2 {
  margin: 18px 0 24px;
  color: #ffffff;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
}

.vortex-cta ul {
  display: grid;
  gap: 16px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.vortex-cta li {
  position: relative;
  padding-left: 36px;
  color: #e7d8ff;
  font-size: 17px;
  font-weight: 800;
}

.vortex-cta li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  content: "";
  font-size: 14px;
}

.vortex-cta .button-secondary,
.vortex-cta .cta-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  box-shadow: none;
}

@media (max-width: 860px) {
  .seller-shell {
    grid-template-columns: 1fr;
    padding-top: 82px;
  }

  .seller-mobile-header {
    position: fixed;
    z-index: 40;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 82px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    padding: 14px 18px;
    backdrop-filter: blur(18px);
  }

  .seller-mobile-header .seller-brand .brand-logo {
    width: 146px;
  }

  .seller-drawer-toggle,
  .seller-drawer-close {
    display: inline-flex;
  }

  .seller-drawer-backdrop {
    position: fixed;
    z-index: 45;
    inset: 0;
    display: block;
    background: rgba(20, 0, 48, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body.seller-menu-open .seller-drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .seller-sidebar {
    position: fixed;
    z-index: 50;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(82vw, 310px);
    height: 100vh;
    overflow-y: auto;
    gap: 26px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
    padding: 22px 18px;
    transform: translateX(-105%);
    transition: transform 220ms ease;
    box-shadow: 22px 0 55px rgba(38, 0, 93, 0.18);
  }

  body.seller-menu-open .seller-sidebar {
    transform: translateX(0);
  }

  .seller-brand .brand-logo {
    width: 138px;
  }

  .seller-menu {
    display: grid;
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .seller-menu-label {
    display: block;
  }

  .seller-upgrade {
    display: none;
  }

  .seller-menu a,
  .seller-menu button {
    width: 100%;
    min-height: 44px;
    border: 0;
    background: transparent;
    padding: 0 16px;
  }

  .seller-menu a span,
  .seller-menu button span {
    display: inline-flex;
  }

  .seller-main {
    gap: 16px;
    padding: 16px;
  }

  .seller-topbar {
    grid-template-columns: 1fr auto;
  }

  .seller-search {
    grid-column: 1 / -1;
  }

  .seller-profile {
    justify-self: stretch;
  }

  .seller-welcome {
    align-items: flex-start;
    flex-direction: column;
  }

  .seller-wallet-grid,
  .seller-bottom-grid,
  .service-page-hero {
    grid-template-columns: 1fr;
  }

  .seller-balance-card {
    min-height: 230px;
  }

  .seller-quick-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
    padding-bottom: 0;
  }

  .seller-vend-panel .service-tabs {
    grid-template-columns: repeat(5, 84px);
    overflow-x: auto;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .admin-workspace {
    padding: 18px;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar-actions {
    width: 100%;
  }

  .admin-topbar-actions .button,
  .admin-topbar-actions .nav-button {
    flex: 1;
    justify-content: center;
  }

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

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 24px;
    padding: 28px 18px;
  }

  .home-hero::before {
    inset: 10px;
    border-radius: 18px;
  }

  .hero-metrics,
  .home-strip {
    grid-template-columns: 1fr;
  }

  .hero-checkout {
    border-radius: 20px;
  }

  .home-page .nav {
    padding: 18px 20px;
  }

  .home-page-main {
    padding: 10px 18px 48px;
  }

  .home-hero {
    gap: 24px;
    padding: 24px 0 14px;
  }

  .home-hero .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(34px, 10.5vw, 50px);
  }

  .hero-checkout {
    min-height: auto;
    padding: 18px;
  }

  .hero-checkout .service-tabs {
    grid-template-columns: repeat(5, 88px);
    margin-right: -18px;
    padding-right: 18px;
  }

  .hero-checkout .service-tab {
    min-height: 66px;
  }

  .vortex-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .vortex-feature-grid,
  .utility-grid,
  .vortex-stats {
    grid-template-columns: 1fr;
  }

  .vortex-card,
  .utility-card {
    min-height: 170px;
  }

  .vortex-card h3,
  .utility-card h3 {
    margin-top: 28px;
  }

  .vortex-stats {
    margin-top: 34px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

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

  .dashboard-grid,
  .dashboard-layout,
  .provider-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .home-page .site-header {
    position: relative;
  }

  .home-page .nav {
    align-items: center;
    padding: 36px 26px 16px;
  }

  .home-page .brand-logo {
    width: 164px;
  }

  .home-page .menu-toggle {
    display: none;
  }

  .home-page .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .nav-links a {
    border-bottom: 0;
    padding: 0;
  }

  .home-page .nav-links a:not(.nav-cta) {
    display: none;
  }

  .home-page .nav-links .nav-cta {
    min-width: 0;
    border-radius: 22px;
    padding: 13px 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .home-page-main {
    padding: 88px 26px 56px;
  }

  .home-hero {
    min-height: auto;
    gap: 56px;
  }

  .home-hero .eyebrow {
    padding: 9px 22px;
    font-size: 13px;
  }

  .home-hero .hero-copy h1 {
    max-width: 100%;
    margin: 52px 0 30px;
    font-size: clamp(58px, 16vw, 82px);
    line-height: 0.91;
  }

  .home-hero .hero-copy p {
    max-width: 100%;
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1.55;
  }

  .home-page .hero-actions {
    display: block;
  }

  .home-page .hero-actions .button-secondary {
    display: none;
  }

  .home-page .button {
    min-height: 72px;
    width: auto;
    border-radius: 24px;
    padding: 0 34px;
    font-size: 22px;
  }

  .active-users {
    display: none;
  }

  .seller-shell {
    padding-top: 76px;
  }

  .seller-mobile-header {
    height: 76px;
    padding: 12px 14px;
  }

  .seller-mobile-header .seller-brand .brand-logo {
    width: 136px;
  }

  .seller-sidebar {
    padding: 20px 16px;
  }

  .seller-main {
    padding: 14px;
  }

  .seller-topbar {
    grid-template-columns: 1fr;
  }

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

  .seller-profile {
    width: 100%;
  }

  .seller-welcome h1 {
    font-size: clamp(28px, 9.5vw, 40px);
  }

  .seller-welcome p {
    font-size: 15px;
  }

  .seller-welcome .button {
    width: 100%;
  }

  .seller-balance-card,
  .seller-services-panel,
  .seller-chart-card,
  .seller-activity-card,
  .seller-support-card {
    border-radius: 24px;
  }

  .seller-balance-card strong {
    font-size: clamp(34px, 11vw, 48px);
  }

  .seller-balance-actions {
    display: grid;
    margin-top: 24px;
  }

  .seller-side-metrics {
    gap: 14px;
  }

  .seller-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .seller-bars {
    gap: 10px;
    min-height: 190px;
  }

  .seller-days {
    gap: 10px;
  }

  .seller-activity-row {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .seller-activity-row > span {
    width: 46px;
    height: 46px;
  }

  .seller-activity-row b {
    grid-column: 2;
  }

  .seller-support-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .nav-cta {
    border-radius: 0;
    box-shadow: none;
  }

  .nav-button {
    width: 100%;
    border-radius: 0;
    background: #ffffff;
    text-align: left;
    padding: 14px 16px;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .home-page .nav-links {
    letter-spacing: 0;
    text-transform: none;
  }

  .home-page .nav-links .nav-cta {
    border-radius: 0 0 16px 16px;
  }

  .page {
    padding-top: 28px;
  }

  .home-page-main {
    padding-inline: 16px;
  }

  .home-hero .hero-actions,
  .vortex-cta .hero-actions {
    display: grid;
  }

  .home-page .button {
    width: 100%;
  }

  .hero-checkout {
    padding: 20px;
  }

  .hero-checkout .service-tabs {
    grid-template-columns: repeat(5, 78px);
    margin-right: -18px;
    padding-right: 18px;
  }

  .hero-checkout .service-tab {
    min-height: 62px;
    border-radius: 14px;
    font-size: 12px;
  }

  .hero-checkout .amount-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vortex-feature-section,
  .services-section,
  .provider-section {
    margin-top: 48px;
  }

  .vortex-section-heading h2 {
    font-size: clamp(30px, 9.5vw, 42px);
  }

  .vortex-section-heading p,
  .vortex-card p,
  .utility-card p {
    font-size: 15px;
  }

  .vortex-card,
  .utility-card {
    border-radius: 18px;
    padding: 20px;
  }

  .provider-section {
    border-radius: 24px;
    padding: 20px;
  }

  .vortex-cta {
    border-radius: 26px;
    padding: 32px 24px;
  }

  .vortex-cta h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

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

  .services-heading {
    display: grid;
    align-items: start;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .service-top {
    display: grid;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-add-form {
    grid-template-columns: 1fr;
  }

  .admin-add-form .button {
    width: 100%;
  }

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

  .provider-track {
    animation-duration: 38s;
  }

  .dashboard-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .transaction-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  .home-page .nav {
    align-items: center;
  }

  .home-page .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .nav-links a {
    border-bottom: 0;
    padding: 0;
  }

  .home-page .nav-links .nav-cta {
    border-radius: 22px;
    padding: 14px 22px;
  }
}

@media (max-width: 980px) {
  body.admin-shell-page .admin-shell {
    grid-template-columns: 1fr;
  }

  body.admin-shell-page .admin-sidebar {
    position: static;
    height: auto;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid #eee6fb;
  }

  .admin-menu {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .admin-menu-label,
  .admin-profile-mini {
    display: none;
  }

  .admin-menu a {
    flex: 0 0 auto;
    border-left: 0;
    border-radius: 14px;
    padding: 10px 16px;
  }

  body.admin-shell-page .admin-workspace {
    padding: 0 18px 28px;
  }

  .admin-topbar {
    position: static;
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .admin-global-search {
    grid-column: 1 / -1;
  }

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

  .admin-log-controls,
  .admin-page-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .admin-sidebar-brand {
    font-size: 22px;
  }

  .admin-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .admin-page-head h1 {
    font-size: 34px;
  }

  .admin-page-head p {
    font-size: 15px;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-segment {
    width: 100%;
    overflow-x: auto;
  }

  .admin-action-button {
    width: 100%;
  }

  .admin-page-actions {
    width: 100%;
  }

  .admin-stat-card {
    min-height: 112px;
    padding: 22px;
  }

  .admin-table th,
  .admin-table td {
    padding: 14px 16px;
  }
}

/* Vortex reference home rebuild */
.vortex-home {
  --vortex-primary: #7c3aed;
  --vortex-deep: #2e1065;
  --vortex-light: #f5f3ff;
  --vortex-glow: #c4b5fd;
  --vortex-border: rgba(124, 58, 237, 0.12);
  --vortex-muted: color-mix(in srgb, var(--vortex-deep) 52%, #ffffff);
  overflow-x: hidden;
  background: #ffffff;
  color: var(--vortex-deep);
  font-family: var(--font-main);
}

.vortex-home .site-header,
.vortex-home .home-page-main,
.vortex-home .site-footer {
  display: none;
}

.vortex-nav-wrap {
  background: #ffffff;
}

.vortex-nav,
.vortex-main,
.vortex-footer {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.vortex-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 48px;
}

.vortex-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vortex-deep);
  text-transform: uppercase;
}

.vortex-brand strong {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.vortex-brand-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--vortex-primary);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--vortex-primary) 24%, transparent);
}

.vortex-brand-mark span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
}

.vortex-nav-center,
.vortex-nav-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vortex-nav-center a,
.vortex-login-link,
.vortex-join-link {
  color: var(--vortex-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vortex-nav-center a:hover,
.vortex-login-link:hover {
  color: var(--vortex-primary);
}

.vortex-login-link {
  padding: 10px 16px;
  border-radius: 999px;
}

.vortex-login-link:hover {
  background: var(--vortex-light);
}

.vortex-join-link {
  border-radius: 999px;
  background: var(--vortex-primary);
  color: #ffffff;
  padding: 12px 24px;
  box-shadow: 0 20px 36px color-mix(in srgb, var(--vortex-primary) 26%, transparent);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.vortex-join-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 44px color-mix(in srgb, var(--vortex-primary) 32%, transparent);
}

.vortex-main {
  padding: 48px 48px 48px;
}

.vortex-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
  align-items: center;
  gap: 64px;
  padding: 40px 0 96px;
}

.vortex-hero-copy {
  display: grid;
  justify-items: start;
  gap: 30px;
}

.vortex-pill {
  display: inline-flex;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 10%, transparent);
  border-radius: 999px;
  background: var(--vortex-light);
  color: var(--vortex-primary);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vortex-hero h1,
.vortex-section-head h2,
.vortex-dark-cta h2 {
  margin: 0;
  color: var(--vortex-deep);
  font-weight: 900;
  letter-spacing: -0.065em;
}

.vortex-hero h1 {
  max-width: 720px;
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.9;
  text-transform: uppercase;
}

.vortex-hero h1 span,
.vortex-section-head h2 span {
  color: var(--vortex-primary);
}

.vortex-hero p {
  max-width: 470px;
  margin: 0;
  color: color-mix(in srgb, var(--vortex-deep) 58%, transparent);
  font-size: 21px;
  line-height: 1.65;
}

.vortex-hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.vortex-primary-button,
.vortex-dark-cta a:first-child,
.vortex-dark-cta a:last-child {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 0 38px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.vortex-primary-button {
  gap: 12px;
  background: var(--vortex-deep);
  color: #ffffff;
}

.vortex-primary-button:hover {
  color: #ffffff;
  box-shadow: 0 24px 54px color-mix(in srgb, var(--vortex-primary) 28%, transparent);
}

.vortex-primary-button span {
  font-size: 26px;
  line-height: 1;
}

.vortex-users {
  display: flex;
  align-items: center;
}

.vortex-users span {
  width: 48px;
  height: 48px;
  margin-right: -12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #eadcff;
}

.vortex-users span:nth-child(2) {
  background: #cdb0ff;
}

.vortex-users span:nth-child(3) {
  margin-right: 20px;
  background: #a66af3;
}

.vortex-users strong {
  color: color-mix(in srgb, var(--vortex-deep) 38%, transparent);
  font-size: 15px;
  font-weight: 900;
}

.vortex-recharge-card {
  position: relative;
  display: grid;
  gap: 24px;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 10%, transparent);
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 30px 90px color-mix(in srgb, var(--vortex-deep) 6%, transparent);
  padding: 32px;
}

.vortex-recharge-card::before {
  position: absolute;
  z-index: -1;
  inset: -16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--vortex-primary) 10%, transparent);
  filter: blur(48px);
  content: "";
}

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

.vortex-card-top h2 {
  margin: 0;
  color: var(--vortex-deep);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.vortex-card-top > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--vortex-light);
}

.vortex-card-top > span::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vortex-primary);
  content: "";
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.vortex-hidden-control {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vortex-provider-area,
.vortex-field {
  display: grid;
  gap: 8px;
}

.vortex-provider-area label,
.vortex-field label {
  color: color-mix(in srgb, var(--vortex-deep) 42%, transparent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.vortex-provider-grid button {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid var(--vortex-light);
  border-radius: 20px;
  background: #ffffff;
  color: color-mix(in srgb, var(--vortex-deep) 42%, transparent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.vortex-provider-grid button.logo-choice {
  background: #ffffff;
  padding: 16px;
}

.vortex-provider-grid button.logo-choice img {
  display: block;
  width: 100%;
  max-width: 86px;
  max-height: 54px;
  object-fit: contain;
  filter: saturate(1.05);
}

.vortex-provider-grid button:hover,
.vortex-provider-grid button.active {
  border-color: var(--vortex-primary);
  background: #ffffff;
  color: var(--vortex-primary);
  box-shadow: 0 18px 32px color-mix(in srgb, var(--vortex-primary) 28%, transparent);
  transform: translateY(-2px);
}

.vortex-field input,
.vortex-money-input {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: var(--vortex-light);
  color: var(--vortex-deep);
  font-size: 19px;
  font-weight: 900;
  outline: 0;
}

.vortex-field input {
  padding: 0 24px;
}

.vortex-money-input {
  position: relative;
  display: flex;
  align-items: center;
}

.vortex-money-input > span {
  position: absolute;
  left: 24px;
  color: var(--vortex-primary);
  font-size: 20px;
  font-weight: 900;
}

.vortex-money-input input {
  background: transparent;
  padding-left: 54px;
}

.vortex-amount-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.vortex-amount-chips button {
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--vortex-light);
  color: var(--vortex-deep);
  font-weight: 900;
  cursor: pointer;
}

.vortex-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 18px;
  background: var(--vortex-light);
  padding: 14px 18px;
}

.vortex-summary span {
  color: color-mix(in srgb, var(--vortex-deep) 46%, transparent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vortex-summary strong {
  color: var(--vortex-deep);
  font-size: 15px;
}

.vortex-purchase-button {
  min-height: 64px;
  border: 0;
  border-radius: 20px;
  background: var(--vortex-primary);
  color: #ffffff;
  box-shadow: 0 20px 36px color-mix(in srgb, var(--vortex-primary) 30%, transparent);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.vortex-services {
  margin-inline: calc(50% - 50vw);
  background: color-mix(in srgb, var(--vortex-light) 50%, #ffffff);
  padding: 96px max(48px, calc((100vw - 1280px) / 2 + 48px));
}

.vortex-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.vortex-section-head h2 {
  max-width: 620px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.96;
  text-transform: uppercase;
}

.vortex-section-head p {
  max-width: 390px;
  margin: 0 0 8px;
  color: color-mix(in srgb, var(--vortex-deep) 52%, transparent);
  font-size: 18px;
  line-height: 1.5;
}

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

.vortex-service-card,
.vortex-feature-grid article {
  display: block;
  min-height: 242px;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 5%, transparent);
  border-radius: 28px;
  background: #ffffff;
  padding: 32px;
  color: var(--vortex-deep);
  transition: transform 160ms ease, border-color 160ms ease;
}

.vortex-service-card:hover,
.vortex-feature-grid article:hover {
  border-color: color-mix(in srgb, var(--vortex-primary) 22%, transparent);
  transform: translateY(-4px);
}

.vortex-service-card > span,
.vortex-feature-grid article > span {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: color-mix(in srgb, var(--vortex-primary) 10%, transparent);
  color: var(--vortex-primary);
  font-size: 22px;
  font-weight: 900;
}

.vortex-service-card:hover > span,
.vortex-feature-grid article:hover > span {
  background: var(--vortex-primary);
  color: #ffffff;
}

.vortex-service-card h3,
.vortex-feature-grid h3 {
  margin: 48px 0 8px;
  color: var(--vortex-deep);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.vortex-service-card p,
.vortex-feature-grid p {
  margin: 0;
  color: color-mix(in srgb, var(--vortex-deep) 52%, transparent);
  font-size: 17px;
  line-height: 1.6;
}

.vortex-features {
  padding: 96px 0 48px;
}

.vortex-feature-grid article {
  min-height: 270px;
  padding: 40px;
}

.vortex-stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0 48px;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 5%, transparent);
  border-radius: 32px;
  background: color-mix(in srgb, var(--vortex-light) 62%, #ffffff);
  padding: 48px 56px;
}

.vortex-stats-band div {
  display: grid;
  gap: 10px;
}

.vortex-stats-band strong {
  color: var(--vortex-deep);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.vortex-stats-band span {
  color: color-mix(in srgb, var(--vortex-deep) 38%, transparent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vortex-dark-cta {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.14), transparent 250px),
    radial-gradient(circle at 86% 78%, color-mix(in srgb, var(--vortex-primary) 42%, transparent), transparent 260px),
    linear-gradient(135deg, var(--vortex-deep), #35106b 54%, #69489c);
  padding: clamp(48px, 7vw, 96px);
}

.vortex-dark-cta::after {
  position: absolute;
  top: -22%;
  right: -8%;
  width: min(46%, 520px);
  aspect-ratio: 1;
  border-radius: 34% 66% 42% 58%;
  background: rgba(255, 255, 255, 0.09);
  content: "";
  transform: rotate(-18deg);
}

.vortex-dark-cta > div {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.vortex-dark-cta span {
  display: block;
  margin-bottom: 26px;
  color: var(--vortex-glow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.vortex-dark-cta h2 {
  color: #ffffff;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
}

.vortex-dark-cta ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 44px;
  padding: 0;
  list-style: none;
}

.vortex-dark-cta li {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  padding-left: 38px;
}

.vortex-dark-cta li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--vortex-primary);
  color: #ffffff;
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.vortex-dark-cta div div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vortex-dark-cta a:first-child {
  background: var(--vortex-primary);
  color: #ffffff;
}

.vortex-dark-cta a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.vortex-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--vortex-light);
  padding: 48px;
}

.vortex-brand.small .vortex-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.vortex-brand.small .vortex-brand-mark span {
  display: none;
}

.vortex-brand.small strong {
  font-size: 19px;
}

.vortex-footer p {
  margin: 0;
  color: color-mix(in srgb, var(--vortex-deep) 30%, transparent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .vortex-nav {
    padding-inline: 28px;
  }

  .vortex-nav-center {
    display: none;
  }

  .vortex-main {
    padding: 36px 28px 40px;
  }

  .vortex-hero {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-bottom: 72px;
  }

  .vortex-recharge-card {
    max-width: 620px;
  }

  .vortex-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .vortex-stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .vortex-nav {
    padding: 32px 24px 20px;
  }

  .vortex-brand strong {
    font-size: 25px;
  }

  .vortex-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .vortex-nav-actions {
    gap: 0;
  }

  .vortex-login-link {
    display: none;
  }

  .vortex-join-link {
    padding: 15px 20px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .vortex-main {
    padding: 62px 24px 36px;
  }

  .vortex-hero {
    gap: 56px;
    padding: 0 0 72px;
  }

  .vortex-hero-copy {
    gap: 28px;
  }

  .vortex-pill {
    padding: 9px 16px;
    font-size: 12px;
  }

  .vortex-hero h1 {
    font-size: clamp(58px, 17vw, 82px);
    line-height: 0.91;
  }

  .vortex-hero p {
    font-size: 25px;
    line-height: 1.55;
  }

  .vortex-hero-actions {
    display: grid;
    width: 100%;
    gap: 28px;
  }

  .vortex-primary-button {
    width: 100%;
    min-height: 74px;
    border-radius: 22px;
    font-size: 22px;
  }

  .vortex-users strong {
    font-size: 17px;
  }

  .vortex-recharge-card {
    border-radius: 34px;
    padding: 28px;
  }

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

  .vortex-provider-grid button {
    min-height: 98px;
    aspect-ratio: auto;
  }

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

  .vortex-services {
    padding: 72px 24px;
  }

  .vortex-section-head {
    margin-bottom: 36px;
  }

  .vortex-section-head h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .vortex-section-head p {
    font-size: 19px;
  }

  .vortex-service-grid,
  .vortex-feature-grid,
  .vortex-stats-band {
    grid-template-columns: 1fr;
  }

  .vortex-service-card,
  .vortex-feature-grid article {
    min-height: 238px;
    border-radius: 28px;
    padding: 32px;
  }

  .vortex-features {
    padding-top: 72px;
  }

  .vortex-stats-band {
    border-radius: 28px;
    padding: 32px;
  }

  .vortex-dark-cta {
    border-radius: 30px;
    padding: 44px 32px;
  }

  .vortex-dark-cta h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .vortex-dark-cta div div,
  .vortex-dark-cta a:first-child,
  .vortex-dark-cta a:last-child {
    width: 100%;
  }

  .vortex-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 44px 24px;
  }

  .vortex-footer p {
    text-align: left;
  }
}

/* Vortex reference dashboard rebuild */
.vortex-dashboard-page {
  --vortex-primary: #7c3aed;
  --vortex-deep: #2e1065;
  --vortex-light: #f5f3ff;
  --vortex-glow: #c4b5fd;
  --vortex-border: rgba(124, 58, 237, 0.12);
  background: color-mix(in srgb, var(--vortex-light) 42%, #ffffff);
  color: var(--vortex-deep);
  font-family: var(--font-main);
}

.vortex-dashboard-shell {
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  min-height: 100vh;
  background: color-mix(in srgb, var(--vortex-light) 42%, #ffffff);
}

.vortex-dashboard-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  border-right: 1px solid color-mix(in srgb, var(--vortex-primary) 10%, transparent);
  background: #ffffff;
  padding: 28px 22px 22px;
}

.vortex-dashboard-sidebar .seller-sidebar-head {
  margin-bottom: 46px;
}

.vortex-dashboard-menu {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
}

.vortex-menu-group {
  display: grid;
  gap: 14px;
}

.vortex-menu-main {
  align-content: start;
}

.vortex-menu-utility {
  margin-top: auto;
  border-top: 1px solid color-mix(in srgb, var(--vortex-primary) 10%, transparent);
  padding-top: 28px;
}

.vortex-dashboard-menu .seller-menu-label {
  margin: 0 0 4px;
  padding: 0 14px;
  color: color-mix(in srgb, var(--vortex-deep) 30%, transparent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vortex-dashboard-menu a,
.vortex-dashboard-menu button {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: color-mix(in srgb, var(--vortex-deep) 60%, transparent);
  padding: 0 16px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.vortex-dashboard-menu a span,
.vortex-dashboard-menu button span {
  display: inline-grid;
  width: 20px;
  place-items: center;
  color: inherit;
  font-size: 20px;
  background: transparent;
}

.vortex-dashboard-menu a:hover,
.vortex-dashboard-menu button:hover {
  background: var(--vortex-light);
  color: var(--vortex-deep);
}

.vortex-dashboard-menu a.active {
  background: var(--vortex-deep);
  color: #ffffff;
  box-shadow: 0 16px 30px color-mix(in srgb, var(--vortex-deep) 20%, transparent);
}

.vortex-dashboard-menu a.active i {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--vortex-glow);
}

.vortex-dashboard-upgrade {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--vortex-deep), var(--vortex-primary));
  color: #ffffff;
  padding: 22px;
}

.vortex-dashboard-upgrade::after {
  position: absolute;
  top: -30px;
  right: -28px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--vortex-glow) 30%, transparent);
  content: "";
  filter: blur(22px);
}

.vortex-dashboard-upgrade > span,
.vortex-dashboard-upgrade h2,
.vortex-dashboard-upgrade p,
.vortex-dashboard-upgrade a {
  position: relative;
  z-index: 1;
}

.vortex-dashboard-upgrade > span {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 20px;
}

.vortex-dashboard-upgrade h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
}

.vortex-dashboard-upgrade p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.vortex-dashboard-upgrade a {
  display: inline-flex;
  margin-top: 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--vortex-deep);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vortex-dashboard-main {
  min-width: 0;
  padding: 0 40px 48px;
}

.vortex-dashboard-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 -40px;
  padding: 24px 40px;
  background: color-mix(in srgb, var(--vortex-light) 82%, transparent);
  backdrop-filter: blur(20px);
}

.vortex-topbar-menu {
  display: none;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 5%, transparent);
  border-radius: 18px;
  background: #ffffff;
}

.vortex-topbar-menu span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--vortex-deep);
}

.vortex-topbar-menu span + span {
  margin-top: 4px;
}

.vortex-dashboard-search {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.vortex-dashboard-search span {
  position: absolute;
  top: 50%;
  left: 18px;
  color: color-mix(in srgb, var(--vortex-deep) 30%, transparent);
  transform: translateY(-50%);
}

.vortex-dashboard-search input {
  width: 100%;
  height: 56px;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 5%, transparent);
  border-radius: 20px;
  background: #ffffff;
  color: var(--vortex-deep);
  padding: 0 18px 0 48px;
  font-size: 16px;
  font-weight: 700;
  outline: 0;
}

.vortex-dashboard-search input::placeholder {
  color: color-mix(in srgb, var(--vortex-deep) 42%, transparent);
}

.vortex-dashboard-bell {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 5%, transparent);
  border-radius: 20px;
  background: #ffffff;
  color: color-mix(in srgb, var(--vortex-deep) 70%, transparent);
  font-size: 22px;
}

.vortex-dashboard-bell svg,
.vortex-balance-head button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vortex-dashboard-bell::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--vortex-primary);
  content: "";
}

.vortex-dashboard-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 5%, transparent);
  border-radius: 20px;
  background: #ffffff;
  padding: 8px 14px 8px 8px;
}

.vortex-dashboard-profile > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vortex-primary), var(--vortex-deep));
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.vortex-dashboard-profile strong,
.vortex-dashboard-profile small {
  display: block;
}

.vortex-dashboard-profile strong {
  max-width: 160px;
  overflow: hidden;
  color: var(--vortex-deep);
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vortex-dashboard-profile small {
  color: color-mix(in srgb, var(--vortex-deep) 38%, transparent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vortex-dashboard-welcome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.vortex-dashboard-welcome h1 {
  max-width: 840px;
  margin: 0;
  color: var(--vortex-deep);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.vortex-dashboard-welcome h1 span {
  color: var(--vortex-primary);
}

.vortex-dashboard-welcome p {
  margin: 12px 0 0;
  color: color-mix(in srgb, var(--vortex-deep) 48%, transparent);
  font-size: 18px;
}

.vortex-fund-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--vortex-deep);
  color: #ffffff;
  padding: 0 28px;
  box-shadow: 0 16px 30px color-mix(in srgb, var(--vortex-deep) 20%, transparent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vortex-dashboard-wallet {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.vortex-balance-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--vortex-deep), var(--vortex-deep) 45%, var(--vortex-primary));
  color: #ffffff;
  padding: 36px;
}

.vortex-balance-card::before,
.vortex-balance-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.vortex-balance-card::before {
  top: 56px;
  right: 56px;
  width: 150px;
  height: 150px;
}

.vortex-balance-card::after {
  top: 100px;
  right: 110px;
  width: 170px;
  height: 170px;
}

.vortex-balance-head,
.vortex-balance-card > strong,
.vortex-balance-card > small,
.vortex-balance-actions {
  position: relative;
  z-index: 1;
}

.vortex-balance-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.vortex-balance-head span {
  color: var(--vortex-glow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.vortex-balance-head button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
}

.vortex-balance-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-arrow-down-left,
.icon-arrow-up-right,
.icon-card,
.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.icon-arrow-down-left,
.icon-arrow-up-right,
.icon-card {
  width: 18px;
  height: 18px;
}

.icon-arrow-down-left::before,
.icon-arrow-up-right::before {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.icon-arrow-down-left::before {
  transform: rotate(135deg);
}

.icon-arrow-up-right::before {
  transform: rotate(-45deg);
}

.icon-card::before {
  width: 18px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.icon-card::after {
  position: absolute;
  top: 6px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.vortex-balance-card > strong {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: clamp(56px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

.vortex-balance-card > small {
  display: block;
  margin-top: 18px;
  color: var(--vortex-glow);
  font-size: 15px;
  font-weight: 900;
}

.vortex-balance-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 58px;
}

.vortex-balance-actions button {
  min-height: 56px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.vortex-balance-actions button:first-child {
  background: #ffffff;
  color: var(--vortex-deep);
}

.vortex-side-metrics {
  display: grid;
  gap: 28px;
}

.vortex-side-metrics article,
.vortex-quick-panel,
.vortex-chart-card,
.vortex-activity-card,
.vortex-support-card {
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 5%, transparent);
  border-radius: 32px;
  background: #ffffff;
}

.vortex-side-metrics article {
  min-height: 160px;
  padding: 28px;
}

.vortex-side-metrics article div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.vortex-side-metrics span {
  color: color-mix(in srgb, var(--vortex-deep) 36%, transparent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vortex-side-metrics b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--vortex-light);
  color: var(--vortex-primary);
}

.vortex-side-metrics strong {
  display: block;
  color: var(--vortex-deep);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.vortex-side-metrics small {
  display: block;
  margin-top: 10px;
  color: color-mix(in srgb, var(--vortex-deep) 42%, transparent);
  font-size: 15px;
  font-weight: 800;
}

.vortex-quick-panel {
  margin-top: 36px;
  padding: 34px 36px 44px;
}

.vortex-quick-panel .seller-section-head,
.vortex-chart-card .seller-section-head,
.vortex-activity-card .seller-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.vortex-quick-panel h2,
.vortex-chart-card h2,
.vortex-activity-card h2,
.vortex-support-card h2 {
  margin: 0;
  color: var(--vortex-deep);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.vortex-quick-panel .seller-section-head a,
.vortex-activity-card .seller-section-head a {
  color: var(--vortex-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vortex-quick-services {
  display: grid;
  grid-template-columns: repeat(6, minmax(88px, 1fr));
  gap: 20px;
}

.vortex-quick-services a {
  display: grid;
  justify-items: center;
  gap: 14px;
  border-radius: 18px;
  color: var(--vortex-deep);
  padding: 18px 10px;
  font-size: 14px;
  font-weight: 900;
}

.vortex-quick-services a:hover {
  background: var(--vortex-light);
}

.vortex-quick-services span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--vortex-light);
  color: var(--vortex-primary);
  font-size: 24px;
  font-weight: 900;
}

.vortex-quick-services .service-icon::before,
.vortex-quick-services .service-icon::after {
  position: absolute;
  content: "";
}

.icon-phone::before {
  width: 17px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.icon-phone::after {
  bottom: 14px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.icon-wifi::before {
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-color: currentColor transparent transparent transparent;
  border-radius: 50%;
}

.icon-wifi::after {
  bottom: 17px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -8px 0 -3px currentColor;
}

.icon-bulb::before {
  top: 13px;
  width: 19px;
  height: 21px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 8px 8px;
}

.icon-bulb::after {
  bottom: 14px;
  width: 14px;
  height: 8px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.icon-tv::before {
  width: 28px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.icon-tv::after {
  top: 10px;
  width: 16px;
  height: 12px;
  border-top: 3px solid currentColor;
  transform: rotate(-45deg);
}

.icon-cap::before {
  top: 16px;
  width: 30px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: skewY(-14deg);
}

.icon-cap::after {
  bottom: 14px;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.icon-zap::before {
  width: 18px;
  height: 30px;
  background: currentColor;
  clip-path: polygon(58% 0, 10% 54%, 45% 54%, 32% 100%, 90% 40%, 55% 40%);
}

.vortex-quick-services a:first-child span,
.vortex-quick-services a:hover span {
  background: var(--vortex-primary);
  color: #ffffff;
}

.vortex-dashboard-bottom {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: 28px;
  margin-top: 36px;
}

.vortex-chart-card,
.vortex-activity-card {
  min-height: 440px;
  padding: 34px;
}

.vortex-chart-card p {
  margin: 6px 0 0;
  color: color-mix(in srgb, var(--vortex-deep) 40%, transparent);
  font-size: 15px;
}

.vortex-segments {
  display: flex;
  gap: 4px;
  border-radius: 16px;
  background: var(--vortex-light);
  padding: 5px;
}

.vortex-segments span {
  display: inline-flex;
  min-width: 44px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: color-mix(in srgb, var(--vortex-deep) 42%, transparent);
  font-size: 13px;
  font-weight: 900;
}

.vortex-segments span:first-child {
  background: #ffffff;
  color: var(--vortex-deep);
  box-shadow: 0 4px 12px rgba(38, 0, 93, 0.08);
}

.vortex-bars {
  display: flex;
  height: 210px;
  align-items: end;
  gap: 14px;
  padding-top: 40px;
}

.vortex-bars > span {
  position: relative;
  flex: 1;
  min-width: 20px;
  border-radius: 14px 14px 0 0;
  background: var(--vortex-light);
}

.vortex-bars > span.active {
  background: linear-gradient(180deg, var(--vortex-glow), var(--vortex-primary));
  box-shadow: 0 20px 34px color-mix(in srgb, var(--vortex-primary) 26%, transparent);
}

.vortex-bars b {
  position: absolute;
  top: -44px;
  left: 50%;
  border-radius: 10px;
  background: var(--vortex-deep);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 12px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.vortex-chart-card .seller-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.vortex-chart-card .seller-days span {
  color: color-mix(in srgb, var(--vortex-deep) 38%, transparent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.vortex-activity-card .seller-activity-list {
  display: grid;
  gap: 10px;
}

.vortex-activity-card .seller-activity-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 12px;
}

.vortex-activity-card .seller-activity-row:hover {
  background: var(--vortex-light);
}

.vortex-activity-card .seller-activity-row > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  background: var(--vortex-light);
  color: var(--vortex-deep);
  font-size: 0;
}

.vortex-activity-card .seller-activity-row > span::before {
  content: "↗";
  font-size: 22px;
}

.vortex-activity-card .seller-activity-row strong {
  overflow: hidden;
  color: var(--vortex-deep);
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vortex-activity-card .seller-activity-row small {
  overflow: hidden;
  color: color-mix(in srgb, var(--vortex-deep) 42%, transparent);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vortex-activity-card .seller-activity-row b {
  color: var(--vortex-deep);
  font-size: 15px;
  font-weight: 900;
  text-align: right;
}

.vortex-support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 30px 34px;
}

.vortex-support-card p {
  margin: 6px 0 0;
  color: color-mix(in srgb, var(--vortex-deep) 46%, transparent);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .vortex-dashboard-shell {
    grid-template-columns: 1fr;
  }

  .vortex-dashboard-sidebar {
    position: fixed;
    z-index: 60;
    width: min(320px, 86vw);
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  body.seller-menu-open .vortex-dashboard-sidebar {
    transform: translateX(0);
  }

  .vortex-dashboard-main {
    padding-inline: 22px;
  }

  .vortex-dashboard-topbar {
    margin-inline: -22px;
    padding-inline: 22px;
  }

  .vortex-topbar-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .vortex-dashboard-wallet,
  .vortex-dashboard-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .vortex-dashboard-shell {
    padding-top: 0;
  }

  .vortex-dashboard-main {
    padding: 0 18px 30px;
  }

  .vortex-dashboard-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-inline: -18px;
    padding: 18px;
  }

  .vortex-dashboard-search {
    display: none;
  }

  .vortex-dashboard-bell {
    width: 52px;
    height: 52px;
    margin-left: auto;
    border-radius: 18px;
  }

  .vortex-dashboard-bell::after {
    top: 12px;
    right: 12px;
  }

  .vortex-dashboard-profile {
    padding: 6px;
  }

  .vortex-dashboard-profile div {
    display: none;
  }

  .vortex-dashboard-welcome {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 20px;
  }

  .vortex-dashboard-welcome h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .vortex-dashboard-welcome p {
    font-size: 19px;
    line-height: 1.5;
  }

  .vortex-fund-button {
    width: auto;
    min-height: 62px;
    padding-inline: 28px;
  }

  .vortex-balance-card {
    min-height: 392px;
    border-radius: 34px;
    padding: 30px;
  }

  .vortex-balance-card > strong {
    font-size: clamp(58px, 16vw, 84px);
  }

  .vortex-balance-actions {
    display: grid;
  }

  .vortex-balance-actions button {
    width: 100%;
  }

  .vortex-side-metrics {
    grid-template-columns: 1fr;
  }

  .vortex-quick-panel,
  .vortex-chart-card,
  .vortex-activity-card,
  .vortex-support-card {
    border-radius: 28px;
    padding: 26px;
  }

  .vortex-quick-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vortex-chart-card .seller-section-head,
  .vortex-activity-card .seller-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vortex-bars {
    gap: 8px;
  }

  .vortex-activity-card .seller-activity-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .vortex-activity-card .seller-activity-row b {
    grid-column: 2;
    text-align: left;
  }

  .vortex-support-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Vortex reference auth pages */
.vortex-auth-page {
  --vortex-primary: #7c3aed;
  --vortex-deep: #2e1065;
  --vortex-light: #f5f3ff;
  --vortex-glow: #c4b5fd;
  --vortex-border: rgba(124, 58, 237, 0.12);
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 14%, color-mix(in srgb, var(--vortex-primary) 8%, transparent), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, var(--vortex-light) 100%);
  color: var(--vortex-deep);
  font-family: var(--font-main);
}

.vortex-auth-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 58px clamp(34px, 5vw, 78px) 70px;
}

.vortex-auth-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vortex-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--vortex-deep);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.vortex-auth-brand span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--vortex-primary);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--vortex-primary) 26%, transparent);
  color: #ffffff;
  font-size: 25px;
}

.vortex-auth-nav div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vortex-auth-nav a:not(.vortex-auth-brand) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  background: var(--vortex-primary);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--vortex-primary) 25%, transparent);
  color: #ffffff;
  padding: 0 34px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vortex-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: clamp(42px, 8vw, 118px);
  align-items: center;
  min-height: calc(100vh - 186px);
  padding-top: 72px;
}

.vortex-auth-copy {
  max-width: 720px;
}

.vortex-auth-copy .vortex-pill {
  display: inline-flex;
  margin-bottom: 46px;
}

.vortex-auth-copy h1 {
  margin: 0;
  color: var(--vortex-deep);
  font-size: clamp(68px, 8vw, 128px);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 0.88;
  text-transform: uppercase;
}

.vortex-auth-copy h1 span {
  color: var(--vortex-primary);
}

.vortex-auth-copy p {
  max-width: 660px;
  margin: 42px 0 0;
  color: color-mix(in srgb, var(--vortex-deep) 52%, transparent);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.45;
}

.vortex-auth-users {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 46px;
}

.vortex-auth-users span {
  display: block;
  width: 58px;
  height: 58px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  background: color-mix(in srgb, var(--vortex-primary) 16%, #ffffff);
}

.vortex-auth-users span + span {
  margin-left: -16px;
}

.vortex-auth-users span:nth-child(2) {
  background: color-mix(in srgb, var(--vortex-primary) 26%, #ffffff);
}

.vortex-auth-users span:nth-child(3) {
  background: color-mix(in srgb, var(--vortex-primary) 76%, #ffffff);
}

.vortex-auth-users strong {
  margin-left: 22px;
  color: color-mix(in srgb, var(--vortex-deep) 38%, transparent);
  font-size: 17px;
  font-weight: 900;
}

.vortex-auth-card {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--vortex-primary) 10%, transparent);
  border-radius: 42px;
  background: #ffffff;
  box-shadow: 0 34px 100px color-mix(in srgb, var(--vortex-deep) 7%, transparent);
  padding: clamp(28px, 4vw, 50px);
}

.vortex-auth-card::before {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--vortex-light);
  content: "";
}

.vortex-auth-card::after {
  position: absolute;
  top: 58px;
  right: 58px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--vortex-primary);
  content: "";
}

.vortex-auth-card-head,
.vortex-auth-fields {
  position: relative;
  z-index: 1;
}

.vortex-auth-card-head {
  margin-bottom: 34px;
}

.vortex-auth-card h2 {
  margin: 0;
  color: var(--vortex-deep);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.vortex-auth-fields {
  display: grid;
  gap: 22px;
}

.vortex-auth-fields .field {
  display: grid;
  gap: 10px;
}

.vortex-auth-fields label {
  color: color-mix(in srgb, var(--vortex-deep) 42%, transparent);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.18em;
}

.vortex-auth-fields input,
.vortex-auth-fields select {
  width: 100%;
  min-height: 74px;
  border: 0;
  border-radius: 20px;
  outline: none;
  background: var(--vortex-light);
  color: var(--vortex-deep);
  padding: 0 28px;
  font-size: 22px;
  font-weight: 900;
}

.vortex-auth-fields input::placeholder {
  color: color-mix(in srgb, var(--vortex-deep) 34%, transparent);
}

.vortex-auth-fields input:focus,
.vortex-auth-fields select:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--vortex-primary) 22%, transparent);
}

.vortex-auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  border: 0;
  border-radius: 22px;
  background: var(--vortex-primary);
  box-shadow: 0 20px 38px color-mix(in srgb, var(--vortex-primary) 30%, transparent);
  color: #ffffff;
  cursor: pointer;
  padding: 0 30px;
  font-size: 17px;
  font-weight: 1000;
  letter-spacing: 0.22em;
}

.vortex-auth-note {
  margin: 0;
  color: color-mix(in srgb, var(--vortex-deep) 45%, transparent);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.vortex-auth-note a {
  color: var(--vortex-primary);
}

.vortex-auth-page .toast {
  right: 28px;
  bottom: 28px;
}

@media (max-width: 980px) {
  .vortex-auth-shell {
    padding: 36px 24px 44px;
  }

  .vortex-auth-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding-top: 58px;
  }

  .vortex-auth-copy {
    max-width: 780px;
  }

  .vortex-auth-copy .vortex-pill {
    margin-bottom: 34px;
  }

  .vortex-auth-card {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .vortex-auth-page {
    background: #ffffff;
  }

  .vortex-auth-shell {
    padding: 28px 22px 38px;
  }

  .vortex-auth-nav {
    gap: 14px;
  }

  .vortex-auth-brand {
    gap: 12px;
    font-size: 28px;
  }

  .vortex-auth-brand span {
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }

  .vortex-auth-nav a:not(.vortex-auth-brand) {
    min-height: 56px;
    padding: 0 22px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .vortex-auth-grid {
    gap: 34px;
    padding-top: 78px;
  }

  .vortex-auth-copy .vortex-pill {
    margin-bottom: 34px;
  }

  .vortex-auth-copy h1 {
    font-size: clamp(55px, 16vw, 78px);
    line-height: 0.92;
  }

  .vortex-auth-copy p {
    margin-top: 34px;
    font-size: 25px;
    line-height: 1.55;
  }

  .vortex-auth-users {
    margin-top: 38px;
  }

  .vortex-auth-users strong {
    font-size: 16px;
  }

  .vortex-auth-card {
    margin-inline: -2px;
    border-radius: 32px;
    padding: 30px 24px;
  }

  .vortex-auth-card::before {
    top: 26px;
    right: 26px;
  }

  .vortex-auth-card::after {
    top: 50px;
    right: 50px;
  }

  .vortex-auth-fields {
    gap: 19px;
  }

  .vortex-auth-fields input,
  .vortex-auth-fields select {
    min-height: 66px;
    border-radius: 18px;
    padding-inline: 22px;
    font-size: 19px;
  }

  .vortex-auth-button {
    min-height: 70px;
    border-radius: 20px;
    font-size: 15px;
  }
}

/* Split Vortex auth reference */
.vortex-auth-page .vortex-auth-shell {
  display: grid;
  grid-template-columns: 45vw 1fr;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.vortex-auth-side {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 74%, #7c3aed 0, rgba(124, 58, 237, 0.72) 18rem, transparent 34rem),
    radial-gradient(circle at 70% 44%, rgba(124, 58, 237, 0.34), transparent 25rem),
    linear-gradient(160deg, #24005b 0%, #2b0068 48%, #320077 100%);
  color: #ffffff;
  padding: clamp(52px, 5vw, 90px);
}

.vortex-auth-side::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.45);
  filter: blur(18px);
  content: "";
}

.vortex-auth-page .vortex-auth-brand {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(30px, 2.5vw, 46px);
  letter-spacing: -0.07em;
}

.vortex-auth-page .vortex-auth-brand span {
  position: relative;
  width: clamp(66px, 4.4vw, 86px);
  height: clamp(66px, 4.4vw, 86px);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: none;
}

.vortex-auth-page .vortex-auth-brand span::after {
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  background: #7c3aed;
  content: "";
}

.vortex-auth-side .vortex-auth-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: auto 0;
  padding-top: 80px;
}

.vortex-auth-pill {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.vortex-auth-side .vortex-auth-copy h1 {
  margin: 42px 0 0;
  color: #ffffff;
  font-size: clamp(54px, 4.6vw, 82px);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 0.96;
  text-transform: none;
}

.vortex-auth-side .vortex-auth-copy p {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 800;
  line-height: 1.48;
}

.vortex-auth-copyright {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 18px;
  font-weight: 800;
}

.vortex-auth-form-area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #ffffff;
  padding: clamp(42px, 5vw, 86px);
}

.vortex-auth-form {
  width: min(100%, 620px);
}

.vortex-auth-heading {
  margin-bottom: 46px;
}

.vortex-auth-heading h1 {
  margin: 0;
  color: #25005c;
  font-size: clamp(38px, 3.1vw, 56px);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 1;
}

.vortex-auth-heading p {
  margin: 18px 0 0;
  color: rgba(37, 0, 92, 0.46);
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 800;
}

.vortex-google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 66px;
  border: 2px solid #eee6fb;
  border-radius: 22px;
  background: #ffffff;
  color: #25005c;
  cursor: pointer;
  gap: 16px;
  font-size: 20px;
  font-weight: 1000;
}

.vortex-google-button span {
  color: #4285f4;
  font-size: 26px;
  font-weight: 1000;
}

.vortex-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 50px 0 34px;
  color: rgba(37, 0, 92, 0.34);
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 0.18em;
}

.vortex-divider::before,
.vortex-divider::after {
  height: 1px;
  background: #eee6fb;
  content: "";
}

.vortex-auth-form .vortex-auth-fields {
  gap: 26px;
}

.vortex-auth-form .vortex-auth-fields label {
  color: rgba(37, 0, 92, 0.58);
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 0.18em;
}

.vortex-auth-form .vortex-auth-fields input,
.vortex-auth-form .vortex-auth-fields select,
.vortex-password-wrap {
  min-height: 66px;
  border: 2px solid #eee6fb;
  border-radius: 22px;
  background: #ffffff;
}

.vortex-auth-form .vortex-auth-fields input,
.vortex-auth-form .vortex-auth-fields select {
  color: #25005c;
  padding: 0 24px;
  font-size: 19px;
  font-weight: 900;
}

.vortex-password-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-right: 22px;
}

.vortex-password-wrap input {
  min-height: 62px !important;
  border: 0 !important;
}

.vortex-password-wrap span {
  color: rgba(37, 0, 92, 0.38);
  font-size: 22px;
  font-weight: 1000;
}

.vortex-auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: -2px;
}

.vortex-check {
  display: inline-flex !important;
  align-items: center;
  color: rgba(37, 0, 92, 0.5) !important;
  gap: 12px;
  font-size: 17px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.vortex-check input {
  width: 24px !important;
  min-height: 24px !important;
  height: 24px;
  border-radius: 5px;
  padding: 0 !important;
  accent-color: #7c3aed;
}

.vortex-check a,
.vortex-auth-options a,
.vortex-auth-note a {
  color: #7c3aed;
  font-weight: 1000;
}

.vortex-auth-form .vortex-auth-button {
  width: 100%;
  min-height: 72px;
  border-radius: 22px;
  background: #2b0068;
  box-shadow: 0 18px 34px rgba(43, 0, 104, 0.2);
  font-size: 17px;
  letter-spacing: 0.22em;
}

.vortex-auth-form .vortex-auth-button span {
  margin-left: 12px;
  font-size: 24px;
  letter-spacing: 0;
}

.vortex-auth-form .vortex-auth-note {
  color: rgba(37, 0, 92, 0.44);
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .vortex-auth-page .vortex-auth-shell {
    grid-template-columns: 1fr;
  }

  .vortex-auth-side {
    min-height: auto;
    padding: 34px 28px 44px;
  }

  .vortex-auth-side .vortex-auth-copy {
    padding-top: 64px;
  }

  .vortex-auth-copyright {
    display: none;
  }

  .vortex-auth-form-area {
    min-height: auto;
    padding: 46px 28px 64px;
  }
}

@media (max-width: 640px) {
  .vortex-auth-side {
    padding: 28px 22px 38px;
  }

  .vortex-auth-page .vortex-auth-brand {
    font-size: 31px;
  }

  .vortex-auth-page .vortex-auth-brand span {
    width: 66px;
    height: 66px;
  }

  .vortex-auth-side .vortex-auth-copy {
    padding-top: 56px;
  }

  .vortex-auth-pill {
    min-height: 46px;
    padding: 0 18px;
    font-size: 15px;
  }

  .vortex-auth-side .vortex-auth-copy h1 {
    margin-top: 34px;
    font-size: clamp(46px, 14vw, 64px);
  }

  .vortex-auth-side .vortex-auth-copy p {
    font-size: 21px;
  }

  .vortex-auth-form-area {
    padding: 40px 22px 54px;
  }

  .vortex-auth-heading {
    margin-bottom: 34px;
  }

  .vortex-auth-heading h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .vortex-auth-heading p {
    font-size: 20px;
  }

  .vortex-google-button,
  .vortex-auth-form .vortex-auth-fields input,
  .vortex-auth-form .vortex-auth-fields select,
  .vortex-password-wrap,
  .vortex-auth-form .vortex-auth-button {
    min-height: 62px;
    border-radius: 18px;
  }

  .vortex-divider {
    gap: 14px;
    margin: 38px 0 28px;
    font-size: 13px;
  }

  .vortex-auth-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .vortex-check {
    align-items: flex-start;
    line-height: 1.35;
  }
}

/* Lovable public auth clone override */
.vortex-auth-page.vortex-auth-login,
.vortex-auth-page.vortex-auth-signup {
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: #2e1065;
  font-family: var(--font-main);
}

.vortex-auth-page .vortex-auth-shell {
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  grid-template-columns: minmax(420px, 45vw) minmax(0, 1fr);
}

.vortex-auth-side {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  background:
    radial-gradient(circle at 83% 80%, rgba(124, 58, 237, 0.9) 0, rgba(124, 58, 237, 0.72) 16rem, transparent 32rem),
    radial-gradient(circle at 70% 44%, rgba(124, 58, 237, 0.32), transparent 28rem),
    linear-gradient(160deg, #24005b 0%, #2e1065 48%, #3b0a79 100%);
  color: #ffffff;
  padding: clamp(48px, 4.8vw, 88px);
}

.vortex-auth-side::after {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.42);
  filter: blur(18px);
  content: "";
}

.vortex-auth-page .vortex-auth-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #ffffff;
  gap: 20px;
  font-size: clamp(34px, 2.7vw, 48px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.vortex-auth-page .vortex-auth-brand span {
  position: relative;
  display: block;
  width: clamp(68px, 4.6vw, 86px);
  height: clamp(68px, 4.6vw, 86px);
  flex: 0 0 auto;
  border-radius: 21px;
  background: #ffffff;
  box-shadow: none;
}

.vortex-auth-page .vortex-auth-brand span::after {
  position: absolute;
  inset: 23px;
  border-radius: 999px;
  background: #7c3aed;
  content: "";
}

.vortex-auth-side .vortex-auth-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: auto 0;
  padding-top: 84px;
}

.vortex-auth-pill {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  padding: 0 25px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.vortex-auth-side .vortex-auth-copy h1 {
  margin: 42px 0 0;
  color: #ffffff;
  font-size: clamp(54px, 4.75vw, 84px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.96;
  text-transform: none;
}

.vortex-auth-side .vortex-auth-copy p {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 600;
  line-height: 1.48;
}

.vortex-auth-copyright {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 18px;
  font-weight: 600;
}

.vortex-auth-form-area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 100vh;
  background: #ffffff;
  padding: clamp(42px, 5vw, 86px);
}

.vortex-auth-form {
  width: min(100%, 620px);
}

.vortex-auth-heading {
  margin-bottom: 46px;
}

.vortex-auth-heading h1 {
  margin: 0;
  color: #2e1065;
  font-size: clamp(38px, 3.1vw, 56px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1;
}

.vortex-auth-heading p {
  margin: 18px 0 0;
  color: rgba(46, 16, 101, 0.5);
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 500;
}

.vortex-google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 66px;
  border: 2px solid #eee6fb;
  border-radius: 22px;
  background: #ffffff;
  color: #2e1065;
  cursor: pointer;
  gap: 16px;
  font-size: 20px;
  font-weight: 800;
}

.vortex-google-button span {
  color: #4285f4;
  font-size: 26px;
  font-weight: 900;
}

.vortex-divider {
  display: grid;
  align-items: center;
  margin: 50px 0 34px;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  color: rgba(46, 16, 101, 0.34);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.vortex-divider::before,
.vortex-divider::after {
  height: 1px;
  background: #eee6fb;
  content: "";
}

.vortex-auth-form .vortex-auth-fields {
  display: grid;
  gap: 26px;
}

.vortex-auth-form .vortex-auth-fields .field {
  display: grid;
  gap: 10px;
}

.vortex-auth-form .vortex-auth-fields label {
  color: rgba(46, 16, 101, 0.58);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.vortex-auth-form .vortex-auth-fields input,
.vortex-auth-form .vortex-auth-fields select,
.vortex-password-wrap {
  min-height: 66px;
  border: 2px solid #eee6fb;
  border-radius: 22px;
  background: #ffffff;
}

.vortex-auth-form .vortex-auth-fields input,
.vortex-auth-form .vortex-auth-fields select {
  width: 100%;
  outline: none;
  color: #2e1065;
  padding: 0 24px;
  font-size: 19px;
  font-weight: 700;
}

.vortex-auth-form .vortex-auth-fields input::placeholder {
  color: rgba(46, 16, 101, 0.34);
}

.vortex-auth-form .vortex-auth-fields input:focus,
.vortex-auth-form .vortex-auth-fields select:focus,
.vortex-password-wrap:focus-within {
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}

.vortex-password-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  padding-right: 22px;
}

.vortex-password-wrap input {
  min-height: 62px !important;
  border: 0 !important;
  box-shadow: none !important;
}

.vortex-password-wrap span {
  color: rgba(46, 16, 101, 0.38);
  font-size: 22px;
  font-weight: 900;
}

.vortex-auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: -2px;
}

.vortex-check {
  display: inline-flex !important;
  align-items: center;
  color: rgba(46, 16, 101, 0.52) !important;
  gap: 12px;
  font-size: 17px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.vortex-check input {
  width: 24px !important;
  min-height: 24px !important;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 5px;
  padding: 0 !important;
  accent-color: #7c3aed;
}

.vortex-check a,
.vortex-auth-options a,
.vortex-auth-note a {
  color: #7c3aed;
  font-weight: 800;
}

.vortex-auth-form .vortex-auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  border: 0;
  border-radius: 22px;
  background: #2e1065;
  box-shadow: 0 18px 34px rgba(46, 16, 101, 0.2);
  color: #ffffff;
  cursor: pointer;
  padding: 0 30px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.vortex-auth-form .vortex-auth-button span {
  margin-left: 12px;
  font-size: 24px;
  letter-spacing: 0;
}

.vortex-auth-form .vortex-auth-note {
  margin: 0;
  color: rgba(46, 16, 101, 0.46);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.vortex-auth-page .toast {
  right: 28px;
  bottom: 28px;
}

@media (max-width: 980px) {
  .vortex-auth-page .vortex-auth-shell {
    grid-template-columns: 1fr;
  }

  .vortex-auth-side {
    min-height: auto;
    padding: 34px 28px 44px;
  }

  .vortex-auth-side .vortex-auth-copy {
    padding-top: 64px;
  }

  .vortex-auth-copyright {
    display: none;
  }

  .vortex-auth-form-area {
    min-height: auto;
    padding: 46px 28px 64px;
  }
}

@media (max-width: 640px) {
  .vortex-auth-side {
    padding: 28px 22px 38px;
  }

  .vortex-auth-page .vortex-auth-brand {
    gap: 14px;
    font-size: 31px;
  }

  .vortex-auth-page .vortex-auth-brand span {
    width: 66px;
    height: 66px;
    border-radius: 19px;
  }

  .vortex-auth-page .vortex-auth-brand span::after {
    inset: 22px;
  }

  .vortex-auth-side .vortex-auth-copy {
    padding-top: 56px;
  }

  .vortex-auth-pill {
    min-height: 46px;
    padding: 0 18px;
    font-size: 15px;
  }

  .vortex-auth-side .vortex-auth-copy h1 {
    margin-top: 34px;
    font-size: clamp(46px, 14vw, 64px);
  }

  .vortex-auth-side .vortex-auth-copy p {
    font-size: 21px;
    line-height: 1.5;
  }

  .vortex-auth-form-area {
    padding: 40px 22px 54px;
  }

  .vortex-auth-heading {
    margin-bottom: 34px;
  }

  .vortex-auth-heading h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .vortex-auth-heading p {
    font-size: 20px;
  }

  .vortex-google-button,
  .vortex-auth-form .vortex-auth-fields input,
  .vortex-auth-form .vortex-auth-fields select,
  .vortex-password-wrap,
  .vortex-auth-form .vortex-auth-button {
    min-height: 62px;
    border-radius: 18px;
  }

  .vortex-divider {
    gap: 14px;
    margin: 38px 0 28px;
    font-size: 13px;
  }

  .vortex-auth-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .vortex-check {
    align-items: flex-start;
    line-height: 1.35;
  }

  .vortex-auth-form .vortex-auth-note {
    font-size: 16px;
  }
}

/* Final auth scale/mobile correction */
.vortex-auth-page .vortex-auth-shell {
  grid-template-columns: minmax(380px, 44vw) minmax(0, 1fr);
}

.vortex-auth-page .vortex-auth-brand {
  letter-spacing: 0;
}

.vortex-auth-side {
  padding: clamp(42px, 4.4vw, 76px);
}

.vortex-auth-side .vortex-auth-copy {
  max-width: 560px;
  padding-top: 56px;
}

.vortex-auth-side .vortex-auth-copy h1 {
  max-width: 560px;
  font-size: clamp(44px, 4vw, 68px);
  letter-spacing: 0;
  line-height: 1.02;
}

.vortex-auth-side .vortex-auth-copy p {
  max-width: 520px;
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 600;
}

.vortex-auth-form {
  width: min(100%, 560px);
}

.vortex-auth-heading h1 {
  font-size: clamp(34px, 2.65vw, 48px);
  letter-spacing: 0;
}

.vortex-auth-heading p {
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 500;
}

.vortex-google-button {
  min-height: 58px;
  font-size: 17px;
}

.vortex-divider {
  margin: 40px 0 28px;
  font-size: 13px;
}

.vortex-auth-form .vortex-auth-fields {
  gap: 22px;
}

.vortex-auth-form .vortex-auth-fields label {
  font-size: 13px;
}

.vortex-auth-form .vortex-auth-fields input,
.vortex-auth-form .vortex-auth-fields select,
.vortex-password-wrap {
  min-height: 58px;
  border-radius: 18px;
}

.vortex-auth-form .vortex-auth-fields input,
.vortex-auth-form .vortex-auth-fields select {
  font-size: 16px;
}

.vortex-auth-form .vortex-auth-button {
  min-height: 64px;
  border-radius: 18px;
}

.vortex-auth-form .vortex-auth-note,
.vortex-check {
  font-size: 15px !important;
}

@media (max-width: 1040px), (hover: none) and (pointer: coarse) {
  .vortex-auth-page .vortex-auth-shell {
    display: block;
    min-height: 100vh;
  }

  .vortex-auth-side {
    display: none;
  }

  .vortex-auth-form-area {
    min-height: 100vh;
    align-items: center;
    padding: 48px 24px;
  }

  .vortex-auth-form {
    width: min(100%, 520px);
  }
}

@media (max-width: 640px) {
  .vortex-auth-form-area {
    align-items: flex-start;
    padding: 44px 24px 54px;
  }

  .vortex-auth-heading {
    margin-bottom: 32px;
  }

  .vortex-auth-heading h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .vortex-auth-heading p {
    font-size: 18px;
    line-height: 1.45;
  }

  .vortex-google-button,
  .vortex-auth-form .vortex-auth-fields input,
  .vortex-auth-form .vortex-auth-fields select,
  .vortex-password-wrap,
  .vortex-auth-form .vortex-auth-button {
    min-height: 58px;
    border-radius: 17px;
  }

  .vortex-divider {
    margin: 34px 0 26px;
  }
}

/* Softer Reteller app typography and icon refresh */
:root {
  --rt-icon-overview: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1.5'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1.5'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1.5'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1.5'/%3E%3C/svg%3E");
  --rt-icon-wallet: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 7V6a2 2 0 0 0-2-2H5a3 3 0 0 0 0 6h14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a3 3 0 0 1-3-3V7'/%3E%3Cpath d='M16 14h.01'/%3E%3C/svg%3E");
  --rt-icon-transactions: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 3-6.7'/%3E%3Cpath d='M3 3v6h6'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  --rt-icon-card: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
  --rt-icon-users: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  --rt-icon-key: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7.5' cy='15.5' r='5.5'/%3E%3Cpath d='M12 12l8-8'/%3E%3Cpath d='M16 8l2 2'/%3E%3Cpath d='M19 5l2 2'/%3E%3C/svg%3E");
  --rt-icon-admin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 4v5c0 5-3.4 8.2-8 9-4.6-.8-8-4-8-9V7l8-4z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
  --rt-icon-settings: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7z'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 1 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.6 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 1 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 8.92 4.6a1.65 1.65 0 0 0 1-1.51V3a2 2 0 1 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9c.14.51.52.91 1.02 1.04H21a2 2 0 1 1 0 4h-.09c-.68 0-1.27.4-1.51 1z'/%3E%3C/svg%3E");
  --rt-icon-support: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.1 9a3 3 0 0 1 5.8 1c0 2-3 2.4-3 4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
  --rt-icon-logout: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpath d='M16 17l5-5-5-5'/%3E%3Cpath d='M21 12H9'/%3E%3C/svg%3E");
  --rt-icon-bell: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9'/%3E%3Cpath d='M13.73 21a2 2 0 0 1-3.46 0'/%3E%3Ccircle cx='18' cy='5' r='3' fill='black' stroke='none'/%3E%3C/svg%3E");
  --rt-icon-menu: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M4 17h16'/%3E%3C/svg%3E");
}

.vd-brand,
.vd-profile-pill b,
.vd-app-title h1,
.vd-panel h2,
.vd-menu a,
.vd-menu button,
.vd-btn,
.vd-summary-card strong,
.vd-activity-main strong,
.vd-wallet-actions button,
.admin-sidebar-brand,
.admin-menu a,
.admin-page-head h1,
.admin-stat-card strong,
.admin-action-button {
  font-weight: 650 !important;
}

.vd-app-title h1 {
  font-weight: 700 !important;
  letter-spacing: -0.035em;
}

.vd-app-title h1 span {
  font-weight: 700 !important;
}

.vd-menu-label,
.vd-wallet-card small,
.vd-summary-card small,
.admin-menu-label,
.admin-table th,
.status-pill {
  font-weight: 600 !important;
}

.vd-wallet-card strong,
.vd-hero-title,
.vortex-auth-heading h1,
.vortex-auth-copy h1 {
  font-weight: 750 !important;
}

.vd-menu a span,
.vd-menu button span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: currentColor;
}

.vd-menu a span::before,
.vd-menu button span::before,
.vd-square-btn[aria-label="Notifications"]::before,
.admin-icon-button[aria-label="Notifications"]::before,
.vd-mobile-toggle::before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--rt-icon-overview) center / contain no-repeat;
  mask: var(--rt-icon-overview) center / contain no-repeat;
}

.vd-menu a[href="dashboard"] span::before { -webkit-mask-image: var(--rt-icon-overview); mask-image: var(--rt-icon-overview); }
.vd-menu a[href="wallet"] span::before { -webkit-mask-image: var(--rt-icon-wallet); mask-image: var(--rt-icon-wallet); }
.vd-menu a[href="transactions"] span::before { -webkit-mask-image: var(--rt-icon-transactions); mask-image: var(--rt-icon-transactions); }
.vd-menu a[href="#cards"] span::before { -webkit-mask-image: var(--rt-icon-card); mask-image: var(--rt-icon-card); }
.vd-menu a[href="#beneficiaries"] span::before { -webkit-mask-image: var(--rt-icon-users); mask-image: var(--rt-icon-users); }
.vd-menu a[href="#api-keys"] span::before { -webkit-mask-image: var(--rt-icon-key); mask-image: var(--rt-icon-key); }
.vd-menu a[href="admin"] span::before,
.vd-menu a[href="admin.html"] span::before { -webkit-mask-image: var(--rt-icon-admin); mask-image: var(--rt-icon-admin); }
.vd-menu a[href="#settings"] span::before { -webkit-mask-image: var(--rt-icon-settings); mask-image: var(--rt-icon-settings); }
.vd-menu a[href="#support"] span::before { -webkit-mask-image: var(--rt-icon-support); mask-image: var(--rt-icon-support); }
.vd-menu button[data-logout] span::before { -webkit-mask-image: var(--rt-icon-logout); mask-image: var(--rt-icon-logout); }

.vd-square-btn[aria-label="Notifications"],
.admin-icon-button[aria-label="Notifications"],
.vd-mobile-toggle {
  font-size: 0 !important;
  color: var(--vd-deep);
}

.vd-square-btn[aria-label="Notifications"]::before,
.admin-icon-button[aria-label="Notifications"]::before {
  width: 24px;
  height: 24px;
  -webkit-mask-image: var(--rt-icon-bell);
  mask-image: var(--rt-icon-bell);
}

.vd-mobile-toggle::before {
  width: 24px;
  height: 24px;
  -webkit-mask-image: var(--rt-icon-menu);
  mask-image: var(--rt-icon-menu);
}

:root {
  --rt-icon-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
  --rt-icon-wifi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13a10 10 0 0 1 14 0'/%3E%3Cpath d='M8.5 16.5a5 5 0 0 1 7 0'/%3E%3Cpath d='M12 20h.01'/%3E%3C/svg%3E");
  --rt-icon-power: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L4 14h7l-1 8 10-14h-7l1-6z'/%3E%3C/svg%3E");
  --rt-icon-tv: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 3l4 4 4-4'/%3E%3C/svg%3E");
  --rt-icon-exam: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10L12 5 2 10l10 5 10-5z'/%3E%3Cpath d='M6 12v5c3 2 9 2 12 0v-5'/%3E%3C/svg%3E");
  --rt-icon-betting: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3Cpath d='M8 12h.01M12 9h.01M16 12h.01M12 15h.01'/%3E%3C/svg%3E");
}

.vd-menu a[href="airtime"] span::before { -webkit-mask-image: var(--rt-icon-phone); mask-image: var(--rt-icon-phone); }
.vd-menu a[href="data"] span::before { -webkit-mask-image: var(--rt-icon-wifi); mask-image: var(--rt-icon-wifi); }
.vd-menu a[href="power"] span::before { -webkit-mask-image: var(--rt-icon-power); mask-image: var(--rt-icon-power); }
.vd-menu a[href="cable"] span::before { -webkit-mask-image: var(--rt-icon-tv); mask-image: var(--rt-icon-tv); }
.vd-menu a[href="exam"] span::before { -webkit-mask-image: var(--rt-icon-exam); mask-image: var(--rt-icon-exam); }
.vd-menu a[href="betting"] span::before { -webkit-mask-image: var(--rt-icon-betting); mask-image: var(--rt-icon-betting); }

.vd-quick-grid a .vd-icon {
  font-size: 0;
}

.vd-quick-grid a .vd-icon::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--rt-icon-phone) center / contain no-repeat;
  mask: var(--rt-icon-phone) center / contain no-repeat;
}

.vd-quick-grid a[href="airtime"] .vd-icon::before { -webkit-mask-image: var(--rt-icon-phone); mask-image: var(--rt-icon-phone); }
.vd-quick-grid a[href="data"] .vd-icon::before { -webkit-mask-image: var(--rt-icon-wifi); mask-image: var(--rt-icon-wifi); }
.vd-quick-grid a[href="power"] .vd-icon::before { -webkit-mask-image: var(--rt-icon-power); mask-image: var(--rt-icon-power); }
.vd-quick-grid a[href="cable"] .vd-icon::before { -webkit-mask-image: var(--rt-icon-tv); mask-image: var(--rt-icon-tv); }
.vd-quick-grid a[href="exam"] .vd-icon::before { -webkit-mask-image: var(--rt-icon-exam); mask-image: var(--rt-icon-exam); }
.vd-quick-grid a[href="betting"] .vd-icon::before { -webkit-mask-image: var(--rt-icon-betting); mask-image: var(--rt-icon-betting); }

.vd-auth-mobile-brand {
  display: none;
  width: max-content;
  margin: 0 0 34px;
}

.vd-auth-right .vd-auth-mobile-brand {
  color: var(--vd-deep);
}

.vd-auth-right .vd-auth-mobile-brand .vd-mark {
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.2);
}

.vd-provider-grid button {
  min-height: 104px;
  padding: 18px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(46, 16, 101, 0.03)) border-box;
  border: 2px solid transparent;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(46, 16, 101, 0.04);
}

.vd-provider-grid button.active {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(145deg, var(--vd-primary), rgba(212, 48, 139, 0.95)) border-box;
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(124, 58, 237, 0.18);
  transform: translateY(-2px);
}

.vd-provider-grid button.active::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--vd-primary);
  position: absolute;
  top: 13px;
  right: 13px;
  box-shadow: 0 0 0 5px var(--vd-light);
}

.vd-provider-grid button {
  position: relative;
}

.vd-provider-grid img {
  max-width: 76%;
  max-height: 54px;
  filter: none;
}

.vd-card .vd-icon {
  font-size: 0;
}

.vd-card .vd-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--rt-icon-phone) center / contain no-repeat;
  mask: var(--rt-icon-phone) center / contain no-repeat;
}

.vd-card .vd-icon.icon-airtime::before { -webkit-mask-image: var(--rt-icon-phone); mask-image: var(--rt-icon-phone); }
.vd-card .vd-icon.icon-data::before { -webkit-mask-image: var(--rt-icon-wifi); mask-image: var(--rt-icon-wifi); }
.vd-card .vd-icon.icon-power::before { -webkit-mask-image: var(--rt-icon-power); mask-image: var(--rt-icon-power); }
.vd-card .vd-icon.icon-cable::before { -webkit-mask-image: var(--rt-icon-tv); mask-image: var(--rt-icon-tv); }
.vd-card .vd-icon.icon-exam::before { -webkit-mask-image: var(--rt-icon-exam); mask-image: var(--rt-icon-exam); }
.vd-card .vd-icon.icon-betting::before { -webkit-mask-image: var(--rt-icon-betting); mask-image: var(--rt-icon-betting); }
.vd-card .vd-icon.icon-wallet::before { -webkit-mask-image: var(--rt-icon-wallet); mask-image: var(--rt-icon-wallet); }
.vd-card .vd-icon.icon-key::before { -webkit-mask-image: var(--rt-icon-key); mask-image: var(--rt-icon-key); }

@media (max-width: 1040px), (hover: none) and (pointer: coarse) {
  .vd-auth-mobile-brand {
    display: inline-flex;
  }
}

.vd-app-body,
.admin-shell-page,
.vd-auth-body {
  font-weight: 500;
}

.vd-app-body h1,
.vd-app-body h2,
.vd-app-body h3,
.vd-app-body strong,
.vd-app-body b,
.vd-auth-body h1,
.vd-auth-body h2,
.vd-auth-body h3,
.vd-auth-body strong,
.vd-auth-body b,
.admin-shell-page h1,
.admin-shell-page h2,
.admin-shell-page h3,
.admin-shell-page strong,
.admin-shell-page b {
  font-weight: 650 !important;
}

.vd-app-title h1,
.vd-app-title h1 span {
  font-size: clamp(40px, 4.8vw, 68px) !important;
  font-weight: 700 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
}

.vd-app-title p,
.vd-panel p,
.vd-summary-card span,
.vd-activity-main span,
.vd-menu a,
.vd-menu button,
.vd-profile-pill,
.vd-topbar-search input {
  font-weight: 500 !important;
}

.vd-btn,
.vd-wallet-actions button,
.vd-quick-grid a,
.vd-menu a.active,
.vd-menu a:hover,
.vd-menu button:hover,
.admin-action-button {
  font-weight: 650 !important;
}

.vd-wallet-card strong {
  font-weight: 700 !important;
}

.vd-wallet-card p,
.vd-wallet-card small,
.vd-summary-card small,
.vd-menu-label,
.admin-menu-label,
.admin-table th,
.status-pill,
.vortex-auth-form .vortex-auth-fields label {
  font-weight: 600 !important;
}

.vd-square-btn[aria-label="Notifications"],
.admin-icon-button[aria-label="Notifications"] {
  position: relative;
}

.vd-square-btn[aria-label="Notifications"]::after,
.admin-icon-button[aria-label="Notifications"]::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--vd-primary);
  box-shadow: 0 0 0 4px #ffffff;
}

@media (max-width: 640px) {
  .vd-app-title h1,
  .vd-app-title h1 span {
    font-size: clamp(38px, 11vw, 56px) !important;
    line-height: 1 !important;
  }

  .vd-app-title p {
    font-size: 19px !important;
    line-height: 1.45 !important;
  }
}

/* Admin clone pass: Violet Dream structure for Reteller operations */
:root {
  --rt-icon-package: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z'/%3E%3Cpath d='M12 22V12'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3C/svg%3E");
  --rt-icon-plus-square: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M8 12h8'/%3E%3Cpath d='M12 8v8'/%3E%3C/svg%3E");
  --rt-icon-percent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' x2='5' y1='5' y2='19'/%3E%3Ccircle cx='6.5' cy='6.5' r='2.5'/%3E%3Ccircle cx='17.5' cy='17.5' r='2.5'/%3E%3C/svg%3E");
  --rt-icon-receipt: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z'/%3E%3Cpath d='M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8'/%3E%3Cpath d='M12 17.5v-11'/%3E%3C/svg%3E");
  --rt-icon-activity: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-2.5a2 2 0 0 0-1.9 1.5l-2.4 8.3a.25.25 0 0 1-.5 0L9.2 2.2a.25.25 0 0 0-.5 0l-2.3 8.3A2 2 0 0 1 4.5 12H2'/%3E%3C/svg%3E");
  --rt-icon-chevron-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  --rt-icon-refresh: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 0 1 15.7-6.3L21 8'/%3E%3Cpath d='M21 3v5h-5'/%3E%3Cpath d='M21 12a9 9 0 0 1-15.7 6.3L3 16'/%3E%3Cpath d='M8 16H3v5'/%3E%3C/svg%3E");
  --rt-icon-download: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15V3'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3C/svg%3E");
  --rt-icon-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3C/svg%3E");
}

body.admin-shell-page {
  background: #f8f7ff !important;
  color: var(--vd-deep);
  font-family: var(--font-main);
}

body.admin-shell-page .admin-shell {
  display: grid !important;
  grid-template-columns: 288px minmax(0, 1fr) !important;
  min-height: 100vh;
  background: #f8f7ff;
}

body.admin-shell-page .admin-sidebar {
  position: sticky !important;
  top: 0;
  height: 100vh !important;
  padding: 26px 18px 16px !important;
  gap: 18px !important;
  background: #ffffff !important;
  border-right: 1px solid rgba(124, 58, 237, 0.1) !important;
  box-shadow: none !important;
  z-index: 60;
}

.admin-sidebar-brand {
  min-height: 62px;
  padding: 0 8px 20px !important;
  gap: 14px !important;
  border-bottom: 0 !important;
  color: var(--vd-deep) !important;
  font-size: 23px !important;
  letter-spacing: -0.03em;
}

.admin-logo-mark {
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px !important;
  background: transparent !important;
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.22) !important;
  overflow: hidden;
}

.admin-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.admin-menu {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 8px 0 12px;
  overflow-y: auto;
}

.admin-menu-label {
  display: block !important;
  margin: 18px 16px 8px !important;
  color: rgba(46, 16, 101, 0.36) !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
}

.admin-menu a {
  position: relative;
  justify-content: flex-start !important;
  gap: 14px;
  min-height: 45px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 0 14px !important;
  color: rgba(46, 16, 101, 0.62) !important;
  font-size: 15px;
  font-weight: 560 !important;
  box-shadow: none;
}

.admin-menu a:hover {
  background: rgba(245, 243, 255, 0.72) !important;
  color: var(--vd-deep) !important;
}

.admin-menu a.active {
  background: #f3efff !important;
  color: var(--vd-deep) !important;
  font-weight: 650 !important;
  box-shadow: none !important;
}

.admin-menu a.active::after {
  content: "";
  width: 3px;
  height: 26px;
  border-radius: 99px;
  background: var(--vd-primary);
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.admin-menu a[href="#api-logs"].active::before,
.admin-menu a.active::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: auto;
  background: var(--vd-primary);
  -webkit-mask: var(--rt-icon-chevron-right) center / contain no-repeat;
  mask: var(--rt-icon-chevron-right) center / contain no-repeat;
  order: 3;
}

.admin-nav-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  background: currentColor;
  opacity: 0.86;
  -webkit-mask: var(--rt-icon-overview) center / contain no-repeat;
  mask: var(--rt-icon-overview) center / contain no-repeat;
}

.admin-nav-icon.overview { -webkit-mask-image: var(--rt-icon-overview); mask-image: var(--rt-icon-overview); }
.admin-nav-icon.products { -webkit-mask-image: var(--rt-icon-package); mask-image: var(--rt-icon-package); }
.admin-nav-icon.add { -webkit-mask-image: var(--rt-icon-plus-square); mask-image: var(--rt-icon-plus-square); }
.admin-nav-icon.percent { -webkit-mask-image: var(--rt-icon-percent); mask-image: var(--rt-icon-percent); }
.admin-nav-icon.users { -webkit-mask-image: var(--rt-icon-users); mask-image: var(--rt-icon-users); }
.admin-nav-icon.wallet { -webkit-mask-image: var(--rt-icon-wallet); mask-image: var(--rt-icon-wallet); }
.admin-nav-icon.receipt { -webkit-mask-image: var(--rt-icon-receipt); mask-image: var(--rt-icon-receipt); }
.admin-nav-icon.activity { -webkit-mask-image: var(--rt-icon-activity); mask-image: var(--rt-icon-activity); }
.admin-nav-icon.settings { -webkit-mask-image: var(--rt-icon-settings); mask-image: var(--rt-icon-settings); }

.admin-profile-mini {
  margin: auto -2px 0;
  border-top: 1px solid rgba(124, 58, 237, 0.08) !important;
  padding: 16px 8px 0 !important;
}

.admin-profile-mini span {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--vd-primary), var(--vd-deep)) !important;
  font-size: 12px;
}

body.admin-shell-page .admin-workspace {
  gap: 0 !important;
  padding: 0 !important;
  min-width: 0;
}

.admin-topbar {
  position: sticky !important;
  top: 0;
  z-index: 40;
  display: flex !important;
  align-items: center;
  gap: 14px;
  min-height: 72px !important;
  padding: 0 34px !important;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px);
}

.admin-breadcrumb {
  min-width: 0;
  flex: 1 1 auto;
  gap: 8px !important;
  font-size: 14px;
  font-weight: 500 !important;
}

.admin-breadcrumb span {
  color: rgba(46, 16, 101, 0.4);
}

.admin-breadcrumb span::after {
  margin-left: 8px !important;
}

.admin-breadcrumb b {
  color: var(--vd-deep);
  font-weight: 650 !important;
}

.admin-global-search {
  flex: 0 1 330px;
  min-height: 44px !important;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px !important;
  background: #f8f7ff !important;
  box-shadow: none;
}

.admin-search-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: rgba(46, 16, 101, 0.32);
  -webkit-mask: var(--rt-icon-search) center / contain no-repeat;
  mask: var(--rt-icon-search) center / contain no-repeat;
}

.admin-icon-button,
.admin-mobile-toggle {
  width: 42px !important;
  min-width: 42px;
  height: 42px !important;
  min-height: 42px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: var(--vd-deep) !important;
  box-shadow: none !important;
}

.admin-mobile-toggle {
  display: none;
  place-items: center;
}

.admin-mobile-toggle::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: var(--rt-icon-menu) center / contain no-repeat;
  mask: var(--rt-icon-menu) center / contain no-repeat;
}

.admin-department {
  padding: 34px !important;
  max-width: 1500px;
}

.admin-department.active {
  display: grid !important;
  gap: 24px !important;
}

.admin-page-head {
  align-items: flex-end !important;
}

.admin-page-head h1 {
  color: var(--vd-deep) !important;
  font-size: clamp(30px, 3vw, 42px) !important;
  font-weight: 650 !important;
  letter-spacing: -0.04em;
  text-transform: none;
}

.admin-log-screen .admin-page-head h1 {
  text-transform: uppercase;
}

.admin-page-head p {
  max-width: 620px;
  color: rgba(46, 16, 101, 0.52) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.admin-action-button {
  min-height: 42px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(124, 58, 237, 0.14) !important;
  background: #ffffff !important;
  color: rgba(46, 16, 101, 0.72) !important;
  padding: 0 16px !important;
  font-size: 13px;
  font-weight: 650 !important;
  box-shadow: 0 8px 22px rgba(46, 16, 101, 0.04);
}

.admin-action-button.primary,
.admin-action-button.dark {
  border-color: var(--vd-deep) !important;
  background: var(--vd-deep) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 32px rgba(46, 16, 101, 0.18) !important;
}

.admin-action-button[data-refresh-admin-logs]::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 8px;
  background: currentColor;
  -webkit-mask: var(--rt-icon-refresh) center / contain no-repeat;
  mask: var(--rt-icon-refresh) center / contain no-repeat;
}

.admin-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.admin-stat-card,
.admin-data-card,
.admin-toolbar,
.admin-add-form,
.admin-log-controls {
  border: 1px solid rgba(124, 58, 237, 0.1) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(46, 16, 101, 0.025) !important;
}

.admin-stat-card {
  min-height: 122px !important;
  padding: 24px !important;
}

.admin-stat-card span,
.admin-table th,
.admin-search span,
.admin-filter span {
  color: rgba(46, 16, 101, 0.46) !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
}

.admin-stat-card strong {
  margin-top: 12px !important;
  color: var(--vd-deep) !important;
  font-size: 31px !important;
  font-weight: 650 !important;
}

.admin-stat-card small {
  color: rgba(46, 16, 101, 0.52) !important;
  font-weight: 500 !important;
}

.admin-toolbar {
  grid-template-columns: minmax(250px, 1fr) minmax(150px, 200px) minmax(150px, 200px) minmax(120px, 160px) !important;
  padding: 18px !important;
}

.admin-add-form {
  padding: 24px !important;
}

.admin-table {
  border-collapse: separate !important;
  border-spacing: 0;
  min-width: 1040px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(124, 58, 237, 0.08) !important;
  padding: 17px 22px !important;
}

.admin-table td {
  color: var(--vd-deep);
  font-weight: 500;
}

.admin-table td strong {
  font-weight: 650 !important;
}

.admin-table td small {
  color: rgba(46, 16, 101, 0.5) !important;
  font-weight: 500;
}

.table-input {
  min-height: 42px;
  border: 1px solid rgba(124, 58, 237, 0.13) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: var(--vd-deep) !important;
}

.admin-log-controls {
  padding: 16px !important;
}

.admin-segment {
  border-radius: 12px !important;
  background: #f8f7ff !important;
  padding: 5px !important;
}

.admin-segment button {
  min-height: 34px !important;
  border-radius: 9px !important;
  color: rgba(46, 16, 101, 0.55) !important;
  font-size: 13px;
  font-weight: 650 !important;
}

.admin-segment button.active {
  background: #ffffff !important;
  color: var(--vd-deep) !important;
  box-shadow: 0 5px 14px rgba(46, 16, 101, 0.1) !important;
}

.status-pill {
  border-radius: 9px !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase !important;
}

.api-log-card .log-payload {
  max-width: 420px !important;
  min-height: 146px !important;
  border: 1px solid rgba(46, 16, 101, 0.4) !important;
  border-radius: 10px !important;
  background: #1a1330 !important;
  color: #e9ddff !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}

.admin-log-customer {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 220px;
}

.admin-log-customer > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vd-primary), var(--vd-deep));
  color: #ffffff;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.18);
}

.admin-log-customer div {
  min-width: 0;
}

.admin-menu-group {
  display: grid;
  gap: 6px;
}

.admin-menu-group summary {
  min-height: 44px;
  border-radius: 14px;
  color: rgba(46, 16, 101, 0.64);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.admin-menu-group summary::-webkit-details-marker {
  display: none;
}

.admin-menu-group summary::after {
  content: "⌄";
  margin-left: auto;
  color: rgba(46, 16, 101, 0.42);
}

.admin-menu-group[open] summary::after {
  transform: rotate(180deg);
}

.admin-menu-group a {
  margin-left: 14px;
}

.admin-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: .55;
}

.admin-data-type-manager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding: 24px !important;
}

.admin-data-type-manager h2 {
  margin: 0 0 8px;
  color: var(--vd-deep);
  font-size: 24px;
  font-weight: 650;
}

.admin-data-type-manager p {
  margin: 0;
  color: rgba(46, 16, 101, .58);
}

.admin-data-type-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.admin-data-type-form input {
  min-height: 46px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--vd-deep);
  font: inherit;
}

.admin-data-type-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-data-type-list span,
.admin-data-type-list small {
  border-radius: 999px;
  background: var(--vd-light);
  color: var(--vd-deep);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.admin-data-type-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-data-type-list button {
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--vd-primary);
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  padding: 5px 8px;
  cursor: pointer;
}

.admin-category-manager {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 18px;
  padding: 22px !important;
}

.admin-category-manager h2 {
  margin: 0 0 6px;
  color: var(--vd-deep);
  font-size: 22px;
  font-weight: 650;
}

.admin-category-manager p {
  margin: 0;
  color: rgba(46, 16, 101, .56);
}

.admin-category-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, .8fr) 100px 120px auto;
  gap: 10px;
  align-items: center;
}

.admin-category-form input {
  min-height: 44px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--vd-deep);
  font: inherit;
}

.compact-switch {
  min-height: 44px;
}

.admin-category-list {
  display: table-row-group;
}

.admin-category-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--vd-deep);
  padding: 8px 10px 8px 13px;
}

.admin-category-list span.muted {
  opacity: .58;
}

.admin-category-list strong {
  font-size: 13px;
  font-weight: 650;
}

.admin-category-list small {
  color: rgba(46, 16, 101, .46);
}

.admin-category-list button {
  border: 0;
  border-radius: 999px;
  background: #f5f3ff;
  color: var(--vd-primary);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  padding: 5px 8px;
}

.admin-context-line {
  margin: 18px 0 10px;
  color: var(--vd-deep);
  font-weight: 700;
}

.admin-mass-update {
  margin-bottom: 18px;
}

.admin-mass-update h2 {
  margin: 0 0 14px;
  color: var(--vd-deep);
}

.admin-form-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-categories-table button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: #f5f3ff;
  color: var(--vd-primary);
  font: inherit;
  cursor: pointer;
}

.admin-log-customer strong,
.admin-log-customer small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-product-thumb {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f5f3ff;
  color: var(--vd-primary);
  object-fit: contain;
  padding: 7px;
  font-weight: 650;
}

.admin-product-thumb.empty {
  border: 1px solid rgba(124, 58, 237, 0.14);
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-row-actions button {
  min-height: 34px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 10px;
  background: #ffffff;
  color: var(--vd-deep);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  padding: 0 10px;
}

.admin-row-actions button:first-child {
  background: var(--vd-deep);
  border-color: var(--vd-deep);
  color: #ffffff;
}

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

body.admin-modal-open {
  overflow: hidden;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(46, 16, 101, 0.2);
  backdrop-filter: blur(18px);
}

.admin-modal-panel {
  position: relative;
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(46, 16, 101, 0.18);
  padding: 30px;
}

.admin-large-modal {
  width: min(1120px, calc(100vw - 28px));
}

.admin-modal-panel h2 {
  margin: 0 0 22px;
  color: var(--vd-deep);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.admin-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: #f5f3ff;
  cursor: pointer;
}

.admin-modal-close::before,
.admin-modal-close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--vd-deep);
}

.admin-modal-close::before {
  transform: rotate(45deg);
}

.admin-modal-close::after {
  transform: rotate(-45deg);
}

.admin-management-form {
  display: grid;
  gap: 18px;
}

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

.admin-modal .field {
  margin: 0;
}

.admin-modal .field span,
.form-switch {
  color: rgba(46, 16, 101, 0.55);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-modal input,
.admin-modal select,
.admin-modal textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--vd-deep);
  font: inherit;
  font-weight: 500;
  padding: 0 14px;
}

.admin-modal textarea {
  min-height: 110px;
  padding-block: 12px;
  resize: vertical;
}

.form-switch {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 14px;
  padding: 0 14px;
  background: #faf8ff;
}

.form-switch input {
  width: auto;
  min-height: 0;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.admin-profile-pill-top {
  min-height: 42px !important;
  border-radius: 14px !important;
  padding: 0 14px 0 6px !important;
  box-shadow: none !important;
}

.admin-profile-pill-top .vd-avatar {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  font-size: 12px;
}

.admin-profile-pill-top b {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .admin-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .admin-toolbar {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 980px) {
  body.admin-shell-page .admin-shell {
    grid-template-columns: 1fr !important;
  }

  body.admin-shell-page .seller-drawer-backdrop {
    position: fixed;
    z-index: 45;
    inset: 0;
    display: block;
    background: rgba(20, 0, 48, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body.admin-shell-page.seller-menu-open .seller-drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.admin-shell-page .admin-sidebar {
    position: fixed !important;
    z-index: 50;
    left: 0;
    top: 0;
    width: 292px !important;
    height: 100vh !important;
    border-right: 1px solid rgba(124, 58, 237, 0.1) !important;
    border-bottom: 0 !important;
    transform: translateX(-110%);
    transition: transform 0.22s ease;
    box-shadow: 0 24px 70px rgba(46, 16, 101, 0.14) !important;
  }

  body.seller-menu-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-menu {
    flex-direction: column !important;
    gap: 4px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .admin-menu-label,
  .admin-profile-mini {
    display: flex !important;
  }

  .admin-menu a {
    flex: initial !important;
  }

  .admin-mobile-toggle {
    display: grid;
  }

  .admin-topbar {
    flex-direction: row !important;
    justify-content: flex-start !important;
    min-height: 92px !important;
    padding: 18px 24px !important;
  }

  .admin-icon-button,
  .admin-mobile-toggle {
    width: 58px !important;
    min-width: 58px;
    height: 58px !important;
    min-height: 58px !important;
    border-radius: 20px !important;
    box-shadow: 0 18px 42px rgba(46, 16, 101, 0.12) !important;
  }

  .admin-profile-pill-top {
    flex: 1;
    min-width: 0;
    min-height: 58px !important;
    border-radius: 20px !important;
    padding: 0 14px 0 8px !important;
    box-shadow: 0 18px 42px rgba(46, 16, 101, 0.08) !important;
  }

  .admin-profile-pill-top .vd-avatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .admin-breadcrumb {
    display: none !important;
  }

  .admin-global-search {
    flex: 1 1 auto;
    min-width: 0;
  }

  .admin-department {
    padding: 28px 24px !important;
  }
}

@media (max-width: 720px) {
  .admin-topbar {
    flex-direction: row !important;
    align-items: center;
  }

  .admin-global-search {
    display: none !important;
  }

  .admin-profile-pill-top b {
    display: none;
  }

  .admin-department {
    padding: 26px 20px !important;
  }

  .admin-page-head,
  .admin-log-controls {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .admin-page-actions,
  .admin-action-button {
    width: 100%;
  }

  .admin-stat-grid,
  .admin-toolbar,
  .admin-toolbar.two-column,
  .admin-add-form {
    grid-template-columns: 1fr !important;
  }

  .admin-stat-card {
    min-height: 104px !important;
  }

  .admin-segment {
    width: 100%;
    overflow-x: auto;
  }
}

.toast {
  right: 24px !important;
  bottom: 24px !important;
  z-index: 3000 !important;
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  max-width: min(420px, calc(100vw - 32px)) !important;
  min-height: 66px;
  padding: 14px 18px 14px 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, #2e1065, #7c3aed) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 70px rgba(46, 16, 101, 0.28) !important;
  transform: translateY(18px) scale(0.96) !important;
  opacity: 0;
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms cubic-bezier(.2, .9, .2, 1) !important;
}

.toast.show {
  transform: translateY(0) scale(1) !important;
  opacity: 1;
}

.toast span:last-child {
  min-width: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.toast.success {
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.26), transparent 36%),
    linear-gradient(135deg, #14532d, #22c55e) !important;
}

.toast.error {
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, #7f1d1d, #db2777) !important;
}

.toast.loading {
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, #2e1065, #6d28d9) !important;
}

.toast-icon,
.button-spinner,
.success-pop-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.toast-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.toast-icon.error::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

.toast-icon.spinner::before,
.button-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 999px;
  background: transparent;
  -webkit-mask: none;
  mask: none;
  animation: rt-spin 700ms linear infinite;
}

.vd-btn.is-loading,
.vd-auth-form .vd-btn.is-loading {
  cursor: wait;
  opacity: 0.92;
  pointer-events: none;
}

.vd-btn .button-spinner,
.vd-auth-form .vd-btn .button-spinner {
  margin-right: 12px;
}

.success-pop {
  position: fixed;
  inset: 0;
  z-index: 2900;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(46, 16, 101, 0.14);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 220ms ease;
}

.success-pop.show {
  opacity: 1;
  pointer-events: auto;
}

.success-pop-card {
  width: min(420px, 100%);
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(46, 16, 101, 0.22);
  padding: 36px 30px 30px;
  text-align: center;
  transform: translateY(14px) scale(0.94);
  transition: transform 260ms cubic-bezier(.2, .9, .2, 1);
}

.success-pop.show .success-pop-card {
  transform: translateY(0) scale(1);
}

.success-pop-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, #2e1065, #7c3aed);
  box-shadow: 0 24px 44px rgba(124, 58, 237, 0.3);
}

.success-pop-icon::before {
  content: "";
  width: 34px;
  height: 34px;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.success-pop-card h2 {
  margin: 0;
  color: #2e1065;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.success-pop-card p {
  margin: 10px 0 22px;
  color: rgba(46, 16, 101, 0.58);
  font-size: 17px;
  font-weight: 500;
}

.success-pop-loader {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1e9ff;
}

.success-pop-loader::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #d4308b);
  animation: rt-progress 1150ms ease-in-out forwards;
}

.success-pop-actions {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 12px;
  margin-top: 22px;
}

.success-pop-actions button {
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  background: #ffffff;
  color: #2e1065;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.success-pop-actions button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #2e1065, #7c3aed);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(46, 16, 101, 0.18);
}

.vd-spend-chart {
  height: 260px;
  display: flex;
  align-items: end;
  gap: 24px;
  padding: 24px 0 0;
}

.vd-spend-chart span {
  --bar-height: 8%;
  position: relative;
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}

.vd-spend-chart span::before {
  content: "";
  width: 100%;
  height: var(--bar-height);
  min-height: 14px;
  border-radius: 18px 18px 8px 8px;
  background: var(--vd-light);
  transition: height 240ms ease, background 240ms ease;
}

.vd-spend-chart span.is-active::before {
  background: linear-gradient(180deg, var(--vd-primary), var(--vd-deep));
}

.vd-spend-chart b {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  color: rgba(46, 16, 101, 0.48);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

@keyframes rt-progress {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(240%);
  }
}

@media (max-width: 640px) {
  .toast {
    right: 16px !important;
    bottom: 18px !important;
    border-radius: 22px !important;
  }

  .success-pop-card {
    border-radius: 28px;
    padding: 30px 24px 26px;
  }

  .success-pop-card h2 {
    font-size: 28px;
  }

  .success-pop-actions {
    grid-template-columns: 1fr;
  }

  .vd-spend-chart {
    gap: 12px;
  }
}

/* Reteller responsive fit pass: keep dashboard/admin pages inside the viewport. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

.vd-main,
.vd-content,
.vd-service-content,
.admin-workspace,
.admin-department,
.admin-data-card,
.table-wrap {
  min-width: 0;
}

@media (min-width: 981px) {
  .vd-topbar {
    min-height: 96px;
    padding-inline: 36px;
  }

  .vd-content,
  .vd-service-content {
    padding: 36px;
  }

  .vd-dashboard-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 24px;
  }

  .vd-wallet-card {
    min-height: 320px;
    padding: 34px;
  }

  .vd-wallet-card strong {
    font-size: clamp(48px, 5vw, 78px);
  }

  .vd-panel,
  .vd-summary-card {
    border-radius: 28px;
    padding: 28px;
  }

  .admin-department {
    padding: 30px !important;
  }

  .admin-stat-card,
  .admin-data-card,
  .admin-toolbar,
  .admin-add-form,
  .admin-log-controls {
    border-radius: 22px !important;
  }
}

@media (max-width: 680px) {
  .vd-app-body,
  .admin-shell-page {
    overflow-x: hidden;
  }

  .vd-sidebar {
    width: min(82vw, 292px);
  }

  .vd-topbar {
    gap: 10px;
    min-height: 84px;
    padding: 16px 18px;
  }

  .vd-mobile-toggle,
  .vd-square-btn {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 18px;
  }

  .vd-profile-pill {
    flex: 1 1 auto;
    max-width: calc(100vw - 154px);
    min-height: 52px;
    border-radius: 18px;
    padding: 0 8px;
  }

  .vd-avatar {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .vd-content,
  .vd-service-content {
    padding: 28px 18px 36px;
  }

  .vd-app-title {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
  }

  .vd-app-title h1 {
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: .94;
    letter-spacing: -0.055em;
  }

  .vd-app-title p {
    font-size: 17px;
    line-height: 1.45;
  }

  .vd-btn {
    width: auto;
    max-width: 100%;
    min-height: 56px;
    padding: 0 22px;
  }

  .vd-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vd-service-layout,
  .vd-field-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vd-summary {
    position: static;
    border-radius: 28px;
    padding: 26px 24px;
  }

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

  .amount-chips button {
    min-width: 0;
    padding: 0 10px;
  }

  .vd-wallet-card {
    min-height: 300px;
    border-radius: 28px;
    padding: 26px 24px;
  }

  .vd-wallet-card strong {
    margin: 38px 0 14px;
    font-size: clamp(52px, 18vw, 68px);
    letter-spacing: -0.055em;
    word-break: break-word;
  }

  .vd-wallet-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .vd-wallet-actions button {
    min-height: 52px;
    border-radius: 18px;
    padding: 0 18px;
  }

  .vd-side-metrics {
    gap: 16px;
  }

  .vd-panel,
  .vd-summary-card,
  .vd-admin-card {
    border-radius: 26px;
    padding: 24px;
  }

  .vd-summary-card strong {
    margin-top: 22px;
    font-size: 34px;
  }

  .vd-quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 10px;
  }

  .vd-quick-grid a {
    gap: 10px;
    font-size: 13px;
  }

  .vd-quick-grid .vd-icon {
    width: 58px;
    height: 58px;
  }

  .vd-activity-row,
  .seller-activity-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .vd-activity-row > span,
  .seller-activity-row > span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .vd-activity-row b,
  .seller-activity-row b {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 720px) {
  body.admin-shell-page .admin-sidebar {
    width: min(82vw, 292px) !important;
  }

  body.admin-shell-page .admin-topbar {
    min-height: 84px !important;
    gap: 10px !important;
    padding: 16px 18px !important;
  }

  .admin-icon-button,
  .admin-mobile-toggle {
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 18px !important;
  }

  .admin-profile-pill-top {
    max-width: calc(100vw - 154px);
    min-height: 52px !important;
    border-radius: 18px !important;
    padding: 0 8px !important;
  }

  .admin-profile-pill-top .vd-avatar {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .admin-department {
    padding: 22px 18px !important;
  }

  .admin-page-head {
    gap: 16px !important;
    margin-bottom: 22px !important;
  }

  .admin-page-head h1 {
    font-size: 30px !important;
    line-height: 1.04 !important;
  }

  .admin-page-head p {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .admin-stat-grid {
    gap: 16px !important;
  }

  .admin-stat-card {
    min-height: auto !important;
    padding: 20px !important;
  }

  .admin-stat-card strong {
    font-size: 30px !important;
  }

  .admin-toolbar,
  .admin-add-form,
  .admin-log-controls {
    gap: 14px !important;
    padding: 18px !important;
  }

  .admin-data-card {
    padding: 14px !important;
    overflow-x: hidden !important;
  }

  .admin-table {
    min-width: 0 !important;
    width: 100% !important;
  }

  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table th,
  .admin-table td {
    display: block;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tr {
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    background: #fff;
    padding: 12px 14px;
  }

  .admin-table tr + tr {
    margin-top: 12px;
  }

  .admin-table td {
    display: grid;
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-bottom: 0 !important;
    padding: 9px 0 !important;
    overflow-wrap: anywhere;
  }

  .admin-table td::before {
    color: rgba(46, 16, 101, 0.5);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  #products .admin-table td:nth-child(1)::before { content: "ID / Code"; }
  #products .admin-table td:nth-child(2)::before { content: "Name"; }
  #products .admin-table td:nth-child(3)::before { content: "Gateway"; }
  #products .admin-table td:nth-child(4)::before { content: "Thumb"; }
  #products .admin-table td:nth-child(5)::before { content: "Category"; }
  #products .admin-table td:nth-child(6)::before { content: "Limit"; }
  #products .admin-table td:nth-child(7)::before { content: "Cashback"; }
  #products .admin-table td:nth-child(8)::before { content: "Agent"; }
  #products .admin-table td:nth-child(9)::before { content: "Partner"; }
  #products .admin-table td:nth-child(10)::before { content: "Sort"; }
  #products .admin-table td:nth-child(11)::before { content: "Controls"; }
  #products .admin-table td:nth-child(12)::before { content: "Status"; }
  #products .admin-table td:nth-child(13)::before { content: "Action"; }

  #products .admin-categories-table td:nth-child(1)::before { content: "Name"; }
  #products .admin-categories-table td:nth-child(2)::before { content: "Products"; }
  #products .admin-categories-table td:nth-child(3)::before { content: "Description"; }
  #products .admin-categories-table td:nth-child(4)::before { content: "Thumb"; }
  #products .admin-categories-table td:nth-child(5)::before { content: "Type"; }
  #products .admin-categories-table td:nth-child(6)::before { content: "Action"; }

  #variations .admin-table td:nth-child(1)::before { content: "ID"; }
  #variations .admin-table td:nth-child(2)::before { content: "Variation"; }
  #variations .admin-table td:nth-child(3)::before { content: "Code"; }
  #variations .admin-table td:nth-child(4)::before { content: "Gigs"; }
  #variations .admin-table td:nth-child(5)::before { content: "Amount"; }
  #variations .admin-table td:nth-child(6)::before { content: "Actual"; }
  #variations .admin-table td:nth-child(7)::before { content: "SCH"; }
  #variations .admin-table td:nth-child(8)::before { content: "Sort"; }
  #variations .admin-table td:nth-child(9)::before { content: "Visibility"; }
  #variations .admin-table td:nth-child(10)::before { content: "Gateway"; }
  #variations .admin-table td:nth-child(11)::before { content: "Options"; }
  #variations .admin-table td:nth-child(12)::before { content: "User prices"; }
  #variations .admin-table td:nth-child(13)::before { content: "MB"; }
  #variations .admin-table td:nth-child(14)::before { content: "Status"; }
  #variations .admin-table td:nth-child(15)::before { content: "Action"; }

  #gateways .admin-table td:nth-child(1)::before { content: "Gateway"; }
  #gateways .admin-table td:nth-child(2)::before { content: "Code"; }
  #gateways .admin-table td:nth-child(3)::before { content: "Environment"; }
  #gateways .admin-table td:nth-child(4)::before { content: "Base URL"; }
  #gateways .admin-table td:nth-child(5)::before { content: "Services"; }
  #gateways .admin-table td:nth-child(6)::before { content: "Status"; }
  #gateways .admin-table td:nth-child(7)::before { content: "Action"; }

  #product-airtime .admin-table td:nth-child(1)::before,
  #product-electricity .admin-table td:nth-child(1)::before,
  #product-betting .admin-table td:nth-child(1)::before { content: "Product"; }
  #product-airtime .admin-table td:nth-child(2)::before,
  #product-electricity .admin-table td:nth-child(2)::before,
  #product-betting .admin-table td:nth-child(2)::before { content: "Provider"; }
  #product-airtime .admin-table td:nth-child(3)::before,
  #product-electricity .admin-table td:nth-child(3)::before,
  #product-betting .admin-table td:nth-child(3)::before { content: "Pricing"; }
  #product-airtime .admin-table td:nth-child(4)::before,
  #product-electricity .admin-table td:nth-child(4)::before,
  #product-betting .admin-table td:nth-child(4)::before { content: "Comm. type"; }
  #product-airtime .admin-table td:nth-child(5)::before,
  #product-electricity .admin-table td:nth-child(5)::before,
  #product-betting .admin-table td:nth-child(5)::before { content: "Comm."; }
  #product-airtime .admin-table td:nth-child(6)::before,
  #product-electricity .admin-table td:nth-child(6)::before,
  #product-betting .admin-table td:nth-child(6)::before { content: "Fee"; }
  #product-airtime .admin-table td:nth-child(7)::before,
  #product-electricity .admin-table td:nth-child(7)::before,
  #product-betting .admin-table td:nth-child(7)::before { content: "Minimum"; }
  #product-airtime .admin-table td:nth-child(8)::before,
  #product-electricity .admin-table td:nth-child(8)::before,
  #product-betting .admin-table td:nth-child(8)::before { content: "Maximum"; }
  #product-airtime .admin-table td:nth-child(9)::before,
  #product-electricity .admin-table td:nth-child(9)::before,
  #product-betting .admin-table td:nth-child(9)::before { content: "Status"; }
  #product-airtime .admin-table td:nth-child(10)::before,
  #product-electricity .admin-table td:nth-child(10)::before,
  #product-betting .admin-table td:nth-child(10)::before { content: "Action"; }

  #product-data .admin-table td:nth-child(1)::before { content: "Network"; }
  #product-data .admin-table td:nth-child(2)::before { content: "Data type"; }
  #product-data .admin-table td:nth-child(3)::before { content: "Plan"; }
  #product-data .admin-table td:nth-child(4)::before { content: "Size"; }
  #product-data .admin-table td:nth-child(5)::before { content: "Validity"; }
  #product-data .admin-table td:nth-child(6)::before { content: "Provider"; }
  #product-data .admin-table td:nth-child(7)::before { content: "Cost"; }
  #product-data .admin-table td:nth-child(8)::before { content: "Selling"; }
  #product-data .admin-table td:nth-child(9)::before { content: "Profit"; }
  #product-data .admin-table td:nth-child(10)::before { content: "Code"; }
  #product-data .admin-table td:nth-child(11)::before { content: "Status"; }
  #product-data .admin-table td:nth-child(12)::before { content: "Action"; }

  #product-cable .admin-table td:nth-child(1)::before { content: "Provider"; }
  #product-cable .admin-table td:nth-child(2)::before { content: "Package"; }
  #product-cable .admin-table td:nth-child(3)::before { content: "Gateway"; }
  #product-cable .admin-table td:nth-child(4)::before { content: "Cost"; }
  #product-cable .admin-table td:nth-child(5)::before { content: "Selling"; }
  #product-cable .admin-table td:nth-child(6)::before { content: "Profit"; }
  #product-cable .admin-table td:nth-child(7)::before { content: "Code"; }
  #product-cable .admin-table td:nth-child(8)::before { content: "Status"; }
  #product-cable .admin-table td:nth-child(9)::before { content: "Action"; }

  #users .admin-table td:nth-child(1)::before { content: "Name"; }
  #users .admin-table td:nth-child(2)::before { content: "Email"; }
  #users .admin-table td:nth-child(3)::before { content: "Phone"; }
  #users .admin-table td:nth-child(4)::before { content: "Category"; }
  #users .admin-table td:nth-child(5)::before { content: "Wallet"; }

  #api-logs .admin-table td:nth-child(1)::before { content: "Time"; }
  #api-logs .admin-table td:nth-child(2)::before { content: "Type"; }
  #api-logs .admin-table td:nth-child(3)::before { content: "Customer"; }
  #api-logs .admin-table td:nth-child(4)::before { content: "Reference"; }
  #api-logs .admin-table td:nth-child(5)::before { content: "Status"; }
  #api-logs .admin-table td:nth-child(6)::before { content: "Payload"; }

  .api-log-card .log-payload {
    max-width: 100% !important;
    min-height: 120px !important;
  }

  .admin-log-customer {
    min-width: 0;
  }

  .admin-data-type-manager,
  .admin-data-type-form,
  .admin-category-form {
    grid-template-columns: 1fr;
  }

  .admin-modal {
    align-items: flex-start;
    padding: 10px;
  }

  .admin-modal-panel,
  .admin-large-modal {
    width: min(100%, calc(100vw - 20px));
    max-height: calc(100dvh - 20px);
    border-radius: 20px;
    padding: 22px 16px;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-modal-actions {
    flex-direction: column-reverse;
  }

  .admin-modal-actions .admin-action-button {
    width: 100%;
  }

  .admin-row-actions {
    width: 100%;
  }

  .admin-row-actions button {
    flex: 1 1 110px;
  }

  .admin-menu-group a {
    margin-left: 8px;
  }
}

@media (max-width: 380px) {
  .vd-topbar,
  body.admin-shell-page .admin-topbar {
    padding-inline: 14px !important;
  }

  .vd-mobile-toggle,
  .vd-square-btn,
  .admin-icon-button,
  .admin-mobile-toggle {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
  }

  .vd-profile-pill,
  .admin-profile-pill-top {
    max-width: calc(100vw - 140px);
    min-height: 48px !important;
  }

  .vd-content,
  .vd-service-content,
  .admin-department {
    padding-inline: 14px !important;
  }

  .vd-app-title h1 {
    font-size: clamp(34px, 11vw, 42px);
  }

  .vd-wallet-card {
    padding: 22px 20px;
  }
}
