:root {
  --bg: #08131a;
  --bg-soft: rgba(13, 24, 31, 0.72);
  --card: rgba(12, 21, 29, 0.82);
  --card-strong: rgba(16, 28, 37, 0.94);
  --text: var(--tg-text, #eff8ff);
  --muted: var(--tg-hint, #8fa8b8);
  --line: rgba(173, 220, 255, 0.12);
  --line-strong: rgba(173, 220, 255, 0.24);
  --teal: #38d6c5;
  --teal-deep: #16938a;
  --sun: #ff9b54;
  --sun-soft: #ffd5ab;
  --danger: #ff7f7f;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 28px 80px rgba(2, 8, 12, 0.48);
  --shell-width: 1120px;
  --font-title: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --tg-surface: #08131a;
  --tg-surface-alt: #10202b;
  --tg-text: #eff8ff;
  --tg-hint: #8fa8b8;
  --tg-button: #38d6c5;
  --tg-button-text: #051117;
  --tg-link: #7dd8ff;
  --tg-danger: #ff7f7f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 214, 197, 0.24), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255, 155, 84, 0.18), transparent 24%),
    linear-gradient(180deg, #061017 0%, #08131a 54%, #09161e 100%);
  color: var(--text);
  font-family: var(--font-body);
  color-scheme: dark;
}

body.drawer-open {
  overflow: hidden;
}

body.is-loading .skeleton-block,
body.is-loading .metrics,
body.is-loading .plans,
body.is-loading .profile-grid,
body.is-loading .bars,
body.is-loading .summary-grid {
  position: relative;
  overflow: hidden;
}

body.is-loading .skeleton-block::after,
body.is-loading .metrics::after,
body.is-loading .plans::after,
body.is-loading .profile-grid::after,
body.is-loading .bars::after,
body.is-loading .summary-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 45%,
      rgba(255, 255, 255, 0.14) 50%,
      rgba(255, 255, 255, 0.05) 55%,
      rgba(255, 255, 255, 0) 100%
    );
  transform: translateX(-100%);
  animation: shimmer 1.25s linear infinite;
}

.ambient {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(56px);
  opacity: 0.56;
  z-index: 0;
}

.ambient-one {
  top: -10rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(56, 214, 197, 0.2);
  animation: float 12s ease-in-out infinite;
}

.ambient-two {
  top: 22%;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  background: rgba(255, 155, 84, 0.17);
  animation: float 16s ease-in-out infinite reverse;
}

.ambient-three {
  bottom: -11rem;
  left: 24%;
  width: 22rem;
  height: 22rem;
  background: rgba(95, 130, 255, 0.16);
  animation: float 14s ease-in-out infinite;
}

.grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 85%);
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), var(--shell-width));
  margin: 0 auto;
  padding: 18px 0 34px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(56, 214, 197, 0.12), transparent 30%),
    rgba(3, 8, 12, 0.62);
  backdrop-filter: blur(8px);
  transition: opacity 220ms ease;
}

.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.plans-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  width: min(540px, calc(100vw - 16px));
  height: 100vh;
  padding: 10px 10px 10px 0;
  transform: translateX(108%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.plans-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.plans-drawer-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  padding: 22px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 32px 0 0 32px;
  background:
    radial-gradient(circle at top left, rgba(56, 214, 197, 0.18), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(255, 155, 84, 0.18), transparent 36%),
    rgba(8, 17, 23, 0.96);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.34);
}

.plans-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.plans-drawer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.drawer-close:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

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

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 20px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%, rgba(56, 214, 197, 0.14));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-bottom: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(56, 214, 197, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(255, 155, 84, 0.14), transparent 34%),
    var(--card-strong);
}

