:root {
  --bg: #f4efe6;
  --panel: rgba(255, 252, 247, 0.88);
  --panel-strong: #fffaf2;
  --text: #17313b;
  --muted: #5f7780;
  --line: rgba(23, 49, 59, 0.12);
  --teal: #0d7c86;
  --teal-dark: #0a5d65;
  --orange: #e66a32;
  --gold: #efb24d;
  --red: #c63b31;
  --green: #1f8a52;
  --ink-soft: #eff5f5;
  --shadow: 0 24px 60px rgba(23, 49, 59, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 124, 134, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(230, 106, 50, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
  min-height: 100vh;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px 24px 40px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  margin-bottom: 26px;
}

.hero-copy,
.hero-panel,
.panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: '';
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 178, 77, 0.32), rgba(230, 106, 50, 0.16));
}

.eyebrow,
.panel-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

.hero h1,
.panel h2,
.panel h3 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  max-width: 12ch;
}

.hero-text {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 18px 0 24px;
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(23, 49, 59, 0.95), rgba(13, 124, 134, 0.92));
  color: #f9fbfb;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.hero-panel li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-actions,
.import-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.button.primary {
  background: var(--teal);
  color: white;
}

.button.secondary {
  background: #183944;
  color: white;
}

.button.ghost {
  background: rgba(13, 124, 134, 0.08);
  color: var(--teal-dark);
  border: 1px solid rgba(13, 124, 134, 0.18);
}

.stats-grid,
.summary-grid,
.display-chart-grid {
  display: grid;
  gap: 14px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.summary-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 18px;
}

.display-chart-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.stat-card,
.summary-card,
.chart-card {
  background: var(--panel-strong);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.stat-card p,
.summary-card p,
.chart-card p {
  margin: 0;
}

.stat-value,
.summary-value {
  font-size: 34px;
  font-weight: 800;
  margin-top: 8px;
}

.stat-label,
.summary-label,
.chart-label {
  color: var(--muted);
  font-size: 14px;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
}

.lower-grid,
.dataset-display-panel {
  margin-top: 22px;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 24px;
}

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

.dataset-display-head {
  margin-bottom: 22px;
}

.panel-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(13, 124, 134, 0.1);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field-grid {
  display: grid;
  gap: 16px;
}

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

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

.field span {
  font-size: 14px;
  font-weight: 700;
}

.field select,
.field input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
}

