:root {
  --bg-base: #070a12;
  --bg-elev: #0b0f1a;
  --bg-radiant: #0d1426;
  --accent: #3b82f6;
  --accent-deep: #1d4ed8;
  --accent-bright: #7db1ff;
  --accent-soft: #9cc1ff;
  --accent-glow: rgba(59, 130, 246, 0.45);
  --success: #34d399;
  --warning: #f5b14e;
  --warning-soft: #f5c48a;
  --warning-tint: rgba(245, 158, 11, 0.12);
  --text-strong: #eaf0fb;
  --text: #cfd8ea;
  --text-muted: #9aa6bd;
  --text-dim: #8190a8;
  --text-faint: #7c8aa6;
  --text-disabled: #6f7e98;
  --line-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --surface-1: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.045);
  --surface-card: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  --accent-tint: rgba(59, 130, 246, 0.12);
  --accent-tint-line: rgba(59, 130, 246, 0.28);
  --accent-tint-strong: rgba(59, 130, 246, 0.14);
  --grad-accent: linear-gradient(150deg, #3b82f6, #1d4ed8);
  --grad-text: linear-gradient(100deg, #7db1ff, #3b82f6 60%);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-panel: 0 50px 110px rgba(0, 0, 0, 0.65);
  --shadow-btn: 0 14px 38px rgba(59, 130, 246, 0.42);
  --glass-bg: rgba(7, 10, 18, 0.72);
  --radius-xs: 8px;
  --radius-sm: 11px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-pill: 999px;
  --container: 1080px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 18% -5%, var(--bg-radiant) 0%, var(--bg-base) 52%),
    var(--bg-base);
  color: var(--text-strong);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(59, 130, 246, 0.35);
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

img,
svg {
  display: block;
}

body::-webkit-scrollbar {
  width: 11px;
}

body::-webkit-scrollbar-track {
  background: var(--bg-base);
}

body::-webkit-scrollbar-thumb {
  background: #1c2436;
  border-radius: 8px;
  border: 3px solid var(--bg-base);
}

.dashboard-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  align-self: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  width: 264px;
  height: 100vh;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 10, 18, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 6px 8px 22px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad-accent);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.brand__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge--beta {
  margin-left: auto;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--text-faint);
  font-size: 10.5px;
}

.badge--success {
  color: #7ee2bd;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.badge--accent {
  color: var(--accent-soft);
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge--solid {
  color: #fff;
  background: var(--accent);
}

.badge--paid {
  color: #7ee2bd;
  background: rgba(52, 211, 153, 0.12);
}

.badge--trend {
  color: var(--success);
  background: rgba(52, 211, 153, 0.1);
  font-weight: 600;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--text-muted);
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.nav__button:hover {
  color: var(--text-strong);
}

.nav__button.is-active {
  color: var(--text-strong);
  border-color: rgba(59, 130, 246, 0.32);
  background: rgba(59, 130, 246, 0.14);
}

.nav__button svg,
.nav__button span {
  position: relative;
  z-index: 1;
}

.sidebar__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: 13px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.status-card__dot {
  position: relative;
  width: 9px;
  height: 9px;
  flex: none;
}

.status-card__dot::before,
.status-card__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.status-card__dot::before {
  border: 1.5px solid rgba(52, 211, 153, 0.6);
  animation: pulseRing 2.4s ease-out infinite;
}

.status-card__dot::after {
  inset: 1px;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.status-card__title {
  font-size: 13px;
  font-weight: 700;
  color: #7ee2bd;
}

.status-card__meta {
  font-size: 11.5px;
  color: var(--text-faint);
}

.user-summary {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.avatar {
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
}

.avatar--sm {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.avatar--md {
  width: 38px;
  height: 38px;
  font-size: 14px;
}

.avatar--lg {
  width: 64px;
  height: 64px;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.user-summary__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 700;
}

.user-summary__email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11.5px;
  color: var(--text-faint);
}

.main-shell {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.topbar__crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 600;
}

.topbar__crumb-current {
  color: var(--text);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(59, 130, 246, 0.28);
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 600;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon-button__dot {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 7px;
  height: 7px;
  border: 1.5px solid #0b0f1a;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.content {
  flex: 1;
  padding: 36px 40px 64px;
}

.content__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.screen {
  display: none;
}

.screen.is-active {
  display: block;
  animation: revealUp 0.32s var(--ease);
}

.screen__header {
  margin-bottom: 26px;
}

.screen__title {
  margin: 0 0 6px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.screen__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.warning-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 16px 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
}

.warning-banner__title {
  color: var(--warning-soft);
  font-size: 14.5px;
  font-weight: 700;
}

.warning-banner__text {
  margin-top: 2px;
  color: #c9b78e;
  font-size: 13px;
}

.button-primary,
.button-secondary,
.button-light,
.button-link,
.button-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.button-primary {
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--grad-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.38);
}

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

.button-primary:disabled,
.button-secondary:disabled,
.button-light:disabled,
.button-danger:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-disabled);
}

.button-secondary {
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--text-strong);
  color: #0a0f1c;
  font-size: 14px;
  font-weight: 700;
}

