:root {
  color-scheme: dark;
  --bg: #0b0e0e;
  --bg-alt: #121716;
  --panel: rgba(20, 26, 24, 0.92);
  --panel-strong: rgba(17, 22, 21, 0.98);
  --panel-border: rgba(160, 132, 61, 0.25);
  --panel-border-soft: rgba(255, 255, 255, 0.08);
  --text: #f4eedf;
  --muted: #b5ab94;
  --accent: #d2a137;
  --accent-dim: rgba(210, 161, 55, 0.18);
  --danger: #d46a46;
  --success: #77af7d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  min-height: 100%;
  background: linear-gradient(
        90deg,
        rgba(210, 161, 55, 0.09) 0 1px,
        transparent 1px
      )
      0 0 /88px 88px,
    linear-gradient(rgba(210, 161, 55, 0.06) 0 1px, transparent 1px) 0 0 /88px 88px,
    radial-gradient(circle at top, rgba(210, 161, 55, 0.18), transparent 28%),
    linear-gradient(180deg, #0a0d0d, #0f1313 48%, #141917);
  color: var(--text);
  font-family: var(--font-body), sans-serif;
}
body:before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.03),
      transparent 28%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 22px,
      rgba(255, 255, 255, 0.012) 22px 23px
    );
  opacity: 0.45;
}
a {
  color: inherit;
  text-decoration: none;
}
main.shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 84px;
}
.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 22px;
}
.wordmark {
  display: inline-block;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-status {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  justify-items: end;
}
.eyebrow,
.label,
.topbar-note {
  color: var(--muted);
  letter-spacing: 0.12em;
}
.eyebrow,
.label,
.pill,
.section-tag,
.signal-live,
.status-pill,
.topbar-note {
  font-family: var(--font-mono), monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}
.topbar > div > .eyebrow + .eyebrow {
  margin: 12px 0 12px;
  font-size: 16px;
}
.pill,
.section-tag,
.signal-live,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(210, 161, 55, 0.24);
  background: rgba(210, 161, 55, 0.08);
  color: var(--accent);
  letter-spacing: 0.08em;
}
.signal-live:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 16px rgba(119, 175, 125, 0.7);
}
.nav {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid var(--panel-border-soft);
  border-radius: 18px;
  background: rgba(10, 13, 13, 0.58);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--muted);
  flex-wrap: wrap;
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.hero {
  display: grid;
  grid-gap: 22px;
  gap: 22px;
  margin-bottom: 28px;
}
.hero-console {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  align-items: stretch;
}
.hero-board,
.hero-copy,
.panel {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--panel-border-soft);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 28px;
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}
.hero-board:after,
.hero-copy:after,
.panel:after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(210, 161, 55, 0.06);
  border-radius: inherit;
  pointer-events: none;
}
.hero h1,
.page-head h1 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-head h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}
.hero p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.hero-board {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(210, 161, 55, 0.08), transparent 42%),
    var(--panel-strong);
}
.hero-board-head,
.page-head,
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.hero-board-grid {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.metric-block {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.metric-block strong,
.site-metrics strong {
  font-size: 1rem;
  font-weight: 600;
}
.epoch-strip {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  padding: 4px 0;
  overflow-x: auto;
}
.epoch-strip-item {
  flex: 0 0 auto;
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(12, 15, 15, 0.74);
  border: 1px solid var(--panel-border-soft);
  min-width: 120px;
}
.epoch-strip-item strong {
  font-size: 0.95rem;
  font-weight: 600;
}
.signal-strip {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}
.signal-tile {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(12, 15, 15, 0.74);
  border: 1px solid var(--panel-border);
}
.signal-tile strong {
  font-size: 0.98rem;
  font-weight: 600;
}
.grid {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid + .grid,
.yield-banner + .grid {
  margin-top: 18px;
}
.panel {
  padding: 22px;
}
.panel h2,
.panel h3,
.panel h4 {
  margin: 0;
}
.stat {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}
.stat-panel {
  background: linear-gradient(180deg, rgba(210, 161, 55, 0.09), transparent 45%),
    var(--panel);
}
.yield-banner {
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid var(--panel-border) !important;
  background: linear-gradient(135deg, rgba(210, 161, 55, 0.13), transparent 60%),
    var(--panel) !important;
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}
.yield-banner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.yield-apy {
  font-family: var(--font-mono), monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.yield-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-gap: 24px;
  gap: 24px;
}
.yield-metric {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
}
.yield-metric strong {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.yield-banner-foot {
  padding-top: 4px;
  border-top: 1px solid var(--panel-border-soft);
}
.value {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.split {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 1fr);
  margin-top: 24px;
}
.split-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.list,
.stack {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
}
.row,
.site-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.row:first-child,
.site-row:first-child {
  border-top: 0;
  padding-top: 0;
}
.site-row {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(210, 161, 55, 0.06), transparent 40%),
    rgba(255, 255, 255, 0.02);
}
.site-name {
  font-size: 1.06rem;
  font-weight: 600;
}
.site-metrics {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  justify-items: end;
  text-align: right;
}
.danger {
  color: var(--danger);
}
.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-note {
  color: var(--muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .hero-console,
  .signal-strip,
  .split,
  .split-wide {
    grid-template-columns: 1fr;
  }
  .hero-board-head,
  .page-head,
  .section-head,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .topbar-status {
    justify-items: start;
  }
}
@media (max-width: 640px) {
  main.shell {
    padding: 20px 14px 56px;
  }
  .nav {
    gap: 8px;
    padding: 12px;
  }
  .hero-board,
  .hero-copy,
  .panel {
    padding: 18px;
  }
  .hero-board-grid {
    grid-template-columns: 1fr;
  }
  .row,
  .site-row {
    align-items: start;
    flex-direction: column;
  }
  .site-metrics {
    justify-items: start;
    text-align: left;
  }
}
@font-face {
  font-family: Bebas Neue;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/8b44c7e6549520b2-s.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Bebas Neue;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/6c25f6e897d845a3-s.p.woff2) format('woff2');
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Bebas Neue Fallback;
  src: local('Arial');
  ascent-override: 117.32%;
  descent-override: 39.11%;
  line-gap-override: 0%;
  size-adjust: 76.72%;
}
.__className_d758cf {
  font-family: Bebas Neue, Bebas Neue Fallback;
  font-weight: 400;
  font-style: normal;
}
.__variable_d758cf {
  --font-display: 'Bebas Neue', 'Bebas Neue Fallback';
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/7b19b489dc6743ba-s.woff2) format('woff2');
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/28793f5c5e3d822d-s.woff2) format('woff2');
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/c9c3823090ec8b55-s.woff2) format('woff2');
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/b3bf17a9041d9433-s.woff2) format('woff2');
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/2801417b65625cf5-s.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format('woff2');
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/7b19b489dc6743ba-s.woff2) format('woff2');
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/28793f5c5e3d822d-s.woff2) format('woff2');
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/c9c3823090ec8b55-s.woff2) format('woff2');
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/b3bf17a9041d9433-s.woff2) format('woff2');
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/2801417b65625cf5-s.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format('woff2');
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/7b19b489dc6743ba-s.woff2) format('woff2');
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/28793f5c5e3d822d-s.woff2) format('woff2');
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/c9c3823090ec8b55-s.woff2) format('woff2');
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/b3bf17a9041d9433-s.woff2) format('woff2');
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/2801417b65625cf5-s.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format('woff2');
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: IBM Plex Sans Fallback;
  src: local('Arial');
  ascent-override: 101.32%;
  descent-override: 27.18%;
  line-gap-override: 0%;
  size-adjust: 101.17%;
}
.__className_1bc20f {
  font-family: IBM Plex Sans, IBM Plex Sans Fallback;
  font-style: normal;
}
.__variable_1bc20f {
  --font-body: 'IBM Plex Sans', 'IBM Plex Sans Fallback';
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/58f386aa6b1a2a92-s.woff2) format('woff2');
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/011e180705008d6f-s.woff2) format('woff2');
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/7ba5fb2a8c88521c-s.woff2) format('woff2');
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/92eeb95d069020cc-s.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/d3ebbfd689654d3a-s.p.woff2) format('woff2');
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/ef4d5661765d0e49-s.woff2) format('woff2');
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/d29838c109ef09b4-s.woff2) format('woff2');
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/e40af3453d7c920a-s.woff2) format('woff2');
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/99dcf268bda04fe5-s.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: IBM Plex Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/98e207f02528a563-s.p.woff2) format('woff2');
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: IBM Plex Mono Fallback;
  src: local('Arial');
  ascent-override: 76.16%;
  descent-override: 20.43%;
  line-gap-override: 0%;
  size-adjust: 134.59%;
}
.__className_46fe82 {
  font-family: IBM Plex Mono, IBM Plex Mono Fallback;
  font-style: normal;
}
.__variable_46fe82 {
  --font-mono: 'IBM Plex Mono', 'IBM Plex Mono Fallback';
}