.compact-field span {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compact-field input,
.compact-field select {
  min-width: 180px;
}

.access-card,
.dropzone {
  margin-top: 18px;
  border-radius: 18px;
  border: 1.5px dashed rgba(13, 124, 134, 0.24);
  background: linear-gradient(180deg, rgba(13, 124, 134, 0.06), rgba(255, 255, 255, 0.65));
  padding: 18px;
}

.access-card {
  display: grid;
  gap: 12px;
}

.access-list,
.scope-list,
.mini-stat-row,
.legend-row,
.recent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.badge.good {
  color: #0f6c42;
  background: rgba(31, 138, 82, 0.12);
}

.badge.warn {
  color: #9a4d08;
  background: rgba(239, 178, 77, 0.2);
}

.badge.bad {
  color: #8f261f;
  background: rgba(198, 59, 49, 0.14);
}

.dropzone {
  text-align: center;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.dropzone.drag-over {
  border-color: var(--orange);
  background: rgba(230, 106, 50, 0.08);
  transform: scale(1.01);
}

.dropzone-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.dropzone-note,
.intro-copy {
  margin: 0;
  color: var(--muted);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.table-wrap.empty {
  padding: 26px;
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
 td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(24, 57, 68, 0.04);
}

tr:last-child td {
  border-bottom: 0;
}

.code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status-chip.valid,
.status-chip.new,
.status-chip.updated {
  background: rgba(31, 138, 82, 0.13);
  color: var(--green);
}

.status-chip.error,
.status-chip.conflict {
  background: rgba(198, 59, 49, 0.14);
  color: var(--red);
}

.status-chip.warning {
  background: rgba(239, 178, 77, 0.22);
  color: #9a4d08;
}

.segmented-control {
  background: rgba(23, 49, 59, 0.06);
  border-radius: 999px;
  padding: 5px;
  display: inline-flex;
  gap: 4px;
}

.segment {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.segment.active {
  background: white;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(23, 49, 59, 0.09);
}

.dataset-display-panel {
  display: grid;
  gap: 22px;
}

.student-display-top,
.student-display-bottom {
  display: grid;
  gap: 16px;
}

.chart-card {
  display: grid;
  gap: 14px;
  min-height: 240px;
}

.chart-card.highlight {
  background: linear-gradient(180deg, rgba(24, 57, 68, 0.98), rgba(13, 124, 134, 0.95));
  color: white;
  overflow: hidden;
  position: relative;
}

.chart-card.highlight::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(239, 178, 77, 0.18);
}

.chart-card.highlight .chart-label,
.chart-card.highlight .muted,
.chart-card.highlight .mini-stat-label {
  color: rgba(255, 255, 255, 0.74);
}

.big-metric {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-stat {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-stat-value {
  font-size: 22px;
  font-weight: 800;
}

.mini-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stacked-bar {
  display: flex;
  width: 100%;
  height: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(23, 49, 59, 0.08);
}

.stacked-bar-segment.male {
  background: linear-gradient(90deg, #0d7c86, #15a6b2);
}

.stacked-bar-segment.female {
  background: linear-gradient(90deg, #efb24d, #ffcb74);
}

.legend-row {
  display: grid;
  gap: 10px;
}

.legend-item {
  display: grid;
  gap: 4px;
}

.legend-label-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.legend-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.legend-dot.male {
  background: #0d7c86;
}

.legend-dot.female {
  background: #efb24d;
}

.school-bars {
  display: grid;
  gap: 12px;
}

.school-bar-row {
  display: grid;
  gap: 6px;
}

.school-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.school-bar-track {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(23, 49, 59, 0.08);
  overflow: hidden;
}

.school-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(13, 124, 134, 0.92), rgba(230, 106, 50, 0.88));
}

.recent-list {
  display: grid;
  gap: 10px;
}

.recent-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(23, 49, 59, 0.04);
}

.recent-item strong {
  display: block;
}

.table-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.table-toolbar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.muted {
  color: var(--muted);
}

.helper {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .hero,
  .workspace-grid,
  .stats-grid,
  .summary-grid,
  .two-col,
  .display-chart-grid,
  .mini-stat-row {
    grid-template-columns: 1fr;
  }

  .panel-head,
  .table-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: 100%;
    padding: 14px 14px 28px;
  }

  .hero-copy,
  .hero-panel,
  .panel {
    padding: 18px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .button,
  .segment {
    width: 100%;
  }

  .hero-actions,
  .import-actions,
  .segmented-control,
  .table-toolbar-filters {
    width: 100%;
  }

  .compact-field input,
  .compact-field select {
    min-width: 100%;
  }
}
.master-crud-layout {
  display: grid;
  gap: 16px;
}

.master-editor-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.master-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button.danger {
  background: rgba(198, 59, 49, 0.12);
  color: var(--red);
  border: 1px solid rgba(198, 59, 49, 0.2);
}

.table-row-clickable {
  cursor: pointer;
}

.table-row-clickable:hover td {
  background: rgba(13, 124, 134, 0.05);
}

.table-row-selected td {
  background: rgba(13, 124, 134, 0.1);
}

.field-note {
  font-size: 12px;
  color: var(--muted);
}
.two-col-span {
  grid-column: span 2;
}

.login-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(24, 133, 140, 0.25), transparent 30%),
    linear-gradient(145deg, #ece8df 0%, #f7f3ea 55%, #ebe4d5 100%);
  color: var(--text-strong);
}

.login-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 48px 24px;
}

.login-stage-card {
  background: rgba(252, 250, 245, 0.88);
  border: 1px solid rgba(30, 60, 71, 0.08);
  border-radius: 32px;
  box-shadow: 0 26px 70px rgba(30, 60, 71, 0.12);
  backdrop-filter: blur(12px);
}

.login-stage-copy {
  padding: 44px;
}

.login-stage-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.02;
}

.login-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.login-feature-list {
  display: grid;
  gap: 14px;
}

.login-feature-list article {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 60, 71, 0.08);
}

.login-feature-list p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.login-form-card {
  padding: 32px;
}

.login-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.login-submit {
  width: 100%;
  justify-content: center;
}

.login-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(30, 60, 71, 0.06);
  color: var(--text-strong);
  font-size: 0.95rem;
}

.login-status[data-tone="success"] {
  background: rgba(39, 174, 96, 0.14);
  color: #12643a;
}

