/* ============================ HERO — статус подписки ====================== */
.hero {
  position: relative;
  border-radius: var(--r-xl);
  padding: 20px 20px 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--hero-none);
  box-shadow: var(--sh-card);
  animation: hero-in 420ms var(--ease) both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
}

.hero::after {
  /* Мягкий цветной ореол внутри карточки */
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero--active {
  background: var(--hero-active);
  --hero-glow: var(--green-glow);
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(34, 197, 94, 0.06),
    0 10px 40px -18px var(--green-glow);
}
.hero--expiring {
  background: var(--hero-expiring);
  --hero-glow: var(--amber-glow);
  border-color: rgba(245, 166, 35, 0.22);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45), 0 10px 40px -18px var(--amber-glow);
}
.hero--expired {
  background: var(--hero-expired);
  --hero-glow: var(--red-glow);
  border-color: rgba(239, 74, 74, 0.2);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45), 0 10px 40px -18px var(--red-glow);
}
.hero--none {
  background: var(--hero-none);
  --hero-glow: var(--blue-glow);
  border-color: rgba(47, 107, 255, 0.2);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45), 0 10px 40px -18px var(--blue-glow);
}

.hero__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero__info {
  flex: 1;
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 26px;
  padding: 0 11px 0 9px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--stroke-strong);
  color: var(--text);
}

.hero--active .hero__badge {
  background: var(--green-soft);
  border-color: rgba(34, 197, 94, 0.32);
  color: #74e39b;
}
.hero--expiring .hero__badge {
  background: var(--amber-soft);
  border-color: rgba(245, 166, 35, 0.32);
  color: #f6c26b;
}
.hero--expired .hero__badge {
  background: var(--red-soft);
  border-color: rgba(239, 74, 74, 0.32);
  color: #f68b8b;
}
.hero--none .hero__badge {
  background: var(--blue-soft);
  border-color: rgba(47, 107, 255, 0.32);
  color: #8fb0ff;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse 2.2s var(--ease) infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hero__title {
  margin-top: 12px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero__sub {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-2);
}

.hero__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero__days {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero--active .hero__days {
  color: #6ee7a0;
}
.hero--expiring .hero__days {
  color: #f6c26b;
}

.hero__days-label {
  font-size: 13px;
  color: var(--text-2);
}

.hero__shield {
  width: 78px;
  height: 78px;
  flex: none;
  margin-top: -2px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__shield,
  .dot {
    animation: none;
  }
}

/* Полоса трафика */
.traffic {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.traffic__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: 8px;
}

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

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

.bar__fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--green-2), var(--green));
  box-shadow: 0 0 12px var(--green-glow);
  transition: width 700ms var(--ease);
}

.bar__fill--warn {
  background: linear-gradient(90deg, #d98a12, var(--amber));
  box-shadow: 0 0 12px var(--amber-glow);
}

/* ============================ Кнопки ===================================== */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast),
    background var(--t-fast), box-shadow var(--t-fast);
  user-select: none;
}

.btn:active:not(:disabled) {
  transform: scale(0.975);
}

.btn:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.btn--primary {
  background: linear-gradient(180deg, #3d76ff, var(--blue));
  color: #fff;
  box-shadow: var(--sh-cta);
}

.btn--success {
  background: linear-gradient(180deg, #2ad06a, var(--green-2));
  color: #06210f;
  box-shadow: 0 6px 18px var(--green-glow), 0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke-strong);
  color: var(--text);
}

.btn--danger {
  background: var(--red-soft);
  border: 1px solid rgba(239, 74, 74, 0.3);
  color: #f68b8b;
}

.btn--sm {
  min-height: 42px;
  font-size: 14.5px;
  border-radius: var(--r-sm);
}

.btn__spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-top-color: #fff;
  animation: spin 700ms linear infinite;
}

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

.btn-row {
  display: flex;
  gap: 10px;
}
.btn-row > * {
  flex: 1;
}

/* ============================ Карточки =================================== */
.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
}

.card--pad {
  padding: 16px;
}

