/* Fortune VPN — design tokens, lifted from theme.css of the live site. */
/* Единый дизайн-токен-сет для ЛК и лендинга (один продукт).
   Значения зеркалят landing/theme.css — держать синхронно, это общий контракт. */
:root {
  --bg: #0D111A;
  --bg-2: #161B22;
  --panel: rgba(255,255,255,0.04);
  --panel-2: rgba(255,255,255,0.02);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --ink: #F0F3F8;
  --muted: #A2ACB8;
  --dim: #868A9E;  /* контраст ~4.8:1 на --bg — WCAG AA для обычного текста */
  --accent: #2EA8FF;
  --accent-soft: #7DCBFF;
  --indigo: #2E7DF5;
  --green: #6AE58E;
  --warning: #F5A623;
  --danger: #E5484D;
  --grad: linear-gradient(135deg, #2E7DF5 0%, #2EA8FF 100%);
  --grad-soft: linear-gradient(135deg, rgba(46,168,255,.25), rgba(46,168,255,.15));
  /* Единый системный шрифт продукта — тот же стек, что и в landing/theme.css. */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; color: inherit; }

/* Видимый фокус для клавиатурной навигации (WCAG 2.4.7) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible,
[role="button"]:focus-visible, [role="tab"]:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* gradient text helper */
.grad-text {
  background: linear-gradient(135deg, #7DCBFF 0%, #2EA8FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* hero glows */
.bg-glows::before, .bg-glows::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.bg-glows::before {
  top: -120px; right: -80px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(46,168,255,.16), transparent 60%);
}
.bg-glows::after {
  bottom: -160px; left: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(46,125,245,.10), transparent 60%);
}

/* primary / ghost / danger button shells */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
  cursor: pointer; transition: transform .15s, box-shadow .2s, border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 26px -10px rgba(46,125,245,.45);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--border-strong); background: rgba(255,255,255,.03); }
.btn-danger {
  background: rgba(229,72,77,.08); color: #FF8488; border-color: rgba(229,72,77,.32);
}
.btn-danger:hover { background: rgba(229,72,77,.16); border-color: rgba(229,72,77,.5); }
.btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 13px; }
.btn-sm { padding: 6px 12px; font-size: 13px; border-radius: 9px; }
.btn-block { width: 100%; }

/* Card pattern from .ps */
.ps {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px 30px;
  overflow: hidden;
  /* Depth: top-edge highlight + мягкая elevation (cinematic dark) */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 24px 60px -42px rgba(0,0,0,.85);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.ps:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.ps::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(46,168,255,.08), transparent 40%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.ps:hover::before { opacity: 1; }
.ps > * { position: relative; }

.ps-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(160deg, rgba(46,168,255,.22), rgba(46,125,245,.08));
  border: 1px solid rgba(46,168,255,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 24px -12px rgba(46,125,245,.6);
  color: #9AD4FF; display: grid; place-items: center; margin-bottom: 16px;
}
.ps-icon svg { width: 22px; height: 22px; }

/* Eyebrow pill (chip + text + dot) */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 12.5px; color: #C9C9DC; font-weight: 500;
}
.pill .chip {
  background: var(--grad); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 2px 10px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 99px; background: var(--green);
  box-shadow: 0 0 10px #6AE58E;
}
.pill.warn .chip { background: rgba(245,166,35,.85); }
.pill.warn .dot { background: var(--warning); box-shadow: 0 0 10px var(--warning); }
.pill.off { color: var(--muted); }
.pill.off .chip { background: rgba(162,172,184,.18); color: var(--muted); }
.pill.off .dot { background: var(--dim); box-shadow: none; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 22px; padding: 0 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: -0.01em;
}
.badge-active { background: rgba(106,229,142,.15); color: var(--green); }
.badge-warn   { background: rgba(245,166,35,.15); color: var(--warning); }
.badge-danger { background: rgba(229,72,77,.18); color: #FF8488; }
.badge-pending{ background: rgba(162,172,184,.15); color: var(--muted); }
.badge .b-dot { width: 6px; height: 6px; border-radius: 99px; background: currentColor; }

/* Input */
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 13.5px; color: var(--muted); }
.field-input {
  height: 48px; padding: 0 14px; border-radius: 10px;
  background: var(--panel); border: 1px solid var(--border);
  color: var(--ink); outline: none; transition: border-color .15s;
}
.field-input:focus { border-color: var(--accent); }
.field-input.err { border-color: var(--danger); }
/* «Колодец» ввода для модалок: тёмный фон + чёткая рамка + inset-тень, чтобы
   поле читалось как отдельный контейнер, а не сливалось с фоном модалки. */
