:root {
	--swd-bg: #070a12;
	--swd-surface: #101827;
	--swd-surface-strong: #151f32;
	--swd-text: #f8fafc;
	--swd-muted: #94a3b8;
	--swd-accent: #6ee7b7;
	--swd-accent-strong: #10b981;
	--swd-success: #34d399;
	--swd-danger: #fb7185;
	--swd-border: rgba(148, 163, 184, 0.18);
	--swd-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}

* {
	scrollbar-width: thin;
	scrollbar-color: color-mix(in srgb, var(--swd-accent) 72%, var(--swd-surface)) rgba(16, 24, 39, 0.72);
}

*::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

*::-webkit-scrollbar-track {
	border-radius: 999px;
	background: rgba(16, 24, 39, 0.72);
}

*::-webkit-scrollbar-thumb {
	border: 2px solid rgba(16, 24, 39, 0.88);
	border-radius: 999px;
	background: linear-gradient(180deg, var(--swd-accent), var(--swd-accent-strong));
}

*::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--swd-accent-strong), var(--swd-accent));
}

body.swd-manager-body {
	min-height: 100vh;
	margin: 0;
	color: var(--swd-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(110, 231, 183, 0.16), transparent 34rem),
		linear-gradient(135deg, #05070d 0%, var(--swd-bg) 48%, #0f172a 100%);
}

a {
	color: inherit;
}

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

.swd-login {
	display: grid;
	grid-template-columns: minmax(0, 520px) minmax(320px, 1fr);
	min-height: 100vh;
	padding: clamp(1rem, 4vw, 2.5rem);
	gap: 1.25rem;
}

.swd-login__panel,
.swd-login__aside,
.swd-panel,
.swd-forbidden section {
	border: 1px solid var(--swd-border);
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(16, 24, 39, 0.96), rgba(21, 31, 50, 0.88));
	box-shadow: var(--swd-shadow);
}

.swd-login__panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.5rem, 5vw, 3rem);
}

.swd-login__brand {
	display: grid;
	width: 68px;
	height: 68px;
	margin-bottom: 2rem;
	place-items: center;
	border: 1px solid rgba(110, 231, 183, 0.34);
	border-radius: 20px;
	background: rgba(16, 185, 129, 0.12);
}

.swd-login__brand img {
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.swd-login__brand span,
.swd-sidebar__brand span {
	font-weight: 900;
	letter-spacing: -0.06em;
}

.swd-login__eyebrow,
.swd-panel__eyebrow,
.swd-topbar p {
	margin: 0 0 0.75rem;
	color: var(--swd-accent);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.swd-login__title,
.swd-topbar h1,
.swd-forbidden h1 {
	margin: 0;
	font-size: clamp(2.3rem, 6vw, 4.8rem);
	line-height: 0.92;
	letter-spacing: -0.08em;
}

.swd-login__description,
.swd-card p,
.swd-panel p,
.swd-topbar span,
.swd-login__aside span {
	color: var(--swd-muted);
	line-height: 1.7;
}

.swd-login__description {
	max-width: 28rem;
	margin: 1.25rem 0 0;
}

.swd-login__form {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.swd-field,
.swd-check {
	display: grid;
	gap: 0.55rem;
}

.swd-field span,
.swd-check span,
.swd-sidebar__footer span,
.swd-card span {
	color: var(--swd-muted);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.swd-field input,
.swd-field select,
.swd-field textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 16px;
	color: var(--swd-text);
	background: rgba(7, 10, 18, 0.62);
	outline: none;
}

.swd-field textarea {
	min-height: 120px;
	resize: vertical;
}

.swd-field input[type="color"] {
	min-height: 52px;
	padding: 0.35rem;
	cursor: pointer;
}

.swd-field input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(1) brightness(1.8) saturate(0.8);
	opacity: 0.88;
	cursor: pointer;
}

.swd-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
	opacity: 1;
}

.swd-field input:focus,
.swd-field select:focus,
.swd-field textarea:focus {
	border-color: rgba(110, 231, 183, 0.72);
	box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.1);
}

.swd-check {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.swd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.1rem;
	border: 0;
	border-radius: 16px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}

.swd-button--primary {
	color: #03140f;
	background: linear-gradient(135deg, var(--swd-accent), var(--swd-accent-strong));
}

.swd-button--ghost {
	border: 1px solid var(--swd-border);
	color: var(--swd-text);
	background: rgba(255, 255, 255, 0.06);
}

.swd-button--danger {
	border-color: rgba(251, 113, 133, 0.35);
	color: #fecdd3;
	background: rgba(127, 29, 29, 0.24);
}

.swd-button--success {
	border-color: rgba(110, 231, 183, 0.42);
	color: #d1fae5;
	background: rgba(6, 95, 70, 0.32);
}

.swd-button--icon {
	width: 38px;
	min-width: 38px;
	padding-right: 0;
	padding-left: 0;
}

.swd-alert {
	margin-top: 1.25rem;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	font-weight: 700;
}

.swd-alert--error {
	border: 1px solid rgba(251, 113, 133, 0.35);
	color: #fecdd3;
	background: rgba(127, 29, 29, 0.34);
}

.swd-login__aside {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(1.5rem, 5vw, 3rem);
	background:
		linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(15, 23, 42, 0.9)),
		linear-gradient(145deg, rgba(16, 24, 39, 0.92), rgba(21, 31, 50, 0.82));
}

.swd-login__aside p {
	margin: 0 0 0.8rem;
	color: var(--swd-accent);
	font-weight: 800;
	text-transform: uppercase;
}

.swd-login__aside strong {
	max-width: 660px;
	font-size: clamp(2.5rem, 8vw, 7rem);
	line-height: 0.9;
	letter-spacing: -0.09em;
}

.swd-login__aside span {
	display: block;
	max-width: 36rem;
	margin-top: 1.5rem;
}

.swd-app {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	min-height: 100vh;
}

