/* ==========================================================================
   NextGen Download Manager (NextGen-DLM)
   Technical Benchmarks Stylesheet JS — Sleek Light Neutral UI Replication
   ========================================================================== */

:root {
  --color-bench-bg: #fcfdff;
  --color-bench-sidebar-border: #e2e8f0;
  --color-bench-accent: #0033ff;
  --color-bench-text-primary: #0f172a;
  --color-bench-text-muted: #64748b;
  --color-bench-text-copy: #334155;
  --color-bench-card-bg: #ffffff;
  --color-bench-input-border: #cbd5e1;
  --color-bench-terminal-bg: #f8fafc;
}

/* Base Layout Structure */
.bench-page-body {
  background-color: var(--color-bench-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bench-main-container {
  flex-grow: 1;
  display: flex;
  width: 100%;
}

.bench-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Left Sidebar Navigation */
.bench-sidebar {
  border-right: 1px solid var(--color-bench-sidebar-border);
  padding: 3.5rem 2rem 3.5rem 0;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}

/* Hide scrollbars */
.bench-sidebar::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.bench-sidebar {
  scrollbar-width: none;
}

.bench-sidebar-group {
  margin-bottom: 2.25rem;
}

.bench-sidebar-group-title {
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-bench-text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 0.95rem;
  text-transform: uppercase;
}

.bench-sidebar-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.bench-sidebar-link-item a {
  display: block;
  font-family: var(--font-main, sans-serif);
  font-size: 0.9rem;
  color: #475569;
  text-decoration: none;
  font-weight: 550;
  padding: 0.35rem 0.85rem;
  border-left: 2px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.bench-sidebar-link-item a:hover {
  color: var(--color-bench-text-primary);
  padding-left: 1.05rem;
}

.bench-sidebar-link-item.active a {
  color: var(--color-bench-text-primary);
  font-weight: 700;
  border-left-color: var(--color-bench-accent);
  padding-left: 1.05rem;
  background-color: rgba(0, 51, 255, 0.02);
  border-radius: 0 6px 6px 0;
}

/* Right Main Content Pane */
.bench-viewport {
  padding: 3.5rem 0 3.5rem 3.5rem;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
}

/* Fade In Animations */
.bench-viewport-fade-in {
  animation: benchFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes benchFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography elements */
.bench-section-category {
  font-family: monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-bench-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: block;
}

.bench-section-title {
  font-size: 2.45rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  color: var(--color-bench-text-primary);
  line-height: 1.15;
  margin: 0 0 1.25rem 0;
  font-family: var(--font-main, sans-serif);
}

.bench-section-paragraph {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-bench-text-muted);
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: var(--font-main, sans-serif);
}

/* Technical Dashboard Cards */
.bench-dashboard-card {
  background-color: var(--color-bench-card-bg);
  border: 1px solid var(--color-bench-sidebar-border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015);
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bench-dashboard-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.025);
}

/* Memory & Latency Interactive Charts (Screenshot 1 parity) */
.chart-layout-grid-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.chart-legend-column {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chart-header-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.chart-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(0, 51, 255, 0.05);
  color: var(--color-bench-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chart-icon-box svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.chart-title-meta {
  text-align: left;
}

.chart-title-lbl {
  display: block;
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--color-bench-text-primary);
  font-family: var(--font-main, sans-serif);
}

.chart-sub-lbl {
  display: block;
  font-size: 0.78rem;
  color: var(--color-bench-text-muted);
  font-family: var(--font-main, sans-serif);
  margin-top: 0.15rem;
}

/* Interactive Legend buttons */
.chart-legend-toggle-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--color-bench-terminal-bg);
  border: 1px solid var(--color-bench-sidebar-border);
  border-radius: 8px;
  padding: 0.65rem 0.95rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.chart-legend-toggle-card:hover {
  border-color: var(--color-bench-accent);
}

.legend-color-indicator-line {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  flex-shrink: 0;
}

.legend-color-indicator-line.l-blue { background-color: var(--color-bench-accent); }
.legend-color-indicator-line.l-gray { background-color: #64748b; }

.legend-lbl-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-bench-text-primary);
  font-family: var(--font-main, sans-serif);
}

.chart-legend-toggle-card.hidden {
  opacity: 0.45;
}

/* Line Charts Canvas using dynamic SVG paths */
.chart-canvas-wrapper-relative {
  position: relative;
  width: 100%;
  height: 170px;
}

.chart-svg-canvas {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-grid-line {
  stroke: #f1f5f9;
  stroke-width: 1;
}

.chart-axis-line {
  stroke: #cbd5e1;
  stroke-width: 1.5;
}

.chart-axis-label {
  font-family: monospace;
  font-size: 8px;
  fill: #64748b;
  font-weight: 700;
}

.chart-path-blue {
  fill: none;
  stroke: var(--color-bench-accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.35s ease;
}

.chart-path-gray {
  fill: none;
  stroke: #64748b;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.35s ease;
}

.chart-interactive-node {
  fill: #ffffff;
  stroke-width: 2;
  cursor: pointer;
  transition: r 0.15s ease, stroke-width 0.15s ease;
}

.chart-interactive-node.n-blue {
  stroke: var(--color-bench-accent);
}

.chart-interactive-node.n-gray {
  stroke: #64748b;
}

.chart-interactive-node:hover {
  r: 5px;
  stroke-width: 3.5;
}

/* Chart Tooltip absolute */
.chart-tooltip-absolute {
  position: absolute;
  background-color: var(--color-bench-text-primary);
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 50;
  white-space: nowrap;
  display: none;
  transform: translate(-50%, -125%);
}

.chart-tooltip-absolute::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: var(--color-bench-text-primary) transparent;
  display: block;
  width: 0;
}

/* Network Saturation Capabilities (Screenshot 2 parity) */
.bench-saturation-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.bench-saturation-table th {
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-bench-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-bench-sidebar-border);
}

.bench-saturation-table td {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  vertical-align: middle;
}

.bench-saturation-table tr:last-child td {
  border-bottom: none;
}

.tier-title-mono {
  font-family: var(--font-main, sans-serif);
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--color-bench-text-primary);
  display: block;
}

