/* Retribution web-shop — shared styles */
.brand .site-logo,
img.site-logo.rc-logo,
.auth-nav .site-logo,
.auth-card .site-logo {
  display: block;
  height: 52px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.brand img.site-logo,
.site-logo {
  object-fit: contain;
}

.brand img.site-logo {
  object-fit: contain;
}
.brand svg.site-logo {
  shape-rendering: crispEdges;
}
.brand .brand-text {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand:has(.site-logo) .brand-mark {
  display: none;
}

:root {
  --bg-deep: #0b0b0e;
  --bg-card: #16161a;
  --bg-elevated: #1c1c21;
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #f0f0f5;
  --muted: #8b8b96;
  --accent-a: #ff5c1a;
  --accent-b: #ff7a3d;
  --accent-glow: rgba(255, 92, 26, 0.28);
  --danger: #ff6b7a;
  --radius-lg: 16px;
  --radius-md: 12px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Syne", var(--font);
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1180px;
  --sidebar-w: 260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -15%, rgba(138, 112, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(183, 148, 246, 0.08), transparent 50%),
    linear-gradient(180deg, #0b0b0e 0%, #101014 100%);
  background-attachment: fixed;
}

a {
  color: var(--accent-a);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--accent-b);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--stroke);
  background: rgba(5, 6, 10, 0.75);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.85rem 0;
  gap: 1rem 2rem;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #05060a;
  box-shadow: 0 0 24px var(--accent-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #05060a;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

@media (max-width: 720px) {
  .nav-inner:not(.nav-inner--simple) {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }
}

/* Hero */
main {
  flex: 1;
}

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-b);
  background: rgba(138, 112, 255, 0.12);
  border: 1px solid rgba(138, 112, 255, 0.35);
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #05060a;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--accent-glow);
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 0.95rem;
}

.hero-stat:last-child {
  border-bottom: none;
}

.hero-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Features */
.features {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-a);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA block */
.cta {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
}

.cta-box {
  border-radius: calc(var(--radius-lg) + 4px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  background: linear-gradient(145deg, rgba(138, 112, 255, 0.14), rgba(183, 148, 246, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 50%, rgba(138, 112, 255, 0.16), transparent 45%);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
}

.cta-box h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
}

.cta-box > p {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  max-width: 42ch;
}

/* Оплата: колонка, поле на всю ширину блока (не в один ряд с кнопкой) */
.cta-pay-stack {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  text-align: left;
}

.cta-pay-stack .field-label {
  margin: 0.25rem 0 0;
}

.cta-pay-stack .field-input {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

.cta-pay-stack .btn-primary {
  width: 100%;
  box-sizing: border-box;
  min-height: 3rem;
  margin-top: 0.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-iban-out {
  margin: 1rem auto 0;
  max-width: 440px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(5, 6, 10, 0.55);
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-wrap;
  text-align: left;
}

.msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--danger);
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.25);
  white-space: pre-wrap;
  text-align: left;
  max-width: 480px;
  margin-inline: auto;
  display: none;
}

.msg:not(:empty) {
  display: block;
}

/* Footer */
footer {
  border-top: 1px solid var(--stroke);
  padding: 1.5rem 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Status pages (success / cancel) */
.status-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
}

.status-card {
  width: min(100%, 440px);
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.status-icon.ok {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.status-icon.warn {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.status-card h1 {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.status-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: #05060a;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
}

/* Auth pages (login / register / account) */
body.auth-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
}

.auth-page.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-nav {
  border-bottom: 1px solid var(--stroke);
  padding: 0.85rem 0;
}

.auth-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.auth-back {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.auth-back:hover {
  color: var(--text);
}

.auth-page-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem 3rem;
}

.auth-card {
  width: min(100%, 440px);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px);
}

.auth-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-a);
}

.auth-card h1 {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  font-weight: 800;
}