.swd-sidebar {
	display: flex;
	position: sticky;
	top: 0;
	height: 100vh;
	flex-direction: column;
	padding: 1.25rem;
	border-right: 1px solid var(--swd-border);
	background: rgba(5, 7, 13, 0.72);
	backdrop-filter: blur(18px);
}

.swd-sidebar__brand {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0;
}

.swd-sidebar__brand img,
.swd-sidebar__brand span {
	width: 44px;
	height: 44px;
}

.swd-sidebar__brand img {
	display: block;
	object-fit: contain;
}

.swd-sidebar__brand span {
	display: grid;
	place-items: center;
	color: #04130f;
	background: var(--swd-accent);
}

.swd-nav {
	display: grid;
	gap: 0.5rem;
	margin-top: 2rem;
}

.swd-nav__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.9rem 1rem;
	border: 1px solid transparent;
	border-radius: 16px;
	color: var(--swd-muted);
	font-weight: 800;
	text-decoration: none;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.swd-nav__icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	color: currentColor;
	stroke: currentColor;
}

.swd-nav__icon--image {
	object-fit: contain;
	border-radius: 6px;
	stroke: none;
}

.swd-nav__item.is-active,
.swd-nav__item:hover {
	border-color: var(--swd-border);
	color: var(--swd-text);
	background: rgba(148, 163, 184, 0.1);
}

.swd-nav__item.is-active .swd-nav__icon {
	color: var(--swd-accent);
}

.swd-sidebar__footer {
	display: grid;
	gap: 0.45rem;
	margin-top: auto;
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.72);
}

.swd-sidebar__footer a {
	color: var(--swd-accent);
	font-weight: 800;
	text-decoration: none;
}

.swd-sidebar__footer .swd-nav__item {
	justify-content: flex-start;
	width: 100%;
	color: var(--swd-muted);
}

.swd-sidebar-submenu {
	display: grid;
	gap: 0.5rem;
}

.swd-sidebar-submenu summary {
	list-style: none;
	cursor: pointer;
}

.swd-sidebar-submenu summary::-webkit-details-marker {
	display: none;
}

.swd-sidebar-submenu__chevron {
	width: 18px;
	height: 18px;
	margin-left: auto;
	transition: transform 160ms ease;
}

.swd-sidebar-submenu[open] .swd-sidebar-submenu__chevron {
	transform: rotate(180deg);
}

.swd-sidebar-submenu__items {
	display: grid;
	gap: 0.35rem;
	padding-left: 0.75rem;
}

.swd-sidebar-submenu__items .swd-nav__item {
	min-height: 40px;
	padding: 0.7rem 0.8rem;
	font-size: 0.9rem;
}

.swd-sidebar__footer .swd-nav__item:hover,
.swd-sidebar__footer .swd-nav__item.is-active {
	color: var(--swd-text);
}

.swd-sidebar__footer strong {
	font-weight: 500;
}

.swd-app__main {
	padding: clamp(1.25rem, 4vw, 3rem);
}

.swd-topbar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.swd-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.swd-card,
.swd-panel {
	padding: 1.25rem;
	border: 1px solid var(--swd-border);
	border-radius: 22px;
	background: rgba(16, 24, 39, 0.78);
}

.swd-card strong {
	display: block;
	margin-top: 0.5rem;
	font-size: 1.6rem;
	letter-spacing: -0.04em;
}

.swd-card p,
.swd-panel p {
	margin-bottom: 0;
}

.swd-panel {
	max-width: 760px;
}

.swd-panel h2 {
	margin: 0;
	font-size: clamp(1.8rem, 4vw, 3rem);
	letter-spacing: -0.06em;
}

.swd-settings-home,
.swd-company-settings,
.swd-registration-settings,
.swd-registry {
	max-width: 980px;
}

.swd-settings-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: start;
	max-width: none;
}

.swd-settings-grid .swd-panel,
.swd-settings-grid .swd-company-settings,
.swd-settings-grid .swd-kanban-settings {
	max-width: none;
	margin-top: 0;
}

.swd-settings-reserved {
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
}

.swd-settings-reserved strong {
	display: block;
	font-size: 1.15rem;
}

.swd-settings-link {
	display: grid;
	gap: 0.35rem;
	max-width: 520px;
	margin-top: 1.5rem;
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.04);
}

.swd-settings-link strong {
	font-size: 1.05rem;
}

.swd-settings-link span {
	color: var(--swd-muted);
}

