.card-kicker {
  margin: 0;
  color: rgba(222, 227, 234, 0.76);
  font-size: 0.66rem;
  font-weight: 640;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--ink-1);
  font-size: 0.84rem;
  line-height: 1.42;
  text-wrap: pretty;
}

.nova-chip__flag {
  margin-right: 0.34rem;
}

.nova-chip {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink-1);
  padding: 0.56rem 0.82rem;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 620;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease);
  white-space: nowrap;
}

.nova-chip:hover,
.nova-chip:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.065);
  color: var(--ink-0);
  outline: none;
}

.nova-chip.is-active {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink-0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.nova-filter-dropdown,
.vendor-panel-modal__dropdown {
  position: relative;
  min-width: 0;
}

.nova-filter-dropdown[open],
.vendor-panel-modal__dropdown[open] {
  z-index: 9;
}

.nova-filter-dropdown__summary,
.vendor-panel-modal__dropdown-summary {
  list-style: none;
  cursor: pointer;
}

.nova-filter-dropdown__summary::-webkit-details-marker,
.vendor-panel-modal__dropdown-summary::-webkit-details-marker {
  display: none;
}

.nova-filter-dropdown__trigger,
.vendor-panel-modal__dropdown-trigger {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(20, 23, 31, 0.96), rgba(11, 13, 18, 0.98)),
    rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  color: var(--ink-0);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nova-filter-dropdown__summary:hover .nova-filter-dropdown__trigger,
.nova-filter-dropdown__summary:focus-visible .nova-filter-dropdown__trigger,
.vendor-panel-modal__dropdown-summary:hover .vendor-panel-modal__dropdown-trigger,
.vendor-panel-modal__dropdown-summary:focus-visible .vendor-panel-modal__dropdown-trigger {
  border-color: rgba(180, 208, 255, 0.22);
  outline: none;
}

.nova-filter-dropdown__label,
.vendor-panel-modal__dropdown-label {
  color: rgba(216, 219, 224, 0.62);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nova-filter-dropdown__value,
.vendor-panel-modal__dropdown-value {
  min-width: 0;
  color: var(--ink-0);
  font-size: 0.78rem;
  font-weight: 620;
  line-height: 1.25;
  text-align: left;
  text-wrap: pretty;
  flex: 1 1 auto;
}

.nova-filter-dropdown__chevron,
.vendor-panel-modal__dropdown-chevron {
  flex: 0 0 auto;
  color: rgba(216, 219, 224, 0.74);
  font-size: 0.8rem;
  line-height: 1;
  transition: transform var(--ease);
}

.nova-filter-dropdown[open] .nova-filter-dropdown__chevron,
.vendor-panel-modal__dropdown[open] .vendor-panel-modal__dropdown-chevron {
  transform: rotate(180deg);
}

.nova-filter-dropdown__panel,
.vendor-panel-modal__dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: min(100%, 250px);
  width: max-content;
  max-width: min(88vw, 340px);
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(188, 198, 219, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(16, 20, 28, 0.99), rgba(10, 12, 18, 0.99)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 32px rgba(0, 0, 0, 0.28);
  z-index: 24;
}

.vendor-panel-modal__dropdown {
  width: 100%;
}

.vendor-panel-modal__dropdown-trigger {
  border-color: rgba(189, 198, 216, 0.09);
  background:
    linear-gradient(180deg, rgba(16, 19, 27, 0.94), rgba(10, 12, 17, 0.95)),
    rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.vendor-panel-modal__dropdown-panel {
  width: 100%;
  min-width: 100%;
  max-width: none;
}

.nova-filter-dropdown__actions,
.vendor-panel-modal__dropdown-actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.nova-filter-dropdown__action,
.vendor-panel-modal__dropdown-action {
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 243, 247, 0.84);
  padding: 0 10px;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}

.nova-filter-dropdown__action:hover,
.nova-filter-dropdown__action:focus-visible,
.vendor-panel-modal__dropdown-action:hover,
.vendor-panel-modal__dropdown-action:focus-visible {
  border-color: rgba(180, 208, 255, 0.2);
  background: rgba(180, 208, 255, 0.08);
  outline: none;
}

.nova-filter-dropdown__list {
  display: grid;
  gap: 8px;
  max-height: 300px;
  overflow: auto;
  padding-right: 2px;
}

.nova-filter-dropdown__list .vendor-panel-modal__checkgrid {
  grid-template-columns: 1fr;
}

.vendor-panel-modal__dropdown-panel .vendor-panel-modal__checkgrid {
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
}

.nova-pill,
.nova-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-0);
  font-size: 0.62rem;
  font-weight: 640;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.nova-pill {
  min-height: 24px;
  padding: 0.3rem 0.56rem;
  font-size: 0.56rem;
  letter-spacing: 0.09em;
}

.nova-pill--accent,
.nova-flag--accent {
  border-color: color-mix(in srgb, var(--nova-accent-c) 28%, rgba(255, 255, 255, 0.12));
  background: color-mix(in srgb, var(--nova-accent-c) 12%, rgba(255, 255, 255, 0.03));
}

.nova-auth-modal,
.settings-render-modal,
.vendor-panel-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}

