:root {
  --bg: #040507;
  --bg-alt: #0a0c10;
  --surface: rgba(17, 20, 27, 0.92);
  --surface-solid: #11141b;
  --surface-strong: #171b24;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f7f8fb;
  --ink-soft: #a5adba;
  --ink-muted: #737d8f;
  --red: #d71f2c;
  --red-bright: #ff3f51;
  --amber: #ffb33a;
  --green: #3dcc86;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 22px;
  --radius-xl: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  font-family: "Assistant", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(140deg, rgba(215, 31, 44, 0.24), transparent 24%),
    radial-gradient(circle at 85% 0%, rgba(255, 179, 58, 0.12), transparent 18%),
    linear-gradient(180deg, #040507 0%, #07090d 48%, #10141c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 72px, 72px 100%;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 82%);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.app-body,
.login-body {
  min-height: 100vh;
}

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

.app-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: 28px 22px 28px;
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.97) 0%, rgba(15, 18, 24, 0.98) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.app-sidebar::before {
  content: "";
  position: absolute;
  inset: auto -12% -8% -12%;
  height: 220px;
  background: radial-gradient(circle, rgba(215, 31, 44, 0.18), transparent 68%);
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-bright), #890812);
  box-shadow: 0 20px 44px rgba(215, 31, 44, 0.35);
  color: white;
  font-family: "Archivo", "Montserrat", "Assistant", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px -14px 8px 52%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-24deg);
}

.brand-copy strong,
.app-topbar h1,
.hero-band h2,
.panel h3,
.login-panel h1,
.login-panel h2,
.stat-card strong,
.control-card strong,
.signal-card strong,
.action-tile strong,
.badge-count {
  font-family: "Archivo", "Montserrat", "Assistant", sans-serif;
  letter-spacing: -0.02em;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.24rem;
  color: var(--ink);
}

.brand-copy small {
  font-family: "Montserrat", "Assistant", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.sidebar-copy {
  margin: 0 0 20px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.98rem;
}

.app-nav {
  display: grid;
  gap: 8px;
}

.app-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  background: transparent;
}

.app-nav-link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.app-nav-link:hover,
.app-nav-link.is-active {
  transform: translateX(-3px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.08);
}

.app-nav-link:hover::after,
.app-nav-link.is-active::after {
  background: linear-gradient(135deg, var(--red-bright), var(--amber));
  box-shadow: none;
}

.sidebar-panel,
.panel,
.stat-card,
.login-panel,
.hero-band,
.control-card,
.action-tile {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.sidebar-panel,
.panel,
.stat-card,
.login-panel,
.hero-band {
  background: linear-gradient(180deg, rgba(23, 27, 36, 0.96) 0%, rgba(15, 18, 24, 0.93) 100%);
}

.sidebar-panel {
  position: relative;
  margin-top: 18px;
  border-radius: 24px;
  padding: 18px;
  overflow: hidden;
}

.sidebar-panel::before,
.panel::before,
.stat-card::before,
.hero-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 63, 81, 0.92), rgba(255, 179, 58, 0.85), transparent);
}

.sidebar-panel h3,
.panel h3 {
  margin: 0;
}

.mini-list,
.stack-list,
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.mini-list li,
.stack-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-list li:last-child,
.stack-list li:last-child {
  border-bottom: 0;
}

.mini-list span,
.stack-list span {
  color: var(--ink-soft);
}

.mini-list strong,
.stack-list strong {
  font-family: "Archivo", "Montserrat", "Assistant", sans-serif;
  color: var(--ink);
}

.sidebar-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.sidebar-quick-link {
  min-height: 78px;
  display: grid;
  gap: 6px;
  align-content: end;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.sidebar-quick-link:hover {
  border-color: rgba(255, 63, 81, 0.35);
  background: rgba(255, 63, 81, 0.09);
}

.sidebar-quick-link span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.sidebar-quick-link strong {
  font-size: 1rem;
}

.app-main {
  position: relative;
  padding: 30px 32px 42px;
}

.app-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(215, 31, 44, 0.12), transparent 68%);
  pointer-events: none;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.topbar-title {
  min-width: 0;
}