.tier-sub-lbl {
  font-size: 0.78rem;
  color: var(--color-bench-text-muted);
  margin-top: 0.15rem;
  display: block;
}

.client-name-bold {
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--color-bench-text-primary);
  display: block;
}

.client-name-bold.nextgen {
  color: var(--color-bench-accent);
}

.client-sub-mono {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--color-bench-text-muted);
  display: block;
  margin-top: 0.15rem;
}

.progress-bar-column-flex {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 480px;
}

.progress-bar-track-fill {
  flex-grow: 1;
  height: 18px;
  background-color: var(--color-bench-terminal-bg);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-bar-filled-accent {
  height: 100%;
  background-color: var(--color-bench-accent);
  width: 0%;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-bar-filled-accent.gray-fill {
  background-color: #475569;
}

.progress-bar-filled-accent.active-stripes {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 16px 16px;
  animation: progressStripes 0.8s linear infinite;
}

.completion-time-mono {
  font-family: monospace;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--color-bench-text-primary);
  white-space: nowrap;
}

.completion-time-mono.nextgen {
  color: var(--color-bench-accent);
}

.completion-metric-tag {
  font-family: monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-bench-text-muted);
  white-space: nowrap;
}

.completion-metric-tag.blue-tag {
  color: var(--color-bench-accent);
  font-weight: 800;
}

/* Hardware info footer tagline */
.bench-hardware-config-banner {
  border-top: 1px solid var(--color-bench-sidebar-border);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.hardware-banner-text-mono {
  font-family: monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-bench-text-muted);
  margin: 0;
}

/* Parallel Core Hashing (Screenshot 3 parity) */
.core-hashing-dashboard-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
}