.auth-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.field-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.field-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(5, 6, 10, 0.65);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.field-input:focus {
  outline: none;
  border-color: rgba(138, 112, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(138, 112, 255, 0.12);
}

.auth-actions .btn-primary {
  width: 100%;
  margin-top: 0.25rem;
}

/* Account page */
.account-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.account-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.account-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.account-row strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.account-key-block {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.account-key-hint {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.auth-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.auth-actions .btn-primary {
  width: auto;
  flex: 1;
}

.auth-actions .btn-ghost {
  flex: 1;
}

.auth-footer-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-footer-note a {
  color: var(--accent-a);
  font-weight: 600;
}

.lang-switch-floating {
  position: fixed;
  top: 0.75rem;
  right: 1rem;
  z-index: 20;
  display: flex;
  gap: 0.35rem;
}

.lang-btn {
  border: 1px solid var(--stroke);
  background: rgba(5, 6, 10, 0.6);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.lang-btn.is-active {
  color: #0a0b0f;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  border-color: transparent;
}

/* Cabinet admin (inside account) */
.cabinet-admin {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke);
}
.cabinet-admin-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.cabinet-admin-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.cabinet-admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.cabinet-tab {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}
.cabinet-tab.is-active {
  color: var(--text);
  border-color: rgba(232, 93, 76, 0.45);
  background: rgba(232, 93, 76, 0.12);
}
.cabinet-admin-toolbar,
.cabinet-admin-bulk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.cabinet-admin-bulk .btn-mini {
  font-size: 0.78rem;
}
.cabinet-admin-stats {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.cabinet-admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  max-height: 320px;
}
.cabinet-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.cabinet-admin-table th,
.cabinet-admin-table td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--stroke);
  text-align: left;
  vertical-align: top;
}
.cabinet-admin-table th {
  position: sticky;
  top: 0;
  background: rgba(14, 15, 20, 0.98);
  font-weight: 600;
  color: var(--muted);
}
.cabinet-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.cabinet-row-actions--compact {
  min-width: 11rem;
  max-width: 14rem;
}
.cabinet-row-actions--compact .btn-mini {
  font-size: 0.72rem;
  padding: 0.2rem 0.45rem;
}
.cabinet-keys-out {
  margin-top: 0.75rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  min-height: 140px;
}
.muted {
  color: var(--muted);
  font-size: 0.8rem;
}
.site-build {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-b);
  opacity: 0.85;
}
.btn-mini {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}
.btn-mini.primary {
  border-color: rgba(138, 112, 255, 0.5);
  background: rgba(138, 112, 255, 0.16);
}
.btn-mini.danger {
  border-color: rgba(255, 107, 107, 0.45);
  color: #ffb4b4;
}

/* ——— Layout polish (v15) ——— */

.btn-linkish {
  text-decoration: none;
}

a.btn-primary.btn-linkish {
  color: #0b0b0e;
}

a.btn-ghost.btn-linkish {
  color: inherit;
}

.btn-block {
  width: 100%;
  margin-top: 1rem;
  color: #0b0b0e;
}

.nav-links {
  justify-content: center;
  justify-self: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-cabinet {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  background: rgba(138, 112, 255, 0.18);
  border: 1px solid rgba(138, 112, 255, 0.35);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cabinet:hover {
  color: var(--text);
  background: rgba(138, 112, 255, 0.28);
  transform: translateY(-1px);
}

.hero-title {
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 1.12;
}

.hero-line {
  display: block;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}

.hero-line.grad {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions--center {
  justify-content: center;
  margin-top: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.hero-visual-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 112, 255, 0.35), transparent 70%);
  filter: blur(40px);
}

.hero-visual-logo {
  position: relative;
  width: min(280px, 80%);
  filter: drop-shadow(0 24px 48px rgba(138, 112, 255, 0.35));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stroke);
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.hero-stat-block strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-stat-block span {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 768px) {
  .pricing-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plan-card {
  position: relative;
  padding: 1.35rem 1.2rem;
  min-height: 148px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.plan-card--featured {
  border-color: rgba(138, 112, 255, 0.35);
  background: linear-gradient(160deg, rgba(138, 112, 255, 0.1), var(--bg-elevated));
}

.plan-card:hover,
.plan-card.is-selected {
  border-color: rgba(138, 112, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(138, 112, 255, 0.25);
}

.plan-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-a);
  color: #0b0b0e;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.plan-duration {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.plan-tag {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
  flex: 1;
}

.plan-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-b);
  margin-top: auto;
}

.faq {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--stroke);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--muted);
}