.swd-company-form {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.swd-logo-field {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 1.25rem;
	align-items: center;
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
}

.swd-logo-preview {
	display: grid;
	width: 120px;
	height: 120px;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(110, 231, 183, 0.28);
	border-radius: 24px;
	background: rgba(110, 231, 183, 0.08);
}

.swd-logo-preview img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swd-logo-preview span {
	font-size: 1.4rem;
	font-weight: 900;
	letter-spacing: -0.08em;
}

.swd-logo-field strong {
	display: block;
	font-size: 1.15rem;
}

.swd-logo-field p,
.swd-form-actions p {
	color: var(--swd-muted);
}

.swd-logo-field .swd-button {
	min-height: 42px;
	margin-right: 0.5rem;
	padding: 0.65rem 0.9rem;
}

.swd-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.swd-form-grid .swd-field:first-child {
	grid-column: 1 / -1;
}

.swd-field--full {
	grid-column: 1 / -1;
}

.swd-field--color {
	max-width: 220px;
}

.swd-form-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.swd-form-actions p {
	margin: 0;
	font-weight: 700;
}

.swd-form-actions p.is-error {
	color: var(--swd-danger);
}

.swd-history {
	max-width: none;
}

.swd-registry {
	display: grid;
	gap: 1.5rem;
	max-width: 1120px;
}

.swd-registry-form {
	display: grid;
	gap: 1.25rem;
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
}

.swd-registry-list {
	display: grid;
	gap: 0.75rem;
}

.swd-registry-toolbar,
.swd-trash-actions {
	display: flex;
	align-items: end;
	gap: 1rem;
	flex-wrap: wrap;
}

.swd-registry-search {
	min-width: min(100%, 420px);
	flex: 1;
}

.swd-registry-status {
	min-height: 1.3rem;
	margin: -0.5rem 0 0;
	color: var(--swd-muted);
	font-weight: 700;
}

.swd-registry-status.is-error {
	color: var(--swd-danger);
}

.swd-registry-list .swd-card-head strong {
	font-size: 2rem;
}

.swd-registry-table .swd-table__head,
.swd-registry-table .swd-table__row {
	grid-template-columns: minmax(180px, 1.1fr) minmax(150px, 0.9fr) minmax(190px, 1fr) minmax(150px, auto);
}

.swd-registry-row {
	transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.swd-registry-row:hover {
	border-color: rgba(110, 231, 183, 0.24);
	background: rgba(110, 231, 183, 0.055);
	transform: translateY(-1px);
}

.swd-registry-row__open {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0;
	border: 0;
	color: var(--swd-text);
	font: inherit;
	text-align: left;
	background: transparent;
	cursor: pointer;
}

.swd-registry-table strong {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.swd-partner-color {
	display: inline-block;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	border-radius: 999px;
	background: var(--swd-partner-color);
	box-shadow: 0 0 20px color-mix(in srgb, var(--swd-partner-color) 48%, transparent);
}

.swd-partner-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--swd-muted);
	font-weight: 800;
}

.swd-row-actions {
	display: flex;
	gap: 0.5rem;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.swd-row-actions .swd-button {
	min-height: 38px;
	padding: 0.55rem 0.75rem;
	border-radius: 12px;
	font-size: 0.86rem;
}

.swd-modal-open {
	overflow: hidden;
}

.swd-modal[hidden] {
	display: none;
}

.swd-modal {
	display: grid;
	position: fixed;
	inset: 0;
	z-index: 1000;
	padding: clamp(1rem, 4vw, 2rem);
	place-items: center;
}

.swd-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 7, 18, 0.78);
	backdrop-filter: blur(10px);
}

.swd-modal__panel {
	display: grid;
	position: relative;
	z-index: 1;
	width: min(900px, 100%);
	max-height: min(86vh, 900px);
	gap: 1.25rem;
	overflow: auto;
	padding: clamp(1rem, 3vw, 1.5rem);
	border: 1px solid var(--swd-border);
	border-radius: 26px;
	background: linear-gradient(145deg, rgba(16, 24, 39, 0.98), rgba(21, 31, 50, 0.96));
	box-shadow: var(--swd-shadow);
}

.swd-modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.swd-modal__head span,
.swd-detail-grid span {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--swd-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.swd-modal__head h3 {
	margin: 0;
	font-size: clamp(1.7rem, 4vw, 2.6rem);
	letter-spacing: -0.06em;
}

.swd-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.swd-detail-grid > div {
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
}

.swd-detail-grid strong {
	font-size: 1rem;
}

.swd-detail-grid p {
	margin: 0;
	color: var(--swd-muted);
	line-height: 1.7;
}

.swd-detail-grid__full {
	grid-column: 1 / -1;
}

.swd-trash {
	max-width: 1120px;
}

.swd-trash-table .swd-table__head,
.swd-trash-table .swd-table__row {
	grid-template-columns: minmax(140px, 0.6fr) minmax(120px, 0.6fr) minmax(220px, 1.2fr) minmax(160px, 0.7fr);
}

.swd-trash-actions p {
	margin: 0;
	color: var(--swd-muted);
	font-weight: 700;
}

.swd-trash-actions p.is-error {
	color: var(--swd-danger);
}

.swd-kanban-settings {
	max-width: 980px;
	margin-top: 1rem;
}

.swd-kanban-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 1.5rem 0;
}

.swd-kanban-column-input {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.swd-kanban-column-input input {
	min-width: 0;
}

.swd-jobs {
	display: grid;
	gap: 1rem;
	max-width: none;
}

.swd-jobs-toolbar {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.45fr) auto auto;
	gap: 1rem;
	align-items: end;
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 22px;
	background: rgba(16, 24, 39, 0.78);
	box-shadow: var(--swd-shadow);
}

.swd-kanban-board {
	display: grid;
	grid-auto-columns: minmax(280px, 1fr);
	grid-auto-flow: column;
	gap: 1rem;
	min-height: 560px;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scrollbar-gutter: stable;
}

.swd-kanban-column {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	min-width: 280px;
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 24px;
	background: rgba(16, 24, 39, 0.78);
	box-shadow: var(--swd-shadow);
	transition: border-color 160ms ease, background 160ms ease;
}

.swd-kanban-column.is-drag-over {
	border-color: rgba(110, 231, 183, 0.72);
	background: rgba(110, 231, 183, 0.08);
	box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.08), var(--swd-shadow);
}

.swd-kanban-column header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--swd-border);
}

.swd-kanban-column header strong {
	font-size: 1.05rem;
	letter-spacing: -0.03em;
}

.swd-kanban-column header span {
	display: grid;
	min-width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 12px;
	color: #03140f;
	font-weight: 900;
	background: var(--swd-accent);
}

.swd-kanban-column__cards {
	display: grid;
	align-content: start;
	gap: 0.75rem;
	padding-top: 1rem;
}

