:root {
  --bg-main: #050508;
  --bg-secondary: #0b0d12;
  --bg-surface: #11141b;
  --bg-surface-strong: #161b24;
  --bg-panel: #11141b;
  --bg-alt: #1b2230;
  --accent-primary: #6366f1;
  --accent-primary-hover: #5658db;
  --accent-secondary: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-gradient: #6366f1;
  --accent-primary-alpha: rgba(99, 102, 241, 0.25);
  --text-main: #eef2ff;
  --text-primary: #eef2ff;
  --text-dim: #a7b0c2;
  --text-muted: #6e7a90;
  --glass-bg: rgba(17, 20, 27, 0.94);
  --glass-bg-hover: rgba(24, 29, 40, 0.98);
  --glass-border: rgba(148, 163, 184, 0.14);
  --border-color: rgba(148, 163, 184, 0.14);
  --border-light: rgba(148, 163, 184, 0.08);
  --status-success: #4ade80;
  --status-danger: #f87171;
  --status-danger-bg: rgba(248, 113, 113, 0.12);
  --status-danger-hover: rgba(248, 113, 113, 0.18);
  --shadow-sm: 0 14px 32px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.3);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --trans-default: 0.22s ease;
  --container-width-xl: 1200px;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

::selection {
  background: rgba(99, 102, 241, 0.28);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0b0d12;
}

::-webkit-scrollbar-thumb {
  background: #252c3b;
  border-radius: 999px;
}

.container {
  width: min(100% - 32px, var(--container-width-xl));
  margin: 0 auto;
}

.page-title,
h1 {
  color: var(--text-main);
  font-family: "Segoe UI Semibold", "Trebuchet MS", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h2 {
  color: var(--text-main);
  font-family: "Segoe UI Semibold", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3 {
  color: var(--text-main);
  font-size: 1.08rem;
  line-height: 1.25;
}

.page-subtitle {
  max-width: 720px;
  color: var(--text-dim);
  font-size: 1.02rem;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-accent {
  color: var(--accent-primary);
}

.text-dim {
  color: var(--text-dim);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(99, 102, 241, 0.24);
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.08);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.live-dot,
.live-badge {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--status-success);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform var(--trans-default), border-color var(--trans-default), background-color var(--trans-default), color var(--trans-default);
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--accent-primary-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.24);
}

.panel-surface,
.glass-panel {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  box-shadow: var(--shadow-sm);
}

.page-head,
.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-head--stack {
  margin-bottom: 28px;
}

.section-header {
  margin-bottom: 28px;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.gap-sm {
  gap: 10px;
}

.gap-lg {
  gap: 20px;
}

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

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 700;
}

.field-help {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.switch-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="color"],
select,
textarea,
.input,
.select,
.textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  outline: none;
  transition: border-color var(--trans-default), background-color var(--trans-default), box-shadow var(--trans-default);
}

textarea,
.textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(99, 102, 241, 0.48);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
}

option {
  background: var(--bg-surface);
  color: var(--text-main);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid var(--border-light);
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(10px);
}

.navbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.navbar-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.navbar-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.navbar-brand__text strong {
  font-size: 0.98rem;
  line-height: 1;
}

.navbar-brand__text small {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.navbar-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: transparent;
  color: var(--text-main);
}

.navbar-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background-color var(--trans-default), color var(--trans-default);
}