.faq-item.is-open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 1.15rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq-item.is-open .faq-a {
  display: block;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 32ch;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.footer-social:hover {
  color: var(--accent-b);
  border-color: rgba(138, 112, 255, 0.4);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.82rem;
  color: var(--muted);
}

/* Payment checkout */
.payment-page {
  padding: 2rem 0 4rem;
}

.payment-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.payment-head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.payment-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.payment-section-title {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .payment-layout {
    grid-template-columns: 1fr min(340px, 36%);
    gap: 2.5rem;
  }
}

.payment-plans .pricing-grid--4 {
  max-width: 100%;
}

.order-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.payment-hint {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.payment-funpay-steps {
  margin: 1rem 0 1.25rem;
  padding-left: 1.15rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.payment-funpay-steps a {
  color: #ff8a4c;
}

.payment-order .msg {
  margin-top: 0.75rem;
  max-width: none;
}

.payment-order {
  position: sticky;
  top: 5rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--stroke);
}

.payment-order h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.order-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.order-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 800;
  font-size: 1.25rem;
}

/* Cabinet app */
body.cabinet-app {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font);
}

.cabinet-layout {
  display: flex;
  min-height: 100vh;
}

.cabinet-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  border-right: 1px solid var(--stroke);
  background: #0e0e12;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0.85rem;
}

.cabinet-sidebar .brand {
  padding: 0 0.5rem 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--stroke);
}

.cabinet-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.5rem 1.25rem;
}

.cabinet-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(138, 112, 255, 0.2);
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-b);
  overflow: hidden;
}

.cabinet-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabinet-user-meta strong {
  display: block;
  font-size: 0.9rem;
}

.cabinet-user-meta span {
  font-size: 0.72rem;
  color: var(--muted);
  word-break: break-all;
}

.cabinet-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cabinet-nav a,
.cabinet-nav button {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
}

.cabinet-nav a:hover,
.cabinet-nav button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.cabinet-nav a.is-active,
.cabinet-nav button.is-active {
  color: var(--text);
  background: rgba(138, 112, 255, 0.18);
}

.cabinet-nav .nav-admin {
  margin-top: auto;
}

.cabinet-nav .nav-logout {
  color: #ff8a9a;
  margin-top: 0.5rem;
}

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

.cabinet-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--stroke);
}

.cabinet-content {
  flex: 1;
  padding: 1.5rem clamp(1rem, 3vw, 2rem) 2.5rem;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

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

.cabinet-page h1 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  font-weight: 800;
}

.cabinet-page .page-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  margin-bottom: 1.5rem;
}

.stat-card {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--stroke);
}

.stat-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.stat-card strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.stat-card strong.accent {
  color: var(--accent-b);
}

.cabinet-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--stroke);
}

.cabinet-card.centered {
  max-width: 520px;
  text-align: center;
}

.cabinet-key-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(138, 112, 255, 0.15);
  color: var(--accent-a);
  display: grid;
  place-items: center;
}

.cabinet-profile-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .cabinet-profile-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cabinet-loading {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 4rem;
}

@media (max-width: 860px) {
  .cabinet-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 60;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
  }
  .cabinet-sidebar.is-open {
    transform: translateX(0);
  }
  .cabinet-menu-btn {
    display: inline-flex;
  }
}

.cabinet-menu-btn {
  display: none;
  margin-right: auto;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

body.cabinet-app .cabinet-admin {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

body.cabinet-app .auth-card {
  width: 100%;
  max-width: none;
  padding: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
}

body.cabinet-app .cabinet-admin-table-wrap {
  max-height: 420px;
}

/* ——— Visual polish v16 ——— */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb-float 18s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(138, 112, 255, 0.35);
  top: -120px;
  left: 10%;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: rgba(232, 121, 249, 0.18);
  top: 40%;
  right: -80px;
  animation-delay: -6s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: rgba(99, 102, 241, 0.22);
  bottom: 10%;
  left: 25%;
  animation-delay: -12s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent);
  opacity: 0.4;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -16px) scale(1.05); }
}

.page-shell,
.cabinet-layout {
  position: relative;
  z-index: 1;
}