.field-well {
  background: rgba(0,0,0,.24); border-color: var(--border-strong);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.28);
}
.field-well:focus {
  border-color: var(--accent);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.28), 0 0 0 3px rgba(46,125,245,.18);
}
.field-well::placeholder { color: var(--dim); }
.field-helper { font-size: 13px; color: var(--muted); }
.field-helper.err { color: var(--danger); }

/* eyebrow above section */
.eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em;
  color: #C9C9DC; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; display: block; width: 24px; height: 1px; background: var(--accent);
}

/* ASSUMPTION sticky note */
.asm {
  display: flex; gap: 8px; align-items: flex-start;
  border-left: 2px solid var(--warning);
  padding: 8px 12px; background: rgba(245,166,35,.06);
  border-radius: 0 8px 8px 0;
  font-size: 12.5px; line-height: 1.5; color: var(--ink);
}
.asm-tag {
  font-weight: 700; letter-spacing: 0.08em; font-size: 10.5px;
  color: var(--warning); flex-shrink: 0; padding-top: 1px;
}

/* divider */
.hr-soft { height: 1px; background: var(--border); border: 0; margin: 16px 0; }

/* generic muted body */
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.danger-text { color: var(--danger); }

/* monospace */
.mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
.slot-meta-grid .mono {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Плитки выбора приложения (Happ / Incy) на карточке подключения: логотип в
   белом бейдже + название + подпись-действие + стрелка. Равный вес; у Happ
   лёгкий accent-тинт как у one-tap-варианта. Hover — подъём + свечение рамки. */
.conn-actions { display: flex; gap: 10px; margin-top: 16px; }
.conn-tile {
  flex: 1 1 0; min-width: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  font: inherit; color: var(--ink); text-align: left; cursor: pointer;
  transition: transform .15s, border-color .2s, background .2s, box-shadow .2s;
}
.conn-tile:hover {
  transform: translateY(-2px); border-color: var(--border-strong);
  background: rgba(255,255,255,.05); box-shadow: 0 14px 30px -18px rgba(0,0,0,.7);
}
.conn-tile:disabled { opacity: .6; cursor: wait; transform: none; box-shadow: none; }
.conn-tile-badge {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center; background: #fff;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.5);
}
.conn-tile-badge img { width: 22px; height: 22px; border-radius: 6px; display: block; }
.conn-tile-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.conn-tile-title { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.conn-tile-sub { font-size: 11.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.conn-tile-arrow { flex-shrink: 0; color: var(--dim); display: flex; transition: transform .2s, color .2s; }
.conn-tile:hover .conn-tile-arrow { color: var(--accent-soft); transform: translateX(2px); }

/* Узкий экран — плитки в столбик на всю ширину (Happ над Incy). */
@media (max-width: 620px) {
  .conn-actions { flex-direction: column; align-items: stretch; }
  .conn-tile { flex: 1 1 auto; width: 100%; }
}

/* Тарифы докупки подключений (модалка «Хотите ещё?») */
.slot-buy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.slot-buy-tile { transition: transform .15s, border-color .2s, background .2s, box-shadow .2s; }
.slot-buy-tile:hover:not(:disabled) {
  transform: translateY(-2px); border-color: var(--border-strong);
  box-shadow: 0 14px 30px -18px rgba(0,0,0,.7);
}
@media (max-width: 480px) { .slot-buy-grid { grid-template-columns: 1fr; } }

/* Мелкий инлайн-спиннер (loading в один элемент, без текста-статуса) */
@keyframes lkSpin { to { transform: rotate(360deg); } }
.lk-spin {
  display: inline-block; width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.18); border-top-color: var(--accent);
  animation: lkSpin .8s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .lk-spin { animation: none; } }

/* ── Тарифные карточки (Nitro-style, наш синий) ─────────────────────── */
.plan-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
/* Hover-lift на всех живых карточках (не только в select-режиме чекаута):
   на экране покупки карточка не кликабельна, но hover-отклик ожидаем. */
.plan-card:not([data-disabled="true"]):hover { transform: translateY(-4px); }
/* Белая CTA с живым синим свечением — только у основного тарифа */
.plan-cta-white {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 18px; border: none; border-radius: 12px;
  background: #fff; color: #0D111A; font: inherit; font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: -0.01em;
  animation: ctaGlow 3s ease-in-out infinite;
  transition: transform .15s ease;
}
.plan-cta-white:hover { transform: translateY(-1px); }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 6px 24px -6px rgba(46,168,255,.55), 0 0 0 1px rgba(255,255,255,.08); }
  50%      { box-shadow: 0 6px 34px -4px rgba(46,125,245,.85), 0 0 18px rgba(125,203,255,.35); }
}
@media (prefers-reduced-motion: reduce) {
  .plan-cta-white { animation: none; }
  .plan-card:hover { transform: none; }
}