.navbar-links a:hover,
.navbar-links a.active {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-action img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.landing-page {
  padding: 42px 0 0;
}

.hero-section {
  padding: 44px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.hero-copy,
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-desc {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-stat {
  padding: 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
  line-height: 1;
}

.hero-stat span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel__window {
  padding: 18px;
}

.hero-panel__row {
  display: flex;
  gap: 16px;
}

.hero-panel__row--header {
  margin-bottom: 18px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a4252;
}

.hero-dot:first-child {
  background: #6366f1;
}

.hero-panel__sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 84px;
}

.hero-panel__sidebar span,
.hero-panel__block,
.hero-panel__line {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel__sidebar span {
  height: 10px;
}

.hero-panel__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-panel__block {
  min-height: 66px;
}

.hero-panel__block--wide {
  min-height: 74px;
}

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

.hero-panel__table {
  display: grid;
  gap: 10px;
}

.hero-panel__line {
  height: 14px;
}

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

.hero-summary .panel-surface {
  padding: 18px;
}

.hero-summary p {
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.feature-section,
.commands-page,
.stats-page {
  padding: 34px 0 68px;
}

.stats-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 320px);
  gap: 20px;
  align-items: start;
}

.stats-intro {
  margin-bottom: 0;
}

.stats-hero-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
}

.stats-hero-pill {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.stats-hero-pill--wide {
  grid-column: span 2;
}

.stats-hero-pill span {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-hero-pill strong {
  font-size: 1rem;
  line-height: 1.3;
}

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

.feature-card {
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  box-shadow: var(--shadow-sm);
}

.feature-card--wide {
  grid-column: span 2;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-primary);
}

.feature-card p {
  margin-top: 10px;
  color: var(--text-dim);
}

.feature-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.feature-list li {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.commands-header,
.stats-header {
  margin-bottom: 28px;
}

.cmd-interface {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.cmd-sidebar {
  position: sticky;
  top: 108px;
  padding: 20px;
}

.cmd-search-wrap {
  position: relative;
  margin-bottom: 18px;
}

.cmd-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.cmd-search-wrap input {
  padding-left: 42px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--text-dim);
  font-weight: 700;
  text-align: left;
}

.cat-btn:hover,
.cat-btn.active {
  border-color: var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
}

.cmd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.cmd-card {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  box-shadow: var(--shadow-sm);
}

.cmd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cmd-name {
  color: var(--accent-cyan);
  font-size: 1rem;
  font-weight: 700;
}

.cmd-cat-tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.cmd-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.cmd-usage {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.8rem;
}

.stats-grid-canvas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.stats-grid-canvas--dense {
  margin-top: 22px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  box-shadow: var(--shadow-sm);
}

.stat-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-primary);
  font-size: 1.25rem;
}

.stat-data h3 {
  font-size: 1.7rem;
  line-height: 1.1;
}

.stat-data p {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.chart-container {
  margin-top: 24px;
  height: 380px;
  padding: 22px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  box-shadow: var(--shadow-sm);
}

.stats-chart-card {
  margin-top: 22px;
  padding: 22px;
}

.stats-chart-head {
  margin-bottom: 18px;
}

.stats-chart-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.stats-chart-copy h2 {
  margin: 0;
  font-size: 1.5rem;
}

.stats-chart-note {
  margin-top: 10px;
  max-width: 720px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.stats-mini-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 90px;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.stats-mini-chip__value {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.stats-mini-chip__label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-chart-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.stats-chart-wrap {
  position: relative;
  min-height: 320px;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.stats-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.stats-side-panel {
  display: grid;
  gap: 14px;
}

.stats-side-card {
  padding: 18px;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.stats-side-card__head {
  margin-bottom: 14px;
}

.stats-side-card__head h3 {
  margin: 0;
  font-size: 1.04rem;
}

.stats-side-card__head .section-kicker {
  margin-bottom: 8px;
}

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

.stats-side-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.stats-side-item span {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.stats-side-item strong {
  font-size: 0.95rem;
}

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

.stats-kpi {
  display: grid;
  gap: 6px;
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.stats-kpi--wide {
  grid-column: span 2;
}

.stats-kpi span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-kpi strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.footer {
  margin-top: auto;
  padding: 24px 0 40px;
  border-top: 1px solid var(--border-light);
  background: #07090d;
}

.footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-copy--muted {
  margin-top: 4px;
  color: var(--text-muted);
}

.footer-newsletter {
  min-width: min(100%, 420px);
  padding: 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
}

.newsletter-title {
  margin-bottom: 12px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form button {
  width: 48px;
  min-width: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--accent-primary);
  color: #fff;
}

.newsletter-feedback {
  min-height: 20px;
  margin-top: 10px;
  font-size: 0.84rem;
}

.newsletter-feedback.success {
  color: var(--status-success);
}

.newsletter-feedback.error {
  color: var(--status-danger);
}

.animate-in {
  animation: fade-in 0.4s ease both;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-hero-row,
  .stats-chart-body {
    grid-template-columns: 1fr;
  }

  .cmd-interface {
    grid-template-columns: 1fr;
  }

  .cmd-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .navbar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: rgba(11, 13, 18, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .navbar-panel.is-open {
    display: flex;
  }

  .navbar-links,
  .navbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar-links a,
  .navbar-actions .btn {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-grid,
  .hero-summary,
  .grid-3-col {
    grid-template-columns: 1fr;
  }

  .grid-2-col,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: span 1;
  }

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

  .footer-shell {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container-width-xl));
  }

  .navbar-shell {
    min-height: 76px;
  }

  .landing-page {
    padding-top: 28px;
  }

  .hero-panel__row {
    flex-direction: column;
  }

  .hero-panel__sidebar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .stats-hero-side,
  .stats-kpi-grid {
    grid-template-columns: 1fr;
  }

  .stats-hero-pill--wide,
  .stats-kpi--wide {
    grid-column: auto;
  }

  .stats-chart-card,
  .stats-side-card {
    padding: 18px;
  }

  .stats-chart-copy {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-mini-chip {
    align-items: flex-start;
  }

  .stats-chart-wrap {
    min-height: 260px;
    padding: 12px;
  }
}