.nova-auth-modal {
  z-index: 31;
}

.settings-render-modal {
  z-index: 36;
}

.vendor-panel-modal {
  z-index: 35;
}

.nova-auth-modal.is-visible,
.settings-render-modal.is-visible,
.vendor-panel-modal.is-visible {
  pointer-events: auto;
  visibility: visible;
}

.nova-auth-modal__backdrop,
.settings-render-modal__backdrop,
.vendor-panel-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 9, 0.62);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity var(--ease);
}

.nova-auth-modal.is-visible .nova-auth-modal__backdrop,
.settings-render-modal.is-visible .settings-render-modal__backdrop,
.vendor-panel-modal.is-visible .vendor-panel-modal__backdrop {
  opacity: 1;
}

.nova-auth-modal__dialog,
.settings-render-modal__dialog {
  position: relative;
  width: min(432px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(22, 24, 30, 0.985), rgba(16, 18, 24, 0.985));
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 18px 18px 16px;
  display: grid;
  gap: 12px;
  transform: translateY(14px) scale(0.99);
  opacity: 0;
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-auth-modal.is-visible .nova-auth-modal__dialog,
.settings-render-modal.is-visible .settings-render-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nova-auth-modal__close,
.settings-render-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-0);
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}

.nova-auth-modal__close:hover,
.nova-auth-modal__close:focus-visible,
.settings-render-modal__close:hover,
.settings-render-modal__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nova-auth-modal__kicker,
.nova-auth-modal__title,
.nova-auth-modal__copy,
.settings-render-modal__title,
.settings-render-modal__copy,
.nova-auth-modal__status {
  margin: 0;
}

.nova-auth-modal__kicker,
.settings-render-modal__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-1);
}

.nova-auth-modal__title,
.settings-render-modal__title {
  padding-right: 34px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  color: var(--ink-0);
}

.nova-auth-modal__copy,
.settings-render-modal__copy {
  color: var(--ink-1);
  line-height: 1.45;
  font-size: 0.86rem;
}

.nova-auth-modal__status {
  min-height: 1.3em;
  color: rgba(246, 247, 249, 0.9);
  font-size: 0.84rem;
  line-height: 1.45;
  text-wrap: pretty;
}

.nova-auth-modal__surface,
.settings-render-modal__surface {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  padding: 13px 14px;
  display: grid;
  gap: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nova-auth-modal__surface-kicker {
  margin: 0;
  color: rgba(216, 219, 224, 0.66);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nova-auth-modal__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.nova-auth-modal__benefit {
  position: relative;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
  padding: 10px 11px 10px 33px;
  color: rgba(236, 239, 243, 0.84);
  font-size: 0.78rem;
  line-height: 1.42;
}

.nova-auth-modal__benefit::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(166, 205, 255, 0.9);
  box-shadow: 0 0 0 6px rgba(166, 205, 255, 0.12);
}

.nova-auth-modal__hint {
  margin: 0;
  color: rgba(216, 219, 224, 0.64);
  font-size: 0.76rem;
  line-height: 1.42;
  text-wrap: pretty;
}

.nova-auth-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 7px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nova-auth-modal__primary,
.nova-auth-modal__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
}

.nova-auth-modal__primary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065));
  color: var(--ink-0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 24px rgba(0, 0, 0, 0.14);
}

.nova-auth-modal__primary.is-disabled {
  opacity: 0.56;
  pointer-events: none;
  box-shadow: none;
}