.nav-glass {
  background: rgba(11, 11, 14, 0.72);
  border-bottom-color: rgba(138, 112, 255, 0.12);
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-b);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-sub {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.6);
  margin-right: 0.35rem;
  vertical-align: middle;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-showcase {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.float-chip {
  position: absolute;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(22, 22, 26, 0.85);
  border: 1px solid rgba(138, 112, 255, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: chip-float 5s ease-in-out infinite;
}

.chip-1 { top: 12%; left: 0; animation-delay: 0s; }
.chip-2 { top: 55%; right: -4%; animation-delay: -1.5s; }
.chip-3 { bottom: 8%; left: 15%; animation-delay: -3s; }

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

.glass-pill {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(22, 22, 26, 0.65);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.steps {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(138, 112, 255, 0.08), rgba(22, 22, 26, 0.9));
  border: 1px solid var(--stroke);
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-a), transparent);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(138, 112, 255, 0.35);
  margin-bottom: 0.5rem;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.feature-grid--rich {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .feature-grid--rich {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .feature-grid--rich {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card--rich {
  padding: 1.35rem 1.25rem;
  background: linear-gradient(160deg, rgba(28, 28, 33, 0.95), rgba(18, 18, 22, 0.9));
  border: 1px solid var(--stroke);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card--rich:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 112, 255, 0.45);
  box-shadow: 0 16px 40px rgba(138, 112, 255, 0.12);
}

.feature-card--rich .feature-icon {
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.highlight-band {
  padding: 2rem 0;
}

.highlight-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(138, 112, 255, 0.18), rgba(22, 22, 26, 0.95));
  border: 1px solid rgba(138, 112, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.highlight-inner h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.highlight-inner p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.92rem;
}

.plan-card--popular {
  border-color: rgba(138, 112, 255, 0.4);
}

.plan-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent-a);
  color: #0b0b0e;
}

.plan-card--wide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: auto;
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  grid-column: 1 / -1;
}

.plan-wide-left .plan-duration {
  margin-bottom: 0.35rem;
}

.plan-wide-left .plan-tag {
  flex: none;
  margin: 0;
  max-width: 52ch;
  line-height: 1.45;
}

.plan-price--amber {
  color: #fbbf24;
  margin-top: 0;
  flex-shrink: 0;
  font-size: 1.35rem;
}

.plan-card--hwid:hover {
  border-color: rgba(251, 191, 36, 0.45);
}

.cta-box--rich {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(145deg, rgba(138, 112, 255, 0.16), rgba(14, 14, 18, 0.92));
  border: 1px solid rgba(138, 112, 255, 0.28);
}

.glass-panel {
  background: rgba(22, 22, 26, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(138, 112, 255, 0.15);
}

.payment-section-title--spaced {
  margin-top: 1.75rem;
}

.cabinet-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.cabinet-loading {
  display: none !important;
}

body.cabinet-app {
  background: var(--bg-deep);
}

body.cabinet-app .page-bg {
  z-index: 0;
}

body.cabinet-app .cabinet-layout {
  z-index: 1;
}

.cabinet-sidebar {
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(20px);
}

.stat-card {
  background: linear-gradient(160deg, rgba(28, 28, 33, 0.9), rgba(18, 18, 22, 0.85));
}

.cabinet-card {
  background: linear-gradient(160deg, rgba(28, 28, 33, 0.95), rgba(20, 20, 24, 0.9));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.site-footer {
  border-top: 1px solid var(--stroke);
  margin-top: auto;
}

/* v17 — выравнивание, админка, скачивание */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head .section-sub {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.pricing .wrap {
  max-width: 1000px;
}

.pricing-grid--4 {
  align-items: stretch;
}

.plan-card--wide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: auto;
  margin-top: 1.25rem;
}

.download-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.download-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .download-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.download-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 200px;
}

.download-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.download-card p {
  margin: 0;
  flex: 1;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.download-card .btn-primary,
.download-card .btn-ghost {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.download-icon {
  font-size: 1.5rem;
  opacity: 0.9;
}

.glass-panel {
  background: rgba(22, 22, 26, 0.75);
  backdrop-filter: blur(14px);
}

.admin-overview-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.5rem;
}

@media (min-width: 700px) {
  .admin-overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.admin-gen-card {
  margin-bottom: 1.25rem;
}

.admin-block-title {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.admin-gen-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .admin-gen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge--available {
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
}

.badge--used {
  background: rgba(138, 112, 255, 0.18);
  color: var(--accent-b);
}

.badge--expired,
.badge--revoked {
  background: rgba(255, 107, 122, 0.12);
  color: #ffb4b4;
}

.badge--frozen {
  background: rgba(120, 180, 255, 0.14);
  color: #a8d4ff;
}

.badge--access {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.badge--hwid {
  background: rgba(251, 191, 36, 0.15);
  color: #fcd34d;
}

.key-code {
  font-family: var(--mono);
  font-size: 0.75rem;
  word-break: break-all;
}

.cabinet-admin-toolbar .field-input,
.cabinet-admin-toolbar select {
  flex: 1;
  min-width: 120px;
}

.cabinet-content {
  max-width: 1100px;
}

.cabinet-page h1 {
  letter-spacing: -0.02em;
}

.payment-layout {
  max-width: 1100px;
  margin: 0 auto;
}

.wrap {
  width: min(100% - 2rem, var(--max));
}