.button-link {
  padding: 0;
  background: transparent;
  color: #8fb6ff;
  font-size: 13px;
  font-weight: 600;
}

.button-danger {
  padding: 0;
  background: transparent;
  color: #ff8989;
  font-size: 14px;
  font-weight: 600;
}

.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-link-muted {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.button-link-muted:hover {
  color: var(--text-strong);
}

.stats-grid,
.double-grid,
.triple-grid,
.split-grid,
.settings-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  margin-bottom: 18px;
}

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

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

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

.panel,
.panel-feature,
.panel-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
}

.panel {
  background: var(--surface-card);
}

.panel-card {
  background: var(--surface-card);
  padding: 26px 28px;
}

.panel-feature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0.04));
  border-color: rgba(59, 130, 246, 0.38);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.16);
}

.stat-card {
  padding: 20px 22px;
}

.stat-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.eyebrow {
  color: var(--text-faint);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-well {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 9px;
  background: rgba(59, 130, 246, 0.12);
}

.stat-card__value,
.metric-value,
.price-value,
.big-number,
.plan-price {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
}

.stat-card__value {
  font-size: 23px;
}

.stat-card__suffix {
  color: var(--text-dim);
  font-size: 14px;
}

.stat-card__detail {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 12.5px;
}

.stat-card__detail.is-success {
  color: var(--success);
  font-weight: 600;
}

.usage-panel,
.sessions-panel,
.table-panel {
  overflow: hidden;
}

.usage-panel,
.chart-panel,
.billing-card {
  padding: 28px;
}

.usage-ring {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 8px auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 10, 18, 1) 57%, transparent 58%),
    conic-gradient(from -90deg, #7db1ff calc(var(--progress) * 1%), #1d4ed8 calc(var(--progress) * 1%), rgba(255, 255, 255, 0.07) 0);
}

.usage-ring::before {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: #070a12;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.usage-ring__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.metric-value {
  font-size: 40px;
  line-height: 1;
}

.metric-subtitle {
  margin-top: 5px;
  color: var(--text-dim);
  font-size: 13px;
}

.mini-stats {
  display: flex;
  gap: 12px;
}

.mini-stat {
  flex: 1;
  padding: 13px 15px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--surface-1);
}

.mini-stat__label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: var(--text-dim);
  font-size: 12px;
}

.mini-stat__value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.mini-stat__value span {
  color: var(--text-dim);
  font-size: 12px;
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.big-number {
  font-size: 26px;
}

.big-number span {
  color: var(--text-dim);
  font-size: 15px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 150px;
  margin-top: 22px;
}

.bar-chart__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
}

.bar-chart__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-disabled);
  font-size: 11.5px;
}

.table-panel {
  padding: 8px 8px 6px;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px 10px;
}

.table-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

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

.table-shell table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.table-shell th,
.table-shell td {
  padding: 14px 18px;
}