.swd-job-card {
	display: grid;
	position: relative;
	gap: 0.55rem;
	width: 100%;
	padding: 1rem 1rem 1rem 1.15rem;
	overflow: hidden;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	color: var(--swd-text);
	text-align: left;
	background: rgba(255, 255, 255, 0.045);
	cursor: grab;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.swd-job-card:hover,
.swd-job-card:focus {
	border-color: rgba(110, 231, 183, 0.34);
	background: rgba(255, 255, 255, 0.075);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
	outline: 0;
	transform: translateY(-1px);
}

.swd-job-card.is-dragging {
	border-color: rgba(110, 231, 183, 0.72);
	opacity: 0.72;
	cursor: grabbing;
	transform: rotate(1.2deg) scale(1.02);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.swd-job-dragging .swd-job-card:not(.is-dragging) {
	transition-duration: 220ms;
}

.swd-kanban-column__cards .swd-table__empty {
	padding: 0.9rem;
	border: 1px dashed rgba(110, 231, 183, 0.2);
	border-radius: 16px;
}

.swd-job-card__accent {
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: var(--swd-partner-color);
	box-shadow: 0 0 28px color-mix(in srgb, var(--swd-partner-color) 55%, transparent);
}

.swd-job-card strong {
	font-size: 1rem;
	letter-spacing: -0.02em;
}

.swd-job-card span,
.swd-job-card em {
	color: var(--swd-muted);
	font-size: 0.88rem;
	font-style: normal;
	font-weight: 800;
}

.swd-job-card__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.swd-job-card__meta b,
.swd-paid-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.22rem 0.52rem;
	border: 1px solid rgba(110, 231, 183, 0.32);
	border-radius: 999px;
	color: #052e22;
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: linear-gradient(135deg, #6ee7b7, #22c55e);
}

.swd-job-paid-field {
	align-self: end;
	min-height: 48px;
}

.swd-job-modal {
	width: min(1180px, 100%);
}

.swd-job-modal-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
	gap: 1rem;
}

.swd-job-history {
	display: grid;
	align-content: start;
	gap: 0.75rem;
	padding: 1rem;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
}

.swd-job-history h4 {
	margin: 0;
	font-size: 1rem;
}

.swd-maintenance-side {
	display: grid;
	align-content: start;
	gap: 1rem;
}

.swd-job-history article {
	display: grid;
	gap: 0.25rem;
	padding: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.035);
}

.swd-job-history article span,
.swd-job-history article em,
.swd-job-history p {
	margin: 0;
	color: var(--swd-muted);
	font-size: 0.88rem;
	font-style: normal;
}

.swd-job-description {
	color: var(--swd-muted);
	line-height: 1.7;
}

.swd-job-description :first-child {
	margin-top: 0;
}

.swd-job-description img,
.swd-rich-editor img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
}

.swd-rich-editor-shell {
	display: grid;
	overflow: hidden;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	background: rgba(7, 10, 18, 0.62);
}

.swd-rich-editor-toolbar {
	display: flex;
	gap: 0.45rem;
	flex-wrap: wrap;
	padding: 0.6rem;
	border-bottom: 1px solid var(--swd-border);
	background: rgba(255, 255, 255, 0.045);
}

.swd-rich-editor-toolbar button {
	min-height: 34px;
	padding: 0.35rem 0.6rem;
	border: 1px solid var(--swd-border);
	border-radius: 10px;
	color: var(--swd-text);
	font-weight: 800;
	background: rgba(255, 255, 255, 0.06);
	cursor: pointer;
}

.swd-rich-editor-toolbar button:hover,
.swd-rich-editor-toolbar button:focus {
	border-color: rgba(110, 231, 183, 0.52);
	background: rgba(110, 231, 183, 0.1);
	outline: 0;
}

.swd-rich-editor {
	min-height: 180px;
	padding: 0.95rem 1rem;
	overflow: auto;
	border: 0;
	border-radius: 0;
	color: var(--swd-text);
	line-height: 1.7;
	background: transparent;
	outline: none;
}

.swd-rich-editor:focus {
	box-shadow: inset 0 0 0 2px rgba(110, 231, 183, 0.32);
}

.swd-rich-editor:empty::before {
	color: var(--swd-muted);
	content: attr(data-placeholder);
}

.swd-rich-editor h2,
.swd-rich-editor h3 {
	margin: 0.2rem 0 0.8rem;
	color: var(--swd-text);
	letter-spacing: -0.04em;
}

.swd-wp-editor-field .wp-editor-wrap {
	overflow: hidden;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	background: rgba(7, 10, 18, 0.62);
}

.swd-wp-editor-field .wp-editor-tools {
	padding: 0.65rem 0.65rem 0;
	background: rgba(255, 255, 255, 0.045);
}

.swd-wp-editor-field .wp-media-buttons .button,
.swd-wp-editor-field .wp-switch-editor,
.swd-wp-editor-field .quicktags-toolbar input,
.swd-wp-editor-field .mce-btn button {
	border-color: var(--swd-border) !important;
	border-radius: 10px !important;
	color: var(--swd-text) !important;
	background: rgba(255, 255, 255, 0.06) !important;
	box-shadow: none !important;
}

.swd-wp-editor-field .wp-switch-editor {
	border-bottom-color: var(--swd-border) !important;
}

.swd-wp-editor-field .html-active .switch-html,
.swd-wp-editor-field .tmce-active .switch-tmce,
.swd-wp-editor-field .wp-media-buttons .button:hover,
.swd-wp-editor-field .quicktags-toolbar input:hover,
.swd-wp-editor-field .mce-btn:hover button {
	border-color: rgba(110, 231, 183, 0.52) !important;
	background: rgba(110, 231, 183, 0.1) !important;
}

.swd-wp-editor-field .wp-editor-container {
	border: 0 !important;
	background: rgba(7, 10, 18, 0.72) !important;
}

.swd-wp-editor-field .mce-toolbar-grp,
.swd-wp-editor-field .quicktags-toolbar {
	border-color: var(--swd-border) !important;
	background: rgba(255, 255, 255, 0.045) !important;
}

.swd-wp-editor-field .mce-panel,
.swd-wp-editor-field .mce-edit-area {
	border-color: var(--swd-border) !important;
	background: rgba(7, 10, 18, 0.84) !important;
}

.mce-floatpanel,
.mce-menu,
.mce-menu .mce-menu-item,
.mce-menu .mce-menu-item-normal,
.mce-menu .mce-text,
.mce-menu .mce-ico,
.mce-menu .mce-caret {
	color: var(--swd-text) !important;
	background: rgba(7, 10, 18, 0.98) !important;
}