.hero-copy,
.identity-card {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.caption {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.title,
h2,
.headline-number {
  font-family: var(--font-title);
}

.title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.subtitle {
  margin: 14px 0 0;
  max-width: 38rem;
  color: var(--tg-hint);
  font-size: 15px;
  line-height: 1.55;
}

.hero-badges,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges {
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(56, 214, 197, 0.12);
  border-radius: 999px;
  background: rgba(56, 214, 197, 0.11);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.badge-soft {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.badge-success {
  border-color: rgba(56, 214, 197, 0.24);
  background: rgba(56, 214, 197, 0.14);
  color: #9cfbf1;
}

.badge-warn {
  border-color: rgba(255, 155, 84, 0.24);
  background: rgba(255, 155, 84, 0.12);
  color: #ffd1ab;
}

.badge-danger {
  border-color: rgba(255, 127, 127, 0.24);
  background: rgba(255, 127, 127, 0.12);
  color: #ffc2c2;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  min-height: 164px;
}

.summary-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(5, 13, 18, 0.28);
}

.summary-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.summary-value {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.summary-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.identity-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  min-height: 100%;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 15% 10%, rgba(56, 214, 197, 0.2), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(255, 155, 84, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.identity-glow {
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 155, 84, 0.24), rgba(255, 155, 84, 0));
  filter: blur(6px);
  pointer-events: none;
}

.identity-headerbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.identity-main {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.premium-chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.premium-chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(239, 248, 255, 0.78);
}

.status-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 248, 255, 0.82);
}

.status-pill.is-active {
  border-color: rgba(56, 214, 197, 0.3);
  background: rgba(56, 214, 197, 0.14);
  color: #98fff5;
}

.status-pill.is-free {
  border-color: rgba(255, 155, 84, 0.24);
  background: rgba(255, 155, 84, 0.12);
  color: #ffd3ac;
}

.identity-orb {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 36%),
    linear-gradient(135deg, rgba(56, 214, 197, 0.86), rgba(11, 87, 118, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 24px 44px rgba(10, 28, 40, 0.42);
  animation: pulse 5.6s ease-in-out infinite;
}

.identity-orb span {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: #051117;
}

.identity-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.identity-photo.is-emblem {
  object-fit: cover;
  image-rendering: auto;
}

.identity-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 74px;
}

.identity-meta.is-premium .identity-meta-item {
  border-color: rgba(56, 214, 197, 0.18);
  background: rgba(56, 214, 197, 0.05);
}

.identity-meta-item {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.identity-meta-item span {
  color: var(--tg-hint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-meta-item strong {
  font-size: 14px;
  line-height: 1.25;
}

.headline-number {
  margin: 6px 0 8px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.subscription-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 84px;
}

.fact-tile {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 14, 0.24);
}

.fact-tile.is-active {
  border-color: rgba(56, 214, 197, 0.22);
  background:
    linear-gradient(180deg, rgba(56, 214, 197, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 14, 0.28);
}

.fact-tile span {
  color: var(--tg-hint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-tile strong {
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.subscription-meter {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.subscription-meter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.subscription-meter-top span {
  color: var(--tg-hint);
  font-size: 12px;
  font-weight: 700;
}

.subscription-meter-top strong {
  font-size: 13px;
  font-weight: 800;
}

.subscription-meter-track {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.subscription-meter-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(56, 214, 197, 0.98), rgba(255, 155, 84, 0.92));
  box-shadow: 0 8px 20px rgba(56, 214, 197, 0.22);
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease;
}

.subscription-meter-fill.is-free {
  background: linear-gradient(90deg, rgba(255, 155, 84, 0.86), rgba(255, 127, 127, 0.84));
  box-shadow: 0 8px 20px rgba(255, 155, 84, 0.16);
}

.hint {
  margin: 0;
  color: var(--tg-hint);
  font-size: 13px;
  line-height: 1.5;
}

.ghost-btn,
.ribbon-btn,
.accent-btn,
.chip {
  font: inherit;
}

.ghost-btn,
.ribbon-btn,
.accent-btn {
  min-height: 48px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

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

.accent-btn {
  border: 0;
  padding: 0 18px;
  color: var(--tg-button-text);
  background: linear-gradient(135deg, var(--tg-button), var(--sun));
  box-shadow: 0 24px 40px rgba(255, 155, 84, 0.2);
}

.action-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background:
    radial-gradient(circle at top left, rgba(56, 214, 197, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(10, 18, 25, 0.88);
}

.ribbon-btn {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--tg-text);
  text-align: left;
}

.ribbon-btn-primary {
  border-color: rgba(56, 214, 197, 0.26);
  background: linear-gradient(135deg, rgba(56, 214, 197, 0.95), rgba(16, 147, 138, 0.92));
  color: #041118;
  box-shadow: 0 18px 36px rgba(56, 214, 197, 0.18);
}

.ribbon-btn-spotlight {
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
}

.ribbon-btn-spotlight::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 58%;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.ribbon-btn-soft {
  border-color: rgba(255, 155, 84, 0.18);
  background: rgba(255, 155, 84, 0.08);
}

.ghost-btn:hover,
.ribbon-btn:hover,
.accent-btn:hover,
.chip:hover,
.plan-card:hover {
  transform: translateY(-2px);
}

.ghost-btn:disabled,
.ribbon-btn:disabled,
.accent-btn:disabled,
.chip:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

h2 {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.control-group {
  margin-bottom: 18px;
}

.control-group-last {
  margin-bottom: 14px;
}

.caption {
  margin-bottom: 10px;
  color: var(--tg-hint);
}

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

.chip {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--tg-text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--tg-button), rgba(14, 138, 130, 0.95));
  color: var(--tg-button-text);
  box-shadow: 0 18px 26px rgba(56, 214, 197, 0.22);
}

.chip.is-locked {
  opacity: 0.6;
  border-style: dashed;
}

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

.profile-cell {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.profile-cell .label,
.metric .k {
  display: block;
  margin-bottom: 8px;
  color: var(--tg-hint);
  font-size: 12px;
  font-weight: 600;
}

.profile-cell .value {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  word-break: break-word;
}

.bars {
  display: grid;
  gap: 12px;
  min-height: 152px;
}

.quota-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  min-height: 148px;
}

.quota-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(3, 10, 14, 0.28);
}

.quota-card-teal {
  box-shadow: inset 0 1px 0 rgba(56, 214, 197, 0.05);
}

.quota-card-sun {
  box-shadow: inset 0 1px 0 rgba(255, 155, 84, 0.06);
}

.quota-card.is-exhausted {
  border-color: rgba(255, 127, 127, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 127, 127, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(3, 10, 14, 0.32);
}

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

.quota-top span {
  color: var(--tg-hint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quota-top strong {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.quota-value {
  font-family: var(--font-title);
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.quota-note {
  margin: 0;
  color: var(--tg-hint);
  font-size: 13px;
  line-height: 1.45;
}

.quota-meter {
  display: grid;
}

.quota-meter-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.quota-meter-fill {
  height: 100%;
  border-radius: inherit;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quota-meter-fill-teal {
  background: linear-gradient(90deg, rgba(56, 214, 197, 0.98), rgba(17, 145, 134, 0.92));
}

.quota-meter-fill-sun {
  background: linear-gradient(90deg, rgba(255, 155, 84, 0.95), rgba(255, 210, 140, 0.92));
}

.bar-group {
  display: grid;
  gap: 8px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--tg-hint);
}

.bar-label strong {
  color: var(--text);
}

.bar-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal) 0%, var(--sun) 100%);
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tag-row {
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--tg-hint);
  font-size: 12px;
  font-weight: 700;
}

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

.jobs-feed {
  display: grid;
  gap: 12px;
  min-height: 180px;
}

.job-item {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(6, 14, 19, 0.28);
}

.job-item.is-failed {
  border-color: rgba(255, 127, 127, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 127, 127, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(6, 14, 19, 0.32);
}

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

.job-item-top strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.job-item-top p,
.job-item-meta {
  margin: 0;
  color: var(--tg-hint);
  font-size: 13px;
  line-height: 1.5;
}

.job-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-item-error,
.empty-jobs {
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.55;
}

.job-item-error {
  border: 1px solid rgba(255, 127, 127, 0.22);
  background: rgba(255, 96, 96, 0.08);
  color: #ffb1b1;
}

.empty-jobs {
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--tg-hint);
}

.access-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(6, 14, 19, 0.34);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.access-card.is-active {
  border-color: rgba(56, 214, 197, 0.34);
  box-shadow: 0 18px 34px rgba(56, 214, 197, 0.12);
}

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

.access-top strong {
  font-size: 15px;
  line-height: 1.3;
}

.access-state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--tg-hint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.access-card.is-active .access-state {
  background: rgba(56, 214, 197, 0.14);
  color: #8df3ea;
}

.access-card p {
  margin: 0;
  color: var(--tg-hint);
  font-size: 13px;
  line-height: 1.55;
}

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

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

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

.admin-stat-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(3, 10, 14, 0.28);
}

.admin-stat-card .section-kicker {
  margin-bottom: 12px;
}

.admin-stat-body {
  display: grid;
  gap: 10px;
}

.admin-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-stat-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.admin-stat-row span {
  color: var(--tg-hint);
  font-size: 12px;
}

.admin-stat-row strong {
  font-size: 13px;
}

.admin-block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(3, 10, 14, 0.28);
}

.admin-block h3 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.2;
}

.admin-feed {
  display: grid;
  gap: 10px;
}

.admin-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.admin-row div {
  display: grid;
  gap: 4px;
}

.admin-row strong {
  font-size: 13px;
}

.admin-row span,
.admin-feed-empty {
  color: var(--tg-hint);
  font-size: 12px;
  line-height: 1.45;
}

.metric {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(3, 10, 14, 0.28);
}

.metric .v {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

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

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  min-height: 190px;
}

.plans-drawer-grid {
  grid-template-columns: 1fr;
  min-height: auto;
}

.plans-highlight {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(56, 214, 197, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 155, 84, 0.16), transparent 35%),
    linear-gradient(160deg, rgba(56, 214, 197, 0.09), rgba(255, 255, 255, 0.03));
}

.plans-highlight-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.plans-highlight-text {
  margin: 10px 0 0;
  color: var(--tg-hint);
  font-size: 14px;
  line-height: 1.6;
}

.plans-highlight-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plan-feature-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(56, 214, 197, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 214, 197, 0.16), rgba(56, 214, 197, 0));
  pointer-events: none;
}

.plan-card.is-featured {
  border-color: rgba(255, 155, 84, 0.26);
  box-shadow: 0 18px 34px rgba(255, 155, 84, 0.12);
}

.plan-card.is-selected {
  border-color: rgba(56, 214, 197, 0.58);
  background:
    radial-gradient(circle at top right, rgba(56, 214, 197, 0.14), transparent 36%),
    rgba(56, 214, 197, 0.06);
  box-shadow: 0 22px 36px rgba(56, 214, 197, 0.14);
}

.plan-card.is-current {
  border-color: rgba(255, 255, 255, 0.14);
}

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

.plan-name {
  margin: 0;
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.05;
}

.plan-chip {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-copy {
  margin: 0;
  color: var(--tg-hint);
  font-size: 13px;
  line-height: 1.5;
}

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

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.plan-price strong {
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.plan-price span {
  color: var(--tg-hint);
  font-size: 12px;
  font-weight: 700;
}

.plan-subprice {
  margin: 0;
  color: var(--sun-soft);
  font-size: 12px;
  font-weight: 700;
}

.plan-glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(56, 214, 197, 0), rgba(56, 214, 197, 0.48), rgba(255, 155, 84, 0));
}

.plan-perks {
  display: grid;
  gap: 10px;
}

.plan-perk {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.plan-perk-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--sun));
  box-shadow: 0 0 0 5px rgba(56, 214, 197, 0.08);
}

