
:root {
  --bg: #fffdf9;
  --panel: #fff7ef;
  --panel-strong: #fff1e2;
  --text: #20160d;
  --muted: #7a6354;
  --line: #ecd8c2;
  --orange: #f57c00;
  --orange-deep: #cf5f00;
  --ink: #101916;
  --ink-soft: #18251f;
  --ink-muted: #a9bdb3;
  --radar: #33d18f;
  --radar-deep: #0d8d60;
  --blue: #2454c4;
  --ok: #176947;
  --ok-bg: #e8f4ee;
  --warn: #8f5d00;
  --warn-bg: #fff2d9;
  --error: #8d2a1a;
  --error-bg: #fde9e3;
  --idle: #7b685a;
  --idle-bg: #f2e9df;
  --radius: 22px;
  --body-font: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --display-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background: #ffffff;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small,
.helper,
.eyebrow,
.archive-row p,
.run-row p,
.field span,
.account-copy small {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
}

.nav-link.is-active {
  background: var(--panel);
  color: var(--text);
}

.account {
  display: flex;
  align-items: center;
  gap: 14px;
}

.account-copy {
  display: grid;
  text-align: right;
  gap: 2px;
}

.page {
  padding: 28px 0 80px;
}

.landing-page {
  background: #ffffff;
}

.landing-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: min(560px, calc(100svh - 140px));
  overflow: hidden;
  background: var(--ink);
  color: #f5fbf6;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 50%, rgba(51, 209, 143, 0.2), transparent 38%),
    linear-gradient(135deg, #101916 0%, #172b24 48%, #0f1715 100%);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 209, 143, 0.8), transparent);
}

.landing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.landing-hero .eyebrow,
.landing-hero .landing-note {
  color: var(--ink-muted);
}

.landing-hero-copy {
  animation: landing-rise 520ms ease-out both;
}

.landing-hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--display-font);
  font-size: clamp(4.2rem, 11vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
  word-break: keep-all;
}

.landing-lede {
  margin: 24px 0 0;
  max-width: 48ch;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.75;
  color: #dbe7df;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.landing-primary {
  border-color: var(--radar);
  background: var(--radar);
  color: #07110c;
}

.landing-hero .button.subtle {
  border-color: rgba(255, 255, 255, 0.36);
  color: #f5fbf6;
}

.landing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.94rem;
}

.landing-note span {
  padding-left: 12px;
  border-left: 2px solid rgba(51, 209, 143, 0.72);
}

.radar-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  animation: landing-rise 640ms 120ms ease-out both;
}

.radar-scope {
  position: relative;
  width: min(430px, 42vw);
  aspect-ratio: 1;
  border: 1px solid rgba(51, 209, 143, 0.54);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 52px rgba(51, 209, 143, 0.2);
  background:
    radial-gradient(circle, transparent 0 18%, rgba(51, 209, 143, 0.12) 18.5% 19%, transparent 19.5% 38%, rgba(51, 209, 143, 0.14) 38.5% 39%, transparent 39.5% 58%, rgba(51, 209, 143, 0.14) 58.5% 59%, transparent 59.5%),
    rgba(7, 17, 12, 0.22);
  overflow: hidden;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(51, 209, 143, 0.72), rgba(51, 209, 143, 0.18) 22deg, transparent 58deg);
  animation: radar-sweep 3.2s linear infinite;
  mix-blend-mode: screen;
}

.radar-ring,
.radar-cross {
  position: absolute;
  pointer-events: none;
}

.radar-ring {
  inset: 18%;
  border: 1px solid rgba(51, 209, 143, 0.24);
  border-radius: 50%;
}

.radar-ring-2 {
  inset: 34%;
}

.radar-ring-3 {
  inset: 49%;
}

.radar-cross {
  background: rgba(51, 209, 143, 0.22);
}

.radar-cross-x {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.radar-cross-y {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.radar-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9fff0;
  box-shadow: 0 0 18px rgba(51, 209, 143, 0.92);
}

.radar-dot-1 {
  top: 26%;
  left: 58%;
}

.radar-dot-2 {
  top: 45%;
  left: 72%;
}

.radar-dot-3 {
  top: 62%;
  left: 38%;
}

.radar-dot-4 {
  top: 34%;
  left: 30%;
}

.radar-caption {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding-top: 12px;
  border-top: 1px solid rgba(51, 209, 143, 0.45);
  color: #dbe7df;
}

.radar-caption strong {
  color: var(--radar);
  letter-spacing: 0.18em;
}

.radar-caption span {
  color: var(--ink-muted);
}

.landing-section {
  scroll-margin-top: 104px;
}

.landing-final h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.landing-final p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}