.table-shell th {
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--text-disabled);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.table-shell tbody tr {
  border-top: 1px solid var(--line-soft);
}

.table-shell td {
  color: var(--text);
  font-size: 13.5px;
}

.table-shell td.is-right,
.table-shell th.is-right {
  text-align: right;
}

.location-cell {
  display: flex;
  align-items: center;
  gap: 11px;
}

.flag-chip {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #aebbd4;
  font-size: 10.5px;
  font-weight: 700;
}

.flag-chip--large {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 11px;
}

.primary-cell {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
}

.secondary-cell {
  margin-top: 2px;
  color: var(--text-faint);
  font-size: 11.5px;
}

.secondary-cell.is-success {
  color: var(--success);
}

.plan-hero {
  position: relative;
  margin-bottom: 26px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.34);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(59, 130, 246, 0.16), rgba(29, 78, 216, 0.06));
}

.plan-hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -5%;
  width: 380px;
  height: 340px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 65%);
  filter: blur(10px);
}

.plan-hero__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.plan-hero__title-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.plan-hero__title,
.section-title,
.card-title,
.plan-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
}

.plan-hero__title {
  font-size: 24px;
}

.plan-hero__description {
  max-width: 420px;
  margin: 0 0 18px;
  color: #bcd0f5;
  font-size: 14.5px;
}

.plan-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.plan-hero__metrics-label {
  margin-bottom: 3px;
  color: var(--accent-soft);
  font-size: 12px;
}

.plan-hero__metrics-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.plan-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  margin: 0 0 16px;
  font-size: 18px;
}

.progress-card {
  margin-bottom: 26px;
}

.progress-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.progress-card__bar {
  height: 12px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
}

.progress-card__fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #7db1ff, #3b82f6);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.5);
}

.progress-card__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 12.5px;
}

.plan-card {
  position: relative;
  padding: 28px 26px;
}

.plan-card__description {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 36px;
}

.plan-price__suffix {
  color: var(--text-dim);
  font-size: 14px;
}

.plan-price__original {
  color: var(--text-dim);
  font-size: 15px;
  text-decoration: line-through;
}

.plan-price__accent {
  background: var(--grad-text);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.plan-price__promo {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: #7df3c1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.billing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.payment-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.payment-visual {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: linear-gradient(135deg, #16203a, #0c1322);
}

.payment-visual::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  filter: blur(6px);
}

.payment-visual__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payment-visual__chip {
  width: 38px;
  height: 26px;
  border-radius: 5px;
  background: linear-gradient(135deg, #f0b90b, #e08e0b);
}

.payment-visual__brand {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  color: #dbe7ff;
}

.payment-visual__number {
  position: relative;
  margin: 30px 0 16px;
  color: var(--text-strong);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 19px;
  letter-spacing: 0.14em;
}

.payment-visual__details {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.payment-visual__label {
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.payment-visual__value {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.metric-card {
  padding: 26px 28px;
}

.metric-card--accent {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.03));
  border-color: rgba(59, 130, 246, 0.28);
}

.metric-card__eyebrow {
  margin-bottom: 14px;
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-card__amount {
  margin-bottom: 6px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 700;
}

.metric-card__text {
  color: #bcd0f5;
  font-size: 14px;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.summary-row__label {
  color: var(--text-muted);
}

.summary-row__value {
  color: var(--text);
  font-weight: 600;
}

.screen-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.vpn-summary-grid,
.vpn-manager-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

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

.vpn-manager-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
}

.vpn-summary-card {
  padding: 22px 24px;
}

.vpn-summary-card__label {
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vpn-summary-card__value {
  margin-top: 10px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-strong);
}

.vpn-summary-card__value span {
  color: var(--text-dim);
  font-size: 16px;
}

.vpn-summary-card__meta {
  margin-top: 7px;
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.5;
}

.vpn-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vpn-inline-notice {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
}

.vpn-inline-notice__title {
  color: #f6cf7a;
  font-size: 13px;
  font-weight: 700;
}

.vpn-inline-notice__text {
  margin-top: 4px;
  color: #d5c18f;
  font-size: 12.5px;
  line-height: 1.55;
}

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

.vpn-form__row--single {
  grid-template-columns: 1fr;
}

.vpn-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vpn-field__label {
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vpn-field__input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-strong);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}

.vpn-field__input:focus {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.vpn-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.vpn-field__hint {
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.55;
}

.vpn-empty-state {
  padding: 22px 24px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 8, 15, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-card {
  width: min(100%, 560px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #0c1220;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.qr-modal {
  padding: 24px;
}

.qr-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.qr-modal__body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qr-modal__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
}

.qr-modal__image {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.qr-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.device-list,
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.device-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-card);
}

.device-row--current {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
  border-color: rgba(59, 130, 246, 0.26);
}

.device-row__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.device-row--current .device-row__icon {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.14);
}

.device-row__main {
  flex: 1;
  min-width: 0;
}

.device-row__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 700;
}

.device-row__meta {
  margin-top: 3px;
  color: var(--text-dim);
  font-size: 13px;
}

.device-row__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.device-row__button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.device-row__status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
}