.hashing-panel-col {
  display: flex;
  flex-direction: column;
}

.cpu-grid-panel-wrapper {
  background-color: var(--color-bench-terminal-bg);
  border: 1px solid var(--color-bench-sidebar-border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.cpu-grid-heading-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cpu-grid-label-meta {
  text-align: left;
}

.cpu-grid-active-lbl-bold {
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--color-bench-accent);
  font-family: var(--font-main, sans-serif);
}

.cpu-grid-subhead-mono {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-bench-text-muted);
  margin-top: 0.15rem;
  display: block;
}

.cpu-cores-rows-container {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cpu-core-lane {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cpu-core-id-mono {
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-bench-text-muted);
  width: 55px;
  text-align: left;
  flex-shrink: 0;
}

.cpu-grid-cells-row {
  display: flex;
  gap: 2.5px;
  flex-grow: 1;
}

.cpu-grid-cell-box {
  width: 8.5px;
  height: 8.5px;
  background-color: rgba(226, 232, 240, 0.6);
  border-radius: 1px;
  transition: background-color 0.25s ease;
}

.cpu-grid-cell-box.active {
  background-color: var(--color-bench-accent);
  box-shadow: 0 0 4px rgba(0, 51, 255, 0.35);
}

.cpu-grid-cell-box.active-gray {
  background-color: #64748b;
}

/* Algorithmic throughput progress bar column */
.throughput-bars-panel-wrapper {
  background-color: var(--color-bench-terminal-bg);
  border: 1px solid var(--color-bench-sidebar-border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: calc(100% - 2.25rem); /* Align height with left column */
  box-sizing: border-box;
}

.throughput-progress-item-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.throughput-client-name {
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--color-bench-text-primary);
}

.throughput-client-name.nextgen {
  color: var(--color-bench-accent);
}

.throughput-client-desc-mono {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-bench-text-muted);
}

.throughput-progress-bar-track {
  width: 100%;
  height: 16px;
  background-color: rgba(226, 232, 240, 0.7);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.throughput-progress-bar-filled {
  height: 100%;
  background-color: var(--color-bench-accent);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.throughput-progress-bar-filled.gray-fill {
  background-color: #64748b;
}

.throughput-line-ruler-ticks {
  display: flex;
  justify-content: space-between;
  border-top: 1.5px solid #cbd5e1;
  padding-top: 0.35rem;
  margin-top: 0.45rem;
  position: relative;
}

.throughput-ruler-tick {
  font-family: monospace;
  font-size: 8px;
  color: var(--color-bench-text-muted);
  font-weight: 800;
  position: relative;
}

.throughput-ruler-tick::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 1.5px;
  height: 4px;
  background-color: #cbd5e1;
}

.throughput-absolute-lbl-tag {
  font-family: monospace;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-bench-accent);
  position: absolute;
  right: 0px;
  top: 18px;
  text-align: right;
}

.throughput-absolute-lbl-tag.gray-tag {
  color: #64748b;
}

.throughput-absolute-lbl-tag span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-bench-text-muted);
  margin-top: 0.15rem;
}

/* File Merge Speed (Section 4) */
.merge-speed-flex-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.calculator-card-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-output-score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background-color: var(--color-bench-terminal-bg);
  border: 1px solid var(--color-bench-sidebar-border);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.calc-score-block {
  text-align: center;
}

.calc-score-lbl-mono {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-bench-text-muted);
  text-transform: uppercase;
}

.calc-score-val-bold {
  font-size: 1.35rem;
  font-weight: 850;
  color: var(--color-bench-accent);
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-main, sans-serif);
}

.calc-score-val-bold.gray-text {
  color: #475569;
}

/* SSD Sector wear layout (Section 5) */
.ssd-sectors-card-grid-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
}

