body {
  font-family: 'Noto Sans', sans-serif;
}
.section {
  padding: 1.5rem 1.5rem;
}

.link-block a {
  margin-top: 5px;
  margin-bottom: 5px;
}

.hero > .hero-body {
  padding-top: 2rem;
  padding-bottom: 0;
}

.teaser .hero-body {
  padding-top: 0;
  padding-bottom: 0rem;
}

.teaser {
  font-family: 'Google Sans', sans-serif;
}

.publication-title {
  font-family: 'Google Sans', sans-serif;
}

.publication-authors {
  font-family: 'Google Sans', sans-serif;
}

.publication-authors a {
  color: hsl(204, 86%, 53%) !important;
}

.publication-authors a:hover {
  text-decoration: underline;
}

.author-block {
  display: inline-block;
}

.teaser-img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

/* Promo player grid */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.promo-cell {
  position: relative;
  overflow: hidden;
  background: #000;
}
.promo-cell video {
  display: block;
  width: 100%;
  aspect-ratio: 367/240;
  object-fit: cover;
}
.promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 12px 10px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.75));
  color: #fff;
  pointer-events: none;
}
.promo-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}
.promo-meta img {
  width: 14px;
  height: 14px;
}
.promo-transcript {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  animation: promo-fade-in 0.3s ease;
}
@keyframes promo-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .teaser .container {
    padding-left: 0;
    padding-right: 0;
  }
  .teaser .hero-body {
    padding-left: 0;
    padding-right: 0;
  }
  .promo-grid {
    display: flex;
    border-radius: 0;
    overflow: hidden;
    scroll-behavior: smooth;
  }
  .promo-cell {
    flex: 0 0 100%;
  }
  .promo-dots {
    display: flex;
  }
}
.promo-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 4px;
}
.promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.promo-dot.active {
  background: #666;
}

