@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5c.ttf") format("truetype");
}

@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5c.ttf") format("truetype");
}

:root {
  --font-main: "Golos Text", "SF Pro Text", "Helvetica Neue", sans-serif;
  --ink: #1f1f1f;
  --ink-muted: #7a7a7a;
  --border: rgba(140, 175, 220, 0.35);
  --card-border: rgba(210, 220, 235, 0.9);
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.06);
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --glass-bg: rgba(255, 255, 255, 0.46);
  --glass-bg-strong: rgba(255, 255, 255, 0.58);
  --glass-border: rgba(200, 216, 240, 0.45);
  --glass-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
  --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  --app-height: 100dvh;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background:
    radial-gradient(520px 520px at 18% 88%, rgba(203, 226, 255, 0.35), transparent 60%),
    radial-gradient(520px 520px at 85% 14%, rgba(255, 224, 198, 0.3), transparent 60%),
    linear-gradient(180deg, #f7f7f7 0%, #f4f3f1 55%, #efefed 100%);
  min-height: 100vh;
  height: 100%;
  overflow: hidden;
}

.app {
  max-width: 430px;
  margin: 0 auto;
  padding: 16px 18px 32px;
  min-height: var(--app-height);
  height: var(--app-height);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.app__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 18px;
  height: 84px;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: visible;
}

.app__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  height: 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft), var(--glass-inset);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: #404654;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.theme-toggle:active {
  transform: translateY(1px);
}

.theme-toggle__track {
  position: relative;
  width: 56px;
  height: 24px;
  border-radius: 999px;
  background: #e1e3e8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 2px 6px rgba(12, 15, 24, 0.14);
}

.theme-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #dde3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(12, 15, 24, 0.2), inset 0 1px 0 #ffffff;
  transition: transform 0.22s ease, background 0.22s ease;
}

.theme-toggle__icon {
  font-size: 16px;
  line-height: 1;
}

.theme-toggle.is-dark {
  background: #141820;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f3f4f8;
}

.theme-toggle.is-dark .theme-toggle__track {
  background: #2b313d;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 8px rgba(6, 8, 14, 0.6);
}

.theme-toggle.is-dark .theme-toggle__thumb {
  transform: translateX(32px);
  background: radial-gradient(circle at 30% 30%, #1b1f28, #0d1117);
  box-shadow: 0 8px 16px rgba(3, 4, 8, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.theme-toggle.is-dark .theme-toggle__icon {
  filter: drop-shadow(0 0 6px rgba(120, 140, 255, 0.5));
}

.app__logo {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #171a1f, #0b0d10);
  overflow: hidden;
}

.app__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app__title {
  font-size: 24px;
  font-weight: 500;
}

.app__title-img {
  height: 28px;
  width: auto;
  display: block;
}

.app__title-img--big {
  height: 140px;
}

.dark {
  background: #050505;
  color: #f5f7fb;
}

.dark .app__header {
  background: linear-gradient(135deg, #0a0a0a, #121212);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark .app__logo {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .app__title,
.dark h1,
.dark h2 {
  color: #f5f7fb;
}

.dark .app__title-img,
.dark .app__title-img--big {
  filter: invert(1) brightness(1.2);
}

.dark .profile,
.dark .editor,
.dark .tile,
.dark .card,
.dark .back,
.dark .list__item,
.dark .chat__messages,
.dark .modal__panel {
  background: #0f1115;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
}

.dark .tile__icon,
.dark .back__icon,
.dark .chat__icon-btn {
  background: #141820;
  border-color: rgba(255, 255, 255, 0.08);
}

.dark .muted {
  color: rgba(245, 247, 251, 0.6);
}

.dark .chat__bubble {
  background: #141820;
}

.dark .chat__bubble--self {
  background: #0f223f;
}

.dark .notify-shell {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark .notify-bell {
  background: #0f1115;
  border-color: rgba(255, 255, 255, 0.08);
}

.dark .notify-card__btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e9efff;
}

.app__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft), var(--glass-inset);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.app__content {
  padding-top: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.app__content::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
  height: 100%;
  overflow-y: auto;
}

#view-home.is-active {
  position: relative;
  padding-top: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}

#view-home .home-bottom {
  margin-top: auto;
  padding-bottom: 8px;
}

.notify-wrap {
  flex: 1 1 0;
  max-height: none;
  display: flex;
  flex-direction: column;
}

.notify-stack {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px;
}

h1,
h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.view__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 18px;
}

.view__top .back {
  margin: 0;
}

.grid {
  display: grid;
  gap: 14px;
}

.actions {
  display: grid;
  gap: 14px;
  margin: 16px 0;
}

.card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--shadow-soft), var(--glass-inset);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
}

