:root {
  color-scheme: light;
  --page: #f7f9fc;
  --page-strong: #eef3fa;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-soft: #f8faff;
  --ink: #151e35;
  --muted: #70809a;
  --muted-strong: #52627c;
  --line: rgba(93, 114, 147, 0.18);
  --line-strong: rgba(93, 114, 147, 0.28);
  --blue: #4f7cf7;
  --blue-dark: #315fdc;
  --blue-soft: #e8efff;
  --green: #24ba6a;
  --danger: #d9435f;
  --shadow-small: 0 8px 24px rgba(38, 60, 94, 0.07);
  --shadow-card: 0 14px 34px rgba(48, 66, 97, 0.08), 0 2px 7px rgba(48, 66, 97, 0.04);
  --shadow-float: 0 28px 90px rgba(40, 56, 84, 0.2);
  --radius-small: 12px;
  --radius-medium: 18px;
  --radius-large: 24px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --page: #0b121b;
  --page-strong: #111b28;
  --surface: rgba(20, 31, 45, 0.82);
  --surface-solid: #131e2c;
  --surface-soft: #172334;
  --ink: #f3f7ff;
  --muted: #97a7bd;
  --muted-strong: #c3cede;
  --line: rgba(210, 226, 255, 0.12);
  --line-strong: rgba(210, 226, 255, 0.22);
  --blue: #7ea3ff;
  --blue-dark: #a7beff;
  --blue-soft: rgba(91, 130, 226, 0.18);
  --green: #43d884;
  --danger: #ff748c;
  --shadow-small: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 14px 36px rgba(0, 0, 0, 0.22);
  --shadow-float: 0 28px 90px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html { min-width: 320px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 220ms ease, color 220ms ease;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
::selection { color: #0f245a; background: #cfe0ff; }

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.5;
}
.ambient-one { width: 32rem; height: 32rem; top: -14rem; left: -12rem; background: rgba(119, 211, 255, 0.24); }
.ambient-two { width: 35rem; height: 35rem; right: -17rem; bottom: -16rem; background: rgba(207, 162, 255, 0.18); }
[data-theme="dark"] .ambient-one { background: rgba(40, 135, 181, 0.16); }
[data-theme="dark"] .ambient-two { background: rgba(116, 71, 167, 0.13); }

.app-shell { min-height: 100vh; padding: 12px; }

.topbar {
  position: sticky;
  top: 12px;
  z-index: 40;
  width: min(1520px, calc(100% - 8px));
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 14px 10px 12px;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 560px) minmax(320px, 1fr);
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(39, 57, 91, 0.1), inset 0 0 0 1px var(--line);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark, .owner-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(46, 72, 147, 0.25);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #8c82ff, #3d95ff 72%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), inset 0 -4px 8px rgba(41, 78, 183, 0.2), 0 7px 16px rgba(68, 100, 208, 0.2);
}
.brand-mark { width: 46px; height: 46px; border-radius: 14px; font-size: 18px; }
.brand-name { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }

.search-wrap { position: relative; min-width: 0; }
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  transform: translateY(-57%);
  pointer-events: none;
}
.search-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  right: -5px;
  bottom: -3px;
  border-radius: 2px;
  background: var(--muted);
  transform: rotate(45deg);
}
.search-input {
  width: 100%;
  height: 48px;
  padding: 0 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(43, 61, 91, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
[data-theme="dark"] .search-input { background: rgba(8, 15, 25, 0.42); }
.search-input::placeholder { color: var(--muted); }
.search-input:focus { border-color: rgba(79, 124, 247, 0.58); background: var(--surface-solid); box-shadow: 0 0 0 4px rgba(79, 124, 247, 0.12); }
kbd {
  position: absolute;
  right: 12px;
  top: 50%;
  min-width: 24px;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--muted);
  font: 600 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-align: center;
  transform: translateY(-50%);
}

.top-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; min-width: 0; }
.global-status { display: inline-flex; align-items: center; gap: 8px; margin-right: 4px; color: var(--muted-strong); font-size: 13px; font-weight: 650; white-space: nowrap; }
.status-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(36, 186, 106, 0.1), 0 0 12px rgba(36, 186, 106, 0.3); }