.nova-auth-modal__secondary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(236, 239, 243, 0.8);
}

.nova-auth-modal__primary:hover,
.nova-auth-modal__primary:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  color: var(--ink-0);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.nova-auth-modal__secondary:hover,
.nova-auth-modal__secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-0);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.vendor-panel-modal__checkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 8px;
}

.vendor-panel-modal__checkitem {
  position: relative;
  display: block;
  cursor: pointer;
}

.vendor-panel-modal__checkbox {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.vendor-panel-modal__checkcopy {
  min-height: 42px;
  border: 1px solid rgba(189, 198, 216, 0.09);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(16, 19, 27, 0.94), rgba(10, 12, 17, 0.95)),
    rgba(255, 255, 255, 0.015);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 12px;
  color: rgba(240, 243, 247, 0.86);
  font-size: 0.78rem;
  font-weight: 620;
  line-height: 1;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease), transform var(--ease);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.vendor-panel-modal__checkflag {
  font-size: 0.94rem;
  line-height: 1;
}

.vendor-panel-modal__checkbox:checked + .vendor-panel-modal__checkcopy {
  border-color: rgba(182, 208, 245, 0.3);
  background:
    linear-gradient(180deg, rgba(76, 94, 128, 0.34), rgba(33, 41, 57, 0.54)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(182, 208, 245, 0.08);
  transform: translateY(-1px);
}

.vendor-panel-modal__checkbox:focus-visible + .vendor-panel-modal__checkcopy,
.vendor-panel-modal__checkitem:hover .vendor-panel-modal__checkcopy {
  border-color: rgba(180, 208, 255, 0.22);
  outline: none;
}

.vendor-panel-modal__checkbox:disabled + .vendor-panel-modal__checkcopy {
  opacity: 0.72;
  cursor: wait;
}

.vendor-panel-modal__action {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(196, 205, 224, 0.14);
  padding: 0 14px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.vendor-panel-modal__action:hover,
.vendor-panel-modal__action:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.vendor-panel-modal__action:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.vendor-panel-modal__action.is-disabled {
  opacity: 0.72;
}

.vendor-panel-modal__action--ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 15, 0.34);
  color: rgba(235, 240, 248, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.vendor-panel-modal__action--ghost:hover,
.vendor-panel-modal__action--ghost:focus-visible {
  border-color: rgba(212, 221, 240, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(12, 15, 21, 0.42);
}

.vendor-panel-modal__action--primary {
  border-color: rgba(228, 192, 121, 0.24);
  background:
    linear-gradient(180deg, rgba(228, 192, 121, 0.18), rgba(228, 192, 121, 0.08)),
    rgba(34, 24, 10, 0.52);
  color: rgba(247, 230, 191, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 18px rgba(0, 0, 0, 0.14);
}

.vendor-panel-modal__action--primary.is-saving {
  border-color: rgba(232, 190, 118, 0.34);
  background:
    linear-gradient(180deg, rgba(232, 190, 118, 0.24), rgba(232, 190, 118, 0.12)),
    rgba(48, 33, 12, 0.68);
  color: rgba(255, 238, 203, 0.98);
  opacity: 1;
}

.vendor-panel-modal__action--primary.is-saved {
  border-color: rgba(116, 199, 148, 0.34);
  background:
    linear-gradient(180deg, rgba(116, 199, 148, 0.24), rgba(116, 199, 148, 0.1)),
    rgba(12, 42, 25, 0.68);
  color: rgba(218, 250, 229, 0.98);
  opacity: 1;
}

.vendor-panel-modal__action--primary.is-saving:disabled,
.vendor-panel-modal__action--primary.is-saved:disabled {
  opacity: 1;
}

.vendor-panel-modal__action--primary:hover,
.vendor-panel-modal__action--primary:focus-visible {
  border-color: rgba(236, 204, 143, 0.32);
  background:
    linear-gradient(180deg, rgba(236, 204, 143, 0.22), rgba(236, 204, 143, 0.1)),
    rgba(42, 29, 12, 0.58);
}

.bottom-menu__rail {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 488px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}

.tab-highlight {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  transform: translateX(0);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 10px 22px rgba(8, 10, 16, 0.22),
    0 0 24px rgba(186, 215, 255, 0.08);
  opacity: 0;
  transition:
    transform 320ms cubic-bezier(0.2, 0.9, 0.25, 1),
    width 320ms cubic-bezier(0.2, 0.9, 0.25, 1),
    opacity 140ms ease;
  pointer-events: none;
  z-index: 0;
}

.bottom-menu:not(.is-ready) .tab-highlight {
  transition: none;
  opacity: 0;
}

.bottom-menu.is-ready .tab-highlight {
  opacity: 1;
  animation: tab-highlight-breathe 3.4s ease-in-out infinite;
}

.tab-btn {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  min-height: 64px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 12px;
  cursor: pointer;
  transition: color var(--ease), transform var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.tab-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  transition: transform var(--ease);
}

.tab-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
  transition: transform var(--ease), opacity var(--ease), stroke-width var(--ease);
}

.tab-label {
  display: block;
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.86;
}

.tab-btn:hover {
  color: var(--ink-1);
}

.tab-btn.is-active {
  color: var(--ink-0);
}

.tab-btn.is-active .tab-icon {
  transform: scale(1.08);
  animation: tab-icon-breathe 3.1s ease-in-out infinite;
}

.tab-btn.is-active .tab-icon svg {
  stroke-width: 2.05;
  opacity: 1;
}

.bottom-menu:not(.is-ready) .tab-btn.is-active {
  color: var(--ink-2);
}

@keyframes tab-highlight-breathe {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 0 1px rgba(255, 255, 255, 0.02),
      0 10px 22px rgba(8, 10, 16, 0.22),
      0 0 24px rgba(186, 215, 255, 0.08);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 12px 24px rgba(8, 10, 16, 0.24),
      0 0 32px rgba(186, 215, 255, 0.12);
  }
}

@keyframes tab-icon-breathe {
  0%, 100% { transform: scale(1.08); }
  50% { transform: scale(1.125); }
}

/* Step 4: visual denoising */
.nova-auth-modal__backdrop,
.settings-render-modal__backdrop,
.vendor-panel-modal__backdrop {
  background: rgba(5, 7, 10, 0.56);
  backdrop-filter: blur(12px);
}

.nova-auth-modal__dialog,
.settings-render-modal__dialog {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(21, 23, 29, 0.985), rgba(16, 18, 24, 0.985));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  gap: 10px;
}

.nova-auth-modal__close,
.settings-render-modal__close {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.nova-auth-modal__surface,
.settings-render-modal__surface,
.nova-auth-modal__actions {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.nova-auth-modal__benefit {
  border-color: rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.nova-auth-modal__benefit::before {
  box-shadow: 0 0 0 4px rgba(166, 205, 255, 0.1);
}

.nova-auth-modal__primary {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.nova-auth-modal__secondary {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.nova-auth-modal__primary:hover,
.nova-auth-modal__primary:focus-visible,
.nova-auth-modal__secondary:hover,
.nova-auth-modal__secondary:focus-visible {
  box-shadow: none;
}

.tab-highlight {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 8px 18px rgba(8, 10, 16, 0.18);
}

.bottom-menu.is-ready .tab-highlight {
  animation: none;
}

.tab-btn.is-active .tab-icon {
  transform: scale(1.04);
  animation: none;
}

.tab-btn.is-active .tab-icon svg {
  stroke-width: 1.95;
}

/* Step 4.1: hard minimal cleanup */
.bottom-menu,
.workspace-dock [data-vendor-panel-workspace-bar],
.workspace-dock [data-catalog-panel-workspace-bar],
.bottom-menu.is-workspace-dock [data-vendor-panel-workspace-bar],
.bottom-menu.is-workspace-dock [data-menu-panel-workspace-bar] {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(14, 15, 18, 0.9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bottom-menu::before {
  display: none;
}

.tab-highlight {
  opacity: 0 !important;
  animation: none !important;
}

.tab-btn {
  transition: color var(--ease), transform var(--ease), background var(--ease);
}

.tab-btn.is-active {
  background: rgba(255, 255, 255, 0.05);
}

.nova-auth-modal__dialog,
.settings-render-modal__dialog {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(20, 22, 28, 0.985);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.nova-auth-modal__surface,
.settings-render-modal__surface {
  background: transparent;
}

.nova-auth-modal__actions {
  padding: 0;
  border: 0;
  background: transparent;
}

.nova-auth-modal__primary,
.nova-auth-modal__secondary {
  min-height: 44px;
  border-radius: 14px;
}