.page-kicker,
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 63, 81, 0.38);
  background: rgba(255, 63, 81, 0.12);
  color: white;
  font-family: "Montserrat", "Assistant", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.app-topbar h1 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.94;
}

.page-summary,
.hero-copy p,
.panel p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.page-summary {
  margin: 12px 0 0;
  max-width: 66ch;
}

.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
}

.topbar-actions,
.quick-actions,
.form-actions,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-actions {
  align-items: center;
  justify-content: flex-end;
}

.topbar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  min-width: min(420px, 100%);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.topbar-search-input {
  width: min(340px, 44vw);
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.topbar-search-input::placeholder {
  color: var(--ink-muted);
}

.solid-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: "Montserrat", "Assistant", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.solid-button {
  color: white;
  background: linear-gradient(135deg, var(--red-bright), #a30d18);
  box-shadow: 0 18px 40px rgba(215, 31, 44, 0.3);
}

.ghost-button {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.solid-button:hover,
.ghost-button:hover,
.action-tile:hover,
.control-card:hover,
.sidebar-quick-link:hover {
  transform: translateY(-2px);
}

.ghost-button:hover {
  border-color: rgba(255, 63, 81, 0.34);
  color: white;
}

.utility-button {
  padding-inline: 14px;
}

.control-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.control-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(19, 23, 30, 0.92) 0%, rgba(12, 15, 20, 0.96) 100%);
  text-decoration: none;
}

.control-card span {
  color: var(--ink-soft);
  font-weight: 700;
}

.control-card strong {
  font-size: 2.2rem;
  line-height: 1;
}

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

.control-card.is-alert strong {
  color: var(--amber);
}

.hero-band,
.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 24px;
  animation: rise-in 0.45s ease;
}

.hero-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.hero-band::after,
.action-tile::after {
  content: "";
  position: absolute;
  inset: auto -24px -54px auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(215, 31, 44, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-band.compact {
  padding: 22px 24px;
}

.hero-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.hero-copy p {
  margin: 0;
  max-width: 62ch;
}

.action-grid,
.stats-grid,
.content-grid,
.kanban-grid,
.signal-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.action-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.action-tile {
  position: relative;
  min-height: 146px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(24, 28, 37, 0.95) 0%, rgba(15, 18, 24, 0.95) 100%);
  text-decoration: none;
  display: grid;
  gap: 8px;
  align-content: end;
}

.action-tile.primary {
  border-color: rgba(255, 63, 81, 0.42);
}

.action-tile span {
  color: var(--ink-soft);
  font-family: "Montserrat", "Assistant", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.action-tile strong {
  font-size: 1.18rem;
  line-height: 1.08;
}

.action-tile small {
  color: var(--ink-soft);
  line-height: 1.65;
}

.signal-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.signal-card {
  min-height: 120px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.signal-card span {
  color: var(--ink-soft);
}

.signal-card strong {
  font-size: 2rem;
}

.signal-card small {
  color: var(--ink-muted);
  line-height: 1.6;
}

.entity-hero {
  align-items: flex-start;
}

.entity-title-block h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
}

.entity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.entity-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

.two-one {
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
}

.one-one {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

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

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-radius: 28px;
  padding: 20px;
}

.stat-card span {
  color: var(--ink-soft);
  font-weight: 700;
}

.stat-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
  line-height: 1;
}

.stat-card.accent strong {
  color: var(--amber);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-head a {
  color: var(--red-bright);
  text-decoration: none;
  font-weight: 800;
}

.data-table a,
.task-card a,
.timeline-list a,
.panel a:not(.solid-button):not(.ghost-button):not(.action-tile):not(.control-card):not(.sidebar-quick-link) {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  text-align: right;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: top;
}

.data-table th {
  color: var(--ink-soft);
  font-family: "Montserrat", "Assistant", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.timeline-list li,
.audit-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.timeline-list li:last-child,
.audit-list li:last-child {
  border-bottom: 0;
}

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

.timeline-list span,
.timeline-list small,
.task-card span,
.task-card small,
.audit-list span,
.audit-list small {
  color: var(--ink-soft);
}

.badge-count,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 63, 81, 0.12);
  border: 1px solid rgba(255, 63, 81, 0.24);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
}

.task-stack {
  display: grid;
  gap: 12px;
}

.task-card {
  padding: 14px;
  display: grid;
  gap: 6px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.task-empty {
  color: var(--ink-soft);
}

.messages-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.message-chip {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(61, 204, 134, 0.22);
  background: rgba(61, 204, 134, 0.1);
  color: #d9ffeb;
}

.message-chip.warning {
  border-color: rgba(255, 179, 58, 0.3);
  background: rgba(255, 179, 58, 0.14);
  color: #ffe8b1;
}

.message-chip.error {
  border-color: rgba(255, 63, 81, 0.32);
  background: rgba(255, 63, 81, 0.12);
  color: #ffd5d9;
}

.app-form {
  display: grid;
  gap: 16px;
}

.compact-form {
  margin-top: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 800;
}

.app-input,
.app-select,
.app-textarea,
.login-panel input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.app-select option {
  color: var(--ink);
  background: var(--surface-solid);
}

.app-input:focus,
.app-select:focus,
.app-textarea:focus,
.login-panel input:focus {
  border-color: rgba(255, 63, 81, 0.38);
  box-shadow: 0 0 0 3px rgba(255, 63, 81, 0.12);
}

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

.app-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--red-bright);
}