.device-row__status--muted {
  color: var(--text-disabled);
}

.device-row__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.device-row__status-dot--muted {
  background: var(--text-disabled);
  box-shadow: none;
}

.device-slots {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--text-disabled);
}

.device-slots__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 11px;
}

.location-table tbody tr.is-connected {
  background: rgba(59, 130, 246, 0.06);
}

.load-bar {
  height: 7px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
}

.load-bar__fill {
  height: 100%;
  border-radius: var(--radius-pill);
}

.profile-card,
.preferences-card,
.settings-card {
  margin-bottom: 18px;
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

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

.field-label {
  margin-bottom: 7px;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 600;
}

.field-value {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-strong);
  font-size: 14.5px;
}

.preferences-card {
  padding-top: 10px;
  padding-bottom: 10px;
}

.preference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
}

.preference-row + .preference-row {
  border-top: 1px solid var(--line-soft);
}

.preference-row__title {
  font-size: 14.5px;
  font-weight: 600;
}

.preference-row__meta {
  margin-top: 2px;
  color: var(--text-dim);
  font-size: 13px;
}

.switch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 46px;
  height: 27px;
  padding: 3px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.13);
  transition:
    justify-content 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.switch__knob {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.switch.is-on {
  justify-content: flex-end;
  background: var(--grad-accent);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.45);
}

.settings-card .button-row {
  width: 100%;
  justify-content: space-between;
  padding: 13px 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}

.settings-card .button-row + .button-row {
  border-top: 1px solid var(--line-soft);
}

.support-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-card);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
}

.support-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
}

.support-card__title {
  margin-bottom: 4px;
  font-size: 15.5px;
  font-weight: 700;
}

.support-card__meta {
  color: var(--text-muted);
  font-size: 13px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 600;
}

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