.card.card--ghost {
  background: #eef2ff;
  border-color: rgba(37, 99, 235, 0.3);
}

.card.danger {
  border-color: rgba(255, 59, 48, 0.4);
  color: #ff3b30;
}

.link {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #2563eb;
  font-weight: 600;
  cursor: pointer;
}

.tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  appearance: none;
  width: 100%;
}

.tile__icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(214, 226, 242, 0.5);
  box-shadow: var(--glass-inset);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
}

.tile__icon svg {
  width: 24px;
  height: 24px;
  stroke: #6c6c6c;
}

.tile__label {
  font-size: 16px;
  font-weight: 600;
}

.tile__action {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(214, 226, 242, 0.5);
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  color: #777;
  box-shadow: var(--glass-inset);
}

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

.list__item {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  appearance: none;
  width: 100%;
}

.list__item--nav {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}

.list__item--category {
  padding: 10px 14px;
  gap: 10px;
}

.list__logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(214, 226, 242, 0.5);
  object-fit: contain;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #7a7a7a;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.list__logo--placeholder {
  background: #f4f6fb;
}

.list__count {
  margin-left: auto;
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(214, 226, 242, 0.5);
  color: #6b7380;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.list__item--center .list__body {
  text-align: center;
  width: 100%;
}

.list__section {
  margin: 14px 0 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f7782;
  font-weight: 600;
}

.list__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.list__body {
  flex: 1;
}

.list__title {
  font-size: 16px;
  font-weight: 600;
}

.list__subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-muted);
}

.list__action {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e2e6ee;
  background: #f7f7f7;
  display: grid;
  place-items: center;
  color: #777;
}

.status-pill {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(30, 170, 110, 0.2);
  background: rgba(30, 170, 110, 0.12);
  font-size: 11px;
  font-weight: 600;
  color: #2c7a5a;
}

.status-pill--closed {
  border-color: rgba(120, 120, 120, 0.2);
  background: rgba(120, 120, 120, 0.12);
  color: #6b6b6b;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--shadow-soft), var(--glass-inset);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 600;
  margin: 16px 0 18px;
  cursor: pointer;
  appearance: none;
}

.back.back--accent {
  border-color: rgba(37, 99, 235, 0.3);
  background: #eef4ff;
  color: #1d5fd0;
}

.back__icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.editor__panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed #d7ddea;
  background: #f7f8fb;
}

.chat {
  display: grid;
  gap: 12px;
}

.chat__messages {
  display: grid;
  gap: 10px;
  max-height: 380px;
  overflow: auto;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.chat__bubble {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f3f6fb;
  font-size: 13px;
  line-height: 1.35;
}

.chat__bubble--self {
  margin-left: auto;
  background: #e6f0ff;
}

.chat__meta {
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.chat__input-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat__input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #e2e6ee;
  background: #fff;
  font-size: 13px;
  font-family: var(--font-main);
}

.chat__icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.chat__icon-btn.is-recording {
  background: #ffe9ea;
  border-color: rgba(255, 59, 48, 0.4);
  color: #ff3b30;
}

.chat__media {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.chat__file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  padding: 8px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 12px;
  color: var(--ink);
  box-shadow: var(--glass-inset);
}

.chat__file-icon {
  font-size: 14px;
}

.chat__file-name {
  font-weight: 500;
}

.chat__voice audio {
  width: 100%;
}

.chat__caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-muted);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 50;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 30, 0.4);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 380px);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 12px;
}

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

.modal__header h3 {
  margin: 0;
  font-size: 16px;
}

