:root {
  --bg: #0a1310;
  --bg-2: #0e1a15;
  --bg-3: #12241d;
  --bg-4: #16281f;
  --line: rgba(190, 240, 215, 0.1);
  --line-2: rgba(190, 240, 215, 0.18);
  --ink: #ecf4ef;
  --ink-2: #cbd8d0;
  --muted: #8fa69a;
  --muted-2: #6e857a;
  --accent: #56e39b;
  --accent-2: #34c97f;
  --gold: #e6c77e;
  --down: #ef9a8e;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(55% 45% at 12% -5%, rgba(86, 227, 155, 0.11), transparent 60%),
    radial-gradient(45% 40% at 102% 8%, rgba(86, 227, 155, 0.06), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: Archivo, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -90px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--accent);
  color: #07130d;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.market-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 19, 16, 0.78);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.market-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-mark {
  position: relative;
  display: inline-flex;
  width: 23px;
  height: 23px;
  flex: none;
}

.logo-mark span:first-child {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  transform: translate(3px, 3px);
  opacity: 0.5;
}

.logo-mark span:last-child {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: var(--accent);
  transform: translate(-2px, -2px);
}

.logo-copy strong,
.logo-copy small {
  display: block;
  line-height: 1;
}

.logo-copy strong {
  font-family: Newsreader, serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.market-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.market-nav a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}

.market-nav a:hover {
  color: var(--ink);
}

.outline-link,
.solid-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.outline-link {
  border: 1px solid var(--line-2);
  color: var(--ink) !important;
  background: transparent;
}

.outline-link:hover {
  border-color: var(--accent);
  background: var(--bg-2);
}

.solid-link {
  border: 0;
  background: var(--accent);
  color: #07130d !important;
}

.solid-link:hover {
  background: #6eebab;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.ticker-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 44s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 24px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
}

.ticker-track b {
  color: var(--ink);
  font-weight: 500;
  text-transform: uppercase;
}

.ticker-track i {
  color: var(--accent);
  font-style: normal;
}

.ticker-track em {
  color: var(--down);
  font-style: normal;
}

.ticker-track strong {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.market-hero,
.plain-section,
.band-section,
.participant-cta,
.coverage-strip,
.market-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.market-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.kicker {
  margin: 0;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Newsreader, serif;
  font-weight: 500;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
}

h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.12;
}