.landing-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 48px 0 76px;
}

.landing-final p {
  margin-top: 14px;
  max-width: 56ch;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: end;
  padding: 40px 0 28px;
  border-bottom: 2px solid var(--orange);
}

.hero-compact {
  grid-template-columns: 1fr;
}

.hero-dashboard-split {
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  align-items: stretch;
}

.dashboard-today {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  justify-content: end;
  text-align: right;
}

.dashboard-today .hero-copy {
  display: grid;
  justify-items: end;
}

.dashboard-today .hero-copy h1 {
  max-width: 8ch;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--muted);
}

.dashboard-today .hero-inline {
  font-size: 0.94rem;
}

.slug-summary {
  display: grid;
  align-content: start;
  gap: 18px;
}

.slug-summary .section-head {
  margin-bottom: 0;
}

.slug-summary .section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.slug-trend-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.slug-trend-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.slug-trend-row h3,
.slug-empty h3 {
  margin: 0;
}

.slug-trend-row h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}

.slug-trend-row p,
.slug-empty p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.slug-trend-meta {
  display: grid;
  justify-items: end;
  gap: 2px;
  min-width: 104px;
}

.slug-trend-meta strong {
  font-family: var(--display-font);
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 0.9;
  color: var(--orange);
}

.slug-trend-meta span,
.slug-trend-meta small {
  color: var(--muted);
}

.slug-trend-meta span {
  font-weight: 700;
}

.slug-empty {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.hero-copy h1,
.empty h1,
.auth-hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.lede,
.auth-copy,
.empty p {
  margin: 16px 0 0;
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
  color: var(--muted);
}

.hero-number {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.hero-number-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hero-number strong {
  font-family: var(--display-font);
  font-size: clamp(4.4rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--orange);
}

.section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

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

.section-head h2,
.auth-panel h2,
.empty h3,
.feed-main h3,
.admin-item h3 {
  margin: 0;
}

.feed-list,
.archive-list,
.run-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feed-row,
.archive-row,
.run-row {
  display: grid;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feed-row {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.feed-row:hover {
  border-color: rgba(36, 84, 196, 0.42);
  transform: translateX(4px);
}

.feed-meta {
  display: grid;
  gap: 8px;
  justify-content: start;
}

.feed-meta time,
.archive-meta,
.run-metrics,
.inline-status {
  color: var(--muted);
  font-size: 0.92rem;
}

.feed-main h3 {
  font-size: 1.14rem;
  line-height: 1.4;
}

.feed-main a {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange-deep);
  word-break: break-all;
}

.discovery-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-top: 2px solid var(--orange);
}

.discovery-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  table-layout: fixed;
}

.discovery-table th,
.discovery-table td {
  padding: 17px 18px;
  border-bottom: 1px solid #e5cbb3;
  text-align: left;
  vertical-align: top;
}

.discovery-table tbody tr {
  box-shadow: inset 0 -1px 0 rgba(245, 124, 0, 0.1);
}

.discovery-table th {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.discovery-table th:nth-child(1),
.discovery-table td:nth-child(1) {
  width: 160px;
}

.discovery-table th:nth-child(2),
.discovery-table td:nth-child(2) {
  width: 280px;
}

.discovery-table th:nth-child(4),
.discovery-table td:nth-child(4) {
  width: 140px;
}

.discovery-table td {
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 400;
}

.discovery-table a {
  color: var(--orange-deep);
  text-decoration: none;
  word-break: break-all;
}

.discovery-table a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.discovery-table time {
  color: var(--muted);
  white-space: nowrap;
}

.discovery-table .site-chip {
  font-weight: 500;
}

.users-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.users-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  table-layout: fixed;
}

.users-table th,
.users-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e5cbb3;
  text-align: left;
  vertical-align: middle;
}

.users-table tbody tr:last-child td {
  border-bottom: 0;
}

