:root {
  color-scheme: light;
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --surface-soft: #eef0f4;
  --text: #17191f;
  --text-secondary: #646975;
  --text-tertiary: #8a909c;
  --border: #e1e4e9;
  --border-strong: #cfd3db;
  --accent: #7057e8;
  --accent-strong: #5d43d3;
  --accent-soft: #eeeaff;
  --success: #16785a;
  --success-soft: #e5f6ef;
  --warning: #9c6200;
  --warning-soft: #fff2d6;
  --danger: #b43e4d;
  --danger-soft: #ffeaed;
  --info: #2766a8;
  --info-soft: #e8f2ff;
  --shadow-sm: 0 1px 2px rgb(17 24 39 / 5%), 0 6px 18px rgb(17 24 39 / 4%);
  --shadow-lg: 0 18px 48px rgb(20 22 30 / 16%);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --header-height: 104px;
  --nav-height: 70px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  margin: 0;
  font: inherit;
}

button,
select,
input[type="date"],
input[type="file"] {
  cursor: pointer;
}

button {
  color: inherit;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent-strong);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.app-shell,
.workspace {
  min-height: 100vh;
  min-height: 100dvh;
}

.workspace {
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 20px);
}

.access-screen {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  padding: calc(24px + var(--safe-top)) 20px calc(24px + var(--safe-bottom));
  background:
    radial-gradient(circle at 20% 5%, rgb(112 87 232 / 14%), transparent 30rem),
    radial-gradient(circle at 100% 100%, rgb(22 120 90 / 10%), transparent 28rem),
    var(--bg);
}

.access-card {
  width: min(100%, 420px);
  padding: 30px 24px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.brand-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 21px;
  background: linear-gradient(145deg, var(--accent), #8d70f4);
  box-shadow: 0 12px 28px rgb(112 87 232 / 28%);
  color: #fff;
}

.brand-mark svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-card h1 {
  margin: 0;
  font-size: clamp(27px, 8vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.access-content {
  display: grid;
  justify-items: center;
  margin-top: 28px;
}

.access-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--text-secondary);
}

.access-icon.danger {
  background: var(--danger-soft);
  color: var(--danger);
}

.access-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.access-title {
  margin: 0;
  font-size: 17px;
  font-weight: 720;
}

.access-content .muted {
  max-width: 310px;
  margin-top: 7px;
}

.dev-access-form {
  display: grid;
  width: 100%;
  gap: 10px;
  margin-top: 18px;
  text-align: left;
}

.spinner {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 3px solid var(--accent-soft);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.app-header {
  position: sticky;
  z-index: 30;
  top: 0;
  padding-top: var(--safe-top);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.header-inner {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 5px;
}

.brand-compact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border: 3px solid var(--accent-soft);
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.icon-button,
.profile-button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: transparent;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
}

.icon-button:hover,
.profile-button:hover {
  background: var(--surface-soft);
}

.icon-button svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.counter-badge {
  position: absolute;
  top: 3px;
  right: 1px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--surface);
  border-radius: 99px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.profile-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
}

.avatar {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-name {
  display: none;
  max-width: 160px;
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.role-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 3px 16px 9px;
  scrollbar-width: none;
}

.role-tabs::-webkit-scrollbar {
  display: none;
}

.role-tab {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 99px;
  background: var(--surface-soft);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
}

.role-tab[aria-selected="true"] {
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.main-content {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 20px 16px 28px;
}

.screen {
  animation: screen-in 180ms ease-out;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.screen-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.screen-title-wrap {
  min-width: 0;
}

.screen-title,
.section-title {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.025em;
}

.screen-title {
  font-size: clamp(25px, 7vw, 34px);
  line-height: 1.12;
}

.screen-subtitle {
  margin: 5px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.section-title {
  font-size: 18px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 25px 0 12px;
}

.section-head:first-child {
  margin-top: 0;
}

.muted {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.subtle {
  color: var(--text-tertiary);
  font-size: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 120ms ease, background-color 120ms ease, opacity 120ms ease;
}

.button:hover {
  background: var(--accent-strong);
}

.button:active {
  transform: scale(0.98);
}

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

.button.secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button.secondary:hover {
  background: var(--surface-soft);
}

.button.ghost {
  background: transparent;
  color: var(--accent-strong);
}

.button.danger {
  background: var(--danger);
}

.button.small {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 12px;
  font-size: 13px;
}

.button.wide {
  width: 100%;
}

.button svg,
.fab svg,
.nav-item svg,
.inline-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.filter-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.search-wrap {
  position: relative;
}

.search-wrap svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 20px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--text-tertiary);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-input {
  width: 100%;
  min-height: 48px;
  padding: 0 42px;
  border: 1px solid var(--border);
  border-radius: 15px;
  outline: none;
  background: var(--surface);
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}

.search-input:focus {
  border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.clear-search {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 36px;
  height: 36px;
  padding: 0;
  transform: translateY(-50%);
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-tertiary);
}

.filter-scroller,
.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 1px 1px 4px;
  scrollbar-width: none;
}

.filter-scroller::-webkit-scrollbar,
.chip-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
}

.filter-chip.active {
  border-color: transparent;
  background: var(--text);
  color: var(--surface);
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.summary-strip.four-items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-pill {
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.summary-filter {
  appearance: none;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 120ms ease;
}

.summary-filter:hover {
  border-color: var(--border-strong);
}

.summary-filter:active {
  transform: scale(0.98);
}

.summary-filter.active {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border));
  background: linear-gradient(145deg, var(--accent-soft), var(--surface));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent), var(--shadow-sm);
}

.summary-filter.active strong {
  color: var(--accent-strong);
}

.summary-pill strong {
  display: block;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.summary-pill span {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-pill.awaiting {
  border-color: color-mix(in srgb, var(--accent) 24%, var(--border));
  background: linear-gradient(145deg, var(--accent-soft), var(--surface));
}

.summary-pill.awaiting.active {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border));
}

.summary-pill.overdue.active {
  border-color: color-mix(in srgb, var(--danger) 62%, var(--border));
  background: linear-gradient(145deg, var(--danger-soft), var(--surface));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 12%, transparent), var(--shadow-sm);
}

.summary-pill.overdue.active strong {
  color: var(--danger);
}

.ticket-list,
.stack-list {
  display: grid;
  gap: 10px;
}

.ticket-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-align: left;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.ticket-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 24px rgb(17 24 39 / 7%);
}