.card--tap {
  transition: transform var(--t-fast) var(--ease), background var(--t-fast);
}
.card--tap:active {
  transform: scale(0.985);
  background: var(--card-2);
}

/* Плитки быстрых действий */
/* minmax(0, 1fr), а не 1fr: иначе min-content ячейки распирает сетку. */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 8px 13px;
  text-align: center;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--stroke);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast);
}

.tile:active {
  transform: scale(0.96);
  background: var(--card-2);
}

.tile__icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: #8fb0ff;
  border: 1px solid rgba(47, 107, 255, 0.2);
}

.tile__icon--green {
  background: var(--green-soft);
  color: #74e39b;
  border-color: rgba(34, 197, 94, 0.2);
}
.tile__icon--violet {
  background: rgba(139, 92, 246, 0.14);
  color: #b79bff;
  border-color: rgba(139, 92, 246, 0.22);
}

.tile__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-2);
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Строки-списки */
.rows {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.row {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  background: none;
  transition: background var(--t-fast);
}

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

.row:active {
  background: var(--card-2);
}

.row__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
}

.row__body {
  flex: 1;
  min-width: 0;
}

/* display:block обязателен: overflow/ellipsis не работают на инлайновых span. */
.row__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row__sub {
  display: block;
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row__value {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  flex: none;
  max-width: 45%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row__chev {
  flex: none;
  color: var(--text-3);
}

/* ============================ Тарифы ===================================== */
.plans {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plan {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  text-align: left;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--stroke);
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast),
    background var(--t-fast);
}

.plan:active {
  transform: scale(0.985);
  background: var(--card-2);
}

.plan--best {
  border-color: rgba(47, 107, 255, 0.42);
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.09), rgba(47, 107, 255, 0.02)),
    var(--card);
  box-shadow: 0 8px 26px -12px var(--blue-glow), var(--sh-card);
}

.plan--trial {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.02)),
    var(--card);
  box-shadow: 0 8px 26px -12px var(--green-glow), var(--sh-card);
}

.plan__mark {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke-strong);
  color: var(--text);
}

.plan--best .plan__mark {
  background: var(--blue-soft);
  border-color: rgba(47, 107, 255, 0.3);
  color: #8fb0ff;
}
.plan--trial .plan__mark {
  background: var(--green-soft);
  border-color: rgba(34, 197, 94, 0.3);
  color: #74e39b;
  font-size: 20px;
}

.plan__body {
  flex: 1;
  min-width: 0;
}

.plan__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.plan__note {
  display: block;
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 3px;
}

.plan__price {
  display: block;
  text-align: right;
  flex: none;
}

.plan__amount {
  display: block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.plan__per {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 2px;
  white-space: nowrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: var(--green-soft);
  color: #74e39b;
  border: 1px solid rgba(34, 197, 94, 0.28);
  margin-left: 7px;
  vertical-align: 2px;
}

.tag--blue {
  background: var(--blue-soft);
  color: #8fb0ff;
  border-color: rgba(47, 107, 255, 0.28);
}

.ribbon {
  position: absolute;
  top: -1px;
  right: 14px;
  transform: translateY(-50%);
  height: 22px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #3d76ff, var(--blue));
  color: #fff;
  box-shadow: 0 4px 14px var(--blue-glow);
}

/* ============================ Инфо-плашки ================================ */
.note {
  display: flex;
  gap: 11px;
  padding: 13px 14px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--stroke);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

.note__icon {
  flex: none;
  color: var(--text-3);
  margin-top: 1px;
}

.note--promo {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.03)),
    var(--card);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--text);
}
.note--promo .note__icon {
  color: #b79bff;
}

.note--warn {
  background: var(--amber-soft);
  border-color: rgba(245, 166, 35, 0.28);
  color: #f6c26b;
}
.note--warn .note__icon {
  color: #f6c26b;
}

/* ============================ Нижняя навигация =========================== */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: calc(var(--nav-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: rgba(10, 14, 21, 0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-top: 1px solid var(--stroke);
}

.nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-3);
  transition: color var(--t-fast);
}

.nav__item[aria-current="page"] {
  color: var(--blue);
}

.nav__item[aria-current="page"] .nav__icon {
  filter: drop-shadow(0 0 8px var(--blue-glow));
}