.login-status[data-tone="error"] {
  background: rgba(214, 48, 49, 0.12);
  color: #8c2323;
}

.session-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 60, 71, 0.08);
  box-shadow: 0 18px 40px rgba(30, 60, 71, 0.08);
}

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

.session-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 920px) {
  .login-shell {
    grid-template-columns: 1fr;
    padding: 24px 14px 40px;
  }

  .login-stage-copy,
  .login-form-card {
    padding: 28px;
  }

  .session-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
.school-name-list {
  display: grid;
  gap: 10px;
}

.school-name-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(23, 49, 59, 0.04);
}

.school-name-index {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 124, 134, 0.12);
  color: #0d7c86;
  font-size: 12px;
  font-weight: 700;
}

.table-pagination {
  margin-top: 14px;
}

.table-pagination-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 49, 59, 0.08);
}

.table-pagination-actions {
  display: flex;
  gap: 10px;
}

.pagination-button {
  min-width: 122px;
  justify-content: center;
}
@media (max-width: 720px) {
  .table-pagination-inner,
  .table-pagination-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.view-section[hidden],
.batch-modal[hidden] {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

.app-shell {
  display: grid;
  gap: 22px;
}

.app-topbar {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) auto auto;
  gap: 18px;
  align-items: center;
}

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

.brand-block strong {
  font-size: 24px;
}

.topbar-nav {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(23, 49, 59, 0.06);
}

.nav-pill {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.nav-pill.active {
  background: white;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(23, 49, 59, 0.08);
}

.topbar-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.session-mini {
  display: grid;
  gap: 4px;
  min-width: 220px;
}

.app-banner.is-collapsed {
  display: none;
}

.home-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
}

.lower-home-grid {
  align-items: stretch;
}

.compact-head {
  margin-bottom: 14px;
}

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

.home-insight-card,
.ownership-card,
.map-school-card,
.level-row {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.insight-number {
  margin: 8px 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.insight-compact {
  font-size: 16px;
}

.level-breakdown-list {
  display: grid;
  gap: 12px;
}

.level-row {
  display: grid;
  gap: 10px;
}

.level-row-head,
.metric-strip,
.badge-row,
.map-school-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.level-row-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(23, 49, 59, 0.08);
}

.level-row-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(13, 124, 134, 0.92), rgba(230, 106, 50, 0.88));
}

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

.ownership-card h3,
.map-school-card h3 {
  margin-top: 6px;
  font-size: 28px;
}

.ownership-card.is-public {
  background: linear-gradient(180deg, rgba(13, 124, 134, 0.1), rgba(255, 255, 255, 0.84));
}

.ownership-card.is-private {
  background: linear-gradient(180deg, rgba(230, 106, 50, 0.12), rgba(255, 255, 255, 0.84));
}

.stacked-metrics {
  margin-top: 18px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.school-map-canvas {
  min-height: 460px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(23, 49, 59, 0.06);
}

.map-side-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.map-school-card.is-empty {
  min-height: 180px;
  align-content: center;
}

.map-school-metrics div {
  min-width: 90px;
  display: grid;
  gap: 6px;
}

.map-school-metrics strong {
  font-size: 30px;
}

.dataset-page-grid,
.dataset-page-explorer {
  margin-top: 0;
}

.compact-panel {
  min-height: 100%;
}

.compact-import-actions {
  margin-top: 18px;
}

.collapsible-panel {
  overflow: hidden;
}

.collapsible-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.collapsible-summary::-webkit-details-marker {
  display: none;
}

.master-panel-body {
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

.inside-head {
  margin-bottom: 4px;
}

.batch-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.batch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 28, 0.52);
  backdrop-filter: blur(6px);
}

.batch-modal-card {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 90px rgba(23, 49, 59, 0.22);
}

.modal-preview-table {
  margin-top: 18px;
}

.modal-actions {
  margin-top: 18px;
  justify-content: flex-end;
}

.leaflet-container {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 1120px) {
  .app-topbar,
  .home-grid,
  .map-layout,
  .ownership-grid,
  .home-insight-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .topbar-nav,
  .session-mini,
  .modal-actions {
    width: 100%;
  }

  .nav-pill,
  .batch-modal-card {
    width: 100%;
  }

  .brand-block strong {
    font-size: 20px;
  }

  .school-map-canvas {
    min-height: 320px;
  }
}
