:root {
  --page: #f5f0e8;
  --surface: #fffaf4;
  --surface-2: #fffdf9;
  --ink: #111111;
  --muted: #6e6761;
  --line: rgba(17, 17, 17, 0.08);
  --blue: #2f50d8;
  --orange: #ff5a12;
  --yellow: #ffd45c;
  --mint: #59cfc2;
  --shadow: 0 20px 45px rgba(30, 24, 18, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Outfit", "PingFang SC", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(17, 17, 17, 0.05) 5% 5.1%, transparent 5.1% 94.9%, rgba(17, 17, 17, 0.05) 94.9% 95%, transparent 95%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 22%);
}

.app-shell {
  width: min(1400px, calc(100% - 36px));
  margin: 24px auto 72px;
}

.hero,
.panel {
  position: relative;
  background: var(--surface);
  border: 10px solid #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after,
.panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.panel {
  margin-top: 20px;
  padding: 24px;
}

#setupPanel {
  background: var(--surface-2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 22px;
  padding: 30px;
  min-height: 380px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after,
.panel-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(17, 17, 17, 0.4);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: "Noto Serif SC", "Songti SC", serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

h3 {
  font-size: 1.24rem;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

.hero-text {
  max-width: 54ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-side {
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  gap: 16px;
}

.hero-illustration-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: 248px;
  padding: 18px 18px 18px;
  border-radius: 30px;
  background: #fff7ef;
  border: 8px solid #ffffff;
  box-shadow: var(--shadow);
}

.hero-illustration-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-illustration-copy strong {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.05rem;
}

.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(17, 17, 17, 0.08));
}

.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-card {
  min-height: 108px;
  padding: 18px 18px 16px;
  border: 7px solid #ffffff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: #fffdf8;
}

.hero-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.hero-card-wide {
  grid-column: 1 / -1;
}

.accent-yellow {
  background: #fff0b8;
}

.accent-blue {
  background: #dfe6ff;
}

.accent-orange {
  background: #ffe2d3;
}

.toolbar {
  background: var(--surface);
}

.toolbar-row,
.panel-heading,
.tabs,
.toolbar-actions,
.check-row,
.meta-line,
.tag-row {
  display: flex;
  gap: 12px;
}

.toolbar-row,
.panel-heading {
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.panel-heading h2,
.panel-heading h3,
.panel-heading h4,
.list-card h3,
.task-card h3,
.report-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.panel-heading h2::before,
.panel-heading h3::before,
.panel-heading h4::before,
.list-card h3::before,
.task-card h3::before,
.report-card h3::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.toolbar-row label {
  min-width: 220px;
}

.viewer-card {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fffdf9;
  color: var(--muted);
  line-height: 1.8;
}

.viewer-card::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  vertical-align: middle;
}

.tabs {
  width: min(1100px, 100%);
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 12px 22px 2px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tabs::before,
.tabs::after {
  content: "";
  flex: 1 0 44px;
  min-width: 44px;
  height: 1px;
  background: rgba(17, 17, 17, 0.5);
}

.tab-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.tab-button::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 5px;
  background: #111111;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.tab-button[data-tab="dashboard"]::before {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd45c 0 35%, #ff5a12 36% 68%, #2f50d8 69% 100%);
}

.tab-button[data-tab="users"]::before {
  background:
    radial-gradient(circle at 32% 34%, #ff5a12 0 20%, transparent 21%),
    radial-gradient(circle at 68% 34%, #2f50d8 0 20%, transparent 21%),
    linear-gradient(#111111 0 0) bottom 2px left 2px / 12px 5px no-repeat;
  background-color: #fff0e8;
}

.tab-button[data-tab="objectives"]::before {
  clip-path: polygon(50% 0, 100% 40%, 78% 100%, 22% 100%, 0 40%);
  background: #ffd45c;
}

.tab-button[data-tab="results"]::before {
  background:
    linear-gradient(#2f50d8 0 0) left 2px bottom 2px / 3px 8px no-repeat,
    linear-gradient(#ff5a12 0 0) center bottom 2px / 3px 11px no-repeat,
    linear-gradient(#111111 0 0) right 2px bottom 2px / 3px 6px no-repeat;
  background-color: #eef2ff;
}

.tab-button[data-tab="tasks"]::before {
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 44%, #111111 45% 55%, transparent 56%),
    radial-gradient(circle at 50% 50%, #ffd45c 0 34%, #ff5a12 35% 62%, #2f50d8 63% 100%);
}

.tab-button[data-tab="reviews"]::before {
  background:
    linear-gradient(#111111 0 0) center / 10px 2px no-repeat,
    linear-gradient(#111111 0 0) center / 2px 10px no-repeat;
  background-color: #dff6f2;
  border-radius: 50%;
}

.tab-button[data-tab="reports"]::before {
  background:
    linear-gradient(#111111 0 0) 4px 4px / 8px 2px no-repeat,
    linear-gradient(#111111 0 0) 4px 8px / 8px 2px no-repeat,
    linear-gradient(#111111 0 0) 4px 12px / 6px 2px no-repeat;
  background-color: #fff2c7;
}

.tab-button:hover {
  transform: translateY(-1px);
}

.tab-button.active {
  background: #fffaf4;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(8px);
}

.auth-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  padding: 28px;
  border: 10px solid #ffffff;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.18);
}

label,
.checkbox-group {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 80, 216, 0.35);
  box-shadow: 0 0 0 5px rgba(47, 80, 216, 0.08);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button {
  border: 0;
  cursor: pointer;
}

.primary-button,
.secondary-button,
.ghost-button {
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.primary-button {
  background: var(--orange);
  color: white;
  box-shadow: 0 14px 24px rgba(255, 90, 18, 0.2);
}

.secondary-button {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 24px rgba(47, 80, 216, 0.18);
}

.ghost-button {
  background: #fffdf9;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.stack-form,
.stats-grid,
.task-cards,
.metric-list {
  display: grid;
  gap: 16px;
}

.list-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.panel-stack,
.role-record-list-stack {
  display: grid;
  gap: 20px;
}

.narrow-form {
  max-width: 560px;
}

.grid {
  display: grid;
  gap: 16px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-split,
.task-layout,
.dashboard-grid,
.report-layout,
.dashboard-visual-grid {
  display: grid;
  gap: 20px;
}

.dashboard-focus-grid,
.dashboard-chart-row {
  display: grid;
  gap: 20px;
}

.panel-split {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
}

.task-layout,
.dashboard-grid,
.dashboard-visual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.task-primary-column {
  min-width: 0;
}

.task-secondary-column {
  min-width: 0;
}

.dashboard-visual-grid-compact {
  grid-template-columns: 1fr;
}

.dashboard-focus-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.dashboard-chart-row {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.report-layout {
  grid-template-columns: minmax(310px, 360px) minmax(0, 1fr);
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.focus-panel {
  position: relative;
  border-radius: 30px;
  border: 7px solid #ffffff;
  box-shadow: var(--shadow);
  background: #fffdf8;
  overflow: hidden;
  padding: 24px;
}

.focus-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--yellow));
}

.focus-hero-panel {
  background: #111111;
  color: white;
}

.focus-hero-panel h3,
.focus-hero-panel p,
.focus-hero-panel .panel-kicker,
.focus-hero-panel label,
.focus-hero-panel span {
  color: inherit;
}

.focus-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.focus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.focus-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.focus-story {
  min-height: 260px;
}

.focus-stat-stack {
  display: grid;
  gap: 14px;
}

.summary-stat {
  position: relative;
  border-radius: 24px;
  padding: 18px 18px 16px;
  background: #fffaf4;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.summary-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-stat strong {
  display: block;
  margin-top: 10px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 2rem;
  line-height: 1;
}

.summary-hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.summary-ring {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 50%;
  background:
    conic-gradient(var(--blue) 0 34%, var(--orange) 34% 68%, var(--yellow) 68% 100%);
}

.summary-ring-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.summary-ring-core span {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.summary-ring-core strong {
  margin-top: 10px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 2.1rem;
  color: white;
}

.summary-bars {
  display: grid;
  gap: 14px;
}

.summary-brief {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.summary-brief p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.summary-brief-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.summary-bar-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 50px;
  gap: 12px;
  align-items: center;
}

.summary-bar-row label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.summary-bar-row strong {
  font-size: 1rem;
  color: white;
}

.summary-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.summary-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--yellow));
}

.compact-chart {
  gap: 12px;
}

.light-panel {
  background: #fff7ef;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stat-card,
.list-card,
.task-card,
.report-card {
  position: relative;
  border-radius: 30px;
  border: 7px solid #ffffff;
  box-shadow: var(--shadow);
  background: #fffdf8;
  overflow: hidden;
}

.stat-card::before,
.list-card::before,
.task-card::before,
.report-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10px;
  background: #111111;
  opacity: 0.08;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0 14%, transparent 15%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.tone-blue::before {
  background: var(--blue);
  opacity: 1;
}

.tone-orange::before {
  background: var(--orange);
  opacity: 1;
}

.tone-yellow::before {
  background: var(--yellow);
  opacity: 1;
}

.tone-ink::before {
  background: #111111;
  opacity: 1;
}

.stat-card {
  min-height: 180px;
  padding: 24px 22px 20px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.stat-meter {
  margin-top: 14px;
  height: 12px;
  border-radius: 999px;
  background: #f0ece5;
  overflow: hidden;
}

.stat-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--yellow));
}

.stat-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.contrast-panel {
  background: #101010;
  color: white;
}

.contrast-panel h3,
.contrast-panel h4,
.contrast-panel p,
.contrast-panel .panel-kicker,
.contrast-panel .panel-heading {
  color: inherit;
}

.chart-panel {
  background: #fff7ef;
}

.pulse-board {
  display: grid;
  gap: 18px;
}

.pulse-story {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
}

.pulse-illustration {
  position: relative;
  height: 160px;
  border-radius: 28px;
  background: #fff7ef;
  overflow: hidden;
}

.pulse-orb {
  position: absolute;
  border-radius: 50%;
}

.orb-blue {
  width: 100px;
  height: 100px;
  left: 22px;
  top: 18px;
  background: var(--blue);
}

.orb-orange {
  width: 74px;
  height: 74px;
  right: 28px;
  top: 26px;
  background: var(--orange);
}

.orb-yellow {
  width: 86px;
  height: 86px;
  left: 70px;
  bottom: 16px;
  background: var(--yellow);
}

.pulse-line {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 34px;
  height: 40px;
  border-bottom: 8px solid #101010;
  border-radius: 0 0 40px 40px;
}

.pulse-copy p {
  margin: 10px 0 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.pulse-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pulse-kpi {
  padding: 16px 18px;
  border-radius: 24px;
  background: #fff8ef;
  color: #101010;
}

.pulse-kpi span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse-kpi strong {
  display: block;
  margin-top: 10px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.9rem;
}

.status-chart {
  display: grid;
  gap: 16px;
}

.status-row {
  padding: 14px 16px;
  border-radius: 22px;
  background: #fffdf8;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.status-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 600;
}

.status-bar {
  height: 12px;
  background: #efe7dd;
  border-radius: 999px;
  overflow: hidden;
}

.status-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #111111;
}

.tone-blue .status-bar i {
  background: var(--blue);
}

.tone-orange .status-bar i {
  background: var(--orange);
}

.tone-yellow .status-bar i {
  background: var(--yellow);
}

.tone-ink .status-bar i {
  background: #111111;
}

.list-card,
.task-card {
  padding: 20px 20px 18px;
}

.list-card header,
.task-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.meta-line,
.tag-row {
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag,
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  line-height: 1;
}

.tag {
  background: #edf1ff;
  color: var(--blue);
}

.status-pill {
  background: #ffe5d8;
  color: var(--orange);
}

.tag::before,
.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
}

.list-card p,
.task-card p,
.report-card p,
.feedback {
  font-size: 0.94rem;
}

.feedback {
  padding: 13px 15px;
  border-radius: 18px;
  line-height: 1.7;
}

.feedback.success {
  background: rgba(89, 207, 194, 0.12);
  color: #236d65;
  border: 1px solid rgba(89, 207, 194, 0.18);
}

.feedback.error {
  background: rgba(255, 90, 18, 0.12);
  color: #a94212;
  border: 1px solid rgba(255, 90, 18, 0.18);
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  gap: 10px;
  width: min(320px, calc(100vw - 32px));
}

.toast {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(249, 244, 235, 0.96);
  box-shadow: 0 18px 34px rgba(25, 22, 21, 0.18);
  line-height: 1.6;
  color: var(--ink);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.success {
  border-color: rgba(89, 207, 194, 0.22);
  color: #236d65;
}

.toast.error {
  border-color: rgba(255, 90, 18, 0.22);
  color: #a94212;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateY(8px);
}

.just-created {
  box-shadow: 0 0 0 3px rgba(96, 127, 208, 0.22), 0 18px 38px rgba(25, 22, 21, 0.16);
  transform: translateY(-2px);
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.report-entry.is-selected,
.report-entry.just-created {
  border-color: rgba(96, 127, 208, 0.28);
}

.section-stack {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.mini-timeline {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.timeline-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(249, 244, 235, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.timeline-item strong,
.timeline-item span {
  display: block;
}

.timeline-item strong {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.timeline-item span {
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--ink);
}

.timeline-item p {
  margin: 8px 0 0;
}

.table-wrap {
  overflow: auto;
  border-radius: 26px;
  border: 7px solid #ffffff;
  box-shadow: var(--shadow);
  background: #fffdf8;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fffdf8;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f9f4eb;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dual-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.metric-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.metric-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fffdf8;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.report-card {
  min-height: 460px;
  padding: 24px;
}

.report-section + .report-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(17, 17, 17, 0.12);
}

.report-section ul {
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

.empty-hint,
.muted {
  color: var(--muted);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox input {
  width: auto;
  accent-color: var(--blue);
}

.task-cards {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

main {
  position: relative;
}

@media (max-width: 1120px) {
  .hero,
  .panel-split,
  .task-layout,
  .dashboard-grid,
  .report-layout,
  .dashboard-visual-grid,
  .stats-grid,
  .dashboard-focus-grid,
  .dashboard-chart-row,
  .summary-hero {
    grid-template-columns: 1fr;
  }

  .two-col,
  .three-col,
  .dual-list,
  .pulse-kpis,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-side {
    grid-template-rows: auto;
  }

  .summary-ring {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 720px) {
  .app-shell {
    width: min(100% - 18px, 1400px);
    margin-top: 12px;
  }

  .hero,
  .panel {
    padding: 18px;
    border-width: 6px;
    border-radius: 28px;
  }

  .tabs {
    justify-content: flex-start;
    width: 100%;
    padding: 8px 0 0;
  }

  .tabs::before,
  .tabs::after {
    display: none;
  }

  h1 {
    max-width: none;
    font-size: 2.2rem;
  }

  .hero-illustration-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .pulse-story {
    grid-template-columns: 1fr;
  }

  .hero-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* Editorial art-direction override */
:root {
  --page: #111112;
  --surface: #f6efdf;
  --surface-2: #fff9ef;
  --ink: #201b19;
  --muted: #746c65;
  --line: rgba(35, 29, 28, 0.12);
  --blue: #7fa7de;
  --orange: #cf7c62;
  --yellow: #efe6c6;
  --mint: #c8d8c8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

body {
  background:
    radial-gradient(circle at top left, rgba(95, 96, 157, 0.32), transparent 24%),
    linear-gradient(180deg, #1b1a22 0%, #0f1013 38%, #121213 100%);
}

body::before {
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(255, 255, 255, 0.06) 6% 6.08%, transparent 6.08% 93.92%, rgba(255, 255, 255, 0.06) 93.92% 94%, transparent 94%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
}

.app-shell {
  width: min(1500px, calc(100% - 40px));
  margin: 30px auto 88px;
}

.hero,
.panel {
  border: 1px solid rgba(255, 250, 240, 0.12);
}

.hero::after,
.panel::after {
  inset: 12px;
  border: 1px solid rgba(35, 29, 28, 0.08);
  border-radius: calc(var(--radius-xl) - 12px);
}

.hero {
  min-height: 430px;
  padding: 38px;
  background:
    radial-gradient(circle at top left, rgba(127, 167, 222, 0.22), transparent 30%),
    linear-gradient(145deg, #2b2a32 0%, #1e2026 46%, #17181b 100%);
}

.eyebrow,
.panel-kicker {
  color: rgba(255, 248, 238, 0.7);
}

.eyebrow::before,
.eyebrow::after,
.panel-kicker::before {
  background: currentColor;
}

h1 {
  max-width: 11ch;
  color: #fff8f0;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h2,
.panel-heading h2,
.panel-heading h3,
.panel-heading h4,
.list-card h3,
.task-card h3,
.report-card h3 {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
}

.panel-heading h2,
.panel-heading h3,
.panel-heading h4,
.list-card h3,
.task-card h3,
.report-card h3 {
  font-size: clamp(1.55rem, 1.8vw, 2rem);
  letter-spacing: 0.01em;
}

.hero-text {
  color: rgba(255, 248, 238, 0.78);
  line-height: 1.9;
}

.hero-illustration-card {
  min-height: 310px;
  padding: 24px 24px 20px;
  border-radius: 34px;
  background: #f6efdf;
  border: 1px solid rgba(36, 31, 29, 0.1);
}

.hero-illustration-copy {
  margin-bottom: 18px;
}

.hero-chip {
  padding: 10px 16px;
  border: 1.5px solid #2f2d2d;
  background: transparent;
  color: #2f2d2d;
  letter-spacing: 0.18em;
}

.hero-illustration-copy strong {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-card {
  min-height: 118px;
  border: 1px solid rgba(255, 248, 238, 0.12);
  background: rgba(246, 239, 223, 0.12);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.hero-card span {
  color: rgba(255, 248, 238, 0.64);
}

.hero-card strong {
  color: #fff8f0;
  font-size: 1.55rem;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
}

.accent-yellow,
.accent-blue,
.accent-orange {
  background: transparent;
}

.viewer-card,
.toolbar,
#setupPanel,
#tab-users .panel,
#tab-objectives .panel,
#tab-results .panel,
#tab-reviews .panel,
#tab-reports .panel,
#tab-tasks .panel,
#tab-dashboard .panel {
  background: #f6efdf;
}

.viewer-card {
  padding: 20px 22px;
  border: 1px solid rgba(36, 31, 29, 0.1);
  background: rgba(255, 249, 239, 0.56);
}

.tabs {
  width: min(1180px, 100%);
  justify-content: flex-start;
  padding: 16px;
  background: #2f2d2d;
  border: 1px solid rgba(255, 248, 238, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.tabs::before,
.tabs::after {
  display: none;
}

.tab-button {
  border: 1px solid rgba(255, 248, 238, 0.14);
  color: rgba(255, 248, 238, 0.86);
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.tab-button::before {
  background: rgba(255, 248, 238, 0.8);
  box-shadow: none;
}

.tab-button.active {
  background: #f6efdf;
  color: #1d1a18;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.panel-heading h2::before,
.panel-heading h3::before,
.panel-heading h4::before,
.list-card h3::before,
.task-card h3::before,
.report-card h3::before {
  width: 26px;
  height: 2px;
  flex: 0 0 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

label,
.checkbox-group {
  gap: 10px;
  font-size: 0.94rem;
}

input,
select,
textarea {
  padding: 15px 18px;
  border: 1.5px solid rgba(36, 31, 29, 0.16);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.86);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(207, 124, 98, 0.6);
  box-shadow: 0 0 0 5px rgba(207, 124, 98, 0.12);
}

.primary-button {
  background: #2f2d2d;
  color: #fff9ef;
  box-shadow: 0 14px 24px rgba(21, 19, 18, 0.18);
}

.secondary-button {
  background: #7fa7de;
  box-shadow: 0 14px 24px rgba(127, 167, 222, 0.2);
}

.ghost-button {
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(36, 31, 29, 0.12);
}

.panel-split {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
}

.focus-panel,
.stat-card,
.list-card,
.task-card,
.report-card,
.table-wrap {
  border: 1px solid rgba(36, 31, 29, 0.1);
  box-shadow: var(--shadow);
}

.focus-panel,
.stat-card,
.list-card,
.task-card,
.report-card {
  background: #f8f1e4;
}

.focus-panel {
  padding: 28px;
  border-radius: 34px;
}

.focus-panel::before {
  display: none;
}

.focus-hero-panel {
  background:
    radial-gradient(circle at top right, rgba(207, 124, 98, 0.3), transparent 25%),
    linear-gradient(180deg, #343233 0%, #252425 100%);
}

.focus-hero-panel::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(235, 184, 164, 0.85) 0 24%, transparent 25%),
    radial-gradient(circle at 66% 30%, rgba(127, 167, 222, 0.5) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 60%, rgba(207, 124, 98, 0.88) 0 32%, transparent 33%);
  opacity: 0.6;
  pointer-events: none;
}

.focus-badge {
  background: rgba(246, 239, 223, 0.14);
}

.stat-card::before,
.list-card::before,
.task-card::before,
.report-card::before {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(207, 124, 98, 0.14);
  transform: translate(32px, -34px);
  opacity: 1;
}

.stat-card::after {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.contrast-panel {
  background:
    radial-gradient(circle at top right, rgba(127, 167, 222, 0.16), transparent 24%),
    #2f2d2d;
}

.chart-panel {
  background: #efe6d3;
}

.list-card,
.task-card,
.report-card {
  padding: 24px 24px 20px;
}

.table-wrap {
  background: transparent;
  box-shadow: none;
}

table {
  border-collapse: separate;
  border-spacing: 0 12px;
  background: transparent;
}

th,
td {
  border-bottom: 0;
}

th {
  background: transparent;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

tbody td {
  background: #f6efdf;
  color: #2c2623;
}

tbody tr td:first-child {
  border-radius: 18px 0 0 18px;
}

tbody tr td:last-child {
  border-radius: 0 18px 18px 0;
}

.empty-hint {
  padding: 24px 0;
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .tabs {
    padding: 12px;
    border-radius: 28px;
  }

  .tab-button {
    font-size: 1rem;
  }

  .hero {
    padding: 24px;
  }
}

.hero-editorial {
  position: relative;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 36px;
  background: #1d1f24;
}

.hero-editorial .hero-side {
  width: min(820px, 100%);
  margin: 0 auto;
  display: block;
  order: 1;
}

.hero-editorial .hero-illustration-card {
  position: relative;
  min-height: 0;
  padding: 32px 48px 42px;
  border-radius: 36px;
  border: 0;
  background: #f6efdf;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.hero-editorial .hero-illustration-copy {
  margin-bottom: 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-editorial .hero-chip {
  display: inline-flex;
  width: 50px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: transparent;
  font-size: 0;
  background:
    linear-gradient(90deg, transparent 0 5px, #1f1b1b 5px 8px, transparent 8px 12px, #1f1b1b 12px 15px, transparent 15px 20px, #cf7c62 20px 24px, transparent 24px 28px, #1f1b1b 28px 31px, transparent 31px 35px, #1f1b1b 35px 38px, transparent 38px 42px, #1f1b1b 42px 45px, transparent 45px 100%);
}

.record-link-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(35, 29, 28, 0.08);
}

.record-link-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.record-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.record-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(35, 29, 28, 0.16);
  color: #2f2d2d;
  text-decoration: none;
  background: rgba(246, 239, 223, 0.55);
}

.record-link:hover {
  background: rgba(207, 124, 98, 0.12);
}

.hero-editorial .hero-illustration-copy strong {
  display: none;
}

.hero-editorial .hero-illustration {
  display: block;
  width: min(420px, 72vw);
  margin: 22px auto 0;
}

.hero-editorial .hero-copy {
  position: absolute;
  left: 50%;
  top: clamp(388px, 82vw, 452px);
  transform: translateX(-50%);
  z-index: 3;
  width: min(480px, calc(100% - 72px));
  margin: 0;
  order: 2;
  padding: 0 30px 32px;
  background: #f6efdf;
  border-radius: 0 0 36px 36px;
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero-editorial .eyebrow {
  display: none;
}

.hero-editorial .eyebrow::before,
.hero-editorial .eyebrow::after {
  display: none;
}

.hero-editorial .hero-copy > h1,
.hero-editorial .hero-copy > .hero-text {
  display: none;
}

.hero-editorial-copy {
  margin-top: 10px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-display-title {
  margin: 0;
  color: #1f1b1b;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(2.5rem, 6.2vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero-display-text {
  max-width: 22ch;
  margin: 18px auto 0;
  color: #3f3936;
  font-size: 1.04rem;
  line-height: 1.75;
  text-align: center;
}

.hero-entry-button {
  position: relative;
  margin-top: 38px;
  min-width: 142px;
  padding: 15px 30px;
  border: 2px solid #1f1b1b;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  font-weight: 600;
  font-size: 0;
}

.hero-entry-button::after {
  content: "进入试点";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #1f1b1b;
  font-size: 1rem;
}

.hero-entry-button:hover {
  background: rgba(31, 27, 27, 0.06);
  transform: translateY(-1px);
}

.hero-editorial .hero-metrics-grid {
  width: min(820px, 100%);
  margin: 320px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-editorial .hero-card {
  min-height: 0;
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 248, 238, 0.1);
  background: #1b1c20;
  box-shadow: none;
}

.hero-editorial .hero-card span {
  color: rgba(255, 248, 238, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hero-editorial .hero-card strong {
  display: block;
  margin-top: 10px;
  color: #fff8f0;
  font-size: 1.3rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero-editorial {
    padding: 18px;
  }

  .hero-editorial .hero-illustration-card {
    padding: 24px 22px 34px;
    border-radius: 28px;
  }

  .hero-editorial .hero-copy {
    top: 330px;
    width: calc(100% - 44px);
    padding: 0 24px 28px;
    border-radius: 0 0 28px 28px;
  }

  .hero-display-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-editorial .hero-metrics-grid {
    margin-top: 340px;
    grid-template-columns: 1fr;
  }
}

.editorial-dashboard-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.editorial-stream,
.editorial-ribbons,
.editorial-portraits {
  display: grid;
  gap: 18px;
}

.editorial-note {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(36, 31, 29, 0.1);
}

.editorial-note:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.editorial-index {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(32, 27, 25, 0.42);
}

.editorial-note-body h4,
.editorial-ribbon h4,
.editorial-portrait h4 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.editorial-note-body p,
.editorial-ribbon p,
.editorial-portrait p,
.editorial-pulse-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.editorial-line {
  margin-top: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(32, 27, 25, 0.08);
  overflow: hidden;
}

.editorial-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.editorial-ribbons {
  grid-template-columns: 1fr;
}

.editorial-ribbon {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 249, 239, 0.68);
  border: 1px solid rgba(36, 31, 29, 0.08);
}

.editorial-ribbon header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.editorial-ribbon header span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(36, 31, 29, 0.14);
  font-size: 0.82rem;
  color: var(--ink);
}

.editorial-portraits {
  grid-template-columns: 1fr;
}

.editorial-portrait {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 249, 239, 0.72);
  border: 1px solid rgba(36, 31, 29, 0.08);
}

.editorial-portrait-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}

.editorial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #2f2d2d;
  color: #fff9ef;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 1.5rem;
}

.editorial-dual-list {
  gap: 26px;
}

.editorial-signal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 249, 239, 0.72);
  border: 1px solid rgba(36, 31, 29, 0.08);
}

.editorial-signal-item strong {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 1.6rem;
}

.is-actionable {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.is-actionable:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 31, 29, 0.18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.editorial-pulse {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.editorial-pulse-art {
  position: relative;
  min-height: 240px;
}

.editorial-pulse-orb {
  position: absolute;
  border-radius: 50%;
}

.orb-warm {
  width: 132px;
  height: 132px;
  right: 10px;
  top: 22px;
  background: rgba(207, 124, 98, 0.88);
}

.orb-soft {
  width: 94px;
  height: 94px;
  left: 12px;
  top: 74px;
  background: rgba(235, 184, 164, 0.9);
}

.editorial-pulse-figure {
  position: absolute;
  left: 38px;
  bottom: 0;
  width: 146px;
  height: 198px;
  background: #f7f1e4;
  clip-path: path("M74 0c34 4 60 24 68 51 5 18 3 35-8 53-9 15-16 28-16 46 0 18 5 31 16 48H37c9-14 14-29 14-45 0-15-5-29-15-46C24 88 20 71 24 53 32 24 56 4 74 0Z");
  box-shadow: inset 0 0 0 999px #f7f1e4;
}

.editorial-pulse-copy h4 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #fff8f0;
  line-height: 0.96;
}

.editorial-kicker {
  margin: 0 0 10px;
  color: rgba(255, 248, 238, 0.62);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.editorial-pulse-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.editorial-pulse-metrics div {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(246, 239, 223, 0.1);
  border: 1px solid rgba(246, 239, 223, 0.12);
}

.editorial-pulse-metrics span {
  display: block;
  color: rgba(255, 248, 238, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-pulse-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff8f0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 1.8rem;
}

@media (max-width: 1120px) {
  .editorial-dashboard-grid,
  .editorial-pulse {
    grid-template-columns: 1fr;
  }
}
