/* ============================================
   Todait Archive — page-specific pieces
   Timeline · Versions · Screenshots · Sales
   ============================================ */

/* generic page padding for secondary pages */
.page-hero {
  padding: 80px 0 40px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.page-hero-sub { color: var(--fg-muted); font-size: 17px; margin: 0; max-width: 64ch; }

/* ============================================
   HOME V2 — 3D HERO
   ============================================ */
.hero-v2 {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  perspective: 1400px;
  pointer-events: none;
  overflow: hidden;
}
.hero-3d-stage {
  position: absolute;
  inset: -5%;
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}
.hero-floor {
  position: absolute;
  inset: 30% -20% -40% -20%;
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 60%),
    linear-gradient(to top, color-mix(in srgb, var(--accent) 8%, transparent) 0%, transparent 60%);
  transform: rotateX(70deg) translateZ(-50px);
  transform-origin: center top;
  filter: blur(20px);
  opacity: 0.7;
}
[data-theme="dark"] .hero-floor { opacity: 1; }

.hero-stars { position: absolute; inset: 0; transform-style: preserve-3d; }
.hero-star {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  transform-style: preserve-3d;
  box-shadow: 0 0 4px var(--accent);
  animation: starBlink 4s ease-in-out infinite;
}
[data-theme="light"] .hero-star {
  background: color-mix(in srgb, var(--accent) 55%, var(--neutral-700) 45%);
  box-shadow: 0 0 3px color-mix(in srgb, var(--accent) 60%, transparent);
}
@keyframes starBlink {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}

.hero-numeral {
  position: absolute;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--accent) 7%, transparent);
  user-select: none;
  transition: transform 600ms cubic-bezier(.2,.9,.2,1);
  will-change: transform;
  pointer-events: none;
}
[data-theme="dark"] .hero-numeral { color: color-mix(in srgb, var(--accent) 10%, transparent); }
.hero-numeral-a { top: -3%;  left: -2%;  font-size: clamp(100px, 14vw, 220px); }
.hero-numeral-b { top: 78%; right: -3%; font-size: clamp(110px, 16vw, 260px); }
.hero-numeral-c { top: 82%; left: 2%;  font-size: clamp(70px, 10vw, 150px); }

.hero-spine {
  position: absolute;
  bottom: 9%;
  left: 0; right: 0;
  width: 100%;
  height: 120px;
  opacity: 0.9;
}
.hero-spine circle { animation: spinePulse 3s ease-in-out infinite; transform-origin: center; }
.hero-spine g:nth-child(1) circle { animation-delay: 0s; }
.hero-spine g:nth-child(2) circle { animation-delay: 0.4s; }
.hero-spine g:nth-child(3) circle { animation-delay: 0.8s; }
.hero-spine g:nth-child(4) circle { animation-delay: 1.2s; }
.hero-spine g:nth-child(5) circle { animation-delay: 1.6s; }
@keyframes spinePulse {
  0%, 100% { r: 4; }
  50% { r: 6; }
}

.hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.6;
  transition: left 240ms ease-out, top 240ms ease-out;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  will-change: transform, opacity;
  transition: transform 100ms linear, opacity 200ms linear;
}

/* ============================================
   HOME V2 — KPI rich cards
   ============================================ */
.kpi-grid-rich { gap: 20px; }
.kpi-card-enhanced {
  min-height: 220px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.kpi-card-enhanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px at var(--mx,50%) var(--my,50%), color-mix(in srgb, var(--accent) 5%, transparent), transparent 40%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.kpi-card-enhanced:hover::before { opacity: 1; }
.kpi-extra {
  margin-top: 8px;
  margin-bottom: 4px;
}

/* sparkline */
.kpi-spark { display: block; margin-top: 6px; }
.kpi-mini { margin: 6px 0 0; }
.kpi-mini-axis {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-subtle);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* star distribution (5→1) */
.kpi-stars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}
.kpi-star-row {
  display: grid;
  grid-template-columns: 60px 1fr 36px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.kpi-star-label {
  color: var(--accent-amber-500);
  letter-spacing: 0.5px;
  font-size: 10px;
  white-space: nowrap;
}
.kpi-star-dim { color: var(--border-strong); }
.kpi-star-bar {
  position: relative;
  height: 8px;
  background: var(--bg-surface-alt);
  border-radius: 4px;
  overflow: hidden;
}
.kpi-star-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition: width 900ms cubic-bezier(.2,.9,.2,1);
}
.kpi-star-pct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-align: right;
}