.mce-floatpanel,
.mce-menu {
	border-color: var(--swd-border) !important;
	box-shadow: var(--swd-shadow) !important;
}

.mce-menu .mce-menu-item:hover,
.mce-menu .mce-menu-item.mce-selected,
.mce-menu .mce-menu-item:focus {
	color: var(--swd-text) !important;
	background: rgba(110, 231, 183, 0.14) !important;
}

.swd-wp-editor-field textarea.wp-editor-area {
	min-height: 220px;
	border: 0;
	border-radius: 0;
	color: var(--swd-text);
	background: rgba(7, 10, 18, 0.84);
}

.swd-completed-jobs .swd-table__head,
.swd-completed-jobs .swd-table__row,
.swd-archived-jobs .swd-table__head,
.swd-archived-jobs .swd-table__row,
.swd-budget-jobs .swd-table__head,
.swd-budget-jobs .swd-table__row {
	grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr) minmax(170px, auto);
}

.swd-jobs-reserved {
	max-width: 860px;
}

.swd-maintenance,
.swd-plugins-settings,
.swd-uploaded-files,
.swd-maintenance-assets-panel {
	max-width: none;
}

.swd-maintenance-table .swd-table__head,
.swd-maintenance-table .swd-table__row {
	grid-template-columns: minmax(220px, 1.25fr) minmax(170px, 0.8fr) minmax(110px, 0.55fr) minmax(150px, 0.65fr) minmax(190px, auto);
}

.swd-maintenance-row .swd-registry-row__open {
	display: grid;
	gap: 0.2rem;
}

.swd-maintenance-row .swd-registry-row__open span {
	color: var(--swd-muted);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: none;
}

.swd-site-status,
.swd-update-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	gap: 0.45rem;
	padding: 0.35rem 0.65rem;
	border: 1px solid var(--swd-border);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.swd-site-status i {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--swd-danger);
	box-shadow: 0 0 18px rgba(251, 113, 133, 0.6);
}

.swd-site-status.is-online i {
	background: var(--swd-accent);
	box-shadow: 0 0 18px rgba(110, 231, 183, 0.6);
}

.swd-update-badge {
	color: #d1fae5;
	background: rgba(6, 95, 70, 0.22);
}

.swd-update-badge.has-updates {
	border-color: rgba(251, 191, 36, 0.38);
	color: #fde68a;
	background: rgba(120, 53, 15, 0.28);
}

.swd-maintenance-modal {
	width: min(1280px, 100%);
}

.swd-maintenance-modal-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
	gap: 1rem;
}

.swd-maintenance-actions {
	display: flex;
	gap: 0.7rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.swd-maintenance-actions .swd-button {
	min-height: 42px;
	padding: 0.65rem 0.85rem;
	border-radius: 13px;
	font-size: 0.85rem;
}

.swd-maintenance-wp-action {
	display: grid;
	gap: 0.65rem;
}

.swd-maintenance-wp-action .swd-button {
	width: fit-content;
	min-height: 38px;
	padding: 0.55rem 0.75rem;
	border-radius: 12px;
	font-size: 0.82rem;
}

.swd-site-status b {
	font: inherit;
}

.swd-maintenance-token-copy {
	display: flex;
	gap: 0.7rem;
	align-items: center;
}

.swd-maintenance-token-copy input {
	width: 100%;
	min-width: 0;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--swd-border);
	border-radius: 12px;
	color: var(--swd-text);
	background: rgba(0, 0, 0, 0.24);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.82rem;
}

.swd-maintenance-assets-list {
	display: grid;
	gap: 0.6rem;
}

.swd-maintenance-assets-list article {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(80px, auto) minmax(180px, 1fr) auto;
	gap: 0.8rem;
	align-items: center;
	padding: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.035);
}

.swd-maintenance-assets-list article.is-swd-integration {
	border-color: rgba(110, 231, 183, 0.42);
	background: linear-gradient(135deg, rgba(110, 231, 183, 0.12), rgba(96, 165, 250, 0.08));
	box-shadow: inset 3px 0 0 var(--swd-accent), 0 14px 32px rgba(15, 23, 42, 0.18);
}

