:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-soft: #f7f7f7;
  --surface-muted: #f2f2f2;
  --border: #D8D8D8;
  --shadow: 0 18px 40px rgba(48, 27, 27, 0.08);
  --text: #000000;
  --muted: #72777D;
  --accent: #C8102E;
  --accent-soft: #98191A;
  --accent-referral: #72777D;
  --good: #000000;
  --warn: #98191A;
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 16, 46, 0.08), transparent 24%),
    #FFFFFF;
}

button,
input,
select,
textarea,
table,
code,
pre {
  font-family: inherit;
}

.app-shell {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 36px;
}

.topbar,
.filter-band,
.section {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.topbar,
.filter-band,
.section {
  padding: 24px;
  margin-bottom: 18px;
}

.topbar {
  display: grid;
  grid-template-columns: 260px 1fr 230px;
  gap: 20px;
  align-items: center;
}

.brand-lockup {
  display: flex;
  align-items: center;
  max-width: 220px;
}

.brand-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-soft);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
}

h1, h2, h3, p { margin: 0; }

h1 {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.02;
  letter-spacing: 0;
}

.subhead {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.32;
  color: var(--muted);
  max-width: 860px;
}

.topbar-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.sync-copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
}

.action-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.action-btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.filter-band {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.segmented {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.segmented button,
select,
input {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 14px;
}

.segmented button.active {
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--accent);
}

.cohort-picker,
.entry-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
}

.section-heading--inner {
  margin-bottom: 12px;
}

.section-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.section-toggle::after {
  content: "Hide";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: var(--muted);
}

.section-collapsible.is-collapsed .section-toggle::after {
  content: "Show";
}

.section-body {
  display: grid;
  gap: 14px;
}

.section-collapsible.is-collapsed .section-body {
  display: none;
}

.section-heading h2 {
  font-size: 20px;
}

.section-heading p,
.mini-note,
.mini-person,
table,
.form-message {
  color: var(--muted);
}

.kpi-grid,
.daily-grid,
.pulse-grid,
.flag-grid {
  display: grid;
  gap: 14px;
}

.kpi-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.pulse-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pulse-grid--single { grid-template-columns: minmax(0, 1fr); }
.flag-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.metric-card,
.pulse-card,
.cohort-card,
.flag-card,
.insight-card,
.watch-card,
.note-card,
.table-card,
.mini-table,
.entry-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.metric-card,
.pulse-card,
.cohort-card,
.flag-card,
.insight-card,
.watch-card,
.note-card,
.entry-form,
.mini-table,
.table-card {
  padding: 16px;
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.metric-value {
  font-size: clamp(34px, 3vw, 48px);
  margin: 12px 0 8px;
  line-height: 1;
}

.metric-footnote {
  color: var(--muted);
  font-size: 14px;
}

.pulse-card__top,
.flag-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
}

.badge,
.risk-pill,
.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge {
  background: rgba(200, 16, 46, 0.1);
  color: var(--accent);
}

.risk-pill {
  background: rgba(47, 125, 87, 0.10);
  color: var(--good);
}

.risk-pill.warn {
  background: rgba(180, 109, 22, 0.12);
  color: var(--warn);
}

.status-pill.ok { color: var(--good); }
.status-pill.missing { color: var(--warn); }

.pulse-summary {
  display: grid;
  gap: 10px;
}

.pulse-card--interactive {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px;
}

.pulse-card--interactive:hover {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 10px 28px rgba(48, 27, 27, 0.08);
}

.pulse-card--interactive:focus-visible {
  outline: 2px solid rgba(200, 16, 46, 0.35);
  outline-offset: 2px;
}

.pulse-grid--single .pulse-card {
  max-width: none;
}

.pulse-grid--single .pulse-card__top {
  margin-bottom: 18px;
}

.pulse-grid--single .pulse-summary {
  gap: 14px;
}