/* flag cloud */
.kpi-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  max-height: 110px;
  overflow: hidden;
}
.kpi-flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 20px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-default);
  font-size: 11px;
  color: var(--fg-muted);
  transition: all var(--dur-base) var(--ease-out);
  transform: translateY(6px);
  opacity: 0;
  animation: flagIn 600ms var(--ease-out) forwards;
}
@keyframes flagIn { to { opacity: 1; transform: translateY(0); } }
.kpi-flag-chip.is-active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent);
}
.kpi-flag-chip.is-active .kpi-flag-count { color: white; }
.kpi-flag-emoji { font-size: 14px; line-height: 1; }
.kpi-flag-count { font-family: var(--font-mono); font-size: 10px; color: var(--fg-subtle); }

/* activity matrix */
.kpi-activity {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 2px;
  margin-top: 4px;
  padding: 4px 0;
}
.kpi-act-dot {
  aspect-ratio: 1;
  min-height: 5px;
  border-radius: 2px;
  background: var(--accent);
  transition: opacity 600ms ease;
  opacity: 0;
}
.kpi-activity.is-in .kpi-act-dot { /* opacity comes from inline */ }

/* ============================================
   NARRATIVE EYEBROW + PARALLAX
   ============================================ */
.narrative-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.narrative-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-default);
}
.parallax-narrative {
  max-width: 68ch;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.8;
  color: var(--fg-default);
}
.parallax-narrative p {
  margin: 0 0 1.6em;
  will-change: transform, opacity;
}
.parallax-narrative p:last-child { margin-bottom: 0; }
.parallax-narrative strong { font-weight: 700; color: var(--fg-default); }
.parallax-narrative em {
  font-style: normal;
  background-image: linear-gradient(transparent 68%, color-mix(in srgb, var(--accent) 28%, transparent) 68%);
  padding: 0 2px;
  font-weight: 600;
  color: var(--fg-default);
}

/* ============================================
   ENTRY CARDS V2 — with SVG glyphs
   ============================================ */