.faq-item__plus {
  flex: none;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.faq-item__answer {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.toast-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  min-width: 240px;
  max-width: 320px;
  padding: 14px 16px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 14px;
  background: rgba(7, 10, 18, 0.92);
  box-shadow: var(--shadow-card);
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.45;
  pointer-events: auto;
  animation:
    revealUp 0.25s var(--ease),
    fadeToast 0.25s var(--ease) 2.95s forwards;
}

.toast__title {
  margin-bottom: 3px;
  color: var(--text-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-layout {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px;
}

.auth-panel {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 440px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(7, 10, 18, 0.86);
  box-shadow: var(--shadow-panel);
}

.auth-hero {
  position: relative;
  padding: 42px 40px 44px;
  background:
    radial-gradient(circle at 15% 18%, rgba(59, 130, 246, 0.24), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(125, 177, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.auth-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.auth-hero__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--grad-accent);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.45);
}

.auth-hero__title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.auth-hero__subtitle {
  max-width: 460px;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.auth-preview {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.auth-preview__card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.auth-preview__eyebrow {
  margin-bottom: 9px;
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-preview__value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.auth-preview__meta {
  margin-top: 5px;
  color: var(--text-dim);
  font-size: 13px;
}

.auth-features {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.auth-features__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.auth-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px;
  background: rgba(7, 10, 18, 0.88);
}

.auth-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.auth-tabs__button {
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.auth-tabs__button.is-active {
  background: var(--grad-accent);
  color: #fff;
}

.auth-card__title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.auth-card__subtitle {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

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

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

.auth-field__label {
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-field__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-strong);
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.auth-field__input:focus {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.auth-field__hint {
  color: var(--text-disabled);
  font-size: 12.5px;
  line-height: 1.5;
}

.auth-actions {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.auth-actions__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.inline-alert {
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}

.inline-alert--error {
  border: 1px solid rgba(248, 113, 113, 0.28);
  background: rgba(248, 113, 113, 0.08);
  color: #fecaca;
}

.inline-alert--success {
  border: 1px solid rgba(52, 211, 153, 0.26);
  background: rgba(52, 211, 153, 0.08);
  color: #a7f3d0;
}

.inline-alert--info {
  border: 1px solid rgba(59, 130, 246, 0.26);
  background: rgba(59, 130, 246, 0.08);
  color: #bfdbfe;
}

.page-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.06);
}

.page-note__body {
  color: #c7d8ff;
  font-size: 13.5px;
  line-height: 1.55;
}

.loading-panel,
.empty-panel {
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: var(--surface-card);
}

.loading-panel__title,
.empty-panel__title {
  margin: 0 0 6px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.loading-panel__text,
.empty-panel__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.empty-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.section-note {
  margin-top: 12px;
  color: var(--text-disabled);
  font-size: 12.5px;
  line-height: 1.55;
}

.device-inline-note {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.18);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeToast {
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (max-width: 1120px) {
  .auth-panel {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    flex-direction: column;
  }

  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  .sidebar__footer {
    margin-top: 18px;
  }

  .topbar,
  .content {
    padding-right: 28px;
    padding-left: 28px;
  }

  .stats-grid,
  .double-grid,
  .billing-grid,
  .settings-grid,
  .profile-grid,
  .vpn-summary-grid,
  .vpn-manager-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .triple-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .auth-layout {
    padding: 16px;
  }

  .auth-hero,
  .auth-card {
    padding: 26px 22px;
  }

  .auth-card__title {
    font-size: 26px;
  }

  .auth-hero__title {
    font-size: 36px;
  }

  .auth-actions__row {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    padding-bottom: 18px;
  }

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

  .topbar {
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .topbar__actions {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .plan-pill {
    flex: 1;
    justify-content: center;
  }

  .content {
    padding: 26px 18px 48px;
  }

  .stats-grid,
  .double-grid,
  .billing-grid,
  .settings-grid,
  .profile-grid,
  .vpn-summary-grid,
  .vpn-manager-grid,
  .vpn-form__row {
    grid-template-columns: 1fr;
  }

  .screen-header-row,
  .plan-hero__content,
  .warning-banner,
  .profile-head,
  .qr-modal__header {
    align-items: stretch;
  }

  .warning-banner {
    flex-direction: column;
  }

  .mini-stats,
  .plan-hero__actions,
  .device-row,
  .device-row__actions,
  .user-summary,
  .table-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .device-row__actions {
    width: 100%;
    gap: 10px;
  }

  .device-row__button-group {
    width: 100%;
    justify-content: flex-start;
  }

  .device-row__actions .button-link,
  .device-row__actions .button-secondary,
  .device-row__actions .button-danger {
    padding: 0;
  }

  .modal-backdrop {
    padding: 16px;
    align-items: flex-end;
  }

  .qr-modal {
    padding: 18px;
  }

  .usage-ring {
    width: 200px;
    height: 200px;
  }

  .table-shell table {
    min-width: 560px;
  }

  .toast-stack {
    right: 16px;
    left: 16px;
    bottom: 16px;
  }

  .toast {
    min-width: 0;
    max-width: none;
  }
}
