:root {
  color-scheme: light dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07111f;
  color: #e5e7eb;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 36rem),
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.22), transparent 34rem),
    linear-gradient(180deg, #07111f 0%, #0f172a 45%, #111827 100%);
}
.app-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7, 17, 31, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(16px);
}
.app-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 12px 24px;
}
.app-topbar-eyebrow {
  margin: 0;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}
.app-topbar-tools { display: flex; align-items: center; gap: 10px; }
.notification-center { position: relative; }
.notification-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #e2e8f0;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.notification-bell:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(96, 165, 250, 0.4);
}
.notification-bell:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}
.notification-bell[aria-expanded="true"] {
  background: rgba(30, 58, 95, 0.65);
  border-color: rgba(96, 165, 250, 0.45);
}
.notification-bell-icon { display: flex; align-items: center; justify-content: center; }
.notification-bell-icon svg { display: block; }
.notification-unread-dot {
  position: absolute;
  inset-block-start: 7px;
  inset-inline-end: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
  border: 2px solid #0b1220;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.notification-unread-count {
  position: absolute;
  inset-block-end: 1px;
  inset-inline-end: 1px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.notification-popup {
  position: absolute;
  inset-block-start: calc(100% + 10px);
  inset-inline-end: 0;
  width: min(380px, calc(100vw - 32px));
  max-height: min(70vh, 480px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.notification-popup:not([hidden]) {
  display: flex;
  flex-direction: column;
}
.notification-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(7, 17, 31, 0.35);
}
.notification-popup-title {
  font-size: 14px;
  font-weight: 900;
  color: #e2e8f0;
  letter-spacing: 0.02em;
}
.notification-mark-all {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.notification-mark-all:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.notification-popup-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 12px 12px 10px;
  overscroll-behavior: contain;
}
.notification-popup-footer {
  padding: 8px 12px 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(7, 17, 31, 0.2);
}
.notification-popup-footer .notification-push {
  width: 100%;
  padding: 9px 12px;
  font-size: 12px;
}
.shell { width: min(1180px, 100%); margin: 0 auto; padding: 24px; }
.card {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  margin-bottom: 20px;
  backdrop-filter: blur(18px);
}
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.16);
}
.eyebrow { margin: 0 0 8px; color: #93c5fd; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }
h1 { margin: 0; font-size: clamp(48px, 10vw, 104px); line-height: 0.95; letter-spacing: -0.06em; }
h2 { margin: 0; }
h3 { margin: 0; font-size: 24px; }
#meta { color: #cbd5e1; margin: 10px 0 0; }
.hero-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.language-select {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 800;
}
.language-select select {
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  padding: 9px 12px;
  font: inherit;
}
.status { padding: 9px 13px; border-radius: 999px; background: #334155; white-space: nowrap; font-weight: 800; }
.status.ok { background: #14532d; color: #bbf7d0; }
.status.warn { background: #713f12; color: #fde68a; }
.section-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}
.muted { color: #94a3b8; font-size: 14px; }
.metrics-grid, .insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.insights-grid { grid-template-columns: 1.25fr .75fr; }
.insights-grid > .card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.insights-grid > .card > .section-title {
  flex: 0 0 auto;
}
.insights-grid > .card > .chart {
  flex: 1 1 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.insights-grid #weight-chart > .telemetry-controls {
  flex-shrink: 0;
}
.insights-grid #weight-chart > svg {
  flex: 0 0 auto;
  width: 100%;
  height: 360px;
  min-height: 360px;
}
.insights-grid #weight-chart > .empty-chart {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insights-grid #fill-chart {
  flex: 1 1 0;
  min-height: 400px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.insights-grid #fill-chart .bar-chart {
  gap: 10px;
  padding: 6px 0 8px;
}
.insights-grid #fill-chart > .empty-chart {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.metric-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.88), rgba(15, 23, 42, 0.78));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
  padding: 18px;
}
.metric-card span, .metric-card small { display: block; color: #94a3b8; }
.metric-card strong { display: block; margin: 10px 0 6px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.04em; }
.last-fill-value { margin: 6px 0 4px; display: grid; gap: 3px; }
.metric-card .last-fill-time {
  display: block;
  color: #e5e7eb;
  font-size: clamp(14px, 1.9vw, 20px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.metric-card .last-fill-silo {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
[dir="rtl"] .last-fill-silo { text-align: end; }
.silo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.silo-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.85));
}
.silo-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.pill { border-radius: 999px; padding: 7px 10px; font-size: 12px; font-weight: 900; }
.pill.ok { background: rgba(34, 197, 94, 0.15); color: #86efac; }
.pill.warn { background: rgba(245, 158, 11, 0.16); color: #fde68a; }
.pill.neutral { background: rgba(148, 163, 184, 0.16); color: #cbd5e1; }
.silo-visual { display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 18px; margin: 20px 0; }
.silo-visual strong { font-size: 46px; line-height: 1; letter-spacing: -0.05em; }
.silo-tank {
  width: 112px;
  height: 158px;
  border: 3px solid rgba(203, 213, 225, 0.75);
  border-radius: 22px 22px 30px 30px;
  position: relative;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: inset 0 0 30px rgba(15, 23, 42, 0.8);
}
.silo-tank::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 18px;
  right: 18px;
  height: 16px;
  border: 3px solid rgba(203, 213, 225, 0.75);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
.silo-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--fill);
  background: linear-gradient(180deg, #67e8f9, #2563eb 55%, #1d4ed8);
  transition: height 300ms ease;
}
.silo-fill::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: -10px;
  height: 22px;
  border-radius: 50%;
  background: rgba(191, 219, 254, 0.8);
}
.silo-shine {
  position: absolute;
  inset: 14px auto 14px 18px;
  width: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.silo-details { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; color: #94a3b8; }
.silo-details b { color: #e5e7eb; text-align: right; overflow: hidden; text-overflow: ellipsis; }
[dir="rtl"] .silo-details b { text-align: left; }
.chart {
  min-height: 240px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  padding: 14px;
}
.telemetry-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.telemetry-controls label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(15, 23, 42, 0.55);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}
.telemetry-controls input { accent-color: var(--series-color, #38bdf8); }
.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--series-color, #38bdf8);
  box-shadow: 0 0 12px var(--series-color, #38bdf8);
}
.chart svg { width: 100%; height: 240px; display: block; }
.chart text { fill: #94a3b8; font-size: 13px; }
.chart-grid { stroke: rgba(148, 163, 184, 0.16); stroke-width: 1; }
.chart-depletion-fill {
  fill: rgba(248, 113, 113, 0.14);
  pointer-events: none;
}
.chart-segment-drop {
  fill: #f1f5f9;
  font-size: 12px;
  font-weight: 800;
  font-family: inherit;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.chart-area { fill: var(--series-color, #38bdf8); opacity: 0.12; }
.chart-line { fill: none; stroke: var(--series-color, #38bdf8); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.chart-dot { fill: #0f172a; stroke: var(--series-color, #38bdf8); stroke-width: 3; }
.bar-chart { display: grid; gap: 14px; padding: 12px 0; }
.bar-row { display: grid; grid-template-columns: 132px 1fr minmax(72px, auto); align-items: center; gap: 10px; color: #cbd5e1; }
.delivery-meta { display: grid; gap: 2px; min-width: 0; }
.delivery-meta strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.delivery-meta small { color: #94a3b8; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.delivery-bar { display: grid; gap: 6px; }
.bar-track { display: flex; height: 16px; background: rgba(51, 65, 85, 0.85); border-radius: 999px; overflow: hidden; }
.bar-before { height: 100%; background: repeating-linear-gradient(135deg, rgba(148, 163, 184, 0.45) 0 8px, rgba(100, 116, 139, 0.45) 8px 16px); }
.bar-fill { height: 100%; background: linear-gradient(90deg, #22c55e, #84cc16); box-shadow: 0 0 18px rgba(132, 204, 22, 0.35); }
.delivery-labels { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12px; color: #94a3b8; }
.delivery-labels strong { color: #bbf7d0; white-space: nowrap; }
.empty-chart { min-height: 208px; display: grid; place-items: center; color: #94a3b8; }
.delivery-scroll {
  overscroll-behavior: contain;
}
.notifications-list { display: grid; gap: 10px; }
.notification-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.58);
}
.notification-item.unread {
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(37, 99, 235, 0.14);
}
.notification-item h3 { margin: 8px 0 4px; font-size: 18px; }
.notification-item p { margin: 0 0 6px; color: #cbd5e1; }
.notification-item small { color: #94a3b8; }
.compact-card { padding-bottom: 8px; }
.readings-panel { padding: 0; overflow: hidden; }
.readings-panel summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  list-style: none;
}
.readings-panel summary::-webkit-details-marker { display: none; }
.readings-panel summary::after {
  content: "Show";
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(148, 163, 184, 0.14);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
}
.readings-panel[open] summary::after { content: "Hide"; }
.readings-panel .eyebrow { display: block; margin-bottom: 4px; }
.readings-panel strong { font-size: 18px; }
.readings-panel .table-wrap {
  max-height: 340px;
  overflow: auto;
  padding: 0 18px 12px;
  overscroll-behavior: contain;
}
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; min-width: 640px; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid rgba(148, 163, 184, 0.18); }
[dir="rtl"] th, [dir="rtl"] td { text-align: right; }
th { color: #93c5fd; font-size: 13px; }
td { color: #e2e8f0; }
td small { display: block; margin-top: 3px; color: #94a3b8; }
.raw { max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #94a3b8; }
@media (max-width: 900px) {
  .metrics-grid, .insights-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .shell { padding: 14px; }
  .card { border-radius: 22px; padding: 16px; margin-bottom: 14px; }
  .hero { display: block; padding: 20px; }
  .hero::after { width: 220px; height: 220px; }
  .hero-actions { margin-top: 16px; justify-content: space-between; }
  .hero-actions button { flex: 1; }
  .language-select { width: 100%; justify-content: space-between; }
  [dir="rtl"] .hero-actions { direction: rtl; }
  h1 { font-size: clamp(44px, 18vw, 72px); overflow-wrap: anywhere; }
  h2 { font-size: 22px; }
  h3 { font-size: 20px; }
  #meta { font-size: 14px; }
  .section-title { align-items: flex-start; }
  .section-title .muted { display: none; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-card { padding: 15px; border-radius: 18px; }
  .metric-card strong { font-size: 34px; }
  .metric-card .last-fill-time { font-size: 16px; }
  .silo-grid { grid-template-columns: 1fr; gap: 12px; }
  .silo-card { border-radius: 20px; padding: 15px; }
  .silo-header { align-items: center; }
  .silo-visual { grid-template-columns: 82px 1fr; gap: 14px; margin: 16px 0; }
  .silo-visual strong { font-size: 40px; }
  .silo-tank { width: 82px; height: 124px; border-radius: 18px 18px 24px 24px; }
  .silo-tank::before { left: 14px; right: 14px; }
  .silo-details { grid-template-columns: 1fr; gap: 4px; }
  .silo-details b { text-align: left; margin-bottom: 8px; }
  .chart { min-height: 190px; padding: 10px; border-radius: 16px; }
  .insights-grid > .card > .chart,
  .insights-grid #fill-chart {
    min-height: 300px;
  }
  .chart svg { height: 190px; }
  .insights-grid #weight-chart > svg {
    height: 260px;
    min-height: 260px;
  }
  .chart text { font-size: 16px; }
  .telemetry-controls { max-height: 88px; overflow: auto; }
  .telemetry-controls label { font-size: 11px; padding: 6px 8px; }
  .bar-row { grid-template-columns: 1fr; gap: 8px; font-size: 13px; }
  .bar-row > strong { grid-column: 1; }
  .delivery-labels { display: grid; grid-template-columns: 1fr; gap: 3px; }
  .app-topbar-inner { padding: 10px 14px; }
  .app-topbar-eyebrow { max-width: min(220px, 50vw); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .notification-popup { width: min(100vw - 20px, 380px); }
  .notification-item {
    display: grid;
    grid-template-columns: 1fr;
  }
  .readings-panel summary { padding: 14px 16px; }
  .readings-panel .table-wrap {
    max-height: 420px;
    overflow: auto;
    padding: 0 16px 10px;
  }
  .table-wrap { overflow: visible; }
  table, thead, tbody, tr, th, td { display: block; }
  table { min-width: 0; width: 100%; }
  thead { display: none; }
  tr {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 16px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: rgba(15, 23, 42, 0.55);
  }
  td {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    overflow-wrap: anywhere;
  }
  td:last-child { border-bottom: 0; }
  td::before {
    content: attr(data-label);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  [dir="rtl"] td::before { text-align: right; }
  .raw { max-width: none; white-space: normal; }
}

.auth-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
/** `[hidden]` alone loses to `.auth-screen { display: flex }` (same specificity); without this the sign-in layer stays on top after JS sets `hidden`. */
.auth-screen[hidden] {
  display: none !important;
}
.app-root[hidden] {
  display: none !important;
}
.auth-card {
  width: min(420px, 100%);
}
.auth-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
}
.auth-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #cbd5e1;
}
.auth-form input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
}
.auth-form button {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(96, 165, 250, 0.45);
  background: rgba(37, 99, 235, 0.35);
  color: #e2e8f0;
  font-weight: 700;
  cursor: pointer;
}
.auth-error {
  color: #fca5a5;
  font-size: 14px;
  margin: 0 0 8px;
}
.empty-silos-msg .empty-silos-hint {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 42rem;
}
.auth-error-box {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(127, 29, 29, 0.35);
  margin-bottom: 12px;
}
.auth-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.auth-field-password .auth-label-row > span:first-child {
  min-width: 0;
}
.auth-forgot-link {
  color: #93c5fd;
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  flex-shrink: 0;
}
.auth-forgot-link:hover {
  color: #bfdbfe;
}
.auth-screen-banner {
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #bae6fd;
}
.form-grid {
  display: grid;
  gap: 12px;
}
.app-root { min-height: 100vh; }
.sign-out-btn {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.75);
  color: #e2e8f0;
  font-size: 13px;
  cursor: pointer;
}
.sign-out-btn:hover {
  border-color: rgba(96, 165, 250, 0.45);
}

@media (max-width: 380px) {
  .shell { padding: 10px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .silo-visual { grid-template-columns: 72px 1fr; }
  .silo-visual strong { font-size: 34px; }
  .silo-tank { width: 72px; height: 112px; }
  td { grid-template-columns: 88px 1fr; }
}
