/*
 * Zendro account UI.
 * The card proportions, soft background artwork and control rhythm are adapted
 * from the local SaaS-Roblex reference. Every selector is scoped so the frozen
 * Webflow marketing pages keep their original rendering.
 */

body.zendro-auth-page {
  --auth-ink: #0f0f16;
  --auth-navy: #051b31;
  --auth-muted: #647180;
  --auth-blue: #4351ed;
  --auth-blue-dark: #3341d7;
  --auth-border: #e5e5e5;
  --auth-surface: rgba(248, 248, 248, 0.94);
  --auth-white: #fff;
  min-width: 320px;
  margin: 0;
  color: var(--auth-navy);
  background: #fff;
  font-family: var(--font-name--inter-tight, "Inter Tight", Inter, "PingFang SC", "Microsoft YaHei", sans-serif);
  overflow-x: hidden;
}

/* Billing */
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-auth-container {
  max-width: 1180px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-header {
  margin-bottom: 22px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-header h1 {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-header p {
  max-width: 600px;
  margin-top: 10px;
  line-height: 1.65;
  text-wrap: pretty;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(67, 81, 237, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 10%, rgba(67, 81, 237, 0.08), transparent 32%),
    #f7f8ff;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(67, 81, 237, 0.18);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(67, 81, 237, 0.09);
  place-items: center;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement-icon span {
  width: 10px;
  height: 10px;
  border: 2px solid var(--auth-blue);
  border-radius: 3px;
  transform: rotate(45deg);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement.is-active .zendro-billing-entitlement-icon span {
  border-color: #fff;
  background: var(--auth-blue);
  box-shadow: 0 0 0 5px rgba(67, 81, 237, 0.12);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement-copy {
  min-width: 0;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement-copy > span,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-account-card-label {
  color: #6b7484;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.055em;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement strong {
  display: inline;
  margin-left: 8px;
  color: var(--auth-ink);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement p {
  margin: 3px 0 0;
  color: var(--auth-muted);
  font-size: 12px;
  line-height: 1.55;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement-state {
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--auth-blue);
  background: rgba(67, 81, 237, 0.08);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement.is-loading .zendro-billing-entitlement-copy {
  opacity: 0.58;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement.is-error {
  border-color: rgba(177, 68, 78, 0.18);
  background: #fff7f8;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: start;
  gap: 16px;
  margin-top: 16px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-picker {
  padding: 24px;
  border: 1px solid var(--auth-border);
  border-radius: 18px;
  background: rgba(248, 249, 252, 0.82);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-section-heading h2,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-checkout h2,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history h2 {
  margin: 7px 0 0;
  color: var(--auth-ink);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-section-heading p {
  margin: 7px 0 0;
  color: var(--auth-muted);
  font-size: 12px;
  line-height: 1.6;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 158px;
  padding: 18px;
  border: 1px solid #dfe3ea;
  border-radius: 15px;
  flex-direction: column;
  align-items: flex-start;
  color: var(--auth-navy);
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button:hover {
  border-color: rgba(67, 81, 237, 0.42);
  transform: translateY(-2px);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button:active {
  transform: translateY(0) scale(0.985);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button:focus-visible,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-pay:focus-visible,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-retry:focus-visible {
  outline: 3px solid rgba(67, 81, 237, 0.24);
  outline-offset: 3px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button.is-selected {
  border-color: var(--auth-blue);
  background: #f8f8ff;
  box-shadow: 0 14px 34px rgba(67, 81, 237, 0.11);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-check {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 19px;
  height: 19px;
  border: 1.5px solid #b9c0cc;
  border-radius: 6px;
  background: #fff;
  place-items: center;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button.is-selected .zendro-billing-plan-check {
  border-color: var(--auth-blue);
  background: var(--auth-blue);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button.is-selected .zendro-billing-plan-check::after {
  width: 7px;
  height: 4px;
  border-bottom: 1.7px solid #fff;
  border-left: 1.7px solid #fff;
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-name {
  padding-right: 28px;
  color: #394457;
  font-size: 13px;
  font-weight: 650;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: auto;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-price strong,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) [data-billing-selection-price] {
  font-variant-numeric: tabular-nums;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-price strong {
  color: var(--auth-ink);
  font-size: clamp(31px, 4vw, 39px);
  line-height: 1;
  letter-spacing: -0.045em;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-price span {
  color: var(--auth-muted);
  font-size: 11px;
  white-space: nowrap;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button small {
  margin-top: 7px;
  color: #848d9b;
  font-size: 11px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-purchase-notes {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-purchase-notes li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  padding: 11px 2px;
  border-top: 1px solid #e5e8ee;
  color: #566274;
  font-size: 12px;
  line-height: 1.45;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-purchase-notes li span {
  color: #9aa1ad;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-checkout {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(67, 81, 237, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 58px rgba(40, 48, 103, 0.09);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-summary-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-top: 7px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-summary-title h2 {
  margin: 0;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) [data-billing-selection-price] {
  color: var(--auth-blue);
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-message {
  position: relative;
  margin: 15px 0 0;
  padding-left: 16px;
  color: var(--auth-muted);
  font-size: 12px;
  line-height: 1.6;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-message::before {
  position: absolute;
  top: 0.53em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #a0a8b4;
  content: "";
  transform: rotate(45deg);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-message[data-tone="progress"]::before {
  background: var(--auth-blue);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-message[data-tone="success"]::before {
  background: #23836f;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-message[data-tone="warning"]::before {
  background: #a66d1b;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-message[data-tone="error"] {
  color: #a43c47;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-message[data-tone="error"]::before {
  background: #b1444e;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-summary-meta {
  display: grid;
  gap: 0;
  margin: 19px 0 0;
  padding: 10px 0;
  border-top: 1px solid var(--auth-border);
  border-bottom: 1px solid var(--auth-border);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-summary-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 12px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-summary-meta dt {
  color: #7b8492;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-summary-meta dd {
  margin: 0;
  color: #374255;
  font-weight: 600;
  text-align: right;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-pay {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--auth-blue);
  box-shadow: 0 12px 28px rgba(67, 81, 237, 0.2);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-pay:hover {
  background: var(--auth-blue-dark);
  box-shadow: 0 15px 32px rgba(67, 81, 237, 0.25);
  transform: translateY(-1px);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-pay:active {
  transform: translateY(1px) scale(0.99);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-pay:disabled {
  cursor: wait;
  opacity: 0.56;
  transform: none;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-retry {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-secure-note {
  display: block;
  margin-top: 10px;
  color: #8a929e;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-payment {
  display: grid;
  min-height: 190px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(67, 81, 237, 0.1);
  border-radius: 14px;
  align-content: center;
  justify-items: center;
  background: #f7f8ff;
  text-align: center;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-payment[hidden] {
  display: none;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-payment img {
  width: min(190px, 100%);
  height: auto;
  padding: 8px;
  border: 1px solid #e7e8ee;
  border-radius: 11px;
  background: #fff;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-payment strong {
  margin-top: 12px;
  color: var(--auth-ink);
  font-size: 16px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-payment p {
  margin: 5px 0 0;
  color: var(--auth-muted);
  font-size: 11px;
  line-height: 1.55;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-payment small {
  display: block;
  margin-top: 9px;
  color: #8a641f;
  font-size: 10px;
  line-height: 1.55;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(67, 81, 237, 0.14);
  border-top-color: var(--auth-blue);
  border-radius: 50%;
  animation: zendro-billing-spin 800ms linear infinite;
}

@keyframes zendro-billing-spin {
  to { transform: rotate(360deg); }
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history {
  margin-top: 16px;
  padding: 22px 24px 16px;
  border: 1px solid var(--auth-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history-heading > span {
  color: #7d8693;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-table-wrap {
  margin-top: 16px;
  overflow: hidden;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history table {
  width: 100%;
  border-collapse: collapse;
  color: #3e4a5d;
  font-size: 12px;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history th,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history td {
  padding: 12px 10px;
  border-bottom: 1px solid #e6e8ed;
  text-align: left;
  white-space: nowrap;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history th {
  color: #7b8491;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody tr:last-child td {
  border-bottom: 0;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-order-status {
  display: inline-flex;
  padding: 5px 7px;
  border-radius: 7px;
  color: #5d6674;
  background: #f0f1f4;
  font-size: 10px;
  font-weight: 650;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-order-status[data-status="paid"] {
  color: #246f61;
  background: #eaf6f3;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-order-status[data-status="pending"] {
  color: #8c641f;
  background: #fbf3e5;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-order-status[data-status="cancelled"],
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-order-status[data-status="refunded"] {
  color: #6f6876;
  background: #f2eff4;
}

:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-empty td,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-error td,
:is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-placeholder td {
  padding: 24px 10px;
  color: #7b8491;
  text-align: center;
  white-space: normal;
}

@media (max-width: 1100px) {
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-workspace {
    grid-template-columns: 1fr;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-checkout {
    position: static;
  }
}

@media (max-width: 767px) {
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-header {
    margin-bottom: 18px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-header h1 {
    font-size: 32px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement strong {
    display: inline;
    margin: 0 0 0 5px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-entitlement-state {
    grid-column: auto;
    justify-self: end;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-picker,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-checkout,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history {
    padding: 18px;
    border-radius: 16px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans {
    gap: 10px;
    margin-top: 16px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans button {
    min-height: 143px;
    padding: 15px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-check {
    top: 13px;
    right: 13px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-price {
    display: grid;
    gap: 3px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plan-price strong {
    font-size: 31px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-purchase-notes {
    display: none;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-table-wrap,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history table,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody {
    display: block;
    width: 100%;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history thead {
    display: none;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody {
    display: grid;
    gap: 10px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    padding: 14px;
    border: 1px solid #e5e8ee;
    border-radius: 12px;
    background: #fff;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody td {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 0;
    border: 0;
    font-size: 11px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody td::before {
    color: #8a929e;
    content: attr(data-label);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.04em;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody td:first-child {
    grid-column: 1 / -1;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody tr.is-empty,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody tr.is-error,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tbody tr.is-placeholder {
    display: block;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-empty td,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-error td,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-placeholder td {
    display: block;
    padding: 10px 4px;
  }

  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-empty td::before,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-error td::before,
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-history tr.is-placeholder td::before {
    content: none;
  }
}

@media (max-width: 350px) {
  :is([data-auth-page="billing"], [data-auth-page="account-orders"]) .zendro-billing-plans {
    grid-template-columns: 1fr;
  }
}

.zendro-legal-document {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--auth-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(33, 44, 63, 0.08);
}

.zendro-legal-document > header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--auth-border);
}

.zendro-legal-document h1 {
  margin: 0;
  color: var(--auth-ink);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.zendro-legal-document > header p,
.zendro-legal-content p,
.zendro-legal-content li {
  color: var(--auth-muted);
  font-size: 15px;
  line-height: 1.85;
}

.zendro-legal-document > header p {
  margin: 12px 0 0;
}

.zendro-legal-content {
  padding: 12px 0 28px;
}

.zendro-legal-content h2 {
  margin: 30px 0 8px;
  color: var(--auth-ink);
  font-size: 20px;
}

.zendro-legal-content p {
  margin: 8px 0;
}

.zendro-legal-content ul {
  margin: 8px 0;
  padding-left: 22px;
}

.zendro-legal-document > footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--auth-border);
}

.zendro-legal-document a {
  color: var(--auth-blue);
  font-weight: 600;
  text-decoration: none;
}

.zendro-legal-document a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .zendro-legal-document {
    border-radius: 14px;
  }
}

}

.zendro-auth-page *,
.zendro-auth-page *::before,
.zendro-auth-page *::after {
  box-sizing: border-box;
}

.zendro-auth-page button,
.zendro-auth-page input {
  font: inherit;
}

.zendro-auth-page [hidden] {
  display: none !important;
}

.zendro-auth-page .fda-nav-block {
  position: relative;
  z-index: 50;
  background: #fff;
}

.zendro-auth-main {
  position: relative;
  min-height: calc(100svh - 84px);
  padding: 136px 24px 84px;
  isolation: isolate;
  overflow-x: hidden;
}

.zendro-auth-container {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.zendro-auth-backdrop {
  position: absolute;
  z-index: -1;
  top: 50px;
  left: 50%;
  width: min(900px, 90vw);
  aspect-ratio: 1 / 1;
  background-image: var(--zendro-auth-backdrop-image, url("/_local/auth/roblex-login-bg.webp"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.98;
  transform: translateX(-50%);
  pointer-events: none;
}

[data-auth-backdrop="signup"] .zendro-auth-backdrop {
  background-image: var(--zendro-auth-backdrop-image, url("/_local/auth/roblex-signup-bg.webp"));
}

[data-auth-backdrop="forgot"] .zendro-auth-backdrop,
[data-auth-backdrop="account"] .zendro-auth-backdrop {
  top: 80px;
  width: min(980px, 95vw);
  aspect-ratio: 1.45 / 1;
  background-image: var(--zendro-auth-backdrop-image, url("/_local/auth/roblex-forgot-bg.webp"));
}

[data-auth-backdrop="account"] .zendro-auth-backdrop {
  top: 10px;
  left: 68%;
  width: min(1120px, 100vw);
  opacity: 0.7;
}

.zendro-auth-panel {
  width: min(100%, 500px);
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--auth-border);
  border-radius: 16px;
  background: var(--auth-surface);
  box-shadow: 0 24px 80px rgba(33, 44, 63, 0.08);
  backdrop-filter: blur(10px);
  animation: zendro-auth-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.zendro-auth-panel.is-compact {
  width: min(100%, 500px);
}

.zendro-auth-panel.is-wide {
  width: min(100%, 760px);
}

.zendro-auth-panel-header {
  margin-bottom: 28px;
  text-align: center;
}

.zendro-auth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 5px 11px;
  border: 1px solid rgba(67, 81, 237, 0.18);
  border-radius: 999px;
  color: var(--auth-blue);
  background: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.zendro-auth-eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--auth-blue);
  box-shadow: 0 0 0 4px rgba(67, 81, 237, 0.1);
  content: "";
}

.zendro-auth-panel-header h1,
.zendro-account-header h1 {
  margin: 0;
  color: var(--auth-ink);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.zendro-auth-panel-header p,
.zendro-account-header p {
  max-width: 520px;
  margin: 12px auto 0;
  color: var(--auth-muted);
  font-size: 15px;
  line-height: 1.65;
}

.zendro-auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zendro-auth-social-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--auth-ink);
  background: var(--auth-white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.zendro-auth-social-button:hover {
  border-color: rgba(67, 81, 237, 0.32);
  box-shadow: 0 8px 20px rgba(31, 42, 80, 0.08);
  transform: translateY(-1px);
}

.zendro-auth-social-button:focus-visible,
.zendro-auth-submit:focus-visible,
.zendro-account-signout:focus-visible,
.zendro-auth-upload:focus-visible,
.zendro-account-sidebar a:focus-visible {
  outline: 3px solid rgba(67, 81, 237, 0.24);
  outline-offset: 3px;
}

.zendro-auth-social-button small {
  position: absolute;
  top: -7px;
  right: 8px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #fff;
  background: var(--auth-navy);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
}

.zendro-auth-social-mark {
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  font-size: 17px;
  font-weight: 700;
}

.zendro-auth-social-mark.is-google {
  color: #4285f4;
  font-family: Arial, sans-serif;
  text-shadow: 0.7px 0 #34a853, -0.7px 0 #ea4335, 0 0.7px #fbbc05;
}

.zendro-auth-social-mark.is-wechat {
  position: relative;
  border-radius: 50%;
  background: #07c160;
}

.zendro-auth-social-mark.is-wechat i {
  position: absolute;
  width: 9px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.zendro-auth-social-mark.is-wechat i:first-child {
  top: 4px;
  left: 3px;
}

.zendro-auth-social-mark.is-wechat i:last-child {
  right: 2px;
  bottom: 3px;
  border: 1px solid #07c160;
}

.zendro-auth-separator {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 28px;
}

.zendro-auth-separator span {
  flex: 1;
  height: 1px;
  background: #dadada;
}

.zendro-auth-separator em {
  flex: none;
  color: rgba(15, 15, 22, 0.64);
  font-size: 13px;
  font-style: normal;
}

.zendro-auth-form {
  display: grid;
  gap: 16px;
  margin: 0;
}

.zendro-auth-form[data-auth-busy="true"] {
  cursor: wait;
}

.zendro-auth-field {
  min-width: 0;
}

.zendro-auth-field > label {
  display: block;
  margin: 0 0 8px;
  color: var(--auth-ink);
  font-size: 13px;
  font-weight: 550;
}

.zendro-auth-control {
  position: relative;
  display: flex;
  align-items: center;
}

.zendro-auth-control input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid var(--auth-white);
  border-radius: 8px;
  outline: none;
  color: var(--auth-ink);
  background: var(--auth-white);
  font-size: 15px;
  line-height: 24px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.zendro-auth-control.has-icon input {
  padding-left: 50px;
}

.zendro-auth-control.has-action input {
  padding-right: 50px;
}

.zendro-auth-control input::placeholder {
  color: rgba(15, 15, 22, 0.42);
}

.zendro-auth-control input:hover {
  border-color: #d8d8dc;
}

.zendro-auth-control input:focus {
  border-color: var(--auth-blue);
  box-shadow: 0 0 0 4px rgba(67, 81, 237, 0.1);
}

.zendro-auth-control input:disabled,
.zendro-auth-form[data-auth-busy="true"] .zendro-auth-control input {
  opacity: 0.7;
}

.zendro-auth-input-icon {
  position: absolute;
  z-index: 1;
  left: 19px;
  width: 17px;
  height: 17px;
  color: rgba(15, 15, 22, 0.38);
  pointer-events: none;
}

.zendro-auth-input-icon.icon-mail {
  border: 1.7px solid currentColor;
  border-radius: 3px;
}

.zendro-auth-input-icon.icon-mail::after {
  position: absolute;
  top: 1px;
  left: 2px;
  width: 10px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.zendro-auth-input-icon.icon-lock {
  top: 19px;
  height: 13px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
}

.zendro-auth-input-icon.icon-lock::before {
  position: absolute;
  top: -8px;
  left: 3px;
  width: 8px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.zendro-auth-input-icon.icon-user::before {
  position: absolute;
  top: 0;
  left: 5px;
  width: 7px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  content: "";
}

.zendro-auth-input-icon.icon-user::after {
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 13px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  content: "";
}

.zendro-auth-input-icon.icon-ticket {
  border: 1.7px solid currentColor;
  border-radius: 3px;
  transform: rotate(-8deg);
}

.zendro-auth-input-icon.icon-ticket::after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 6px;
  border-left: 1.5px dashed currentColor;
  content: "";
}

.zendro-auth-password-toggle {
  position: absolute;
  z-index: 2;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: rgba(15, 15, 22, 0.5);
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.zendro-auth-password-toggle:hover {
  color: var(--auth-blue);
  background: rgba(67, 81, 237, 0.07);
}

.zendro-auth-password-toggle span {
  position: relative;
  display: block;
  width: 17px;
  height: 11px;
  border: 1.7px solid currentColor;
  border-radius: 50% / 60%;
}

.zendro-auth-password-toggle span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.zendro-auth-password-toggle[data-visible="true"] span::before {
  position: absolute;
  top: 4px;
  left: -2px;
  width: 20px;
  border-top: 1.7px solid currentColor;
  content: "";
  transform: rotate(-35deg);
}

.zendro-auth-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.zendro-auth-form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 0 0;
  color: var(--auth-ink);
  font-size: 13px;
}

.zendro-auth-form-meta a,
.zendro-auth-switch a,
.zendro-auth-secondary-action,
.zendro-account-card a {
  color: var(--auth-blue);
  font-weight: 600;
  text-decoration: none;
}

.zendro-auth-form-meta a:hover,
.zendro-auth-switch a:hover,
.zendro-auth-secondary-action:hover,
.zendro-account-card a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.zendro-auth-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.zendro-auth-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.zendro-auth-checkbox span {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1px solid #cacaca;
  border-radius: 4px;
  background: #f5f5f5;
}

.zendro-auth-checkbox input:focus-visible + span {
  outline: 3px solid rgba(67, 81, 237, 0.2);
  outline-offset: 2px;
}

.zendro-auth-checkbox input:checked + span {
  border-color: var(--auth-blue);
  background: var(--auth-blue);
}

.zendro-auth-checkbox input:checked + span::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.zendro-auth-submit,
.zendro-auth-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  padding: 13px 24px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--auth-blue);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.zendro-auth-submit:hover {
  color: #fff;
  background: var(--auth-blue-dark);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1), 0 8px 24px rgba(67, 81, 237, 0.2);
  transform: translateY(-1px);
}

.zendro-auth-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.zendro-auth-submit.is-inline {
  width: auto;
  min-width: 156px;
  justify-self: start;
}

.zendro-auth-secondary-action.is-inline {
  width: auto;
  min-width: 156px;
  margin-top: 0;
}

.zendro-auth-secondary-action {
  margin-top: 0;
  border: 1px solid rgba(67, 81, 237, 0.2);
  color: var(--auth-blue);
  background: #fff;
  box-shadow: none;
}

.zendro-auth-status {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(67, 81, 237, 0.18);
  border-radius: 8px;
  color: var(--auth-blue);
  background: rgba(67, 81, 237, 0.06);
  font-size: 13px;
  line-height: 1.55;
  outline: none;
}

.zendro-auth-status[data-kind="error"] {
  border-color: rgba(198, 48, 58, 0.18);
  color: #a4202c;
  background: #fff0f1;
}

.zendro-auth-status[data-kind="success"] {
  border-color: rgba(18, 129, 83, 0.18);
  color: #08774a;
  background: #edf9f3;
}

.zendro-auth-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--auth-blue-dark);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.zendro-auth-skip-link:focus {
  transform: translateY(0);
}

.zendro-device-auth [data-web-auth-idle],
.zendro-device-auth [data-web-auth-pending],
.zendro-device-auth [data-web-auth-error] {
  display: grid;
  gap: 14px;
}

.zendro-device-auth [hidden] {
  display: none;
}

.zendro-auth-demo-hint,
.zendro-auth-field-help {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: #526170;
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.6;
}

.zendro-auth-field-help {
  margin-top: -8px;
  padding: 0;
  background: transparent;
}

.zendro-auth-switch {
  margin: 24px 0 0;
  color: var(--auth-muted);
  font-size: 13px;
  text-align: center;
}

.zendro-auth-switch a {
  margin-left: 6px;
}

.zendro-auth-verification-icon {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 20px;
  color: var(--auth-blue);
  background: #fff;
  box-shadow: 0 12px 32px rgba(67, 81, 237, 0.12);
  place-items: center;
}

.zendro-auth-verification-icon span {
  width: 28px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.zendro-auth-verification-icon span::after {
  position: absolute;
  top: 21px;
  left: 24px;
  width: 19px;
  height: 13px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.zendro-auth-verification-copy {
  margin: 0 0 24px;
  color: var(--auth-muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.zendro-auth-verification-copy strong {
  color: var(--auth-ink);
}

.zendro-auth-toast {
  position: fixed;
  z-index: 1000;
  top: 24px;
  left: 50%;
  min-width: min(360px, calc(100vw - 32px));
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  background: var(--auth-navy);
  box-shadow: 0 18px 45px rgba(5, 27, 49, 0.2);
  font-size: 13px;
  text-align: center;
  transform: translateX(-50%);
  animation: zendro-auth-toast 220ms ease both;
}

.zendro-auth-toast.is-hiding {
  animation: zendro-auth-toast-exit 220ms ease both;
}

/* Account surfaces */
.zendro-account-inline-alert {
  display: grid;
  width: min(620px, 100%);
  margin: 0 auto 14px;
  padding: 14px 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 16px;
  border: 1px solid rgba(198, 48, 58, 0.2);
  border-radius: 12px;
  color: #7e2630;
  background: rgba(255, 245, 246, 0.96);
  box-shadow: 0 12px 34px rgba(110, 31, 40, 0.08);
}

.zendro-account-inline-alert[hidden] {
  display: none;
}

.zendro-account-inline-alert strong,
.zendro-account-inline-alert p {
  margin: 0;
}

.zendro-account-inline-alert strong {
  font-size: 14px;
}

.zendro-account-inline-alert p {
  grid-column: 1;
  color: #99606a;
  font-size: 12px;
}

.zendro-account-inline-alert .zendro-auth-secondary-action {
  grid-column: 2;
  grid-row: 1 / span 2;
}

@media (max-width: 560px) {
  .zendro-account-inline-alert {
    grid-template-columns: 1fr;
  }

  .zendro-account-inline-alert .zendro-auth-secondary-action {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

.zendro-account-shell {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  min-height: 640px;
  border: 1px solid var(--auth-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 28px 90px rgba(33, 44, 63, 0.1);
  backdrop-filter: blur(12px);
  overflow: hidden;
  animation: zendro-auth-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-auth-gate][aria-busy="true"] :is(
  [data-auth-user="nickname"],
  [data-auth-user="provider"],
  [data-auth-user="identity"],
  [data-account-value],
  [data-account-detail]
) {
  width: fit-content;
  max-width: 100%;
  border-radius: 5px;
  color: transparent !important;
  background: linear-gradient(100deg, #eef0f3 20%, #f8f9fa 38%, #eef0f3 56%);
  background-size: 220% 100%;
  animation: zendro-account-field-loading 1.1s ease-in-out infinite;
}

@keyframes zendro-account-field-loading {
  to {
    background-position-x: -220%;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-auth-gate][aria-busy="true"] :is(
    [data-auth-user="nickname"],
    [data-auth-user="provider"],
    [data-auth-user="identity"],
    [data-account-value],
    [data-account-detail]
  ) {
    animation: none;
  }
}

.zendro-account-sidebar {
  display: flex;
  flex-direction: column;
  padding: 26px 20px 22px;
  border-right: 1px solid var(--auth-border);
  background: rgba(248, 248, 248, 0.88);
}

.zendro-account-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 4px 22px;
  border-bottom: 1px solid var(--auth-border);
}

.zendro-account-user > div:last-child {
  min-width: 0;
}

.zendro-account-user strong,
.zendro-account-user span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zendro-account-user strong {
  color: var(--auth-ink);
  font-size: 14px;
}

.zendro-account-user span {
  margin-top: 3px;
  color: var(--auth-muted);
  font-size: 11px;
}

.zendro-account-avatar {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--auth-blue), #9e6dee 58%, #15b2a9);
  box-shadow: 0 7px 18px rgba(67, 81, 237, 0.2);
  font-weight: 700;
  place-items: center;
  overflow: hidden;
}

.zendro-account-avatar.is-large {
  flex-basis: 78px;
  width: 78px;
  height: 78px;
  border-radius: 20px;
  font-size: 24px;
}

.zendro-account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zendro-account-sidebar nav {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.zendro-account-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 9px;
  color: #536170;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.zendro-account-sidebar nav a span {
  width: 7px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.zendro-account-sidebar nav a:hover,
.zendro-account-sidebar nav a[aria-current="page"] {
  color: var(--auth-blue);
  background: #fff;
  box-shadow: 0 6px 18px rgba(5, 27, 49, 0.05);
}

.zendro-account-sidebar nav a[aria-current="page"] span {
  border-color: var(--auth-blue);
  background: var(--auth-blue);
  box-shadow: 0 0 0 4px rgba(67, 81, 237, 0.1);
}

.zendro-account-signout {
  min-height: 42px;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid var(--auth-border);
  border-radius: 8px;
  color: var(--auth-muted);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.zendro-account-signout:hover {
  border-color: #cfd3d7;
  color: var(--auth-ink);
}

.zendro-account-signout.is-danger {
  flex: 0 0 auto;
  margin-top: 0;
  border-color: rgba(198, 48, 58, 0.2);
  color: #a4202c;
  background: #fff5f6;
}

.zendro-account-content {
  min-width: 0;
  padding: 52px;
}

.zendro-account-header {
  margin-bottom: 32px;
}

.zendro-account-header h1 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
}

.zendro-account-header p {
  margin-left: 0;
}

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

.zendro-account-card,
.zendro-account-form-card {
  border: 1px solid var(--auth-border);
  border-radius: 14px;
  background: #f8f8f8;
}

.zendro-account-card {
  min-height: 190px;
  padding: 24px;
}

.zendro-account-card.is-primary {
  border-color: rgba(67, 81, 237, 0.18);
  background: linear-gradient(145deg, rgba(67, 81, 237, 0.09), rgba(181, 247, 255, 0.34));
}

.zendro-account-card-label {
  display: block;
  margin-bottom: 22px;
  color: var(--auth-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zendro-account-card strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--auth-ink);
  font-size: 17px;
  line-height: 1.35;
}

.zendro-account-card p {
  margin: 9px 0 0;
  color: var(--auth-muted);
  font-size: 13px;
  line-height: 1.55;
}

.zendro-account-card a {
  display: inline-block;
  margin-top: 13px;
  font-size: 13px;
}

.zendro-account-form-card {
  padding: 30px;
  background: rgba(248, 248, 248, 0.9);
}

.zendro-account-form-card h2 {
  margin: 0;
  color: var(--auth-ink);
  font-size: 20px;
  line-height: 1.3;
}

.zendro-account-profile-header {
  margin-bottom: 18px;
}

.zendro-account-profile-card {
  padding: 28px 30px;
  background: rgba(248, 248, 248, 0.78);
}

.zendro-account-profile-card h1 {
  margin: 0;
  color: var(--auth-ink);
  font-size: 20px;
  line-height: 1.3;
}

.zendro-account-profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.zendro-account-profile-card .zendro-account-section-copy {
  margin-bottom: 22px;
}

.zendro-account-profile-card .zendro-account-avatar-editor {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.zendro-account-profile-card .zendro-auth-secondary-action:hover {
  border-color: rgba(67, 81, 237, 0.38);
  color: var(--auth-blue-dark);
  background: rgba(67, 81, 237, 0.05);
  box-shadow: 0 8px 22px rgba(67, 81, 237, 0.08);
  text-decoration: none;
  transform: translateY(-1px);
}

[data-auth-page="account-profile"] .zendro-account-shell {
  min-height: 520px;
}

[data-auth-page="account"] .zendro-account-shell {
  min-height: 520px;
}

.zendro-account-section-copy {
  margin: 7px 0 24px;
  color: var(--auth-muted);
  font-size: 13px;
  line-height: 1.55;
}

.zendro-account-avatar-editor {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--auth-border);
}

.zendro-auth-upload {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--auth-border);
  border-radius: 8px;
  color: var(--auth-ink);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.zendro-account-avatar-editor input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.zendro-account-avatar-editor p {
  margin: 6px 0 0;
  color: var(--auth-muted);
  font-size: 11px;
}

.zendro-account-session-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  background: #fff;
}

.zendro-account-session-card p {
  margin: 7px 0 0;
  color: var(--auth-muted);
  font-size: 12px;
  line-height: 1.55;
}

@keyframes zendro-auth-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zendro-auth-toast {
  from { opacity: 0; transform: translate(-50%, -8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes zendro-auth-toast-exit {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, -8px); }
}

@media (max-width: 991px) {
  .zendro-auth-main {
    padding: 112px 24px 76px;
  }

  .zendro-auth-backdrop {
    top: 48px;
    width: min(800px, 105vw);
  }

  .zendro-account-shell {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .zendro-account-content {
    padding: 38px 30px;
  }

  .zendro-account-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zendro-account-grid .zendro-account-card:last-child {
    grid-column: 1 / -1;
    min-height: 150px;
  }
}

@media (max-width: 767px) {
  .zendro-auth-main {
    min-height: calc(100svh - 64px);
    padding: 80px 20px 72px;
  }

  .zendro-auth-backdrop,
  [data-auth-backdrop="forgot"] .zendro-auth-backdrop,
  [data-auth-backdrop="account"] .zendro-auth-backdrop {
    top: 26px;
    left: 50%;
    width: 650px;
    max-width: none;
    opacity: 0.86;
  }

  .zendro-auth-panel {
    padding: 32px 20px;
  }

  .zendro-auth-panel-header {
    margin-bottom: 24px;
  }

  .zendro-auth-panel-header h1 {
    font-size: 31px;
  }

  .zendro-auth-social,
  .zendro-auth-form-grid {
    grid-template-columns: 1fr;
  }

  .zendro-auth-separator {
    margin: 20px 0;
  }

  .zendro-account-shell {
    display: block;
    border-radius: 14px;
    overflow: visible;
  }

  .zendro-account-sidebar {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--auth-border);
    border-radius: 14px 14px 0 0;
  }

  .zendro-account-sidebar nav {
    display: flex;
    margin: 16px -4px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .zendro-account-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .zendro-account-sidebar nav a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 10px;
  }

  .zendro-account-sidebar .zendro-account-signout {
    display: none;
  }

  .zendro-account-content {
    padding: 30px 20px;
  }

  .zendro-account-header h1 {
    font-size: 32px;
  }

  .zendro-account-grid {
    grid-template-columns: 1fr;
  }

  .zendro-account-grid .zendro-account-card:last-child {
    grid-column: auto;
  }

  .zendro-account-card {
    min-height: 160px;
  }

  .zendro-account-form-card {
    padding: 22px 18px;
  }

  .zendro-account-profile-row {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .zendro-account-profile-card .zendro-auth-secondary-action.is-inline {
    width: 100%;
  }

  [data-auth-page="account-profile"] .zendro-account-shell {
    min-height: 0;
  }

  .zendro-account-session-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .zendro-auth-main {
    padding-right: 14px;
    padding-left: 14px;
  }

  .zendro-auth-panel {
    padding: 28px 18px;
  }

  .zendro-auth-form-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .zendro-auth-social-button {
    font-size: 13px;
  }

  .zendro-account-user {
    padding-right: 0;
    padding-left: 0;
  }

  .zendro-account-content {
    padding: 26px 14px;
  }

  .zendro-account-avatar-editor {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zendro-auth-panel,
  .zendro-account-shell,
  .zendro-auth-toast {
    animation: none;
  }

  .zendro-auth-page *,
  .zendro-auth-page *::before,
  .zendro-auth-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

[data-auth-page="billing"] .zendro-auth-main {
  min-height: calc(100dvh - 84px);
  display: grid;
  align-items: center;
  padding: 26px 24px 34px;
  background:
    radial-gradient(circle at 10% 8%, rgba(173, 91, 228, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 4%, rgba(58, 173, 255, 0.16), transparent 30rem),
    #fff;
}

[data-auth-page="billing"] .zendro-auth-container {
  width: min(100%, 1080px);
}

[data-auth-page="billing"] .zendro-auth-backdrop {
  display: none;
}

[data-auth-page="billing"] .zendro-checkout-gate {
  display: grid;
  gap: 18px;
  width: 100%;
  animation: zendro-auth-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-auth-page="billing"] .zendro-billing-header {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

[data-auth-page="billing"] .zendro-billing-eyebrow {
  display: inline-flex;
  min-height: 28px;
  margin: 0;
  padding: 4px 12px;
  border: 1px solid rgba(125, 86, 222, 0.42);
  border-radius: 999px;
  align-items: center;
  color: #5b6270;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(91, 70, 170, 0.06);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
  backdrop-filter: blur(10px);
}

[data-auth-page="billing"] .zendro-billing-header h1 {
  display: flex;
  margin: 0;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
  color: #10182a;
  font-size: clamp(38px, 4.1vw, 52px);
  font-weight: 680;
  line-height: 1;
  letter-spacing: -0.052em;
}

[data-auth-page="billing"] .zendro-billing-title-gradient {
  display: inline-block;
  margin-right: -0.08em;
  padding-right: 0.08em;
  overflow: visible;
  color: transparent;
  background-image: linear-gradient(98deg, #ad5be4 8%, #4351ed 82%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-auth-page="billing"] .zendro-billing-header p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

[data-auth-page="billing"] .zendro-billing-entitlement {
  display: flex;
  min-width: 0;
  margin-top: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #344054;
  background: transparent;
}

[data-auth-page="billing"] .zendro-billing-entitlement-state {
  display: inline-flex;
  padding: 0;
  align-items: center;
  gap: 6px;
  color: #4f5fe1;
  background: transparent;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.025em;
}

[data-auth-page="billing"] .zendro-billing-entitlement-state::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(67, 81, 237, 0.08);
  content: "";
}

[data-auth-page="billing"] .zendro-billing-entitlement-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

[data-auth-page="billing"] .zendro-billing-entitlement-copy strong {
  margin: 0;
  color: #1d2939;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

[data-auth-page="billing"] .zendro-billing-entitlement-separator {
  color: #b0b7c3;
}

[data-auth-page="billing"] [data-billing-entitlement-detail] {
  margin: 0;
  color: #7a8494;
  font-size: 10px;
  white-space: nowrap;
}

[data-auth-page="billing"] .zendro-billing-entitlement.is-loading {
  opacity: 0.65;
}

[data-auth-page="billing"] .zendro-billing-entitlement.is-error {
  color: #9f3342;
  background: transparent;
}

[data-auth-page="billing"] .zendro-billing-entitlement.is-error .zendro-billing-entitlement-state {
  color: #a43d4d;
  background: transparent;
}

[data-auth-page="billing"] .zendro-billing-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 0;
}

[data-auth-page="billing"] .zendro-billing-plan-picker {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

[data-auth-page="billing"] .zendro-billing-section-heading h2 {
  margin: 0;
  color: #4f596a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-align: center;
}

[data-auth-page="billing"] .zendro-billing-plans {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

[data-auth-page="billing"] .zendro-billing-plans button {
  display: flex;
  min-height: 150px;
  padding: 20px 22px;
  border-color: #e0e2e8;
  border-radius: 18px;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(36, 48, 80, 0.055);
  backdrop-filter: blur(12px);
}

[data-auth-page="billing"] .zendro-billing-plan-check {
  top: 18px;
  right: 18px;
  left: auto;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  transform: none;
}

[data-auth-page="billing"] .zendro-billing-plans button:hover {
  border-color: rgba(67, 81, 237, 0.42);
  background: #fff;
  box-shadow: 0 18px 42px rgba(51, 64, 113, 0.09);
  transform: translateY(-2px);
}

[data-auth-page="billing"] .zendro-billing-plans button.is-selected {
  border-color: #5263ee;
  background:
    radial-gradient(circle at 90% 5%, rgba(58, 173, 255, 0.08), transparent 12rem),
    radial-gradient(circle at 8% 100%, rgba(173, 91, 228, 0.055), transparent 12rem),
    #fff;
  box-shadow:
    0 18px 44px rgba(67, 81, 237, 0.11),
    inset 0 0 0 1px rgba(67, 81, 237, 0.08);
}

[data-auth-page="billing"] .zendro-billing-plans button.is-selected .zendro-billing-plan-check {
  box-shadow: 0 0 0 4px rgba(67, 81, 237, 0.11);
}

[data-auth-page="billing"] .zendro-billing-plans button.is-selected::after {
  position: absolute;
  top: 20px;
  right: 48px;
  color: #5163ec;
  font-size: 10px;
  font-weight: 650;
  content: "已选择";
}

[data-auth-page="billing"] .zendro-billing-plan-name {
  padding-right: 82px;
  color: #263144;
  font-size: 14px;
}

[data-auth-page="billing"] .zendro-billing-plan-price {
  margin-top: auto;
}

[data-auth-page="billing"] .zendro-billing-plans button small {
  margin: 8px 0 0;
  color: #8a94a4;
  font-size: 11px;
}

[data-auth-page="billing"] .zendro-billing-plan-price strong {
  font-size: 36px;
  font-weight: 680;
  letter-spacing: -0.045em;
}

[data-auth-page="billing"] .zendro-billing-plan-price span {
  color: #80899a;
}

[data-auth-page="billing"] .zendro-billing-checkout {
  position: static;
  padding: 18px 20px;
  border: 1px solid #e0e2e8;
  border-radius: 18px;
  color: var(--auth-navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(36, 48, 80, 0.07);
  backdrop-filter: blur(14px);
}

[data-auth-page="billing"] .zendro-billing-checkout-summary {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) minmax(180px, 1fr) auto minmax(210px, 0.95fr);
  align-items: center;
  gap: 22px;
  margin: 0;
}

[data-auth-page="billing"] .zendro-billing-summary-copy > span,
[data-auth-page="billing"] .zendro-billing-total > span {
  display: block;
  color: #7b8493;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

[data-auth-page="billing"] .zendro-billing-summary-copy h2 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

[data-auth-page="billing"] [data-billing-selection-price] {
  display: block;
  margin-top: 3px;
  color: #111827;
  font-size: 32px;
  font-weight: 680;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

[data-auth-page="billing"] .zendro-billing-message {
  margin: 5px 0 0;
  padding: 0;
  color: #778193;
  font-size: 10px;
  line-height: 1.45;
}

[data-auth-page="billing"] .zendro-billing-message:empty {
  display: none;
}

[data-auth-page="billing"] .zendro-billing-message::before {
  content: none;
}

[data-auth-page="billing"] .zendro-billing-message[data-tone="progress"] {
  color: #5163ec;
}

[data-auth-page="billing"] .zendro-billing-message[data-tone="success"] {
  color: #24835d;
}

[data-auth-page="billing"] .zendro-billing-message[data-tone="warning"] {
  color: #9a671e;
}

[data-auth-page="billing"] .zendro-billing-message[data-tone="error"] {
  color: #a43d4d;
}

[data-auth-page="billing"] .zendro-billing-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0 0 0 20px;
  border: 0;
  border-left: 1px solid #e5e7eb;
}

[data-auth-page="billing"] .zendro-billing-summary-meta div {
  display: flex;
  gap: 0;
  padding: 0;
  border: 0;
}

[data-auth-page="billing"] .zendro-billing-summary-meta div:not(:last-child)::after {
  margin-left: 7px;
  color: #b3b8c2;
  content: "·";
}

[data-auth-page="billing"] .zendro-billing-summary-meta dd {
  color: #667085;
  font-size: 11px;
  font-weight: 550;
}

[data-auth-page="billing"] .zendro-billing-promotion {
  display: block;
  margin: 5px 0 0;
  padding: 0;
  border: 0;
  color: #5163ec;
  background: transparent;
  font-size: 9px;
  line-height: 1.35;
}

[data-auth-page="billing"] .zendro-billing-promotion[hidden] {
  display: none;
}

[data-auth-page="billing"] .zendro-billing-promotion span {
  display: none;
}

[data-auth-page="billing"] .zendro-billing-promotion strong {
  color: #5163ec;
  font-size: 9px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

[data-auth-page="billing"] .zendro-billing-action {
  min-width: 0;
}

[data-auth-page="billing"] .zendro-billing-pay {
  min-height: 52px;
  margin: 0;
  padding: 10px 12px 10px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #3aadff, #4351ed);
  box-shadow:
    0 14px 30px rgba(67, 81, 237, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

[data-auth-page="billing"] .zendro-billing-pay-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 15px;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
  place-items: center;
}

[data-auth-page="billing"] .zendro-billing-pay:hover {
  background: linear-gradient(90deg, #48b2ff, #5261f3);
  box-shadow:
    0 18px 36px rgba(67, 81, 237, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

[data-auth-page="billing"] .zendro-billing-pay:hover .zendro-billing-pay-arrow {
  background: rgba(255, 255, 255, 0.23);
  transform: translateX(2px);
}

[data-auth-page="billing"] .zendro-billing-pay:active {
  background: linear-gradient(90deg, #36a3f2, #3949db);
  box-shadow: 0 10px 22px rgba(32, 48, 150, 0.32);
  transform: translateY(0) scale(0.99);
}

[data-auth-page="billing"] .zendro-billing-pay:disabled {
  color: rgba(255, 255, 255, 0.66);
  background: #a8afca;
  box-shadow: none;
}

[data-auth-page="billing"] .zendro-billing-pay:focus-visible,
[data-auth-page="billing"] .zendro-billing-retry:focus-visible {
  outline-color: rgba(137, 150, 255, 0.82);
}

[data-auth-page="billing"] .zendro-billing-secure-note {
  margin-top: 6px;
  color: #8a929e;
  font-size: 9px;
}

[data-auth-page="billing"] .zendro-billing-payment {
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  min-height: 0;
  max-width: 650px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--auth-navy);
  background: transparent;
  text-align: left;
}

[data-auth-page="billing"] .zendro-billing-payment[hidden] {
  display: none;
}

[data-auth-page="billing"] .zendro-billing-payment img {
  grid-row: auto;
  width: 124px;
  padding: 7px;
  border: 1px solid #e1e4eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(36, 48, 80, 0.09);
}

[data-auth-page="billing"] .zendro-billing-payment-copy {
  min-width: 0;
}

[data-auth-page="billing"] .zendro-billing-payment-copy > strong {
  margin: 0;
  color: #111827;
  font-size: 17px;
}

[data-auth-page="billing"] .zendro-billing-payment-copy > p {
  margin: 7px 0 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.55;
}

[data-auth-page="billing"] .zendro-billing-payment-copy > small {
  display: block;
  margin-top: 6px;
  color: #8b94a3;
  font-size: 10px;
  line-height: 1.45;
}

[data-auth-page="billing"] .zendro-billing-spinner {
  border-color: rgba(67, 81, 237, 0.16);
  border-top-color: #5163ec;
}

[data-auth-page="billing"] .zendro-billing-retry {
  min-width: 142px;
  margin-top: 10px;
  border-color: rgba(67, 81, 237, 0.2);
  color: #4351ed;
  background: rgba(67, 81, 237, 0.05);
}

[data-auth-page="billing"] .zendro-billing-retry:hover {
  border-color: rgba(67, 81, 237, 0.36);
  color: #3341d7;
  background: rgba(67, 81, 237, 0.09);
}

[data-auth-page="billing"] .zendro-billing-checkout.has-payment .zendro-billing-checkout-summary {
  display: none;
}

[data-auth-page="billing"] .zendro-billing-checkout.has-payment {
  padding-top: 14px;
  padding-bottom: 14px;
}

[data-auth-page="billing"] .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;
}

[data-auth-page="account-orders"] .zendro-orders-header {
  margin-bottom: 24px;
}

[data-auth-page="account-orders"] .zendro-orders-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
}

[data-auth-page="account-orders"] .zendro-orders-heading-row h1 {
  margin: 0;
}

[data-auth-page="account-orders"] .zendro-orders-heading-row p {
  margin: 10px 0 0;
  color: var(--auth-muted);
  line-height: 1.65;
}

[data-auth-page="account-orders"] .zendro-orders-upgrade {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 11px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--auth-blue);
  box-shadow: 0 12px 26px rgba(67, 81, 237, 0.18);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

[data-auth-page="account-orders"] .zendro-orders-upgrade:hover {
  background: var(--auth-blue-dark);
  box-shadow: 0 15px 30px rgba(67, 81, 237, 0.24);
  transform: translateY(-1px);
}

[data-auth-page="account-orders"] .zendro-orders-upgrade:active {
  transform: translateY(0) scale(0.985);
}

[data-auth-page="account-orders"] .zendro-orders-upgrade:focus-visible {
  outline: 3px solid rgba(67, 81, 237, 0.24);
  outline-offset: 3px;
}

[data-auth-page="account-orders"] .zendro-billing-history {
  margin-top: 0;
}

@media (max-width: 900px) {
  [data-auth-page="billing"] .zendro-auth-main {
    align-items: start;
  }

  [data-auth-page="billing"] .zendro-billing-checkout-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 24px;
  }

  [data-auth-page="billing"] .zendro-billing-summary-copy {
    grid-column: 1;
    grid-row: 1;
  }

  [data-auth-page="billing"] .zendro-billing-summary-meta {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
    border-left: 0;
  }

  [data-auth-page="billing"] .zendro-billing-total {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }

  [data-auth-page="billing"] .zendro-billing-action {
    grid-column: 2;
    grid-row: 2;
    min-width: 220px;
  }
}

@media (max-width: 767px) {
  [data-auth-page="billing"] .zendro-auth-main {
    min-height: calc(100dvh - 72px);
    padding: 18px;
  }

  [data-auth-page="billing"] .zendro-checkout-gate {
    gap: 14px;
  }

  [data-auth-page="billing"] .zendro-billing-header {
    gap: 6px;
  }

  [data-auth-page="billing"] .zendro-billing-header h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  [data-auth-page="billing"] .zendro-billing-entitlement {
    width: 100%;
    min-width: 0;
  }

  [data-auth-page="billing"] .zendro-billing-plan-picker {
    padding: 0;
  }

  [data-auth-page="billing"] .zendro-billing-checkout {
    padding: 16px;
  }

  [data-auth-page="billing"] .zendro-billing-checkout-summary {
    gap: 12px 18px;
  }

  [data-auth-page="billing"] .zendro-billing-action {
    grid-column: 1 / 3;
    grid-row: 3;
    min-width: 0;
  }

  [data-auth-page="account-orders"] .zendro-orders-heading-row {
    display: grid;
    align-items: start;
  }

  [data-auth-page="account-orders"] .zendro-orders-upgrade {
    width: 100%;
  }
}

@media (max-width: 600px) {
  [data-auth-page="billing"] .zendro-billing-entitlement {
    align-items: center;
  }

  [data-auth-page="billing"] .zendro-billing-entitlement-copy {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 6px;
  }

  [data-auth-page="billing"] .zendro-billing-entitlement-separator {
    display: none;
  }

  [data-auth-page="billing"] [data-billing-entitlement-detail] {
    flex-basis: auto;
  }

  [data-auth-page="billing"] .zendro-billing-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-auth-page="billing"] .zendro-billing-plans button {
    min-height: 134px;
    padding: 16px;
  }

  [data-auth-page="billing"] .zendro-billing-plan-check {
    top: 14px;
    right: 14px;
    left: auto;
    border-radius: 6px;
    transform: none;
  }

  [data-auth-page="billing"] .zendro-billing-plan-name {
    padding-right: 30px;
  }

  [data-auth-page="billing"] .zendro-billing-plans button.is-selected::after {
    display: none;
  }

  [data-auth-page="billing"] .zendro-billing-plan-price strong {
    font-size: 32px;
  }

  [data-auth-page="billing"] .zendro-billing-plans button small {
    margin-top: 7px;
  }

  [data-auth-page="billing"] .zendro-billing-payment {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }

  [data-auth-page="billing"] .zendro-billing-payment img {
    grid-row: auto;
  }
}

@media (max-width: 350px) {
  [data-auth-page="billing"] .zendro-billing-plans {
    grid-template-columns: 1fr;
  }

  [data-auth-page="billing"] .zendro-billing-checkout {
    padding: 16px;
  }
}