.nav__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.nav__item::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
  box-shadow: 0 0 8px var(--blue-glow);
}

.nav__item[aria-current="page"]::after {
  opacity: 1;
  transform: scale(1);
}

/* ============================ Шторка ===================================== */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(4, 7, 12, 0.68);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fade-in var(--t-mid) var(--ease) both;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 61;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px var(--pad) calc(var(--safe-b) + 20px);
  background: var(--bg-elev);
  border-top: 1px solid var(--stroke-strong);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.6);
  animation: sheet-in var(--t-slow) var(--ease) both;
}

@keyframes sheet-in {
  from {
    transform: translateY(100%);
  }
}

.sheet__grip {
  width: 38px;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--stroke-strong);
  margin: 6px auto 14px;
}

.sheet__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.sheet__title {
  flex: 1;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sheet__close {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-2);
}

/* ============================ Тост ======================================= */
.toasts {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--nav-h) + var(--safe-b) + 14px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  padding: 0 var(--pad);
}

.toast {
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  background: rgba(24, 31, 44, 0.96);
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: toast-in var(--t-mid) var(--ease) both;
}

.toast--ok {
  border-color: rgba(34, 197, 94, 0.4);
  color: #8ceab0;
}
.toast--err {
  border-color: rgba(239, 74, 74, 0.4);
  color: #f79a9a;
}

.toast--out {
  animation: toast-out var(--t-mid) var(--ease) both;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
}

/* ============================ Скелетоны ================================== */
.skel {
  border-radius: var(--r-md);
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.045) 30%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.045) 70%
  );
  background-size: 300% 100%;
  animation: shimmer 1.4s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: -150% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skel {
    animation: none;
  }
}

/* ============================ Поля ввода ================================= */
.field {
  display: block;
  margin-bottom: 14px;
}

.field__label {
  display: block;
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: 7px;
  padding-left: 2px;
}

.input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--stroke-strong);
  color: var(--text);
  font-size: 16px;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.input:focus {
  border-color: rgba(47, 107, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.16);
}

.input--code {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.input--card {
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}

.field__error {
  display: block;
  margin-top: 7px;
  font-size: 12.5px;
  color: #f79a9a;
  min-height: 16px;
}

/* ============================ Ключ и QR ================================== */
.keybox {
  padding: 14px;
  border-radius: var(--r-md);
  background: #0b0f17;
  border: 1px solid var(--stroke-strong);
  font-size: 12px;
  line-height: 1.55;
  word-break: break-all;
  color: var(--text-2);
  max-height: 118px;
  overflow: auto;
}

.qr-card {
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.qr-card svg {
  width: 100%;
  height: auto;
  max-width: 260px;
}

/* ============================ Разное ===================================== */
.flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--stroke);
  font-size: 13px;
  font-weight: 600;
}

.flag__emoji {
  font-size: 15px;
  line-height: 1;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  object-fit: cover;
  background: var(--card-2);
  border: 1px solid var(--stroke-strong);
}

.avatar--fallback {
  display: grid;
  place-items: center;
  font-size: 21px;
  font-weight: 800;
  color: var(--text-2);
}

.progress-ring {
  display: flex;
  align-items: center;
  gap: 12px;
}

.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.step__num {
  counter-increment: step;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 800;
  background: var(--blue-soft);
  border: 1px solid rgba(47, 107, 255, 0.28);
  color: #8fb0ff;
}

.step__num::before {
  content: counter(step);
}

.step__text {
  flex: 1;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  padding-top: 3px;
}

.step__text b {
  color: var(--text);
  font-weight: 600;
}

.empty {
  text-align: center;
  padding: 42px 20px;
  color: var(--text-3);
}

.empty__icon {
  margin: 0 auto 14px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--stroke);
  color: var(--text-3);
}

.empty__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 6px;
}

.big-number {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.center {
  text-align: center;
}

.muted {
  color: var(--text-3);
  font-size: 12.5px;
  line-height: 1.5;
}

.spacer-8 {
  height: 8px;
}
.spacer-16 {
  height: 16px;
}

#confetti {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}