.ticket-card:active {
  transform: scale(0.992);
}

.ticket-card.is-overdue {
  border-color: color-mix(in srgb, var(--danger) 30%, var(--border));
}

.ticket-card.is-critical {
  border-color: color-mix(in srgb, var(--danger) 42%, var(--border));
  background: linear-gradient(145deg, var(--danger-soft), var(--surface) 42%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--danger) 12%, transparent);
}

.ticket-card.is-overdue::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--danger);
  content: "";
}

.ticket-topline,
.ticket-bottomline,
.entity-row,
.notification-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ticket-number {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.ticket-title {
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.ticket-address {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ticket-bottomline {
  margin-top: 14px;
  color: var(--text-tertiary);
  font-size: 12px;
}

.deadline-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-weight: 650;
}

.deadline-label.overdue {
  color: var(--danger);
}

.status-badge,
.priority-badge,
.role-badge,
.tiny-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  font-weight: 750;
  white-space: nowrap;
}

.status-badge {
  min-height: 27px;
  padding: 0 9px;
  background: var(--surface-soft);
  color: var(--text-secondary);
  font-size: 11px;
}

.status-badge.new,
.status-badge.submitted {
  background: var(--info-soft);
  color: var(--info);
}

.status-badge.in-progress,
.status-badge.assigned {
  background: var(--warning-soft);
  color: var(--warning);
}

.status-badge.awaiting-confirmation,
.status-badge.pending-confirmation,
.status-badge.resolved {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.status-badge.completed,
.status-badge.closed {
  background: var(--success-soft);
  color: var(--success);
}

.status-badge.cancelled,
.status-badge.rejected {
  background: var(--surface-soft);
  color: var(--text-secondary);
}

.status-badge.escalated,
.priority-badge.critical {
  background: var(--danger-soft);
  color: var(--danger);
}

.priority-badge {
  min-height: 25px;
  padding: 0 8px;
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.priority-badge.normal {
  background: var(--surface-soft);
  color: var(--text-secondary);
}

.priority-badge.high {
  background: var(--warning-soft);
  color: var(--warning);
}

.ticket-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.detail-hero,
.content-card,
.form-card,
.metric-card,
.chart-card,
.entity-card,
.notification-card,
.profile-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.detail-hero {
  padding: 18px;
}

.detail-hero h1 {
  margin: 12px 0 6px;
  font-size: clamp(23px, 7vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.detail-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.detail-fact {
  padding: 12px;
  border-radius: 13px;
  background: var(--surface-soft);
}

.detail-fact span {
  display: block;
  margin-bottom: 3px;
  color: var(--text-tertiary);
  font-size: 11px;
}

.detail-fact strong {
  font-size: 14px;
  line-height: 1.35;
}

.content-card,
.form-card,
.profile-card {
  padding: 17px;
}

.description-text {
  margin: 0;
  white-space: pre-wrap;
  font-size: 15px;
  line-height: 1.55;
}

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

.photo-tile,
.photo-preview {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  background: var(--surface-soft);
  aspect-ratio: 4 / 3;
}

.photo-tile img,
.photo-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-tile.loading::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 35%), transparent);
  content: "";
  animation: shimmer 1.2s infinite;
}

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

.photo-label {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 7px;
  border-radius: 8px;
  background: rgb(20 22 28 / 72%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.remove-photo {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgb(255 255 255 / 75%);
  border-radius: 50%;
  background: rgb(20 22 28 / 72%);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.photo-error {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 12px;
  color: var(--text-secondary);
  font-size: 12px;
  text-align: center;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  min-height: 58px;
  padding-bottom: 13px;
}

.timeline-item:not(:last-child)::before {
  position: absolute;
  top: 18px;
  bottom: 0;
  left: 7px;
  width: 2px;
  background: var(--border);
  content: "";
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--border);
}

.timeline-content strong,
.timeline-content span {
  display: block;
}

.timeline-content strong {
  font-size: 13px;
  line-height: 1.35;
}

.timeline-content span {
  margin-top: 3px;
  color: var(--text-tertiary);
  font-size: 11px;
}

.action-panel {
  position: sticky;
  z-index: 8;
  bottom: calc(var(--nav-height) + var(--safe-bottom) + 8px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 18px 0 4px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 14px 38px rgb(17 24 39 / 13%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.form-layout {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-row {
  display: grid;
  gap: 12px;
}

.field-label,
legend.field-label {
  color: var(--text);
  font-size: 13px;
  font-weight: 720;
}

.required-mark {
  color: var(--danger);
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  outline: none;
  background: var(--surface);
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}

.select {
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-secondary) 50%), linear-gradient(135deg, var(--text-secondary) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.textarea {
  min-height: 114px;
  resize: vertical;
  line-height: 1.45;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.field-hint,
.field-error {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
}

.field-hint {
  color: var(--text-tertiary);
}

.field-error {
  color: var(--danger);
}

.deadline-date-preview {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  border: 0;
}

.check-grid .field-label {
  grid-column: 1 / -1;
}

.check-option {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 680;
}

.check-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.multi-select {
  min-height: 116px;
  padding-right: 13px;
  background-image: none;
}

.priority-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  padding: 0;
  border: 0;
}

.priority-option {
  position: relative;
}

.priority-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.priority-option span {
  display: grid;
  min-height: 47px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 720;
}

.priority-option input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.priority-option input:focus-visible + span {
  outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 2px;
}

.photo-picker {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.photo-action {
  position: relative;
  min-width: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.photo-action-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.photo-action-content {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  transition: border-color 120ms ease, background-color 120ms ease, transform 120ms ease;
}

.photo-action-content svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.photo-action:hover .photo-action-content {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.photo-action:active .photo-action-content {
  transform: scale(0.98);
}

.photo-action-input:focus-visible + .photo-action-content {
  outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 2px;
}

.photo-action-input:disabled + .photo-action-content {
  cursor: not-allowed;
  opacity: 0.58;
}

.photo-picker-status {
  min-height: 17px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1.4;
}

.photo-picker .field-error {
  min-height: 16px;
}

.photo-preview-grid:empty {
  display: none;
}

.photo-preview-fallback {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 14px;
  overflow-wrap: anywhere;
  background: var(--surface-soft);
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.photo-preview-fallback[hidden] {
  display: none;
}

.photo-dropzone {
  position: relative;
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 18px;
  border: 1.5px dashed var(--border-strong);
  border-radius: 15px;
  background: var(--surface-soft);
  color: var(--text-secondary);
  text-align: center;
}

.photo-dropzone:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.photo-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.photo-dropzone svg {
  width: 28px;
  margin-bottom: 7px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.photo-dropzone strong,
.photo-dropzone span {
  display: block;
}

.photo-dropzone strong {
  color: var(--text);
  font-size: 14px;
}

.photo-dropzone span {
  margin-top: 3px;
  font-size: 11px;
}

.form-actions {
  display: grid;
  gap: 8px;
  margin-top: 5px;
}

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

.metric-card {
  min-width: 0;
  padding: 15px;
}

.metric-card.accent {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  background: linear-gradient(145deg, var(--accent-soft), var(--surface));
}

.metric-card.danger {
  border-color: color-mix(in srgb, var(--danger) 25%, var(--border));
  background: linear-gradient(145deg, var(--danger-soft), var(--surface));
}

.metric-card.awaiting {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  background: linear-gradient(145deg, var(--accent-soft), var(--surface));
}

.metric-card.success {
  border-color: color-mix(in srgb, var(--success) 25%, var(--border));
  background: linear-gradient(145deg, var(--success-soft), var(--surface));
}

.metric-filter {
  width: 100%;
  min-height: 104px;
  appearance: none;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 120ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.metric-filter:hover {
  border-color: var(--border-strong);
}

.metric-filter:active {
  transform: scale(0.985);
}

.metric-filter.active {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 13%, transparent), var(--shadow-sm);
}

.metric-filter.danger.active {
  border-color: color-mix(in srgb, var(--danger) 62%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 13%, transparent), var(--shadow-sm);
}

.metric-filter.success.active {
  border-color: color-mix(in srgb, var(--success) 58%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 13%, transparent), var(--shadow-sm);
}

.metrics-grid.five-items .metric-card:last-child {
  grid-column: 1 / -1;
}

.metrics-grid.seven-items .metric-card:last-child {
  grid-column: 1 / -1;
}

.metric-value {
  display: block;
  overflow: hidden;
  font-size: clamp(25px, 8vw, 37px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-overflow: ellipsis;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.3;
}

.metric-detail {
  display: block;
  margin-top: 3px;
  color: var(--text-tertiary);
  font-size: 10px;
  line-height: 1.3;
}

.dashboard-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.dashboard-grid.dashboard-trend-grid {
  grid-template-columns: minmax(0, 1fr);
}

.chart-card {
  padding: 17px;
}

.bar-chart {
  display: grid;
  gap: 13px;
  margin-top: 17px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(76px, 0.9fr) minmax(110px, 2fr) auto;
  align-items: center;
  gap: 9px;
}

.bar-label {
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar-track {
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--surface-soft);
}

.bar-fill {
  min-width: 3px;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.bar-fill.danger {
  background: var(--danger);
}

.trend-chart {
  max-height: 420px;
  overflow-y: auto;
  padding: 2px 4px 2px 2px;
  overscroll-behavior: contain;
}

.trend-chart .bar-row {
  grid-template-columns: minmax(100px, 0.9fr) minmax(100px, 2fr) auto;
}

.trend-chart .bar-fill.is-zero {
  min-width: 0;
}

.chart-caption {
  margin: 4px 0 0;
  color: var(--text-tertiary);
  font-size: 12px;
}

.focus-total {
  min-width: 40px;
  color: var(--accent-strong);
  font-size: 24px;
  text-align: right;
}

.dashboard-empty {
  padding: 22px 0 6px;
  color: var(--text-secondary);
  font-size: 13px;
}

.dashboard-empty p {
  margin: 0;
}

.dashboard-ticket-list {
  margin-bottom: 16px;
}

.dashboard-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
}

.dashboard-pagination .button {
  width: 100%;
  min-height: 44px;
  padding: 0 10px;
}

.pagination-status {
  grid-row: 1;
  grid-column: 1 / -1;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.dashboard-pagination [data-dashboard-page-action="previous"] {
  grid-row: 2;
  grid-column: 1;
}

.dashboard-pagination [data-dashboard-page-action="next"] {
  grid-row: 2;
  grid-column: 2;
}

#dashboard-focus-content[aria-busy="true"] {
  opacity: 0.58;
  pointer-events: none;
}

.bar-value {
  min-width: 28px;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.entity-card,
.notification-card {
  padding: 15px;
}

.entity-main {
  min-width: 0;
}

.entity-main h3,
.notification-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.35;
}

.entity-main p,
.notification-card p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.4;
}

.entity-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.entity-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-soft);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 800;
}

.entity-content {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 11px;
}

.role-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 7px;
}

.role-badge,
.tiny-badge {
  min-height: 23px;
  padding: 0 7px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 9px;
}

.tiny-badge.inactive {
  background: var(--surface-soft);
  color: var(--text-tertiary);
}

.notification-card {
  position: relative;
  width: 100%;
  border: 1px solid var(--border);
  color: inherit;
  text-align: left;
}

.notification-card.unread {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
  background: linear-gradient(145deg, var(--accent-soft), var(--surface) 56%);
}

.notification-card.unread::before {
  position: absolute;
  top: 17px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.notification-head {
  padding-right: 14px;
  align-items: flex-start;
}

.notification-time {
  flex: 0 0 auto;
  color: var(--text-tertiary);
  font-size: 10px;
}

.profile-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.profile-card .avatar {
  width: 66px;
  height: 66px;
  border-radius: 21px;
  font-size: 22px;
}

.profile-card h2 {
  margin: 13px 0 3px;
  font-size: 22px;
}

.profile-card p {
  margin: 0;
}

.empty-state,
.error-state,
.loading-state {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 40px 22px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-align: center;
}

.empty-inner,
.error-inner,
.loading-inner {
  display: grid;
  max-width: 330px;
  justify-items: center;
}

.state-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--text-tertiary);
}

.state-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.empty-state h2,
.error-state h2 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.empty-state p,
.error-state p {
  margin: 7px 0 16px;
  font-size: 13px;
  line-height: 1.45;
}

.skeleton-list {
  display: grid;
  width: 100%;
  gap: 10px;
}

.skeleton-card {
  height: 132px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.skeleton-card::after {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--surface-soft), transparent);
  content: "";
  animation: shimmer 1.25s infinite;
}

.inline-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px 13px;
  border-radius: 13px;
  background: var(--info-soft);
  color: var(--info);
  font-size: 12px;
  line-height: 1.45;
}

.inline-notice.warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.inline-notice.danger {
  background: var(--danger-soft);
  color: var(--danger);
}

.inline-notice svg {
  width: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.fab {
  position: fixed;
  z-index: 25;
  right: 16px;
  bottom: calc(var(--nav-height) + var(--safe-bottom) + 12px);
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border: 0;
  border-radius: 17px;
  background: var(--accent);
  box-shadow: 0 11px 26px rgb(112 87 232 / 34%);
  color: #fff;
  font-size: 14px;
  font-weight: 780;
}

.fab:active {
  transform: scale(0.97);
}

.bottom-nav {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: calc(var(--nav-height) + var(--safe-bottom));
  justify-content: space-around;
  padding: 7px 8px var(--safe-bottom);
  border-top: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

.nav-item {
  display: grid;
  min-width: 68px;
  min-height: 54px;
  flex: 1;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 3px 8px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--text-tertiary);
  font-size: 10px;
  font-weight: 720;
}

.nav-item svg {
  width: 22px;
}

.nav-item.active {
  color: var(--accent-strong);
}

.nav-item.active svg {
  stroke-width: 2.2;
}

.modal-root {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: calc(24px + var(--safe-top));
  background: rgb(12 14 20 / 46%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: fade-in 150ms ease-out;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-sheet {
  width: min(100%, 600px);
  max-height: calc(100dvh - 30px - var(--safe-top));
  overflow-y: auto;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  animation: sheet-up 190ms ease-out;
  overscroll-behavior: contain;
}

@keyframes sheet-up {
  from { transform: translateY(24px); }
  to { transform: translateY(0); }
}

.modal-handle {
  width: 42px;
  height: 4px;
  margin: 9px auto 4px;
  border-radius: 99px;
  background: var(--border-strong);
}

.modal-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 17px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.modal-header h2 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.modal-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--text-secondary);
  font-size: 24px;
  line-height: 1;
}

.modal-body {
  padding: 17px 17px calc(20px + var(--safe-bottom));
}

.toast-region {
  position: fixed;
  z-index: 200;
  top: calc(12px + var(--safe-top));
  right: 12px;
  left: 12px;
  display: grid;
  justify-items: center;
  gap: 8px;
  pointer-events: none;
}

.toast {
  display: flex;
  width: min(100%, 440px);
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 14px;
  background: rgb(29 31 38 / 94%);
  box-shadow: var(--shadow-lg);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  pointer-events: auto;
  animation: toast-in 180ms ease-out;
}

.toast.success {
  background: rgb(17 105 78 / 96%);
}

.toast.error {
  background: rgb(158 45 61 / 96%);
}

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

.noscript-message {
  padding: 24px;
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (min-width: 560px) {
  .header-inner,
  .role-tabs,
  .main-content {
    padding-right: 24px;
    padding-left: 24px;
  }

  .profile-name {
    display: block;
  }

  .filter-panel {
    grid-template-columns: minmax(240px, 1fr) auto;
    align-items: start;
  }

  .summary-strip {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .summary-strip.four-items {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }

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

  .detail-grid,
  .field-row.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid,
  .photo-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metrics-grid.five-items .metric-card:last-child {
    grid-column: auto;
  }

  .metrics-grid.seven-items .metric-card:last-child {
    grid-column: auto;
  }

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

  .fab {
    right: max(24px, calc((100vw - 1080px) / 2 + 24px));
  }
}

@media (min-width: 860px) {
  :root {
    --nav-height: 0px;
  }

  .workspace {
    padding-bottom: 20px;
  }

  .header-inner,
  .role-tabs {
    width: min(100%, 1128px);
    margin: 0 auto;
  }

  .main-content {
    padding-top: 28px;
  }

  .bottom-nav {
    position: sticky;
    top: calc(104px + var(--safe-top));
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 18;
    width: min(calc(100% - 48px), 1080px);
    min-height: 54px;
    margin: 14px auto 0;
    justify-content: flex-start;
    gap: 5px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
  }

  .nav-item {
    display: flex;
    min-width: auto;
    min-height: 42px;
    flex: 0 0 auto;
    gap: 7px;
    padding: 0 13px;
    font-size: 12px;
  }

  .nav-item.active {
    background: var(--accent-soft);
  }

  .fab {
    bottom: 24px;
  }

  .screen-header {
    align-items: center;
  }

  .ticket-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
    gap: 14px;
    align-items: start;
  }

  .detail-layout .section-head:first-child {
    margin-top: 0;
  }

  .action-panel {
    bottom: 16px;
  }

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

  .metrics-grid.seven-items {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .modal-root {
    align-items: center;
    padding: 24px;
  }

  .modal-sheet {
    max-height: min(780px, calc(100dvh - 48px));
    border-bottom: 1px solid var(--border);
    border-radius: 24px;
  }

  .modal-handle {
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #111218;
    --surface: #1b1d24;
    --surface-raised: #21242c;
    --surface-soft: #272a33;
    --text: #f1f2f5;
    --text-secondary: #adb1bc;
    --text-tertiary: #858b98;
    --border: #30333d;
    --border-strong: #414550;
    --accent: #9278f6;
    --accent-strong: #b09cff;
    --accent-soft: #302a4f;
    --success: #6bd5ad;
    --success-soft: #183a31;
    --warning: #f1bd62;
    --warning-soft: #41321c;
    --danger: #ff8c99;
    --danger-soft: #49242b;
    --info: #78b7f7;
    --info-soft: #1d344d;
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 14%), 0 8px 20px rgb(0 0 0 / 12%);
    --shadow-lg: 0 20px 54px rgb(0 0 0 / 38%);
  }

  .access-card {
    border-color: rgb(255 255 255 / 8%);
  }

  .filter-chip.active {
    background: var(--text);
    color: var(--bg);
  }

  .photo-tile.loading::after,
  .skeleton-card::after {
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 7%), transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
