:root {
  --bg: #070b16;
  --bg-soft: #0d1426;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-dark: #111827;
  --ink: #111827;
  --ink-strong: #030712;
  --muted: #64748b;
  --muted-strong: #475569;
  --line: rgba(148, 163, 184, 0.24);
  --line-strong: rgba(15, 23, 42, 0.12);
  --blue: #3b82f6;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --violet: #8b5cf6;
  --green: #10b981;
  --amber: #f59e0b;
  --danger: #ef4444;
  --radius: 24px;
  --shadow: 0 28px 90px rgba(15, 23, 42, 0.22);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.24), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(139, 92, 246, 0.18), transparent 34rem),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 34%, #f7f8fb 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 72%);
  content: "";
}

.page-glow {
  position: fixed;
  inset: auto -10% 0 auto;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.16);
  filter: blur(80px);
}

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

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(248, 251, 255, 0.82);
  backdrop-filter: blur(22px);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(59, 130, 246, 0.28);
}

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

.brand-name {
  overflow: hidden;
  font-size: 18px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--blue-dark);
}

.header-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-button,
.secondary-button,
.ghost-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 16px 32px rgba(59, 130, 246, 0.24);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover {
  box-shadow: 0 18px 38px rgba(59, 130, 246, 0.32);
}

.secondary-button {
  border-color: rgba(59, 130, 246, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-dark);
}

.secondary-button:hover,
.ghost-button:hover {
  border-color: rgba(59, 130, 246, 0.42);
  background: #fff;
  color: var(--blue-dark);
}

.ghost-button {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted-strong);
}

.large {
  min-height: 50px;
  padding: 0 22px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(460px, 1fr);
  gap: 52px;
  align-items: center;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 7px 10px 7px 14px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.release-pill strong {
  color: var(--ink-strong);
}

.release-pill small {
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  padding: 4px 8px;
  font-weight: 900;
}

.hero-copy h1 {
  max-width: 660px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 30px;
}

.endpoint-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  max-width: 660px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.08);
}

.endpoint-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.endpoint-strip code {
  overflow: hidden;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-button {
  min-height: 34px;
  border-color: rgba(59, 130, 246, 0.18);
  background: #eff6ff;
  color: var(--blue-dark);
  padding: 0 13px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-row span {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted-strong);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.console-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.14));
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.62);
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--danger);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.window-bar strong {
  margin-left: auto;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 900;
}

.console-shell {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 18px;
}

.console-sidebar,
.console-main {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.console-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 12px;
}

.sidebar-title {
  padding: 0 10px 8px;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 950;
}

.sidebar-item {
  border-radius: 14px;
  color: var(--muted-strong);
  padding: 10px;
  font-size: 13px;
  font-weight: 850;
}

.sidebar-item.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(139, 92, 246, 0.12));
  color: var(--blue-dark);
}

.console-main {
  min-width: 0;
  padding: 18px;
}

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

.console-heading div {
  display: grid;
  gap: 4px;
}

.console-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.console-heading strong {
  color: var(--ink-strong);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.console-heading em {
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  padding: 7px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.console-stats article {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.76);
  padding: 15px;
}

.console-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.console-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-strong);
  font-size: 23px;
  font-weight: 950;
}

.console-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 184px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.96));
  background-size: 100% 46px, 56px 100%, 100% 100%;
  padding: 22px;
}

.bar {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #67e8f9, #3b82f6);
  opacity: 0.94;
}

.b1 { height: 38%; }
.b2 { height: 68%; }
.b3 { height: 52%; }
.b4 { height: 78%; }
.b5 { height: 58%; }
.b6 { height: 88%; }

.console-chart .line {
  position: absolute;
  right: 18px;
  bottom: 50px;
  left: 18px;
  height: 58px;
  border-top: 4px solid rgba(16, 185, 129, 0.8);
  border-radius: 50% 50% 0 0;
  transform: rotate(-6deg);
}

.console-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.console-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.console-list b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.1);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
}

.metric-item {
  min-width: 0;
  padding: 24px 26px;
  border-right: 1px solid rgba(148, 163, 184, 0.2);
}

.metric-item:last-child {
  border-right: 0;
}