/* Chart styles */
.benchmark-chart-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 16px 0 8px;
}
.benchmark-chart-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.benchmark-chart-main {
  min-width: 0;
}
.benchmark-chart-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin: 0 0 8px;
  padding: 0;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.skill-rail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  align-items: end;
}
.skill-rail-reset {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 28px;
  padding: 4px 6px;
  border: 1px solid #dddddd;
  border-radius: 8px 8px 0 0;
  background: #f3f3f3;
  color: #555;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.skill-rail-reset:hover,
.skill-rail-reset.hovered {
  background: #eef4ff;
  border-color: #9dbcfb;
  color: #333;
}
.skill-rail-reset.active {
  background: #eaf2ff;
  border-color: #4f8df7;
  box-shadow: inset 0 0 0 1px #4f8df7;
  color: #333;
}
.skill-rail-grid {
  display: grid;
  grid-template-columns: repeat(2, 28px);
  gap: 0;
  justify-content: end;
}
.skill-rail-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s, box-shadow 0.15s;
}
.skill-rail-item:hover,
.skill-rail-item:focus-visible {
  background: #eef4ff;
  box-shadow: inset 0 0 0 1px #9dbcfb;
}
.skill-rail-item.active-soft {
  background: #eef4ff;
  box-shadow: inset 0 0 0 1px #9dbcfb;
}
.skill-rail-item.active-hard {
  background: #eaf2ff;
  box-shadow: inset 0 0 0 2px #4f8df7;
}
.skill-rail-item:nth-child(2) {
  border-top-left-radius: 4px;
}
.skill-rail-item:nth-child(3) {
  border-top-right-radius: 4px;
}
.skill-rail-item:nth-last-child(2) {
  border-bottom-left-radius: 4px;
}
.skill-rail-item:last-child {
  border-bottom-right-radius: 4px;
}
.skill-rail-item img {
  width: 18px;
  height: 18px;
  display: block;
}
.benchmark-chart-wrap canvas {
  width: 100% !important;
  height: 450px !important;
}
.chart-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(255,255,255,0.97);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  padding: 10px 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  color: #333;
  z-index: 2000;
  transition: opacity 0.12s;
  max-width: 260px;
}
.chart-tooltip-title {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chart-tooltip-title img { width: 16px; height: 16px; flex-shrink: 0; }
.chart-tooltip-avg {
  font-size: 11px;
  color: #666;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}
.chart-tooltip-skill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 1.5px 0;
  font-size: 11px;
  color: #555;
}
.chart-tooltip-skill img { width: 14px; height: 14px; flex-shrink: 0; }
.chart-tooltip-skill .xp { margin-left: auto; font-variant-numeric: tabular-nums; color: #888; }
.chart-tooltip-skill .xp.zero { color: #ccc; }
.bottom-legend {
  display: flex;
  gap: 8px 14px;
  padding: 12px 0 4px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #555;
  cursor: pointer;
  line-height: 1.2;
}
.legend-item.hidden { opacity: 0.35; }
.legend-label {
  font-weight: 600;
  color: #444;
}
.legend-value {
  color: #999;
  font-variant-numeric: tabular-nums;
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.feature-box {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px 20px;
}
.feature-box h4 {
  margin-bottom: 4px;
  font-weight: 600;
}
.feature-box p {
  color: #555;
  font-size: 0.95em;
}

.footer .icon-link {
  font-size: 25px;
  color: #000;
}

/* Heatmap styles */
.heatmap-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.heatmap-table {
  border-collapse: collapse;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  white-space: nowrap;
  margin: 0 auto;
}
.heatmap-table th,
.heatmap-table td {
  padding: 4px 6px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #e8e8e8;
}
.heatmap-table thead th {
  background: #fafafa;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 2;
  vertical-align: middle;
}
.heatmap-table thead th img {
  display: block;
  margin: 0 auto;
}
.heatmap-th-tip {
  position: relative;
  cursor: help;
}
.heatmap-th-tip .tip-text {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}
.heatmap-th-tip:hover .tip-text {
  display: block;
}
.heatmap-model {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  text-align: left !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.heatmap-model img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.heatmap-model span {
  font-size: 11px;
}
.heatmap-total {
  font-weight: 700;
  background: #fafafa !important;
  color: #333 !important;
}

/* Trajectory steps */
.traj-step.agent {
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.65;
  padding: 10px 0;
  white-space: pre-wrap;
}
.traj-step.agent + .traj-step.agent {
  border-top: 1px solid #f0f0f0;
}
.traj-tool-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px 0;
}
.traj-tool-chip {
  display: inline-block;
  font-family: monospace;
  font-size: 10px;
  color: #aaa;
  background: #f5f5f5;
  border-radius: 3px;
  padding: 1px 6px;
  line-height: 1.5;
}
.traj-tool-detail {
  margin: 4px 0;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}
.traj-tool-detail-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #fafafa;
  cursor: pointer;
  user-select: none;
  font-family: monospace;
  font-size: 11px;
  color: #888;
}
.traj-tool-detail-header:hover {
  background: #f0f0f0;
}
.traj-tool-detail-toggle {
  font-size: 9px;
  color: #bbb;
  transition: transform 0.15s;
}
.traj-tool-detail.open .traj-tool-detail-toggle {
  transform: rotate(90deg);
}
.traj-tool-code {
  display: none;
  margin: 0;
  padding: 8px 12px;
  background: #f8f8f8;
  font-family: monospace;
  font-size: 11px;
  line-height: 1.4;
  overflow-x: auto;
  max-height: 300px;
  overflow-y: auto;
  white-space: pre;
  color: #333;
  border-top: 1px solid #eee;
}
.traj-tool-detail.open .traj-tool-code {
  display: block;
}
.traj-skills-chart-wrap {
  position: relative;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  height: 120px;
  cursor: pointer;
  overflow: visible;
}
.traj-skills-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}
.traj-rate-legend {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 4px 8px 0;
  font-size: 10px;
  color: #666;
}
.traj-rate-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.traj-rate-legend-line {
  display: inline-block;
  width: 16px;
  height: 0;
  border-top: 2px solid;
}
.traj-rate-legend-line.dashed {
  border-top-style: dashed;
}

/* Video + transcript layout */
.traj-video-container {
  display: flex;
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.traj-video-pane {
  flex-shrink: 0;
  width: 500px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  overflow: hidden;
}
.traj-video-pane video {
  width: 100%;
  aspect-ratio: 367/240;
}
.traj-transcript-pane {
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 24px 16px;
  min-width: 0;
}
.traj-transcript-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid #e8e8e8;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.traj-transcript-header-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.traj-transcript-header-date {
  color: #aaa;
  font-weight: 400;
}
.traj-step.active {
  background: #f0f7ff;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.traj-step[data-ts] {
  cursor: pointer;
}
.traj-step[data-ts]:hover {
  background: #fafafa;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 900px) {
  .benchmark-chart-layout {
    grid-template-columns: 1fr;
  }
  .skill-rail {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
  }
  .skill-rail-reset {
    width: auto;
    padding: 4px 10px;
    border-radius: 8px;
  }
  .skill-rail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .skill-rail-item {
    width: 28px;
    height: 28px;
  }
  .skill-rail-item:nth-child(2),
  .skill-rail-item:nth-child(3) {
    border-radius: 0;
  }
  /* Trajectory viewer: stack video on top of transcript */
  .traj-inline {
    max-height: none;
    min-height: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .traj-topbar {
    border-radius: 0;
  }
  .traj-body {
    flex-direction: column;
    overflow: visible;
  }
  .traj-skill-rail {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .traj-video-container {
    flex-direction: column;
    overflow: visible;
  }
  .traj-video-pane {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
  }
  .traj-transcript-pane {
    max-height: 60vh;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 1.5rem 0.75rem;
  }
  .benchmark-chart-wrap {
    padding: 12px 0 6px;
  }
  .benchmark-chart-wrap canvas {
    height: 280px !important;
  }
  .benchmark-chart-layout {
    grid-template-columns: 1fr;
  }
  .skill-rail {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }
  .skill-rail-reset {
    width: auto;
    min-height: 28px;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 8px;
  }
  .skill-rail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .skill-rail-item {
    width: 28px;
    height: 28px;
  }
  .skill-rail-item img {
    width: 18px;
    height: 18px;
  }
}
.traj-step.active:hover {
  background: #f0f7ff;
}
.traj-tool-group[data-ts] {
  cursor: pointer;
}
.traj-timestamp {
  display: inline-block;
  font-family: monospace;
  font-size: 10px;
  color: #999;
  background: #f0f0f0;
  border-radius: 3px;
  padding: 1px 5px;
  margin-right: 6px;
  cursor: pointer;
  vertical-align: middle;
}
.traj-timestamp:hover {
  background: #e0e0e0;
  color: #555;
}

/* Sortable column headers */
.sort-header {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.sort-header:hover {
  background: #f0f0f0;
}

/* Clickable heatmap cells */
.heatmap-table tbody tr { cursor: pointer; }
.heatmap-table tbody td:not(.heatmap-model):not(.heatmap-total):hover {
  outline: 2px solid #2196F3;
  outline-offset: -2px;
}

/* Modal backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.45);
  overflow: auto;
}
/* Inline trajectory viewer */
.traj-inline {
  background: #fff;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  min-height: 500px;
  max-width: 1167px;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.traj-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 8px 8px 0 0;
  flex-shrink: 0;
  z-index: 10;
}
.traj-back-btn {
  background: none;
  border: none;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.12s;
}
.traj-back-btn:hover {
  color: #111;
}
.traj-title-icon {
  width: 16px;
  height: 16px;
}
.traj-nav-chips {
  display: contents;
}
.traj-chip {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 3px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fff;
  font-size: 11px;
  color: #666;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  white-space: nowrap;
}
.traj-chip:hover {
  border-color: #999;
  color: #333;
}
.traj-chip.active {
  border-color: #5b8def;
  color: #1a1a1a;
  font-weight: 600;
}
.traj-chip.icon-only {
  padding: 3px;
}
.traj-chip-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.traj-chip-label {
  line-height: 1;
}
.traj-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.traj-skill-rail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  border-right: 1px solid #e8e8e8;
  background: #fafafa;
  overflow-y: auto;
  flex-shrink: 0;
}
.traj-skill-rail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}
.traj-skill-rail-btn:hover {
  box-shadow: inset 0 0 0 1px #999;
}
.traj-skill-rail-btn.active {
  box-shadow: inset 0 0 0 2px #5b8def;
}
.traj-skill-rail-btn img {
  width: 20px;
  height: 20px;
  display: block;
}
.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  padding: 0 4px;
}

/* Agent Interface section */
.agent-code-pre {
  margin: 0;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.55;
  max-width: 100%;
}
.agent-code-pre code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}
.agent-caption {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 1rem;
}

/* Agent two-column rows */
.agent-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.agent-row-text {
  flex: 0 0 280px;
  padding-top: 0.5rem;
}
.agent-row-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
.agent-row-example {
  flex: 1;
  min-width: 0;
  width: 0;
  overflow: hidden;
}

/* Agent panel labels */
.agent-panel-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

/* Wiki tree browser */
.wiki-browser {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  max-height: 300px;
  overflow-y: auto;
}
.wiki-folder-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 0;
  cursor: pointer;
  user-select: none;
}
.wiki-folder-name {
  color: #555;
}
.wiki-folder-count {
  color: #bbb;
  font-size: 10px;
  margin-left: auto;
}
.wiki-folder-children {
  padding-left: 12px;
}
.wiki-file {
  padding: 1.5px 0;
  color: #888;
  font-size: 13px;
}
.wiki-file-clickable {
  cursor: pointer;
}
.wiki-file-clickable:hover {
  color: #333;
}
.wiki-file-content {
  margin: 2px 0 6px 0;
  padding: 8px 10px;
  background: #fff;
  border-radius: 4px;
}
.wiki-md-table {
  border-collapse: collapse;
  font-size: 12px;
  margin: 4px 0;
  width: 100%;
}
.wiki-md-table th,
.wiki-md-table td {
  padding: 3px 8px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  font-size: 12px;
}
.wiki-md-table th {
  font-weight: 600;
  color: #555;
}

/* Interesting trajectories */
.interesting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.interesting-card {
  padding: 14px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
}
.interesting-card:hover {
  border-color: #999;
  background: #fafafa;
}
.interesting-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.interesting-card-header img {
  width: 16px;
  height: 16px;
}
.interesting-card-desc {
  font-size: 12.5px;
  color: #666;
  line-height: 1.5;
}
.interesting-card-quote {
  margin: 8px 0 0;
  padding: 6px 12px;
  border-left: 3px solid #ddd;
  font-size: 12px;
  font-style: italic;
  color: #888;
  line-height: 1.5;
}
.interesting-moments {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.interesting-moment {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 11.5px;
  color: #555;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.interesting-moment:hover {
  border-color: #999;
  background: #f0f0f0;
  color: #333;
}
.interesting-moment-ts {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10.5px;
  color: #999;
}
@media (max-width: 768px) {
  .interesting-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .benchmark-chart-wrap canvas { height: 350px !important; }
  .features-grid { grid-template-columns: 1fr !important; }
  .agent-code-pre { font-size: 11px; }
  .agent-code-pre code { font-size: 11px; }
  .agent-row { flex-direction: column; gap: 0.75rem; }
  .agent-row-text { flex: none; }
  .agent-row-example { width: auto; }
}