/* prevent body scroll inside artboards */
.screen {
  width: 100%; height: 100%; background: var(--bg); color: var(--ink);
  display: flex; overflow: hidden; position: relative;
}
/* Ambient accent-glow за контентом ЛК (та же атмосфера, что на лендинге) */
.screen::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(760px 520px at 78% -8%, rgba(46,168,255,.10), transparent 60%),
    radial-gradient(620px 460px at 10% 6%, rgba(46,125,245,.06), transparent 62%);
}
.screen > * { position: relative; z-index: 1; }

/* Mobile-only helpers (default state = desktop) */
.lk-burger { display: none !important; }
.lk-drawer-backdrop { display: none; }

/* ── Mobile responsive (P1-3) ──────────────────────────────────────── */
@media (max-width: 768px) {
  .lk-burger { display: grid !important; }
  /* Мобильный топбар ЛК = бренд, как на лендинге (единый UX) */
  .lk-topbar-title { display: none !important; }
  .lk-topbar-logo { display: flex !important; }
  /* Крестик закрытия в мобильном drawer (паритет с лендингом) */
  .lk-drawer-close { display: grid !important; }
  /* Тач-таргеты ≥44px (Apple HIG): покрывает .btn, .btn-sm, .btn-lg и сегменты */
  .btn { min-height: 44px; }
  /* Сворачивание сайдбара бессмысленно в мобильном drawer (он и так overlay) */
  .lk-sidebar-toggle { display: none !important; }
  .lk-drawer-backdrop {
    display: block; position: absolute; inset: 0; z-index: 25;
    background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
  }
  /* Убрать псевдоэлемент-фон если div уже есть */
  .screen[data-drawer-open="true"]::after { content: none; }
  /* Sidebar превращается в overlay-drawer */
  .screen [data-role="sidebar"] {
    position: absolute; z-index: 30; top: 0; bottom: 0; left: 0;
    transform: translateX(-100%);
    transition: transform .22s ease-out;
    box-shadow: 0 0 40px -10px rgba(0,0,0,.6);
  }
  .screen[data-drawer-open="true"] [data-role="sidebar"] { transform: translateX(0); }
  .screen[data-drawer-open="true"]::after {
    content: ""; position: absolute; inset: 0; z-index: 20;
    background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
  }
  /* Правила ниже адресуют только ту разметку, которая есть в кабинете сегодня.
     Отсюда убраны десять селекторов, не находивших ни одного узла ни на одном
     экране кабинета: .lk-email, .lk-drawer-user, .slot-actions .btn, .lk-dialog,
     .ps-grid, [data-layout="dashboard-two-col"], [data-role="hero-title"],
     [data-grid="plans"], [data-stack-on-mobile], .slot-meta-grid. Разметку
     переписали на lux-* и инлайновые стили, а мобильные правки к старым именам
     остались висеть и выглядели как работающая адаптация: читаешь файл и
     думаешь, что модалки, тарифы и настройки на телефоне уже настроены.

     Про .ps-grid: класс жив на ЛЕНДИНГЕ, но лендинг этот файл не подключает —
     у него свой landing/theme.css. В кабинете его нет, и правило здесь было
     мёртвым. Ширину модалок задаёт инлайн min(560px, 100vw - 32px) в
     components.jsx. */
  /* Контент: уменьшить отступы */
  .screen [data-role="content"] { padding: 20px 16px 36px !important; }
  /* Сетка карточек: всегда в одну колонку */
  .screen [data-grid="cards"] {
    grid-template-columns: 1fr !important;
  }
  /* TopBar: уменьшить заголовок и hide лишнее */
  .screen [data-role="topbar"] { padding: 8px 14px !important; }
  .auth-screen {
    padding: 0 !important;
    min-height: 100dvh !important;
  }
  .auth-screen .auth-shell-inner {
    padding: 28px 18px 32px !important;
  }
  .auth-screen .auth-card {
    padding: 24px !important;
    border-radius: 18px !important;
    max-width: 100% !important;
  }
}

/* ══ LUX: моушен, свет, глубина ══════════════════════════════════════
   Премиальный слой: каскадные входы, аврора-фон, стекло, живые рамки.
   Всё уважает prefers-reduced-motion (гард в конце блока). */