.users-table th {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.users-table th:nth-child(1),
.users-table td:nth-child(1) {
  width: 300px;
}

.users-table th:nth-child(2),
.users-table td:nth-child(2),
.users-table th:nth-child(3),
.users-table td:nth-child(3) {
  width: 150px;
}

.users-table th:nth-child(5),
.users-table td:nth-child(5) {
  width: 190px;
}

.users-table th:nth-child(6),
.users-table td:nth-child(6) {
  width: 110px;
}

.user-email {
  display: inline-block;
  line-height: 1.45;
  word-break: break-all;
}

.users-table time {
  color: var(--muted);
  font-size: 0.94rem;
  white-space: nowrap;
}

.table-control {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.table-control:focus {
  outline: 2px solid rgba(245, 124, 0, 0.18);
  border-color: var(--orange);
}

.site-chip,
.status {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.site-chip {
  background: var(--panel);
  color: var(--orange-deep);
}

.status-ok {
  color: var(--ok);
  background: var(--ok-bg);
}

.status-pending {
  color: var(--warn);
  background: var(--warn-bg);
}

.status-error {
  color: var(--error);
  background: var(--error-bg);
}

.status-idle {
  color: var(--idle);
  background: var(--idle-bg);
}

.archive-row,
.run-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.archive-row-accent {
  border-top: none;
  padding-top: 0;
}

.archive-row a {
  font-size: 1.16rem;
  text-decoration: none;
}

.archive-meta,
.run-metrics,
.inline-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.flash {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 24px 0 0;
  padding: 14px 18px;
  border-radius: 16px;
}

.flash-success {
  background: var(--ok-bg);
  color: var(--ok);
}

.flash-error {
  background: var(--error-bg);
  color: var(--error);
}

.stack-form {
  display: grid;
  gap: 18px;
}

.inset-form,
.admin-item,
.auth-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.auth-shell {
  min-height: calc(100vh - 84px);
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: center;
}

.auth-hero {
  padding: 36px 0;
}

.auth-panel-head {
  margin-bottom: 20px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field-wide {
  grid-column: span 2;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(245, 124, 0, 0.18);
  border-color: var(--orange);
}

.email-prefix-control,
.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text);
}

.email-prefix-control input {
  padding-right: 174px;
}

.email-domain {
  position: absolute;
  right: 16px;
  color: var(--muted);
  pointer-events: none;
}

.password-input-wrap input {
  padding-right: 58px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transform: translateY(-50%);
}

.password-toggle:hover,
.password-toggle.is-visible {
  background: var(--panel);
  color: var(--orange-deep);
}

.password-toggle:focus-visible {
  outline: 2px solid rgba(245, 124, 0, 0.28);
  outline-offset: 2px;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.subtle {
  background: transparent;
  color: var(--orange-deep);
}

.button.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.button.is-disabled {
  border-color: var(--line);
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  margin-bottom: 18px;
}

.pagination-copy {
  display: grid;
  gap: 4px;
}

.pagination-copy strong {
  font-size: 1rem;
}

.pagination-copy span {
  color: var(--muted);
}

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

.mini-action {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.mini-action strong {
  font-size: 1rem;
}

.mini-action small {
  color: var(--muted);
}

.mini-action-accent {
  background: var(--panel);
}

.admin-list {
  display: grid;
  gap: 18px;
}

.admin-item-head,
.meta-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.meta-strip {
  padding: 14px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.empty {
  padding: 36px 0;
}

.major-empty {
  min-height: calc(100vh - 220px);
  display: grid;
  align-content: center;
}

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes landing-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .landing-hero-inner,
  .auth-shell,
  .feed-row,
  .archive-row,
  .run-row,
  .pagination {
    grid-template-columns: 1fr;
  }

  .landing-hero-inner {
    gap: 28px;
  }

  .radar-stage {
    justify-items: start;
    min-height: 360px;
  }

  .radar-scope {
    width: min(380px, 82vw);
  }

  .landing-final {
    display: grid;
    justify-items: start;
  }

  .hero-number {
    justify-items: start;
  }

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

  .field-wide {
    grid-column: span 2;
  }

  .account {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .shell,
  .auth-shell {
    width: min(100vw - 20px, 100%);
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .nav {
    order: 3;
  }

  .actions-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: span 1;
  }

  .email-prefix-control input {
    padding-right: 148px;
  }

  .email-domain {
    right: 12px;
    font-size: 0.92rem;
  }

  .admin-item,
  .auth-panel,
  .inset-form {
    padding: 20px;
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero-inner {
    padding: 48px 0;
  }

  .landing-hero-copy h1 {
    max-width: none;
    font-size: clamp(3.1rem, 18vw, 4.6rem);
  }

  .landing-actions .button {
    width: 100%;
  }

  .radar-stage {
    min-height: 300px;
  }

  .radar-scope {
    width: min(300px, 86vw);
  }

  .radar-caption {
    position: static;
    justify-self: stretch;
    margin-top: 18px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .feed-row:hover {
    transform: none;
  }

  .dashboard-today {
    grid-template-columns: 1fr;
    justify-content: start;
    text-align: left;
  }

  .dashboard-today .hero-copy,
  .dashboard-today .hero-number,
  .slug-trend-meta {
    justify-items: start;
  }

  .slug-trend-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .pagination {
    display: grid;
  }
}