.round-btn, .owner-btn, .filter-pill, .soft-btn, .primary-btn, .icon-action, .move-btn, .close-btn {
  border: 0;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}
.round-btn:active, .owner-btn:active, .filter-pill:active, .soft-btn:active, .primary-btn:active, .move-btn:active { transform: scale(0.97); }
.round-btn { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-solid); color: var(--muted-strong); font-size: 20px; }
.round-btn:hover { border-color: var(--line-strong); box-shadow: var(--shadow-small); }
.owner-btn { min-height: 44px; padding: 5px 10px 5px 6px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid transparent; border-radius: 14px; background: transparent; font-weight: 700; white-space: nowrap; }
.owner-btn:hover { border-color: var(--line); background: var(--surface-solid); box-shadow: var(--shadow-small); }
.owner-avatar { width: 32px; height: 32px; border-radius: 10px; font-size: 11px; }

.page { width: min(1480px, 100%); margin: 0 auto; padding: 38px clamp(10px, 3vw, 36px) 24px; }
.intro { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin: 0 0 24px; }
.eyebrow { margin: 0 0 7px; color: #4f75b8; font-size: 11px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.intro h1 { max-width: 760px; margin: 0; font-size: clamp(30px, 3.5vw, 48px); line-height: 1.06; letter-spacing: -0.045em; font-weight: 800; }
.intro-copy { margin: 9px 0 0; color: var(--muted); font-size: 15px; }
.availability { min-height: 44px; padding: 0 16px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); box-shadow: var(--shadow-small); color: var(--muted); font-size: 12px; white-space: nowrap; backdrop-filter: blur(12px); }
.availability strong { color: var(--muted-strong); }

.library-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.library-toolbar h2 { margin: 0 0 2px; font-size: 18px; letter-spacing: -0.02em; }
.library-toolbar p { margin: 0; color: var(--muted); font-size: 12px; }
.filters { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter-pill { min-height: 40px; padding: 0 17px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted-strong); font-size: 13px; font-weight: 700; white-space: nowrap; }
.filter-pill:hover { border-color: var(--line-strong); background: var(--surface-solid); }
.filter-pill.active { border-color: transparent; background: linear-gradient(145deg, #72a1ff, var(--blue)); color: white; box-shadow: 0 9px 20px rgba(79, 124, 247, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.48); }

.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.service-card {
  --accent: #7b61ff;
  position: relative;
  min-width: 0;
  min-height: 190px;
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.57));
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  isolation: isolate;
  animation: card-in 420ms var(--ease-out) both;
  animation-delay: calc(min(var(--index), 8) * 34ms);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
[data-theme="dark"] .service-card { background: linear-gradient(145deg, rgba(28, 42, 58, 0.9), rgba(17, 29, 42, 0.75)); box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,.08); }
.service-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 20%, var(--accent), transparent 48%); opacity: 0.07; transition: opacity 180ms ease; }
.service-card:hover { z-index: 2; transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 22px 46px rgba(45, 63, 96, 0.13); }
.service-card:hover::before { opacity: 1; }
.service-card:active { transform: translateY(-1px) scale(0.985); transition-duration: 80ms; }
.service-card:focus-visible { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(79,124,247,.18), var(--shadow-card); }