.swd-maintenance-assets-list article.is-swd-integration strong::after {
	content: 'Integração';
	display: inline-flex;
	margin-left: 0.55rem;
	padding: 0.18rem 0.45rem;
	border-radius: 999px;
	color: #d1fae5;
	background: rgba(6, 95, 70, 0.42);
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.swd-maintenance-asset-actions {
	display: flex;
	justify-content: flex-end;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.swd-maintenance-asset-actions .swd-button {
	min-height: 38px;
	padding: 0.55rem 0.75rem;
	border-radius: 12px;
	font-size: 0.8rem;
}

.swd-asset-update-status {
	font-weight: 900;
}

.swd-asset-update-status.is-updated {
	color: var(--swd-success);
}

.swd-asset-update-status.needs-update {
	color: var(--swd-danger);
}

.swd-maintenance-assets-list article span,
.swd-maintenance-assets-list article em {
	color: var(--swd-muted);
	font-size: 0.86rem;
	font-style: normal;
	font-weight: 700;
}

.swd-maintenance-theme-grid {
	margin-top: 1rem;
}

.swd-maintenance-assets-table .swd-table__head,
.swd-maintenance-assets-table .swd-table__row {
	grid-template-columns: minmax(180px, 1fr) minmax(90px, 0.45fr) minmax(120px, 0.55fr) minmax(70px, auto);
}

.swd-uploaded-files-table .swd-table__head,
.swd-uploaded-files-table .swd-table__row {
	grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.8fr) minmax(130px, 0.55fr) minmax(70px, auto);
}

.swd-uploaded-file-row strong {
	display: grid;
	gap: 0.18rem;
}

.swd-uploaded-file-row small {
	color: var(--swd-muted);
	font-size: 0.74rem;
	font-weight: 800;
}

.swd-maintenance-asset-form small {
	color: var(--swd-muted);
}

.swd-history-filters {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
	gap: 1rem;
	align-items: end;
	margin-top: 1.5rem;
}

.swd-history-filters__actions,
.swd-history-export,
.swd-pagination {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.swd-history-note {
	margin-top: 1rem;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(110, 231, 183, 0.18);
	border-radius: 14px;
	color: var(--swd-muted);
	background: rgba(110, 231, 183, 0.06);
}

.swd-history-export {
	justify-content: flex-end;
	margin-top: 1rem;
}

.swd-history-table .swd-table__head,
.swd-history-table .swd-table__row {
	grid-template-columns: minmax(145px, 0.8fr) minmax(160px, 0.85fr) minmax(260px, 1.5fr) minmax(80px, 0.45fr) minmax(110px, 0.55fr);
}

.swd-pagination {
	justify-content: center;
	margin-top: 1.25rem;
}

.swd-pagination span {
	color: var(--swd-muted);
	font-weight: 800;
}

.swd-forbidden {
	display: grid;
	min-height: 100vh;
	padding: 1rem;
	place-items: center;
}

.swd-forbidden section {
	max-width: 720px;
	padding: clamp(1.5rem, 5vw, 3rem);
}

.swd-topbar__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.swd-icon-button,
.swd-user-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	color: var(--swd-text);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.swd-icon-button {
	width: 52px;
	height: 52px;
	font-weight: 900;
	cursor: pointer;
}

.swd-icon-button svg {
	width: 22px;
	height: 22px;
}

.swd-icon-button.is-loading {
	opacity: 0.62;
	pointer-events: none;
}

.swd-button.is-loading,
.swd-icon-button.is-loading {
	cursor: wait;
	opacity: 0.72;
}

.swd-button.is-loading::before,
.swd-icon-button.is-loading::before {
	content: '';
	display: inline-block;
	width: 0.9rem;
	height: 0.9rem;
	margin-right: 0.45rem;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: swd-spin 720ms linear infinite;
}

.swd-button--icon.is-loading::before,
.swd-icon-button.is-loading::before {
	margin-right: 0;
}

.swd-icon-button.is-loading svg {
	display: none;
}

.swd-placeholder-page {
	min-height: 56vh;
}

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

.swd-user-pill {
	gap: 0.75rem;
	min-height: 52px;
	padding: 0.4rem 0.9rem 0.4rem 0.45rem;
	text-decoration: none;
}

.swd-user-menu {
	position: relative;
}

.swd-user-menu__dropdown {
	display: grid;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 20;
	min-width: 210px;
	padding: 0.6rem 0.45rem 0.45rem;
	border: 1px solid var(--swd-border);
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.96);
	box-shadow: var(--swd-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.swd-user-menu:hover .swd-user-menu__dropdown,
.swd-user-menu:focus-within .swd-user-menu__dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.swd-user-menu__dropdown a {
	padding: 0.8rem 0.9rem;
	border-radius: 14px;
	color: var(--swd-muted);
	font-weight: 800;
	text-decoration: none;
}

.swd-user-menu__dropdown a:hover,
.swd-user-menu__dropdown a:focus {
	color: var(--swd-text);
	background: rgba(148, 163, 184, 0.1);
	outline: 0;
}

.swd-user-pill span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 50%;
	color: #160902;
	background: var(--swd-accent);
}

.swd-user-pill span svg {
	width: 21px;
	height: 21px;
}

.swd-user-pill strong {
	max-width: 160px;
	overflow: hidden;
	font-size: 0.95rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.swd-dashboard {
	display: grid;
	gap: 1.25rem;
}

.swd-dashboard__metrics {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1rem;
}

.swd-dashboard-card {
	position: relative;
	display: flex;
	min-height: 180px;
	padding: 1.2rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	color: var(--swd-text);
	text-decoration: none;
	background:
		radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--swd-accent) 24%, transparent), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
		rgba(16, 16, 17, 0.88);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 70px rgba(0, 0, 0, 0.22);
	flex-direction: column;
	justify-content: space-between;
}

.swd-dashboard-card::after {
	position: absolute;
	right: -34px;
	bottom: -34px;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--swd-accent), var(--swd-accent-strong));
	content: "";
	opacity: 0.18;
}

.swd-dashboard-card:hover,
.swd-dashboard-card:focus-visible {
	border-color: color-mix(in srgb, var(--swd-accent) 48%, rgba(255, 255, 255, 0.1));
	transform: translateY(-2px);
}

.swd-dashboard-card span {
	position: relative;
	z-index: 1;
	color: rgba(248, 250, 252, 0.76);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.07em;
	line-height: 1.35;
	text-transform: uppercase;
}

.swd-dashboard-card strong {
	position: relative;
	z-index: 1;
	font-size: clamp(2.5rem, 4vw, 4.2rem);
	line-height: 0.95;
	letter-spacing: -0.08em;
}

.swd-dashboard-card em {
	position: relative;
	z-index: 1;
	color: var(--swd-accent);
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.35;
}

.swd-dashboard__hero,
.swd-dashboard__main {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.swd-dashboard__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.swd-metric-card,
.swd-stat-card,
.swd-side-panel,
.swd-activity-table,
.swd-panel--chart {
	position: relative;
	overflow: hidden;
	padding: 1.35rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
		rgba(16, 16, 17, 0.88);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 70px rgba(0, 0, 0, 0.24);
}

.swd-dashboard-maintenance,
.swd-dashboard-calendar {
	height: 450px;
	overflow: hidden;
}

.swd-dashboard-maintenance .swd-card-head a,
.swd-dashboard-calendar .swd-card-head a {
	color: var(--swd-accent);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.swd-dashboard-maintenance .swd-card-head strong,
.swd-dashboard-calendar .swd-card-head strong {
	font-size: clamp(1.45rem, 2.2vw, 2rem);
	letter-spacing: -0.04em;
}

.swd-dashboard-calendar__actions {
	display: inline-flex;
	gap: 0.45rem;
}

.swd-dashboard-calendar__actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: var(--swd-accent);
	font-size: 1.4rem;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.05);
}