.pulse-grid--single .pulse-stats--primary,
.pulse-grid--single .pulse-stats--secondary {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.pulse-grid--single .pulse-daily {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
}

.pulse-grid--single .velocity-strip {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.pulse-stats {
  display: grid;
  gap: 10px;
}

.pulse-stats--primary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pulse-stats--secondary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pulse-daily {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.velocity-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.velocity-strip.velocity-strip--interview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.velocity-strip--onboarding {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
}

.pulse-row-label {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}

.pulse-row-label small {
  margin-left: 6px;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.mini-stat {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
}

.mini-stat--footer {
  display: flex;
  flex-direction: column;
}

.mini-stat span,
.mini-person {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.mini-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text);
}

.mini-stat__caption {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.mini-stat__caption--alert {
  color: var(--accent);
}

.mini-stat--footer .mini-stat__caption {
  margin-top: auto;
  padding-top: 4px;
}

.mini-stat--daily {
  background: #faf6f7;
}

.mini-stat--daily strong {
  font-size: 18px;
}

.mini-stat--velocity {
  background: #f7f4f4;
}

.mini-stat--velocity strong {
  font-size: 17px;
}

.velocity-strip--onboarding .mini-stat span {
  font-size: 11px;
  line-height: 1.2;
}

.mini-stat--action {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mini-stat--action:hover {
  border-color: rgba(200, 16, 46, 0.35);
}

.mini-stat--alert {
  border: 1px solid rgba(200, 16, 46, 0.55);
  background: rgba(200, 16, 46, 0.04);
}

.mini-stat--alert:hover {
  border-color: rgba(200, 16, 46, 0.8);
}

.mini-stat--feedback-alert {
  border-color: rgba(200, 16, 46, 0.55);
  background: rgba(200, 16, 46, 0.04);
}

.mini-stat__alert-caption {
  display: block;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(200, 16, 46, 0.18);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.pulse-jump-btn {
  border: 1px solid rgba(200, 16, 46, 0.22);
}

.pulse-alert-note {
  margin-top: 10px;
}

.pulse-ratio-note {
  margin-top: 8px;
  font-weight: 600;
}

.pulse-tracking-note {
  margin-top: 4px;
}

.progress-track {
  height: 8px;
  border-radius: 999px;
  background: #f0ebeb;
  margin-top: 14px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.section-split-row {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(500px, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.section-split-row > .section {
  margin-bottom: 0;
}

.section-split-row [data-section="onboarding"] .watch-grid {
  grid-template-columns: 1fr;
}

.section-split-row [data-section="onboarding"] .onboarding-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-split-row [data-section="onboarding"] .watch-summary-card {
  min-height: 112px;
}

.stack {
  display: grid;
  gap: 12px;
}

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

.insight-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.watch-card--interactive {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px;
}

.watch-card--interactive:hover {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 10px 28px rgba(48, 27, 27, 0.08);
}

.compare-grid,
.location-split {
  display: grid;
  gap: 12px;
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.flow-chart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  min-height: 220px;
  padding: 8px 0 4px;
}

.flow-column {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.flow-column__bar-wrap {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: end;
  padding: 8px 12px 0;
  background: linear-gradient(180deg, #f8f4f4 0%, #f2ecec 100%);
  border-radius: 12px;
}

.flow-column__bar {
  width: 100%;
  min-height: 10px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.flow-column__bar--muted {
  background: linear-gradient(180deg, #FFFFFF 0%, #D8D8D8 100%);
}

.flow-column strong {
  font-size: 26px;
}

.flow-column span {
  font-size: 12px;
  color: var(--muted);
}

.compare-stat {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
}

.compare-stat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.compare-stat strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 28px;
}

.compare-bar {
  height: 10px;
  border-radius: 999px;
  background: #f0ebeb;
  overflow: hidden;
}

.compare-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.compare-bar--muted span {
  background: #d8c9ca;
}

.location-split__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: var(--muted);
}

.location-split__row strong {
  color: var(--text);
  font-size: 14px;
}

.stacked-bar {
  display: flex;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #efe9e8;
  margin-bottom: 12px;
}

.stacked-bar__segment--good {
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.stacked-bar__segment--warn {
  background: #e7d7d8;
}

.legend-grid,
.watch-grid__stats {
  display: grid;
  gap: 10px;
}

.legend-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.watch-grid__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.funnel-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--muted);
}

.legend-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: -1px;
}

.legend-swatch--core {
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.legend-swatch--referral {
  background: var(--accent-referral);
}

.funnel-row {
  display: grid;
  grid-template-columns: 140px 1fr 36px;
  gap: 10px;
  align-items: center;
}

.funnel-row__copy {
  display: grid;
  gap: 2px;
}

.funnel-row__label {
  font-size: 12px;
  color: var(--muted);
}

.funnel-row__meta {
  min-height: 16px;
  font-size: 11px;
  color: var(--muted);
}

.funnel-row__bar {
  height: 10px;
  border-radius: 999px;
  background: #f0ebeb;
  overflow: hidden;
}

.funnel-row__fill {
  display: flex;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.funnel-row__segment {
  display: block;
  height: 100%;
}

.funnel-row__segment--core {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.funnel-row__segment--referral {
  background: var(--accent-referral);
}

.funnel-row strong {
  font-size: 14px;
}

.source-roi-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: center;
}

.source-roi-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.source-roi-controls .cohort-picker {
  min-width: 220px;
}

.source-roi-chart-wrap {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.source-roi-chart {
  width: 188px;
  height: 188px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

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

.source-roi-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
}

.source-roi-item__copy,
.source-roi-item__stats {
  display: grid;
  gap: 2px;
}

.source-roi-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.source-roi-item__meta,
.source-roi-item__stats span {
  font-size: 12px;
  color: var(--muted);
}

.source-roi-item__stats {
  justify-items: end;
}

.source-roi-total {
  min-width: 108px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
  text-align: right;
}

.source-roi-total strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.source-roi-total span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

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

.onboarding-watch-root {
  display: grid;
  gap: 14px;
}

.watch-summary-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-soft);
}

.watch-summary-card span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.watch-summary-card strong {
  display: block;
  margin: 4px 0 0;
  font-size: 34px;
  line-height: 1;
}

.watch-summary-card p {
  font-size: 13px;
  color: var(--muted);
}

.watch-card--detailed {
  display: grid;
  gap: 16px;
}

.watch-grid--single .watch-card--detailed {
  min-height: 0;
}

.watch-inline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.watch-inline-stat {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.watch-inline-stat span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.watch-inline-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  line-height: 1;
}

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

.watch-stat-tile {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  min-height: 112px;
  align-content: start;
}

.watch-stat-tile:hover {
  border-color: rgba(200, 16, 46, 0.35);
}

.watch-stat-tile span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.watch-stat-tile strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.watch-stat-tile small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

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

.watch-note {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.watch-note--wide {
  grid-column: 1 / -1;
}

.cohort-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.entry-form {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-table__header,
.mini-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr 0.7fr 0.9fr;
  gap: 12px;
  padding: 10px 0;
}

.mini-table__header {
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.mini-table__row + .mini-table__row {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
}

th {
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.note-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.modal.hidden {
  display: none;
}

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

.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 23, 0.36);
}

.modal__dialog {
  position: relative;
  width: min(520px, calc(100% - 24px));
  margin: 8vh auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.modal__list {
  display: grid;
  gap: 8px;
  max-height: 56vh;
  overflow: auto;
}

.modal__item {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
  display: grid;
  gap: 4px;
}

.modal__item strong {
  font-size: 14px;
}

.modal__item span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 1280px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    justify-items: start;
  }

  .sync-copy {
    text-align: left;
  }

  .kpi-grid,
  .pulse-grid {
    grid-template-columns: 1fr;
  }

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

  .watch-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .section-split-row {
    grid-template-columns: 1fr;
  }

  .onboarding-summary-grid,
  .source-roi-layout,
  .flow-chart {
    grid-template-columns: 1fr;
  }

  .watch-inline-stats,
  .watch-stat-grid,
  .watch-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .app-shell {
    width: min(100% - 18px, 1580px);
    padding-top: 10px;
  }

  .topbar,
  .filter-band,
  .section {
    padding: 18px;
    border-radius: 22px;
  }

  .brand-logo {
    width: 190px;
  }

  h1 {
    font-size: 34px;
  }

  .kpi-grid,
  .daily-grid,
  .flag-grid {
    grid-template-columns: 1fr;
  }

  .pulse-stats,
  .cohort-meta,
  .legend-grid,
  .watch-grid__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pulse-stats--secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pulse-daily,
  .velocity-strip,
  .compare-grid,
  .location-split__row {
    grid-template-columns: 1fr;
  }

  .watch-inline-stats,
  .watch-stat-grid,
  .watch-note-grid {
    grid-template-columns: 1fr;
  }
}