.modal__close {
  border: none;
  background: #f3f6fb;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
}

.modal__body {
  display: grid;
  gap: 12px;
}

.profile {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.profile__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f2f7;
  font-size: 13px;
}

.profile__row:last-child {
  border-bottom: none;
}

.editor,
.request {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  gap: 12px;
}

.editor label {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 600;
}

.editor input,
.editor select,
.editor textarea,
.request input {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(214, 226, 242, 0.6);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: var(--font-main);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.request button,
.editor button {
  padding: 12px 14px;
  border-radius: 16px;
  border: none;
  background: #2a2a2a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.notify-stack {
  position: static;
  margin: 8px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding-right: 4px;
}

.notify-wrap {
  border-radius: 28px;
  border: 1px solid rgba(214, 226, 242, 0.7);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px;
  margin: 4px 0 16px;
  flex: 1 1 0;
  min-height: 0;
}

.dark .notify-wrap {
  background: rgba(15, 18, 24, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}

.notify-stack::after {
  content: "";
  height: 4px;
}

.notify-item {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-height: 70px;
}

.notify-item.is-animate {
  animation: notifyIn 0.25s ease;
}

.notify-bell {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin-right: -18px;
}

.notify-bell__icon {
  font-size: 22px;
}

.notify-bell__dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff3b30;
  border: 2px solid #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.notify-item.is-seen .notify-bell__dot {
  opacity: 0;
  transform: scale(0);
}

.notify-shell {
  position: absolute;
  left: 35px;
  right: 0;
  top: 0;
  height: 70px;
  border-radius: 20px 35px 35px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: none;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 0;
}

.notify-card {
  flex: 1;
  height: 70px;
  background: transparent;
  border-radius: 20px 35px 35px 20px;
  padding: 0 16px 0 44px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin-left: 0;
  position: relative;
  z-index: 1;
}

.notify-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.notify-card__title {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notify-card__subtitle {
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notify-item .notify-bell {
  margin-left: 6px;
}

.notify-item.is-collapsed .notify-shell {
  opacity: 0;
  transform: translateX(-16px) scaleX(0.9);
  pointer-events: none;
}

.notify-item.is-collapsed .notify-card {
  opacity: 0;
  transform: translateX(-16px) scaleX(0.9);
  pointer-events: none;
  max-width: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.notify-item:not(.is-collapsed) .notify-bell {
  transform: translateX(0);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12), var(--glass-inset);
}

.notify-item:not(.is-collapsed) .notify-card {
  transform: translateX(0);
}

.notify-card__title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notify-card__subtitle {
  font-size: 10px;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notify-card__actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.notify-card__btn {
  border: 1px solid rgba(214, 226, 242, 0.5);
  background: rgba(255, 255, 255, 0.6);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: #2f6bff;
  display: grid;
  place-items: center;
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease;
}

.notify-card__btn:active {
  transform: scale(0.96);
}

.notify-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border-radius: 24px;
  border: 1px dashed var(--glass-border);
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink-muted);
  font-size: 13px;
}

.notify-empty.is-animate {
  animation: notifyIn 0.25s ease;
}

.tile,
.card,
.list__item,
.back,
.app__badge {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tile:active,
.card:active,
.list__item:active,
.back:active {
  transform: scale(0.99);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes notifyIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notify-card__btn--open {
  width: auto;
  height: 36px;
  padding: 0 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #2f6bff;
}

.notify-card__btn--accept {
  background: #34c759;
  border-color: #34c759;
  color: #fff;
}

.notify-card__btn--decline {
  background: #ff3b30;
  border-color: #ff3b30;
  color: #fff;
}

.notify-item.is-collapsed .notify-bell {
  border-radius: 32px;
}

.notify-item:not(.is-collapsed) .notify-card {
  opacity: 0.75;
}

.notify-item:not(.is-collapsed) .notify-card:hover {
  opacity: 0.9;
}

.muted {
  color: var(--ink-muted);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 430px) {
  .app {
    padding: 14px 14px 28px;
  }

  .app__logo,
  .app__badge {
    font-size: 12px;
  }
}