.entry-grid-v2 { gap: 18px; }
.entry-card-v2 {
  padding: 30px 28px;
  min-height: 240px;
  animation: entryIn 700ms cubic-bezier(.2,.9,.2,1) backwards;
  --card-tint: var(--accent);
}
.entry-card-v2.entry-card-stories     { --card-tint: #2EB89B; }
.entry-card-v2.entry-card-reviews     { --card-tint: #4A8CC4; }
.entry-card-v2.entry-card-sales       { --card-tint: #F5A623; }
.entry-card-v2.entry-card-timeline    { --card-tint: #A67DB8; }
.entry-card-v2.entry-card-versions    { --card-tint: #E07A5F; }
.entry-card-v2.entry-card-screenshots { --card-tint: #6B8F6B; }
@keyframes entryIn { from { opacity: 0; transform: translateY(24px); } }

.entry-card-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--card-tint) 10%, transparent);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  color: var(--card-tint);
  position: relative;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
[data-theme="dark"] .entry-card-icon-wrap {
  background: color-mix(in srgb, var(--card-tint) 16%, transparent);
}
.entry-card-v2:hover .entry-card-icon-wrap {
  transform: translateY(-3px) rotate(-3deg);
  background: color-mix(in srgb, var(--card-tint) 18%, transparent);
}
.entry-svg { width: 32px; height: 32px; }

.entry-card-v2 .entry-card-cta { color: var(--card-tint); }
.entry-card-v2::before {
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-tint) 10%, transparent) 0%, transparent 55%);
}

/* ============================================
   REVIEWS FILTER SIDEBAR — fix sticky & scroll
   ============================================ */
.filter-sidebar {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.filter-sidebar::-webkit-scrollbar { width: 6px; }
.filter-sidebar::-webkit-scrollbar-track { background: transparent; }
.filter-sidebar::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}

/* mobile: not sticky */
@media (max-width: 1024px) {
  .filter-sidebar {
    position: static !important;
    max-height: none !important;
    overflow-y: visible !important;
  }
}

/* shorter viewport edge case */
@media (max-height: 760px) {
  .filter-sidebar {
    position: relative !important;
    top: auto !important;
    max-height: none !important;
  }
}

/* ============================================
   STORIES PAGE — parallax opening
   ============================================ */
.stories-hero {
  position: relative;
  padding: 60px 0 100px;
  max-width: 860px;
  overflow: visible;
}

.stories-hero-bg {
  position: absolute;
  inset: -60px -80px 0 -80px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.stories-hero-bg-stars {
  position: absolute;
  inset: 0;
}
.stories-hero-bg-stars span {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.35;
  animation: starBlink 5s ease-in-out infinite;
}

.stories-hero-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.stories-hero-mark::after {
  content: "";
  flex: 0 0 60px;
  height: 1px;
  background: var(--border-default);
}

.stories-hero h1 {
  will-change: transform;
}

.stories-hero-quote {
  position: relative;
  margin-top: 48px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  font-size: 18px;
  line-height: 1.8;
  color: var(--fg-default);
  max-width: 60ch;
}
.stories-hero-quote > span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.9,.2,1);
}
.stories-hero-quote > span.is-in {
  opacity: 1;
  transform: translateY(0);
}
.stories-hero-quote em {
  font-style: normal;
  background-image: linear-gradient(transparent 68%, color-mix(in srgb, var(--accent) 28%, transparent) 68%);
  padding: 0 2px;
  font-weight: 600;
}