.plan-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--tg-hint);
  font-size: 12px;
}

.plans-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.plans-drawer-footer {
  margin-top: auto;
  padding-top: 4px;
}

.plans-footer .hint {
  max-width: 42rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 10;
  max-width: calc(100% - 28px);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(5, 12, 17, 0.96);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.return-shell {
  display: grid;
  min-height: 100vh;
  align-items: center;
}

.return-panel {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(56, 214, 197, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 155, 84, 0.12), transparent 28%),
    var(--card-strong);
}

.return-title {
  max-width: 14ch;
}

.return-status-block {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.return-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 120px;
}

.return-meta-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.return-meta-card span {
  color: var(--tg-hint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.return-meta-card strong {
  font-size: 15px;
  line-height: 1.4;
  word-break: break-word;
}

.return-timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  min-height: 120px;
}

.return-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.return-line p {
  margin: 0;
  color: var(--tg-hint);
  font-size: 14px;
  line-height: 1.55;
}

.return-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--sun));
  box-shadow: 0 0 0 6px rgba(56, 214, 197, 0.08);
}

.return-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.return-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 18px;
  flex: 1;
}

.reveal {
  animation: reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.panel-focus {
  animation:
    reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both,
    panelFocus 1.4s ease;
}

.delay-1 {
  animation-delay: 80ms;
}

.delay-2 {
  animation-delay: 140ms;
}

.delay-3 {
  animation-delay: 200ms;
}

.delay-4 {
  animation-delay: 260ms;
}

.delay-5 {
  animation-delay: 320ms;
}

.delay-6 {
  animation-delay: 380ms;
}

.delay-7 {
  animation-delay: 440ms;
}

.delay-8 {
  animation-delay: 500ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 18px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 24px 44px rgba(10, 28, 40, 0.42);
  }

  50% {
    transform: scale(1.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 28px 52px rgba(10, 28, 40, 0.52);
  }
}

@keyframes panelFocus {
  0% {
    box-shadow: 0 0 0 rgba(56, 214, 197, 0), var(--shadow);
    border-color: var(--line);
  }

  30% {
    box-shadow: 0 0 0 3px rgba(56, 214, 197, 0.28), var(--shadow);
    border-color: rgba(56, 214, 197, 0.48);
  }

  100% {
    box-shadow: 0 0 0 rgba(56, 214, 197, 0), var(--shadow);
    border-color: var(--line);
  }
}

:root[data-theme="light"] {
  --bg: #eef4f7;
  --bg-soft: rgba(255, 255, 255, 0.84);
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: rgba(255, 255, 255, 0.95);
  --line: rgba(18, 39, 53, 0.12);
  --line-strong: rgba(18, 39, 53, 0.2);
  --shadow: 0 24px 60px rgba(19, 40, 52, 0.12);
  --sun-soft: #b85b00;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(56, 214, 197, 0.16), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255, 155, 84, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbfd 0%, #eef4f7 54%, #e7eff4 100%);
  color: var(--text);
  color-scheme: light;
}

:root[data-theme="light"] .grid-glow {
  background-image:
    linear-gradient(rgba(18, 39, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 39, 53, 0.05) 1px, transparent 1px);
  opacity: 0.22;
}

:root[data-theme="light"] .drawer-overlay {
  background:
    radial-gradient(circle at 20% 15%, rgba(56, 214, 197, 0.1), transparent 30%),
    rgba(228, 237, 242, 0.72);
}

:root[data-theme="light"] .plans-drawer-shell {
  background:
    radial-gradient(circle at top left, rgba(56, 214, 197, 0.12), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(255, 155, 84, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.97);
  box-shadow: -24px 0 60px rgba(18, 39, 53, 0.12);
}

:root[data-theme="light"] .action-ribbon {
  background:
    radial-gradient(circle at top left, rgba(56, 214, 197, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .identity-card {
  background:
    radial-gradient(circle at 15% 10%, rgba(56, 214, 197, 0.16), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(255, 155, 84, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
}

:root[data-theme="light"] .summary-card,
:root[data-theme="light"] .metric,
:root[data-theme="light"] .admin-stat-card,
:root[data-theme="light"] .admin-block,
:root[data-theme="light"] .quota-card,
:root[data-theme="light"] .job-item,
:root[data-theme="light"] .profile-cell,
:root[data-theme="light"] .access-card,
:root[data-theme="light"] .fact-tile,
:root[data-theme="light"] .subscription-meter,
:root[data-theme="light"] .identity-meta-item,
:root[data-theme="light"] .return-meta-card,
:root[data-theme="light"] .plan-feature-pill,
:root[data-theme="light"] .tag,
:root[data-theme="light"] .toast,
:root[data-theme="light"] .drawer-close,
:root[data-theme="light"] .ghost-btn,
:root[data-theme="light"] .chip:not(.is-active),
:root[data-theme="light"] .ribbon-btn:not(.ribbon-btn-primary):not(.ribbon-btn-soft),
:root[data-theme="light"] .access-state,
:root[data-theme="light"] .plan-chip,
:root[data-theme="light"] .premium-chip,
:root[data-theme="light"] .status-pill,
:root[data-theme="light"] .badge-soft {
  border-color: rgba(18, 39, 53, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

:root[data-theme="light"] .job-item-error {
  border-color: rgba(154, 53, 53, 0.16);
  background: rgba(255, 232, 232, 0.88);
  color: #8f2d2d;
}

:root[data-theme="light"] .empty-jobs {
  background: rgba(255, 255, 255, 0.58);
}

:root[data-theme="light"] .summary-card,
:root[data-theme="light"] .metric,
:root[data-theme="light"] .admin-stat-card,
:root[data-theme="light"] .admin-block,
:root[data-theme="light"] .quota-card,
:root[data-theme="light"] .access-card,
:root[data-theme="light"] .fact-tile,
:root[data-theme="light"] .profile-cell {
  box-shadow: none;
}

:root[data-theme="light"] .fact-tile.is-active {
  background:
    linear-gradient(180deg, rgba(56, 214, 197, 0.08), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.84);
}

:root[data-theme="light"] .identity-meta.is-premium .identity-meta-item {
  background: rgba(240, 252, 250, 0.86);
}

:root[data-theme="light"] .quota-card.is-exhausted {
  border-color: rgba(220, 38, 38, 0.2);
  background:
    linear-gradient(180deg, rgba(248, 113, 113, 0.08), rgba(255, 255, 255, 0.75)),
    rgba(255, 255, 255, 0.82);
}

:root[data-theme="light"] .bar-track,
:root[data-theme="light"] .quota-meter-track,
:root[data-theme="light"] .subscription-meter-track {
  background: rgba(18, 39, 53, 0.08);
}

:root[data-theme="light"] .admin-row,
:root[data-theme="light"] .admin-stat-row {
  border-color: rgba(18, 39, 53, 0.08);
}

:root[data-theme="light"] .badge {
  border-color: rgba(56, 214, 197, 0.18);
  background: rgba(56, 214, 197, 0.12);
  color: #0f5f5a;
}

:root[data-theme="light"] .badge-success,
:root[data-theme="light"] .status-pill.is-active,
:root[data-theme="light"] .access-card.is-active .access-state {
  border-color: rgba(16, 185, 129, 0.24);
  background: rgba(16, 185, 129, 0.14);
  color: #0f766e;
}

:root[data-theme="light"] .badge-warn,
:root[data-theme="light"] .status-pill.is-free {
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(251, 191, 36, 0.16);
  color: #b45309;
}

:root[data-theme="light"] .badge-danger {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(248, 113, 113, 0.14);
  color: #b42318;
}

:root[data-theme="light"] .ribbon-btn-soft {
  border-color: rgba(245, 158, 11, 0.14);
  background: rgba(255, 155, 84, 0.1);
  color: var(--text);
}

:root[data-theme="light"] .plan-subprice {
  color: #b85b00;
}

:root[data-theme="light"] body.is-loading .skeleton-block::after,
:root[data-theme="light"] body.is-loading .metrics::after,
:root[data-theme="light"] body.is-loading .plans::after,
:root[data-theme="light"] body.is-loading .profile-grid::after,
:root[data-theme="light"] body.is-loading .bars::after,
:root[data-theme="light"] body.is-loading .summary-grid::after {
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(18, 39, 53, 0.03) 45%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(18, 39, 53, 0.03) 55%,
      rgba(255, 255, 255, 0) 100%
    );
}

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

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

  .plans-footer {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .return-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .app-shell {
    width: min(calc(100% - 18px), var(--shell-width));
    padding-top: 10px;
  }

  .action-ribbon {
    grid-template-columns: 1fr;
  }

  .layout-grid,
  .metrics,
  .quota-grid,
  .summary-grid,
  .profile-grid,
  .identity-meta,
  .access-grid,
  .subscription-facts {
    grid-template-columns: 1fr;
  }

  .return-actions {
    flex-direction: column;
  }

  .card,
  .hero-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .title {
    max-width: none;
  }

  .identity-main {
    grid-template-columns: 1fr;
  }

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

  .plans-drawer {
    width: 100vw;
    padding: 0;
  }

  .plans-drawer-shell {
    border-radius: 24px 24px 0 0;
    height: calc(100vh - 8px);
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