.hero-copy > p:not(.kicker),
.section-head p:not(.kicker),
.about-grid p,
.participant-cta p,
.contact-grid p {
  color: var(--ink-2);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.hero-copy > p:not(.kicker) {
  max-width: 58ch;
  margin: 24px 0 0;
}

.hero-actions,
.filter-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 32px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.stat-row div {
  padding: 18px 16px 0;
}

.stat-row strong,
.monitor-main strong,
.about-stats strong {
  display: block;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stat-row strong {
  font-size: clamp(26px, 3vw, 34px);
}

.stat-row .accent,
.monitor-main [data-monitor-yoy].is-up {
  color: var(--accent);
}

.monitor-main [data-monitor-yoy].is-down {
  color: var(--down);
}

.stat-row span,
.monitor-main span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12.5px;
}

.monitor-card,
.service-grid article,
.method-panel,
.contact-card,
.participant-cta,
.about-stats,
.report-card {
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: var(--bg-2);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}

.monitor-card {
  padding: 24px;
}

.card-topline,
.monitor-main,
.chart-axis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.card-topline span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-topline i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.card-topline small {
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.segmented,
.filter-row {
  margin-top: 18px;
}

.segmented button,
.filter-row button {
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.segmented button.is-active,
.filter-row button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #07130d;
}

.monitor-main {
  align-items: flex-end;
  margin-top: 24px;
}

.monitor-main strong {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1;
}

.monitor-main div:last-child {
  text-align: right;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 112px;
  margin-top: 22px;
}

.bar-chart span {
  flex: 1;
  min-height: 8px;
  border-radius: 999px 999px 2px 2px;
  background: rgba(52, 201, 127, 0.5);
  transition: height 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bar-chart span:last-child {
  background: var(--accent);
}

.chart-axis {
  margin-top: 10px;
  color: var(--muted-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
}

.coverage-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
}

.coverage-strip span {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-strip b,
.chip-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
}

.band-section {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.band-section > *,
.band-section .section-head,
.band-section .filter-row,
.band-section .coverage-table,
.band-section .method-panel,
.band-section.about-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.plain-section {
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.section-head p:not(.kicker) {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
}

.mono-note {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.coverage-table {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: var(--bg);
}

.table-head,
.coverage-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr 2fr;
  gap: 16px;
  align-items: center;
}

.table-head {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-row {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
}

.coverage-row:last-child {
  border-bottom: 0;
}

.coverage-row strong {
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 600;
}

.coverage-row .mono {
  color: var(--ink-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.coverage-row .up {
  color: var(--accent);
}

.coverage-row .down {
  color: var(--down);
}

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

.status {
  min-width: 90px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  padding: 4px 9px;
  font-size: 11px;
  text-align: center;
}

.size-track {
  flex: 1;
  min-width: 80px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-4);
}

.size-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.service-grid,
.report-grid,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-grid {
  margin-top: 34px;
}

.service-grid article {
  padding: 30px;
}

.service-grid article > span,
.report-card > span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-grid p,
.report-card p {
  color: var(--muted);
}

.service-grid ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-grid li {
  color: var(--ink-2);
  margin-top: 10px;
}

.service-grid li::before {
  content: "-> ";
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
}

.process-graph {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.process-graph div {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(14, 26, 21, 0.6);
}

.process-graph div:last-child {
  border-right: 0;
}

.process-graph b {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 23px;
}

.process-graph strong,
.process-graph span {
  display: block;
}

.process-graph strong {
  margin-top: 10px;
  color: var(--ink);
  font-family: Newsreader, serif;
  font-size: 22px;
  font-weight: 500;
}

.process-graph span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.method-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 26px;
  padding: 28px;
}

.method-panel p {
  color: var(--ink-2);
}

.method-panel span {
  display: block;
  margin-top: 18px;
  border: 1px dashed var(--line-2);
  border-radius: 12px;
  color: var(--muted);
  padding: 14px;
  font-size: 14px;
}

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

.method-items article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--bg);
}

.method-items b {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.method-items strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
}

.method-items p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
}

.report-grid {
  margin-top: 26px;
}

.report-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 26px;
}

.report-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.report-card h3 {
  font-size: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.tag-row b {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 5px 9px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 16px;
}

.about-stats div {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.about-stats div:nth-child(2n) {
  border-right: 0;
}

.about-stats div:nth-last-child(-n + 1) {
  grid-column: 1 / -1;
  border-bottom: 0;
  border-right: 0;
}

.about-stats strong {
  color: var(--accent);
  font-size: 27px;
}

.about-stats span {
  color: var(--muted);
}

.participant-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(64px, 8vw, 104px);
  margin-bottom: clamp(64px, 8vw, 104px);
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
}

.participant-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.big-link {
  min-height: 58px;
  padding: 16px 24px;
}

.simple-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
}

.simple-flow span {
  border-radius: 999px;
  background: var(--accent);
  color: #07130d;
  padding: 7px 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.simple-flow i {
  width: 24px;
  height: 1px;
  background: var(--line-2);
}

.contact-grid {
  align-items: start;
}

.assurance-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.assurance-list li {
  color: var(--ink-2);
  margin-top: 10px;
}

.contact-card {
  padding: 26px;
}

.contact-card label {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  padding: 11px 12px;
}

.contact-card textarea {
  resize: vertical;
}

.contact-card button {
  width: 100%;
  margin-top: 18px;
}

.contact-card p {
  margin: 12px 0 0;
  color: var(--accent);
  font-size: 14px;
}

.market-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
  padding-top: 44px;
  padding-bottom: 36px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.market-footer h3 {
  margin: 0 0 12px;
  font-family: Archivo, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-footer p,
.market-footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.market-footer a {
  margin-top: 8px;
}

.market-footer a:hover {
  color: var(--accent);
}

.footer-fine {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted-2) !important;
  font-size: 12px !important;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border: 1px solid var(--line-2);
    border-radius: 9px;
    background: transparent;
    color: var(--ink);
    padding: 8px 12px;
    font-weight: 700;
  }

  .market-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  body.nav-open .market-nav {
    display: flex;
  }

  .section-head.split,
  .participant-cta,
  .about-grid,
  .method-panel {
    grid-template-columns: 1fr;
  }

  .section-head.split {
    display: block;
  }

  .mono-note {
    display: block;
    margin-top: 14px;
    text-align: left;
  }

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

  .process-graph div:nth-child(2) {
    border-right: 0;
  }

  .process-graph div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 720px) {
  .header-inner,
  .market-hero,
  .plain-section,
  .band-section,
  .participant-cta,
  .coverage-strip,
  .market-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .market-hero,
  .service-grid,
  .contact-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .market-hero {
    padding-top: 52px;
  }

  .table-head {
    display: none;
  }

  .coverage-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .status-cell {
    align-items: flex-start;
    flex-direction: column;
  }

  .size-track {
    width: 100%;
  }

  .process-graph,
  .method-items,
  .about-stats,
  .market-footer {
    grid-template-columns: 1fr;
  }

  .process-graph div,
  .about-stats div {
    border-right: 0;
  }

  .participant-cta {
    margin-left: 18px;
    margin-right: 18px;
  }
}

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