.field-error {
  color: #ff8e98;
}

.side-note {
  align-self: start;
}

.inline-form {
  margin: 0;
}

.kv-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.kv-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.kv-list div:last-child {
  border-bottom: 0;
}

.kv-list dt {
  font-weight: 800;
  color: var(--ink-soft);
}

.kv-list dd {
  margin: 0;
}

.note-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.9;
  color: var(--ink-soft);
}

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  padding: 28px;
}

.login-panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
}

.login-panel.intro::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 63, 81, 0.26), transparent 70%);
}

.login-panel.intro p {
  max-width: 56ch;
  color: var(--ink-soft);
  line-height: 1.9;
}

.login-panel.form form {
  display: grid;
  gap: 16px;
}

.login-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.login-bullets span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
}

.login-hint {
  margin-top: 18px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.search-layout {
  display: grid;
  gap: 16px;
}

.search-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
}

.search-chip strong {
  color: white;
}

.full-width {
  width: 100%;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1240px) {
  .control-strip,
  .five-up,
  .four-up,
  .three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .topbar-search {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: relative;
    min-height: auto;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .app-nav {
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 1fr);
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .sidebar-quick-grid {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    overflow-x: auto;
  }

  .app-topbar,
  .hero-band,
  .two-up,
  .two-one,
  .one-one,
  .login-shell {
    display: grid;
    grid-template-columns: 1fr;
  }

  .entity-meta,
  .topbar-meta {
    gap: 8px;
  }

  .topbar-search-input {
    width: 100%;
  }

  .kv-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .control-strip,
  .five-up,
  .four-up,
  .three-up,
  .two-up,
  .kanban-grid,
  .action-grid,
  .signal-grid,
  .sidebar-quick-grid {
    grid-template-columns: 1fr;
  }

  .app-main {
    padding: 18px;
  }

  .app-topbar h1 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-band,
  .panel,
  .sidebar-panel,
  .stat-card,
  .login-panel,
  .control-card,
  .action-tile {
    border-radius: 24px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .topbar-actions,
  .quick-actions,
  .form-actions,
  .inline-links {
    width: 100%;
  }

  .solid-button,
  .ghost-button {
    flex: 1 1 180px;
  }
}