.swd-dashboard-calendar__actions button:hover,
.swd-dashboard-calendar__actions button:focus-visible {
	border-color: var(--swd-accent);
	background: color-mix(in srgb, var(--swd-accent) 12%, transparent);
}

.swd-dashboard-maintenance__list,
.swd-dashboard-calendar > div[data-swd-dashboard-calendar] {
	height: calc(100% - 58px);
	margin-top: 1rem;
	overflow-y: auto;
	padding-right: 0.25rem;
}

.swd-dashboard-maintenance-table {
	margin-top: 0;
}

.swd-dashboard-maintenance-table .swd-table__head,
.swd-dashboard-maintenance-table .swd-table__row {
	grid-template-columns: minmax(180px, 1.2fr) minmax(140px, 0.8fr) minmax(100px, 0.55fr) minmax(130px, 0.65fr);
}

.swd-dashboard-maintenance-row {
	color: var(--swd-text);
	text-decoration: none;
}

.swd-dashboard-site {
	display: grid;
	grid-template-columns: 12px minmax(0, 1fr) auto;
	gap: 0.8rem 0.9rem;
	align-items: center;
	padding: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	color: var(--swd-text);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.035);
}

.swd-dashboard-site + .swd-dashboard-site {
	margin-top: 0.7rem;
}

.swd-dashboard-site__status {
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ef4444;
	box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.12);
}

.swd-dashboard-site__status.is-online {
	background: var(--swd-accent);
	box-shadow: 0 0 0 5px color-mix(in srgb, var(--swd-accent) 18%, transparent);
}

.swd-dashboard-site strong,
.swd-dashboard-site em,
.swd-dashboard-site p,
.swd-dashboard-site small {
	min-width: 0;
}

.swd-dashboard-site strong,
.swd-dashboard-site em {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.swd-dashboard-site em,
.swd-dashboard-site p {
	color: var(--swd-muted);
	font-style: normal;
}

.swd-dashboard-site p {
	grid-column: 2 / 4;
	margin: -0.3rem 0 0;
	font-size: 0.86rem;
}

.swd-dashboard-site small {
	padding: 0.35rem 0.55rem;
	border-radius: 999px;
	color: var(--swd-accent);
	font-weight: 900;
	background: color-mix(in srgb, var(--swd-accent) 10%, transparent);
}

.swd-dashboard-calendar__weekdays,
.swd-dashboard-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.45rem;
}

.swd-dashboard-calendar__weekdays {
	position: sticky;
	top: 0;
	z-index: 2;
	padding-bottom: 0.45rem;
	background: #101011;
}

.swd-dashboard-calendar__weekdays span {
	color: rgba(248, 250, 252, 0.58);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-align: center;
	text-transform: uppercase;
}

.swd-dashboard-day {
	min-height: 78px;
	padding: 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.035);
}

.swd-dashboard-day.is-muted {
	opacity: 0.42;
}

.swd-dashboard-day.is-today {
	border-color: color-mix(in srgb, var(--swd-accent) 65%, rgba(255, 255, 255, 0.12));
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--swd-accent) 32%, transparent);
}

.swd-dashboard-day.has-overdue {
	border-color: rgba(239, 68, 68, 0.55);
	background: rgba(239, 68, 68, 0.08);
}

.swd-dashboard-day__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 9px;
	color: rgba(248, 250, 252, 0.78);
	font-size: 0.82rem;
	font-weight: 900;
}

.swd-dashboard-day.is-today .swd-dashboard-day__number {
	color: #08110d;
	background: linear-gradient(135deg, var(--swd-accent), var(--swd-accent-strong));
}

.swd-dashboard-day__items {
	display: grid;
	gap: 0.25rem;
	margin-top: 0.4rem;
}

.swd-dashboard-day__items a,
.swd-dashboard-day__items button {
	overflow: hidden;
	border: 0;
	color: var(--swd-accent);
	font-size: 0.72rem;
	font-weight: 800;
	text-align: left;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: transparent;
}

.swd-dashboard-day__items a {
	padding: 0.22rem 0.35rem;
	border-radius: 7px;
	background: color-mix(in srgb, var(--swd-accent) 9%, transparent);
}

.swd-dashboard-day__items a.is-overdue,
.swd-dashboard-day__items button {
	color: #fca5a5;
}

.swd-dashboard-day__items button {
	cursor: pointer;
	padding: 0.1rem 0;
}

.swd-dashboard-day-list {
	display: grid;
	gap: 0.7rem;
}

.swd-dashboard-day-list a {
	display: grid;
	gap: 0.25rem;
	padding: 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	color: var(--swd-text);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.04);
}

.swd-dashboard-day-list span {
	color: var(--swd-muted);
	font-size: 0.84rem;
}

.swd-dashboard-empty {
	padding: 1rem;
	border: 1px dashed rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	color: var(--swd-muted);
}

.swd-metric-card--wide {
	min-height: 260px;
}

.swd-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.swd-card-head span,
.swd-stat-card span {
	display: block;
	margin-bottom: 0.55rem;
	color: rgba(248, 250, 252, 0.72);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.swd-card-head strong,
.swd-stat-card strong {
	display: block;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
	letter-spacing: -0.08em;
}

.swd-card-head em {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	color: var(--swd-accent);
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 800;
	background: rgba(255, 255, 255, 0.05);
}

.swd-line-chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	height: 130px;
	margin-top: 2rem;
	padding: 0 0.4rem;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
	background: repeating-linear-gradient(to top, transparent, transparent 31px, rgba(255, 255, 255, 0.04) 32px);
}