.metric-value {
  display: block;
  color: var(--ink-strong);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.section.muted {
  width: 100%;
  background: rgba(241, 245, 249, 0.78);
}

.section.muted > * {
  width: min(1220px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 32px;
}

.split-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  align-items: end;
  max-width: none;
  gap: 30px;
}

.section-heading h2,
.docs-copy h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p:not(.eyebrow),
.docs-copy p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.75;
}

.release-grid,
.console-feature-grid,
.pricing-grid,
.ops-grid {
  display: grid;
  gap: 16px;
}

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

.console-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.release-card,
.console-feature-card,
.pricing-card,
.ops-grid article,
.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.release-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
}

.release-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(139, 92, 246, 0.12));
  content: "";
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: #eff6ff;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 950;
}

.release-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-card h3,
.console-feature-card strong,
.pricing-card h3,
.ops-grid h3,
.faq-item h3 {
  color: var(--ink-strong);
}

.release-card h3 {
  margin: 10px 0 10px;
  font-size: 22px;
}

.release-card p,
.console-feature-card p,
.ops-grid p,
.faq-item p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.7;
}

.console-feature-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.console-feature-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.console-feature-card strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 26px;
}

.pricing-card.featured {
  border-color: rgba(59, 130, 246, 0.42);
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.82), rgba(255, 255, 255, 0.92));
  box-shadow: 0 24px 68px rgba(59, 130, 246, 0.14);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--blue-dark);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
}

.pricing-card h3 {
  margin: 0;
  font-size: 21px;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 14px;
}

.price {
  color: var(--ink-strong);
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted-strong);
  line-height: 1.55;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
}

.pricing-card li::before {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.1);
  content: "";
}

.model-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.model-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.model-table th,
.model-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  text-align: left;
}

.model-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.model-name {
  color: var(--ink-strong);
  font-weight: 950;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  border-radius: 999px;
  background: #ecfeff;
  color: #0e7490;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.docs-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(380px, 1fr);
  gap: 36px;
  align-items: start;
}

.muted-panel {
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.docs-copy {
  display: grid;
  gap: 14px;
}

.doc-points {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.doc-points div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-left: 4px solid var(--blue);
  border-radius: 16px;
  background: rgba(239, 246, 255, 0.74);
}

.doc-points strong {
  color: var(--ink-strong);
}

.doc-points span {
  color: var(--muted-strong);
  line-height: 1.55;
}

.code-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.86);
  border-radius: 24px;
  background: #0b1020;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
}

.code-tabs {
  display: flex;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-tab {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #94a3b8;
  padding: 0 13px;
  font-weight: 900;
  cursor: pointer;
}

.code-tab.active {
  background: rgba(59, 130, 246, 0.18);
  color: #e0f2fe;
}

.code-panel pre {
  min-height: 360px;
  margin: 0;
  overflow: auto;
  padding: 24px;
  color: #e5edf8;
  font-size: 13px;
  line-height: 1.66;
}

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

.ops-grid article {
  padding: 24px;
}

.ops-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.faq-section {
  padding-bottom: 96px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 42px;
  background: #08111f;
  color: #e5edf8;
}

.site-footer div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #94a3b8;
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.footer-links a {
  color: #c7d2fe;
  font-weight: 850;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .site-nav {
    display: none;
  }

  .hero-section,
  .docs-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 58px;
  }

  .pricing-grid,
  .release-grid,
  .console-feature-grid,
  .ops-grid,
  .metric-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-item:nth-child(2) {
    border-right: 0;
  }

  .metric-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .header-actions {
    justify-content: stretch;
  }

  .header-actions a {
    flex: 1;
  }

  .hero-section,
  .section,
  .section.muted > *,
  .metric-band {
    width: min(100% - 32px, 1220px);
  }

  .hero-section {
    gap: 30px;
    padding: 42px 0 34px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .endpoint-strip {
    grid-template-columns: 1fr auto;
  }

  .endpoint-strip span {
    grid-column: 1 / -1;
  }

  .console-shell {
    grid-template-columns: 1fr;
  }

  .console-sidebar {
    display: none;
  }

  .console-stats,
  .pricing-grid,
  .release-grid,
  .console-feature-grid,
  .ops-grid,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .metric-item,
  .metric-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }

  .metric-item:last-child {
    border-bottom: 0;
  }

  .muted-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 18px;
  }
}