/* Вход контента: каскад детей с лёгким подъёмом */
@keyframes luxIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.lux-stagger > * { animation: luxIn .55s cubic-bezier(.22,1,.36,1) both; }
.lux-stagger > *:nth-child(1) { animation-delay: .02s; }
.lux-stagger > *:nth-child(2) { animation-delay: .08s; }
.lux-stagger > *:nth-child(3) { animation-delay: .14s; }
.lux-stagger > *:nth-child(4) { animation-delay: .20s; }
.lux-stagger > *:nth-child(5) { animation-delay: .26s; }
.lux-stagger > *:nth-child(6) { animation-delay: .32s; }
.lux-stagger > *:nth-child(7) { animation-delay: .38s; }
.lux-stagger > *:nth-child(n+8) { animation-delay: .44s; }

/* Модалки: скейл-вход + плавный backdrop */
@keyframes luxDialogIn { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes luxFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lux-backdrop { animation: luxFadeIn .22s ease both; }
.lux-dialog { animation: luxDialogIn .32s cubic-bezier(.22,1,.36,1) both; }

/* Кнопки: тактильный press + shine-перелив у primary */
.btn:active:not(:disabled) { transform: scale(.97); }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .6s ease;
}
.btn-primary:hover::after { transform: translateX(130%); }

/* Аврора: дрейфующие свечения за контентом (первый ребёнок .screen, z-index 0).
   ::after — плёнка шума, чтобы тёмный фон не выглядел «пластиковым». */
.lux-aurora { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.lux-aurora i { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
.lux-aurora i:nth-child(1) { width: 560px; height: 560px; left: -10%; top: -18%; background: radial-gradient(circle, rgba(46,125,245,.20), transparent 65%); animation: luxDrift1 26s ease-in-out infinite alternate; }
.lux-aurora i:nth-child(2) { width: 500px; height: 500px; right: -12%; top: 26%; background: radial-gradient(circle, rgba(46,168,255,.13), transparent 65%); animation: luxDrift2 32s ease-in-out infinite alternate; }
.lux-aurora i:nth-child(3) { width: 440px; height: 440px; left: 32%; bottom: -24%; background: radial-gradient(circle, rgba(107,200,255,.10), transparent 65%); animation: luxDrift3 38s ease-in-out infinite alternate; }
.lux-aurora::after {
  content: ""; position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes luxDrift1 { to { transform: translate(70px, 44px) scale(1.08); } }
@keyframes luxDrift2 { to { transform: translate(-56px, -34px) scale(1.05); } }
@keyframes luxDrift3 { to { transform: translate(46px, -54px); } }

/* Стекло: карточки чуть просвечивают аврору */
.ps { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* Живая градиент-рамка (conic, вращается). border-radius наследуется. */
@property --lux-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.lux-border { position: relative; }
.lux-border::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--lux-angle),
    rgba(46,168,255,0) 0%, rgba(46,168,255,.5) 16%, rgba(125,203,255,.95) 27%, rgba(46,168,255,0) 44%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: luxSpin 5.5s linear infinite; pointer-events: none;
}
@keyframes luxSpin { to { --lux-angle: 360deg; } }

/* 3D-tilt за курсором (JS ставит transform, тут только сглаживание) */
.lux-tilt { transition: transform .18s ease-out; will-change: transform; transform-style: preserve-3d; }

/* Skeleton shimmer */
.lux-skel { position: relative; overflow: hidden; background: rgba(255,255,255,.05); border-radius: 8px; }
.lux-skel::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  animation: luxShimmer 1.4s infinite;
}
@keyframes luxShimmer { to { transform: translateX(100%); } }

/* Тост: вход + полоска-таймер (2.4s = таймаут в state.js) */
@keyframes luxToastIn { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes luxToastBar { from { width: 100%; } to { width: 0; } }

/* Command palette */
.lux-pal-item { display: flex; align-items: center; gap: 12px; width: 100%; padding: 10px 12px; border-radius: 10px; background: transparent; border: none; cursor: pointer; text-align: left; color: var(--ink); font: inherit; font-size: 14px; }
.lux-pal-item[data-active="true"] { background: rgba(46,168,255,.12); }

/* Reduced motion: гасим весь люкс-моушен */
@media (prefers-reduced-motion: reduce) {
  .lux-stagger > *, .lux-dialog, .lux-backdrop, .lux-aurora i,
  .lux-border::before, .lux-skel::after { animation: none !important; }
  .lux-tilt { transition: none; }
  .btn-primary::after { display: none; }
  .btn:active:not(:disabled) { transform: none; }
}