.swd-line-chart span,
.swd-bar-chart span {
	display: block;
	width: 11%;
	height: var(--swd-bar-height);
	min-height: 18px;
	border-radius: 999px 999px 6px 6px;
	background: linear-gradient(180deg, #ff7a2f, #ffe09a 58%, #8fb8ff);
	box-shadow: 0 0 30px rgba(255, 122, 47, 0.22);
}

.swd-chart-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 0.65rem;
	color: rgba(248, 250, 252, 0.72);
	font-size: 0.8rem;
}

.swd-breakdown {
	display: flex;
	height: 46px;
	margin-top: 2rem;
	overflow: hidden;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
}

.swd-breakdown span {
	display: block;
	width: var(--swd-part);
}

.swd-breakdown span:nth-child(1) {
	background: #ff7029;
}

.swd-breakdown span:nth-child(2) {
	background: #f7bd2c;
}

.swd-breakdown span:nth-child(3) {
	background: #ffe39a;
}

.swd-metric-card p,
.swd-stat-card p {
	margin: 1rem 0 0;
	color: rgba(248, 250, 252, 0.66);
	line-height: 1.6;
}

.swd-stat-card strong {
	font-size: clamp(2.4rem, 5vw, 4rem);
}

.swd-panel--chart {
	max-width: none;
}

.swd-bar-chart {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: end;
	height: 230px;
	gap: 0.9rem;
	margin-top: 2rem;
	padding-top: 1rem;
	background: repeating-linear-gradient(to top, transparent, transparent 44px, rgba(255, 255, 255, 0.045) 45px);
}

.swd-bar-chart div {
	display: grid;
	height: 100%;
	align-items: end;
	gap: 0.7rem;
	color: rgba(248, 250, 252, 0.66);
	font-size: 0.78rem;
	text-align: center;
}

.swd-bar-chart span {
	width: 100%;
	border-radius: 18px;
	background: linear-gradient(180deg, #ff7a2f, #ffbd63 48%, #84a9ff);
}

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

.swd-roadmap li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.045);
}

.swd-roadmap li span {
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(255, 122, 47, 0.28), rgba(110, 231, 183, 0.18));
}

.swd-roadmap strong,
.swd-roadmap em {
	font-size: 0.92rem;
}

.swd-roadmap em {
	color: var(--swd-muted);
	font-style: normal;
}

.swd-activity-table .swd-card-head a {
	color: var(--swd-accent);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.swd-table {
	display: grid;
	gap: 0.45rem;
	margin-top: 1rem;
}

.swd-table__head,
.swd-table__row {
	display: grid;
	grid-template-columns: minmax(150px, 0.8fr) minmax(220px, 1.6fr) minmax(140px, 0.7fr);
	gap: 1rem;
	align-items: center;
	padding: 0.75rem 1rem;
	border-radius: 12px;
}

.swd-table__head {
	color: rgba(248, 250, 252, 0.52);
	font-size: 0.8rem;
	background: rgba(255, 255, 255, 0.055);
}

.swd-table__row {
	background: rgba(255, 255, 255, 0.025);
}

.swd-table__row span,
.swd-table__row em {
	color: rgba(248, 250, 252, 0.68);
	font-style: normal;
}

.swd-table__empty,
.swd-dashboard__status {
	color: var(--swd-muted);
}

.swd-dashboard__status {
	min-height: 1.4rem;
	margin: 0;
	font-size: 0.9rem;
}

@media (max-width: 900px) {
	.swd-login,
	.swd-app {
		grid-template-columns: 1fr;
	}

	.swd-login__aside {
		min-height: 320px;
	}

	.swd-sidebar {
		position: static;
		height: auto;
		border-right: 0;
		border-bottom: 1px solid var(--swd-border);
	}

	.swd-card-grid {
		grid-template-columns: 1fr;
	}

		.swd-logo-field,
		.swd-form-grid,
		.swd-detail-grid,
		.swd-settings-grid,
		.swd-registry-table .swd-table__head,
		.swd-registry-table .swd-table__row,
		.swd-trash-table .swd-table__head,
		.swd-trash-table .swd-table__row,
		.swd-maintenance-table .swd-table__head,
		.swd-maintenance-table .swd-table__row,
		.swd-maintenance-assets-table .swd-table__head,
		.swd-maintenance-assets-table .swd-table__row,
		.swd-kanban-columns,
		.swd-jobs-toolbar,
		.swd-job-modal-grid,
		.swd-maintenance-modal-grid,
		.swd-maintenance-assets-list article,
		.swd-history-filters {
			grid-template-columns: 1fr;
		}

		.swd-kanban-board {
			grid-auto-columns: minmax(260px, 86vw);
		}

	.swd-dashboard__hero,
	.swd-dashboard__main,
	.swd-dashboard__grid {
		grid-template-columns: 1fr;
	}

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

	.swd-dashboard-card {
		min-height: 160px;
	}

	.swd-dashboard-maintenance,
	.swd-dashboard-calendar {
		height: auto;
		min-height: 450px;
	}

	.swd-dashboard-maintenance__list,
	.swd-dashboard-calendar > div[data-swd-dashboard-calendar] {
		height: 370px;
	}

	.swd-topbar {
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.swd-login,
	.swd-app__main {
		padding: 1rem;
	}

	.swd-topbar h1,
	.swd-login__title {
		font-size: 2.5rem;
	}

	.swd-login__aside strong {
		font-size: 3.2rem;
	}

	.swd-table__head {
		display: none;
	}

	.swd-table__row {
		grid-template-columns: 1fr;
		gap: 0.45rem;
	}

	.swd-bar-chart {
		gap: 0.45rem;
	}

	.swd-dashboard__metrics,
	.swd-dashboard-calendar__weekdays,
	.swd-dashboard-calendar__grid {
		grid-template-columns: 1fr;
	}

	.swd-dashboard-calendar__weekdays {
		display: none;
	}

	.swd-dashboard-day {
		min-height: 96px;
	}
}