.service-icon {
  position: relative;
  width: 78px;
  height: 78px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 23px;
  color: white;
  background:
    linear-gradient(150deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.18) 31%, transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,.35), var(--accent) 68%, var(--accent));
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,.86),
    inset 0 -7px 12px rgba(16,25,60,.28),
    0 11px 22px rgba(71,103,180,.22),
    0 0 25px rgba(98,130,230,.18);
  text-shadow: 0 2px 5px rgba(21, 32, 68, 0.22);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 190ms var(--ease-out), box-shadow 190ms ease;
}
.service-icon::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 48%;
  left: -70%;
  top: -4%;
  border-radius: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.78), transparent);
  transform: rotate(-24deg);
  transition: left 420ms var(--ease-out);
}
.service-icon::after { content: ""; position: absolute; left: 14%; right: 14%; bottom: 5px; height: 16%; border-radius: 50%; background: rgba(255,255,255,.15); filter: blur(2px); }
.service-card:hover .service-icon { transform: translateY(-3px) scale(1.045); box-shadow: inset 0 2px 3px rgba(255,255,255,.9), inset 0 -7px 12px rgba(16,25,60,.3), 0 15px 26px rgba(71,103,180,.27), 0 0 34px rgba(98,130,230,.22); }
.service-card:hover .service-icon::before { left: 55%; }
.icon-glyph { position: relative; z-index: 1; font-size: 39px; font-weight: 500; line-height: 1; }
.service-name { max-width: 100%; margin: 0; overflow: hidden; color: var(--ink); font-size: 15px; font-weight: 800; letter-spacing: -0.02em; text-overflow: ellipsis; white-space: nowrap; }
.service-meta { margin-top: 3px; display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; }
.service-meta .status-dot { width: 6px; height: 6px; box-shadow: 0 0 8px rgba(36,186,106,.3); }
.empty { grid-column: 1 / -1; min-height: 220px; padding: 32px; display: grid; place-items: center; border: 1px dashed var(--line-strong); border-radius: 20px; background: var(--surface); color: var(--muted); text-align: center; }
.empty strong { display: block; margin-bottom: 4px; color: var(--ink); }