.ssd-wear-grid-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  background-color: var(--color-bench-terminal-bg);
  border: 1px solid var(--color-bench-sidebar-border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.ssd-sector-node {
  width: 100%;
  aspect-ratio: 1;
  background-color: rgba(226, 232, 240, 0.7);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.ssd-sector-node.healthy-green {
  background-color: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.35);
}

.ssd-sector-node.direct-blue {
  background-color: var(--color-bench-accent);
  box-shadow: 0 0 6px rgba(0, 51, 255, 0.35);
}

.ssd-sector-node.thrashed-red {
  background-color: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.35);
}

.ssd-stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ssd-stat-row-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px dashed var(--color-bench-sidebar-border);
  padding-bottom: 0.75rem;
}

.ssd-stat-row-flex:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ssd-lbl-meta {
  text-align: left;
}

.ssd-lbl-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-bench-text-primary);
  font-family: var(--font-main, sans-serif);
}

.ssd-lbl-subhead-mono {
  display: block;
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-bench-text-muted);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

.ssd-value-bold {
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-bench-text-primary);
}

.ssd-value-bold.green-txt {
  color: #22c55e;
}

/* Tauri vs Electron (Section 6) */
.boot-timer-dashboard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.boot-timer-card {
  background-color: var(--color-bench-terminal-bg);
  border: 1px solid var(--color-bench-sidebar-border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.boot-timer-card.highlighted-tauri {
  border-color: var(--color-bench-accent);
}

.boot-loader-container-relative {
  position: relative;
  width: 110px;
  height: 110px;
}

.boot-loader-circular-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.boot-loader-bg-ring {
  fill: none;
  stroke: #cbd5e1;
  stroke-width: 7;
}

.boot-loader-active-ring {
  fill: none;
  stroke: var(--color-bench-accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 251; /* 2 * PI * r (r=40) */
  stroke-dashoffset: 251; /* Starts at 0% */
  transition: stroke-dashoffset 0.1s linear;
}

.boot-loader-active-ring.gray-ring {
  stroke: #64748b;
}

.boot-loader-text-absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.boot-time-num-mono {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-bench-text-primary);
  display: block;
}

.boot-success-checkmark-svg {
  width: 32px;
  height: 32px;
  color: #22c55e;
  stroke-width: 3.5;
  display: none;
  animation: docsFadeIn 0.25s ease forwards;
}

.boot-timer-card.boot-complete .boot-loader-circular-svg {
  display: none;
}

.boot-timer-card.boot-complete .boot-success-checkmark-svg {
  display: block;
}

.boot-app-name-bold {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-bench-text-primary);
  font-family: var(--font-main, sans-serif);
}

.boot-app-name-bold.tauri {
  color: var(--color-bench-accent);
}

.boot-app-meta-mono {
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-bench-text-muted);
  text-transform: uppercase;
  margin-top: 0.15rem;
  display: block;
}

/* ==========================================================================
   TECHNICAL BENCHMARKS RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .bench-layout-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .bench-sidebar {
    position: relative;
    top: 0;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--color-bench-sidebar-border);
    padding: 2rem 0;
  }
  
  .bench-sidebar-links-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 0.65rem;
  }
  
  .bench-sidebar-link-item a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
  }
  
  .bench-sidebar-link-item.active a {
    border-left-color: transparent;
    border-bottom-color: var(--color-bench-accent);
    border-radius: 6px;
    background-color: rgba(0, 51, 255, 0.04);
  }
  
  .bench-viewport {
    padding: 3rem 0;
  }
}

@media (max-width: 850px) {
  .chart-layout-grid-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .chart-legend-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .core-hashing-dashboard-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .throughput-bars-panel-wrapper {
    height: auto;
  }
  
  .ssd-sectors-card-grid-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .merge-speed-flex-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 680px) {
  .bench-saturation-table th:nth-child(3),
  .bench-saturation-table td:nth-child(3) {
    display: none;
  }
  
  .boot-timer-dashboard-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bench-section-title {
    font-size: 2rem;
  }
  
  .bench-viewport {
    padding: 2.5rem 0;
  }
}