.stories-hero-figures {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stories-hero-fig {
  display: flex; flex-direction: column; gap: 4px;
}
.stories-hero-fig-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stories-hero-fig-lbl {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* parallax float orbs behind hero */
.stories-float {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  will-change: transform;
}
.stories-float-a { width: 280px; height: 280px; top: -40px; right: -80px; }
.stories-float-b { width: 200px; height: 200px; top: 140px; left: -120px; background: radial-gradient(circle, color-mix(in srgb, var(--accent-coral-500) 22%, transparent) 0%, transparent 70%); }
.stories-float-c { width: 160px; height: 160px; top: 420px; right: 40px; background: radial-gradient(circle, color-mix(in srgb, var(--accent-amber-500) 20%, transparent) 0%, transparent 70%); }

/* ============================================
   REVIEWS — filter icons + reply donut
   ============================================ */
.filter-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  color: var(--accent);
}
.filter-section-title {
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 12px !important;
  color: var(--fg-default) !important;
  font-weight: 600 !important;
  gap: 6px !important;
}

.kpi-reply {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.kpi-reply-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: var(--fg-muted);
}
.kpi-reply-legend > div { display: flex; align-items: center; gap: 6px; }
.kpi-reply-legend .dot { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
.kpi-reply-legend .dot-accent { background: var(--accent); }
.kpi-reply-legend .dot-muted  { background: var(--border-strong); }

/* hide old emoji icon inside empty-state if any */
.empty-state-icon { filter: grayscale(0.4); opacity: 0.7; }

/* ============================================
   RESPONSIVE TIGHTENING
   ============================================ */
@media (max-width: 1100px) {
  .hero-numeral-c { display: none; }
}
@media (max-width: 768px) {
  .hero-v2 { min-height: 540px; padding: 100px 0 60px; }
  .hero-numeral-a, .hero-numeral-b { display: none; }
  .kpi-flags { max-height: 90px; }
}

/* ============================================
   SCREENSHOTS PAGE — phone frames in a grid
   ============================================ */

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 28px 20px;
  margin-top: 32px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.shot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  text-align: left;
  transition: transform 180ms ease, filter 180ms ease;
}
.shot-card:hover {
  transform: translateY(-4px);
}
.shot-card:hover .phone-frame {
  box-shadow: 0 18px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
}

/* Phone frame — iPhone-shaped container for the screenshot */
.phone-frame {
  width: 180px;
  aspect-ratio: 9 / 19.5; /* iPhone proportions */
  background: #1a1a1a;
  border-radius: 22px;
  padding: 6px;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  flex-shrink: 0;
  transition: box-shadow 220ms ease;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #000;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Fallback mock UI (used when no real screenshot — now removed for Todait) */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px 4px;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}
.phone-home-indicator {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0,0,0,0.3);
  margin: 4px auto 6px;
  flex-shrink: 0;
}

/* Metadata under each card */
.shot-meta {
  text-align: center;
  max-width: 180px;
}
.shot-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-default);
  margin-bottom: 4px;
}
.shot-caption {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Era header above each group */
.era-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.era-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.era-dot-blue { background: #4A8CC4; }
.era-dot-teal { background: #4FBDA8; }
.era-dot-mint { background: #2EB89B; }
.era-dot-mono { background: #A8A499; }

/* Responsive tightening for screenshot grid */
@media (max-width: 900px) {
  .shots-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 24px 16px; }
  .phone-frame { width: 150px; }
  .shot-meta { max-width: 150px; }
}
@media (max-width: 480px) {
  .shots-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .phone-frame { width: 100%; max-width: 160px; }
  .shot-meta { max-width: 160px; }
}

/* ============================================
   SALES PAGE — layout fixes
   ============================================ */

/* Section spacing */
.section {
  margin-top: 72px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 15px;
  margin: 0 0 24px;
  max-width: 64ch;
}

/* Chart card — container */
.chart-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
}
.chart-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 4px;
}
.chart-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chart-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.chart-sub {
  color: var(--fg-muted);
  font-size: 13px;
  margin: 4px 0 16px;
}

/* Side-by-side chart layout */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .charts-row { grid-template-columns: 1fr; }
}

/* Country grid — flags + numbers in tidy cards */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.country-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
  border-radius: 10px;
  transition: border-color 160ms ease, transform 160ms ease;
  cursor: default;
}
.country-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* World map supplementary overlays */
.map-legend {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-muted);
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
.map-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
.map-legend-row {
  display: flex;
  align-items: center;
}
.map-tooltip {
  margin-left: auto;
  padding: 10px 14px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
  border-radius: 10px;
  min-width: 160px;
}

/* Yearly notes — horizontal chips below bar chart */
.yearly-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 20px;
  border-top: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
  padding-top: 18px;
}
.yearly-note {
  text-align: center;
  padding: 8px 6px;
  border-radius: 8px;
  background: var(--bg-surface-alt);
}
.yearly-note > div:first-child {
  font-weight: 700;
  margin-bottom: 2px;
}

/* Revenue notes — same treatment */
.revenue-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
}
.revenue-note {
  text-align: center;
  padding: 6px 4px;
  border-radius: 6px;
  background: var(--bg-surface-alt);
}

/* Heatmap */
.heatmap-header {
  display: grid;
  grid-template-columns: 38px repeat(var(--heatmap-cols, 10), 1fr);
  gap: 3px;
  margin-bottom: 3px;
  padding-left: 38px;
}
.heatmap-header-cell {
  font-size: 10px;
  color: var(--fg-muted);
  text-align: center;
  font-family: var(--font-mono);
}
.heatmap-row {
  display: grid;
  grid-template-columns: 38px repeat(var(--heatmap-cols, 10), 1fr);
  gap: 3px;
  margin-bottom: 3px;
}
.heatmap-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: right;
  padding-right: 8px;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.heatmap-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  transition: transform 140ms ease;
}
.heatmap-cell:hover {
  transform: scale(1.15);
}