.footer { margin-top: 24px; padding: 18px 4px 4px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.footer a { font-weight: 700; text-decoration: none; }
.footer a:hover { color: var(--blue-dark); text-decoration: underline; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; max-width: calc(100% - 32px); padding: 12px 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: #15223a; color: white; box-shadow: var(--shadow-float); font-size: 13px; text-align: center; transform: translateX(-50%); animation: toast-in 220ms var(--ease-out); }
.modal-backdrop { position: fixed; z-index: 80; inset: 0; padding: 20px; display: grid; place-items: center; background: rgba(35, 49, 75, 0.32); backdrop-filter: blur(10px); animation: fade-in 160ms ease both; }
.modal { width: min(520px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 26px; border: 1px solid rgba(255,255,255,.78); border-radius: 24px; background: var(--surface-solid); box-shadow: var(--shadow-float); animation: modal-in 260ms var(--ease-out) both; }
.modal.large { width: min(940px, 100%); }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 22px; }
.modal-head h2 { margin: 0 0 5px; font-size: 23px; letter-spacing: -0.035em; }
.modal-head p { max-width: 620px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.close-btn { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; background: var(--surface-soft); color: var(--muted-strong); font-size: 22px; }
.close-btn:hover { background: var(--blue-soft); color: var(--blue-dark); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: var(--surface-soft); color: var(--ink); }
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(79,124,247,.65); box-shadow: 0 0 0 3px rgba(79,124,247,.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.login-note, .sort-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.error { margin: 12px 0 0; color: var(--danger); font-size: 12px; font-weight: 650; }
.modal-actions { margin-top: 22px; display: flex; justify-content: flex-end; gap: 9px; }
.soft-btn, .primary-btn { min-height: 42px; padding: 0 15px; border-radius: 11px; font-size: 12px; font-weight: 800; }
.soft-btn { border: 1px solid var(--line); background: var(--surface-soft); }
.soft-btn:hover { border-color: var(--line-strong); background: var(--surface-solid); }
.primary-btn { background: linear-gradient(145deg, #72a1ff, var(--blue)); color: white; box-shadow: 0 8px 18px rgba(79,124,247,.23), inset 0 1px 1px rgba(255,255,255,.35); }
.primary-btn:hover { box-shadow: 0 11px 22px rgba(79,124,247,.3), inset 0 1px 1px rgba(255,255,255,.35); transform: translateY(-1px); }
.primary-btn:disabled { opacity: .55; cursor: wait; transform: none; }

.admin-toolbar { margin-bottom: 13px; padding: 12px; display: flex; justify-content: space-between; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); }
.admin-toolbar strong { font-size: 13px; }
.admin-toolbar-actions { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.admin-list { display: flex; flex-direction: column; gap: 7px; }
.admin-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; min-height: 66px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-solid); transition: transform 150ms var(--ease-out), border-color 150ms ease, background-color 150ms ease; }
.admin-row[draggable="true"] { cursor: grab; }
.admin-row.dragging { opacity: .48; transform: scale(.99); }
.admin-row.drag-over { border-color: var(--blue); background: var(--blue-soft); }
.drag-handle { width: 32px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 9px; background: transparent; color: var(--muted); cursor: grab; font-size: 18px; letter-spacing: -3px; }
.admin-info { min-width: 0; }
.admin-info strong { display: block; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.admin-info span { display: block; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.row-actions { display: flex; align-items: center; gap: 5px; }
.move-btn, .icon-action { min-height: 34px; padding: 0 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface-soft); color: var(--muted-strong); font-size: 11px; font-weight: 750; }
.move-btn { width: 34px; padding: 0; font-size: 15px; }
.move-btn:disabled { opacity: .35; cursor: default; }
.icon-action:hover, .move-btn:not(:disabled):hover { border-color: var(--line-strong); background: var(--blue-soft); color: var(--blue-dark); }
.icon-action.danger { color: var(--danger); }

@keyframes card-in { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(10px) scale(.985); } }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 10px); } }

@supports not (backdrop-filter: blur(1px)) {
  .topbar, .availability { background: var(--surface-solid); }
}

@media (max-width: 1180px) {
  .topbar { grid-template-columns: 190px minmax(260px, 1fr) auto; }
  .global-status span:last-child { display: none; }
  .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .app-shell { padding: 8px; }
  .topbar { top: 8px; width: 100%; grid-template-columns: 1fr auto; gap: 10px; padding: 9px 10px; }
  .search-wrap { grid-column: 1 / -1; grid-row: 2; }
  .global-status { display: none; }
  .owner-btn > span:last-child { display: none; }
  .page { padding: 28px 10px 20px; }
  .intro { align-items: flex-start; flex-direction: column; gap: 15px; }
  .availability { min-height: 40px; }
  .library-toolbar { align-items: flex-start; flex-direction: column; }
  .filters { width: 100%; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .topbar { grid-template-columns: minmax(0, 1fr) auto; }
  .global-status { display: none !important; }
  .top-actions { justify-self: end; }
  .brand-mark { width: 42px; height: 42px; border-radius: 13px; }
  .brand-name { font-size: 18px; }
  .round-btn { width: 40px; height: 40px; }
  .owner-btn { padding: 4px; }
  .owner-avatar { width: 34px; height: 34px; border-radius: 11px; }
  .search-input { height: 50px; }
  .page { padding-top: 25px; }
  .intro h1 { font-size: clamp(30px, 9vw, 40px); }
  .intro-copy { font-size: 14px; }
  .availability { max-width: 100%; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
  .library-toolbar h2, .library-toolbar p { display: none; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .service-card { min-height: 174px; padding: 18px 8px 14px; border-radius: 17px; }
  .service-icon { width: 70px; height: 70px; margin-bottom: 13px; border-radius: 21px; }
  .icon-glyph { font-size: 35px; }
  .service-name { font-size: 14px; }
  .footer { align-items: flex-start; flex-direction: column; }
  .modal-backdrop { padding: 10px; }
  .modal { max-height: calc(100vh - 20px); padding: 20px; border-radius: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .admin-toolbar { align-items: flex-start; flex-direction: column; }
  .admin-toolbar-actions { justify-content: flex-start; }
  .admin-row { grid-template-columns: 28px 1fr; }
  .row-actions { grid-column: 1 / -1; justify-content: flex-end; padding-top: 4px; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 16px; }
  .top-actions { gap: 4px; }
  .service-card { min-height: 164px; }
  .service-icon { width: 64px; height: 64px; }
  .service-name { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; animation-delay: 0ms !important; scroll-behavior: auto !important; transition-duration: 1ms !important; }
  .service-card:hover, .service-card:hover .service-icon { transform: none; }
  .service-icon::before { display: none; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(45, 61, 89, 0.45); --line-strong: rgba(25, 40, 68, 0.7); }
  .topbar, .service-card, .modal { background: var(--surface-solid); }
}
