:root {
  color-scheme: dark;
  --bg: #020302;
  --panel: #090b0a;
  --panel-soft: #111412;
  --text: #f7f7f2;
  --muted: #9b9d98;
  --dim: #646862;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #a7ff4f;
  --cyan: #57e8ff;
  --amber: #ffb657;
  --red: #ff6464;
  --section-lime: #7bd84a;
  --site-max: 1760px;
  --market-number-font: -apple-system, BlinkMacSystemFont, "Trebuchet MS", Roboto, Ubuntu, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 72%, rgba(167, 255, 79, 0.045), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 28px clamp(20px, 3.2vw, 56px);
  background: linear-gradient(180deg, rgba(2, 3, 2, 0.9), rgba(2, 3, 2, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  color: #eeeee9;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "+";
  margin-left: 10px;
  color: var(--muted);
}

.header-cta {
  justify-self: end;
  min-height: 38px;
  padding-inline: 18px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f5f2ec;
  color: #10110f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.pill-link.dark {
  border: 1px solid rgba(167, 255, 79, 0.36);
  background:
    radial-gradient(circle at 78% 30%, rgba(167, 255, 79, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(167, 255, 79, 0.17), rgba(87, 232, 255, 0.06)),
    rgba(24, 30, 26, 0.92);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 16px 36px rgba(0, 0, 0, 0.22);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pill-link span {
  margin-left: 8px;
  color: var(--lime);
}

.pill-link.header-cta {
  min-height: 38px;
  border: 1px solid rgba(167, 255, 79, 0.28);
  padding-inline: 18px;
  background:
    linear-gradient(135deg, rgba(167, 255, 79, 0.13), rgba(87, 232, 255, 0.045)),
    rgba(10, 14, 13, 0.76);
  color: #f3f5ef;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 0 24px rgba(167, 255, 79, 0.08);
  backdrop-filter: blur(10px);
}

.pill-link.header-cta:hover {
  border-color: rgba(167, 255, 79, 0.46);
  background:
    linear-gradient(135deg, rgba(167, 255, 79, 0.18), rgba(87, 232, 255, 0.06)),
    rgba(16, 21, 19, 0.86);
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: #f2f4ee;
  font-size: 14px;
  font-weight: 700;
  transition: color 220ms ease, transform 220ms ease;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 255, 79, 0.72), rgba(167, 255, 79, 0));
  opacity: 0.58;
  transform: scaleX(0.72);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero {
  min-height: auto;
  padding-top: 104px;
  padding-bottom: clamp(56px, 7vh, 92px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(440px, 0.95fr);
  grid-template-rows: auto auto;
  column-gap: clamp(34px, 4vw, 86px);
  row-gap: clamp(36px, 5vh, 72px);
  width: min(100%, var(--site-max));
  margin-inline: auto;
  padding-left: clamp(28px, 4vw, 72px);
  padding-right: clamp(28px, 4vw, 72px);
  align-items: start;
  align-content: start;
}

.hero-copy {
  position: relative;
  padding-top: clamp(86px, 11vh, 128px);
  max-width: 980px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: clamp(50px, 6.8vh, 80px);
  left: 0;
  width: min(420px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 255, 79, 0.48), rgba(255, 255, 255, 0.08), transparent);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h2.eyebrow {
  margin-bottom: 18px;
  color: var(--section-lime);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(58px, 4.55vw, 88px);
  line-height: 1.13;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-title-mobile {
  display: none;
}

.title-mobile {
  display: none;
}

.lede {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

.hero-actions .pill-link.dark:hover {
  border-color: rgba(167, 255, 79, 0.64);
  background:
    radial-gradient(circle at 78% 30%, rgba(167, 255, 79, 0.32), transparent 36%),
    linear-gradient(135deg, rgba(167, 255, 79, 0.24), rgba(87, 232, 255, 0.08)),
    rgba(28, 35, 30, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.055), 0 18px 44px rgba(167, 255, 79, 0.1);
  transform: translateY(-2px);
}

.hero-actions .text-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-actions .text-link:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(48px, 6vw, 92px) 0 0;
  grid-column: 1 / -1;
  align-self: start;
  width: 100%;
  max-width: none;
  padding: clamp(18px, 2.5vw, 32px) 0 clamp(26px, 3.2vw, 44px);
  border-bottom: 0;
}

.stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.stats::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stats div {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 132px;
  padding: 0 clamp(6px, 0.9vw, 16px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 220ms ease, color 220ms ease;
  text-align: center;
}

.stats div:first-child {
  border-left: 0;
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  margin-right: 0;
  border: 0;
  border-radius: 0;
  color: rgba(213, 217, 211, 0.58);
  background: transparent;
  box-shadow: none;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.stat-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 50% 50%;
  overflow: visible;
  transition: filter 260ms ease;
}

.stats dt {
  color: var(--text);
  font-size: clamp(24px, 1.95vw, 34px);
  line-height: 0.98;
  font-weight: 700;
}

.stats dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.35;
  font-weight: 600;
  white-space: normal;
}

.stats div:hover {
  transform: translateY(-2px);
}

.stats div:hover .stat-icon {
  color: rgba(187, 255, 112, 0.82);
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.stats div:hover .stat-icon svg {
  filter: drop-shadow(0 0 10px rgba(167, 255, 79, 0.22));
}

.stats div:nth-child(1):hover .stat-icon svg {
  animation: stat-grid-drift 1800ms ease-in-out infinite alternate;
}

.stats div:nth-child(2):hover .stat-icon svg {
  animation: stat-flow-drift 1700ms ease-in-out infinite alternate;
}

.stats div:nth-child(3):hover .stat-icon svg {
  animation: stat-clock-drift 1900ms ease-in-out infinite alternate;
}

.stats div:nth-child(4):hover .stat-icon svg {
  animation: stat-gauge-drift 1750ms ease-in-out infinite alternate;
}

@keyframes stat-grid-drift {
  from {
    transform: translateY(0) rotate(-2deg) scale(1);
  }

  to {
    transform: translateY(-3px) rotate(3deg) scale(1.06);
  }
}

@keyframes stat-flow-drift {
  from {
    transform: translateY(0) translateX(-1px) scale(1);
  }

  to {
    transform: translateY(-4px) translateX(2px) scale(1.06);
  }
}

@keyframes stat-clock-drift {
  from {
    transform: rotate(-5deg) scale(1);
  }

  to {
    transform: rotate(9deg) scale(1.05);
  }
}

@keyframes stat-gauge-drift {
  from {
    transform: translateY(0) rotate(2deg) scale(1);
  }

  to {
    transform: translateY(-3px) rotate(-5deg) scale(1.06);
  }
}

.globe-panel {
  position: relative;
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
  align-self: start;
  margin-top: clamp(34px, 6.4vh, 76px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  width: min(100%, clamp(500px, 33vw, 670px));
  height: min(100%, clamp(500px, 33vw, 670px));
  max-height: 70vh;
  cursor: grab;
  opacity: 0;
  animation: globe-panel-enter 3400ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
}

@keyframes globe-panel-enter {
  from {
    opacity: 0;
    filter: blur(5px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

.globe-panel::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(92, 166, 158, 0.28) 0%, rgba(48, 96, 90, 0.145) 34%, rgba(16, 36, 33, 0.055) 58%, transparent 78%),
    radial-gradient(circle at 50% 50%, rgba(148, 168, 168, 0.22) 0 0.76px, transparent 1.12px);
  background-size: 100% 100%, 10px 10px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.88) 0 38%, rgba(0, 0, 0, 0.5) 56%, rgba(0, 0, 0, 0.12) 70%, transparent 82%);
  opacity: 0.54;
  pointer-events: none;
  transform: translateZ(0);
}

.globe-panel::after {
  content: "";
  position: absolute;
  inset: -11%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(72, 238, 224, 0.105) 0%, rgba(65, 220, 232, 0.05) 38%, rgba(65, 220, 232, 0.015) 60%, transparent 80%);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.7) 0 42%, rgba(0, 0, 0, 0.22) 62%, transparent 82%);
  opacity: 0.52;
  pointer-events: none;
}

.globe-panel:active {
  cursor: grabbing;
}

#globeCanvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
}

.globe-dot-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(165, 178, 178, 0.24) 0 0.72px, transparent 0.95px),
    radial-gradient(circle, rgba(58, 82, 82, 0.08), transparent 66%);
  background-size: 7px 7px, 100% 100%;
  opacity: 0.54;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.92) 0 38%, rgba(0, 0, 0, 0.68) 54%, rgba(0, 0, 0, 0.22) 70%, transparent 82%);
  pointer-events: none;
}

.callout-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.callout-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1;
  stroke-linecap: round;
  shape-rendering: crispEdges;
  vector-effect: non-scaling-stroke;
}

.callout-anchor {
  fill: rgba(255, 255, 255, 0.34);
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.node-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #f4f4ef;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: transform, opacity;
  white-space: nowrap;
}

.node-label span {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #41dce8;
  box-shadow: none;
}

.label-fx span,
.label-access span {
  background: #a3ff3f;
}

.label-fx,
.label-settlement,
.label-access {
  flex-direction: row-reverse;
}

.label-treasury span {
  background: #d86b3a;
}

.label-mesh span {
  background: #41dce8;
}

.label-bridge span {
  background: #d8a43a;
}

.brand-section,
.content-page {
  width: min(100%, var(--site-max));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 96px);
}

.brand-section {
  position: relative;
  padding-top: clamp(68px, 8vw, 118px);
  padding-bottom: clamp(68px, 8vw, 118px);
  border-top: 0;
}

.mission-section {
  border-top: 0;
}

.brand-section:not(.why-section)::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 4vw, 72px);
  right: clamp(28px, 4vw, 72px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.market-section {
  position: relative;
  width: min(100%, var(--site-max));
  margin-inline: auto;
  padding: clamp(70px, 7vw, 104px) clamp(20px, 5vw, 96px);
}

.market-section::after {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 72px);
  right: clamp(28px, 4vw, 72px);
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.market-heading {
  max-width: 100%;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.market-heading .eyebrow {
  margin-bottom: 18px;
  color: rgba(235, 239, 231, 0.46);
}

.market-heading h2 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: clamp(44px, 4.4vw, 74px);
  line-height: 1.06;
  font-weight: 650;
  white-space: nowrap;
}

.market-heading h2 span {
  color: var(--section-lime);
  font-style: italic;
}

.market-board-label {
  margin: clamp(38px, 4vw, 58px) 0 16px;
  color: #fff;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.market-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(28px, 3vw, 42px);
}

.market-snapshot {
  display: grid;
  min-height: 0;
  height: 100%;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at 76% 22%, rgba(167, 255, 79, 0.025), transparent 38%),
    linear-gradient(180deg, rgba(18, 21, 22, 0.96), rgba(11, 13, 15, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.market-snapshot:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 76% 22%, rgba(167, 255, 79, 0.035), transparent 38%),
    linear-gradient(180deg, rgba(21, 25, 25, 0.98), rgba(12, 14, 16, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.market-snapshot strong {
  color: rgba(238, 241, 234, 0.58);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.market-snapshot span {
  color: #16d39a;
  font-size: clamp(21px, 1.55vw, 29px);
  font-weight: 500;
  font-family: var(--market-number-font);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 0 10px rgba(22, 211, 154, 0.28), 0 0 20px rgba(127, 232, 95, 0.1);
  transition: color 180ms ease, filter 360ms ease, text-shadow 520ms ease, transform 520ms ease;
}

.market-snapshot small {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #16d39a;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--market-number-font);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 8px rgba(22, 211, 154, 0.22), 0 0 16px rgba(127, 232, 95, 0.08);
  transition: color 180ms ease, filter 360ms ease, text-shadow 520ms ease;
}

.market-snapshot small i,
.market-snapshot small b {
  font-style: normal;
  font-weight: inherit;
}

.market-snapshot.down span,
.market-snapshot.down small {
  color: #ff4d73;
  text-shadow: 0 0 10px rgba(255, 77, 115, 0.3), 0 0 20px rgba(255, 127, 151, 0.12);
}

.market-snapshot.flat span,
.market-snapshot.flat small {
  color: rgba(218, 222, 215, 0.78);
  text-shadow: none;
}

.market-snapshot.is-ticking span {
  animation: market-number-flash 920ms cubic-bezier(0.16, 1, 0.3, 1);
}

.market-snapshot.is-ticking small {
  animation: market-small-flash 920ms cubic-bezier(0.16, 1, 0.3, 1);
}

.market-snapshot.is-ticking {
  animation: none;
}

@keyframes market-number-flash {
  0% {
    filter: brightness(1) saturate(1);
    text-shadow: 0 0 8px rgba(248, 255, 238, 0.08);
    transform: translateY(0) scale(1);
  }

  18% {
    filter: brightness(1.26) saturate(0.98);
    text-shadow: 0 0 1px rgba(248, 255, 238, 0.74), 0 0 14px rgba(167, 255, 79, 0.24), 0 0 28px rgba(201, 255, 157, 0.12);
    transform: translateY(-1px) scale(1.02);
  }

  100% {
    filter: brightness(1) saturate(1);
    text-shadow: 0 0 8px rgba(248, 255, 238, 0.06);
    transform: translateY(0) scale(1);
  }
}

@keyframes market-small-flash {
  0% {
    filter: brightness(1) saturate(1);
    text-shadow: 0 0 6px rgba(248, 255, 238, 0.06);
  }

  18% {
    filter: brightness(1.18) saturate(0.98);
    text-shadow: 0 0 1px rgba(248, 255, 238, 0.58), 0 0 11px rgba(167, 255, 79, 0.18), 0 0 22px rgba(201, 255, 157, 0.1);
  }

  100% {
    filter: brightness(1) saturate(1);
    text-shadow: 0 0 6px rgba(248, 255, 238, 0.04);
  }
}

.market-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 74% 16%, rgba(167, 255, 79, 0.07), transparent 34%),
    radial-gradient(circle at 20% 0%, rgba(87, 232, 255, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(12, 15, 18, 0.98), rgba(5, 7, 7, 0.99));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 50%, transparent 0, rgba(255, 255, 255, 0.018) 1px, transparent 1.6px);
  background-size: 100% 100%, 18px 18px;
  opacity: 0.34;
}

.market-scroll {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-color: rgba(167, 255, 79, 0.26) transparent;
}

.market-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  table-layout: fixed;
}

.market-table th {
  height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 clamp(18px, 2vw, 34px);
  color: rgba(214, 218, 211, 0.62);
  font-family: "SFMono-Regular", "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.market-table th:nth-child(2),
.market-table th:nth-child(3),
.market-table th:nth-child(4),
.market-table td:nth-child(2),
.market-table td:nth-child(3),
.market-table td:nth-child(4) {
  text-align: right;
}

.market-table th:last-child,
.market-table td:last-child {
  width: 130px;
  text-align: right;
}

.market-table td {
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  padding: 0 clamp(18px, 2vw, 34px);
  color: rgba(236, 239, 233, 0.9);
  font-size: 15px;
  font-weight: 560;
  transition: background 180ms ease, color 180ms ease;
}

.market-table tbody tr {
  transition: background 180ms ease;
}

.market-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.026);
}

.market-snapshot.reveal-item.is-visible:hover {
  transform: translateY(-3px);
}

.market-table tbody tr:hover .asset-icon {
  filter: saturate(1.08) brightness(1.08);
  transform: translateY(-1px) scale(1.04);
}

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

.pair-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.asset-icon {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.32);
  transition: transform 220ms ease, filter 220ms ease;
}

.asset-icon img {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
}

.price {
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  font-family: var(--market-number-font);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  transition: color 180ms ease, text-shadow 180ms ease, filter 180ms ease;
}

.change {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--market-number-font);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  transition: color 180ms ease, text-shadow 180ms ease, filter 180ms ease;
}

.change.up,
.change.flat {
  color: #16d39a;
}

.change.down {
  color: #ff4d73;
}

.volume {
  color: rgba(217, 221, 216, 0.68);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--market-number-font);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

@keyframes market-card-pulse {
  0% {
    border-color: rgba(167, 255, 79, 0.12);
    background:
      radial-gradient(circle at 76% 22%, rgba(167, 255, 79, 0.1), transparent 34%),
      linear-gradient(180deg, rgba(18, 21, 22, 0.96), rgba(11, 13, 15, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  28% {
    border-color: rgba(167, 255, 79, 0.36);
    background:
      radial-gradient(circle at 76% 22%, rgba(167, 255, 79, 0.22), transparent 40%),
      linear-gradient(180deg, rgba(24, 30, 28, 0.99), rgba(12, 15, 15, 0.99));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.075),
      0 0 0 1px rgba(167, 255, 79, 0.08),
      0 0 34px rgba(92, 162, 64, 0.13);
  }

  100% {
    border-color: rgba(255, 255, 255, 0.11);
    background:
      radial-gradient(circle at 76% 22%, rgba(167, 255, 79, 0.08), transparent 34%),
      linear-gradient(180deg, rgba(18, 21, 22, 0.96), rgba(11, 13, 15, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }
}

.trade-link {
  display: inline-flex;
  color: rgba(231, 235, 229, 0.62);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.trade-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.market-more {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(225, 229, 222, 0.68);
  font-size: 15px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.market-more:hover {
  background: rgba(255, 255, 255, 0.018);
  color: #fff;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.04;
  font-weight: 500;
}

.home-page h2 {
  font-size: 70px;
}

.mission-section h2 span,
.technology-section h2,
.newsroom-section h2,
.roadmap-section h2,
.culture-section h2 {
  color: var(--text);
}

.section-heading {
  max-width: 820px;
}

.section-heading.narrow {
  max-width: 700px;
}

.culture-section .section-heading.narrow {
  max-width: none;
}

.culture-section h2 {
  white-space: nowrap;
}

.culture-section h2 span {
  color: var(--section-lime);
}

.section-heading > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.section-heading > p + p {
  margin-top: 18px;
}

.mission-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 68px);
  justify-items: center;
  padding-top: clamp(52px, 6vw, 88px);
  text-align: center;
}

.mission-section .section-heading {
  max-width: 900px;
}

.mission-section .section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
}

.mission-copy p,
.technology-grid p,
.newsroom-grid p,
.roadmap-list p,
.culture-grid p,
.page-lede {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(46px, 7vw, 116px);
  width: min(100%, 980px);
  margin-top: 0;
}

.mission-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #deded8;
  font-size: 14px;
  font-weight: 700;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.mission-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.mission-points span:hover {
  border-color: rgba(167, 255, 79, 0.2);
  color: #f0f1eb;
  transform: translateX(4px);
}

.mission-points span:hover::before {
  background: #b8ff69;
  box-shadow: 0 0 16px rgba(167, 255, 79, 0.36);
  transform: scale(1.12);
}

.technology-grid,
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
  border: 0;
  background: transparent;
}

.technology-grid article,
.culture-grid article {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px 16px 24px;
  background:
    linear-gradient(180deg, rgba(13, 18, 17, 0.96), rgba(5, 7, 7, 0.98));
  overflow: hidden;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.culture-grid article {
  min-height: 238px;
  padding: 30px;
}

.newsroom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(38px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.newsroom-grid article {
  display: grid;
  grid-template-columns: minmax(130px, 0.22fr) minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: 10px;
  align-items: center;
  min-height: 144px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 0;
  padding: clamp(24px, 2.7vw, 34px);
  background: transparent;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.newsroom-grid article:last-child {
  border-bottom: 0;
}

.newsroom-grid article:hover {
  border-color: rgba(167, 255, 79, 0.18);
  background: linear-gradient(90deg, rgba(167, 255, 79, 0.022), transparent 34%);
}

.newsroom-grid time {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-bottom: 0;
  color: var(--section-lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsroom-grid h2 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.18;
  font-weight: 650;
}

.newsroom-grid h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.18;
  font-weight: 650;
}

.newsroom-grid p {
  grid-column: 2;
  grid-row: 2;
  max-width: 680px;
  margin: 0;
  color: rgba(155, 157, 152, 0.9);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.newsroom-grid h3 a,
.newsroom-grid h2 a {
  transition: color 180ms ease;
}

.newsroom-grid h3 a:hover,
.newsroom-grid h2 a:hover {
  color: var(--section-lime);
}

.news-link {
  display: inline-flex;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  width: fit-content;
  margin-top: 0;
  white-space: nowrap;
  color: var(--section-lime);
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.news-link:hover {
  color: #d6ffae;
  transform: translateX(3px);
}

.newsroom-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
  border: 0;
}

.newsroom-page-grid article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: clamp(24px, 2.7vw, 34px);
  background:
    radial-gradient(circle at 82% 0%, rgba(167, 255, 79, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(12, 16, 15, 0.98), rgba(4, 7, 6, 0.98));
}

.newsroom-page-grid article:first-child {
  border-color: rgba(167, 255, 79, 0.38);
}

.newsroom-page-grid article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.newsroom-page-grid article:hover {
  border-color: rgba(167, 255, 79, 0.25);
  background:
    linear-gradient(180deg, rgba(16, 23, 21, 0.98), rgba(7, 10, 9, 0.98));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(167, 255, 79, 0.035);
  transform: translateY(-6px);
}

.news-card-meta,
.newsroom-page-grid time,
.newsroom-page-grid h2,
.newsroom-page-grid p,
.newsroom-page-grid .news-link {
  grid-column: auto;
  grid-row: auto;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(28px, 3vw, 38px);
}

.newsroom-page-grid time {
  margin-bottom: 0;
}

.newsroom-page-grid h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2vw, 32px);
}

.newsroom-page-grid p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.newsroom-page-grid .news-link {
  margin-top: 0;
  align-self: auto;
  white-space: nowrap;
}

.news-detail-page {
  display: grid;
  justify-items: center;
}

.news-detail {
  width: min(100%, 920px);
}

.news-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--section-lime);
  font-size: 14px;
  font-weight: 800;
}

.news-detail time {
  display: block;
  margin-bottom: 20px;
  color: var(--section-lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-detail h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 74px);
}

.news-detail p:not(.page-lede) {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 600;
}

.news-detail p + p {
  margin-top: 20px;
}

.news-source-link {
  margin-top: 10px;
}

.tech-visual {
  position: relative;
  height: clamp(270px, 18vw, 340px);
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  background: #050707;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease, opacity 260ms ease;
}

.tech-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: grayscale(0.28) saturate(0.78) contrast(1.08) brightness(0.66);
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms ease;
}

.tech-visual::before,
.tech-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tech-visual::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(167, 255, 79, 0.18), transparent 36%),
    radial-gradient(circle at 78% 18%, rgba(76, 224, 232, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5) 82%, rgba(0, 0, 0, 0.76));
  opacity: 0.92;
}

.tech-visual::after {
  background:
    linear-gradient(120deg, transparent 16%, rgba(255, 255, 255, 0.14), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.2;
}

.tech-diagram {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(197, 216, 215, 0.72);
  z-index: 1;
}

.tech-diagram path,
.tech-diagram rect,
.tech-diagram circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}

.tech-diagram text {
  fill: rgba(231, 237, 232, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-grid-lines {
  opacity: 0.25;
}

.tech-panel rect {
  fill: rgba(6, 11, 11, 0.54);
  stroke: rgba(255, 255, 255, 0.16);
}

.tech-panel path {
  stroke: rgba(221, 231, 226, 0.36);
}

.tech-panel circle,
.tech-core circle,
.tech-nodes circle,
.tech-gauges circle,
.alert-card circle {
  fill: rgba(167, 255, 79, 0.7);
  stroke: none;
}

.tech-flow path,
.tech-route path {
  stroke: rgba(87, 232, 255, 0.68);
  stroke-width: 2;
}

.tech-core circle,
.tech-gauges path {
  stroke: rgba(167, 255, 79, 0.48);
}

.tech-core circle:last-child {
  fill: rgba(167, 255, 79, 0.84);
}

.tech-labels {
  opacity: 0.74;
}

.muted-route {
  opacity: 0.28;
}

.route-card text {
  fill: rgba(167, 255, 79, 0.82);
  font-size: 11px;
}

.settlement-vault rect {
  fill: rgba(216, 164, 58, 0.08);
  stroke: rgba(216, 164, 58, 0.34);
}

.settlement-vault path,
.settlement-flow path {
  stroke: rgba(216, 164, 58, 0.72);
}

.observability-card path,
.tech-gauges path {
  stroke: rgba(87, 232, 255, 0.62);
}

.alert-card circle {
  fill: rgba(216, 164, 58, 0.82);
}

.technology-grid article:hover .tech-flow path,
.technology-grid article:hover .tech-route path,
.technology-grid article:hover .settlement-flow path,
.technology-grid article:hover .observability-card path {
  filter: drop-shadow(0 0 8px rgba(87, 232, 255, 0.22));
}

.technology-grid article:hover .tech-core circle,
.technology-grid article:hover .tech-gauges path {
  filter: drop-shadow(0 0 10px rgba(167, 255, 79, 0.2));
}

.visual-routing {
  background:
    radial-gradient(circle at 20% 35%, rgba(167, 255, 79, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(12, 18, 17, 0.98), rgba(20, 34, 31, 0.94));
}

.visual-settlement {
  background:
    radial-gradient(circle at 52% 52%, rgba(216, 164, 58, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(26, 22, 14, 0.92), rgba(5, 7, 7, 0.98));
}

.visual-observability {
  background:
    radial-gradient(circle at 72% 24%, rgba(87, 232, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(8, 18, 20, 0.98), rgba(3, 5, 5, 0.98));
}

.technology-grid h3,
.culture-grid h3 {
  margin-bottom: 14px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
}

.technology-grid strong,
.newsroom-grid strong {
  display: block;
  margin-top: auto;
  color: #d8dad4;
  font-size: 13px;
  font-weight: 800;
  transition: color 220ms ease;
}

.technology-grid article:hover,
.culture-grid article:hover {
  border-color: rgba(167, 255, 79, 0.25);
  background:
    linear-gradient(180deg, rgba(16, 23, 21, 0.98), rgba(7, 10, 9, 0.98));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(167, 255, 79, 0.035);
  transform: translateY(-6px);
}

.technology-grid article:hover .tech-visual {
  filter: brightness(1.08) saturate(1.04);
  transform: scale(1.018);
}

.technology-grid article:hover .tech-visual img {
  transform: scale(1.07);
  filter: grayscale(0.12) saturate(0.95) contrast(1.1) brightness(0.78);
}

.technology-grid article:hover strong {
  color: var(--section-lime);
}

.roadmap-section {
  display: block;
}

.roadmap-list {
  position: relative;
  display: grid;
  gap: clamp(44px, 5.5vw, 76px);
  width: min(100%, 1060px);
  margin: 0;
  padding: 0;
  margin-inline: auto;
}

.roadmap-list article {
  position: relative;
  display: grid;
  width: calc(50% - 56px);
  min-height: 142px;
  align-content: center;
  padding: 4px 0;
  text-align: right;
  transition: transform 260ms ease;
}

.roadmap-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(87, 232, 255, 0.16), rgba(167, 255, 79, 0.52), rgba(87, 232, 255, 0.14));
}

.roadmap-list article:nth-child(even) {
  justify-self: end;
  text-align: left;
}

.roadmap-list article i {
  position: absolute;
  top: 50%;
  right: -67px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(167, 255, 79, 0.24);
  border-radius: 50%;
  background: rgba(167, 255, 79, 0.1);
  transform: translateY(-50%);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.roadmap-list article i::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--section-lime);
  box-shadow: 0 0 24px rgba(167, 255, 79, 0.26);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.roadmap-list article:nth-child(even) i {
  right: auto;
  left: -65px;
}

.roadmap-list span {
  margin-bottom: 14px;
  color: #7fdcff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-list strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.2;
  transition: color 220ms ease;
}

.roadmap-list p {
  max-width: 410px;
  margin: 12px 0 0;
}

.roadmap-list article:nth-child(odd) p {
  justify-self: end;
}

.roadmap-list article:hover {
  transform: translateY(-4px);
}

.roadmap-list article:hover strong {
  color: #f4f5ef;
}

.roadmap-list article:hover i {
  border-color: rgba(167, 255, 79, 0.48);
  background: rgba(167, 255, 79, 0.16);
  box-shadow: 0 0 28px rgba(167, 255, 79, 0.14);
}

.roadmap-list article:hover i::before {
  box-shadow: 0 0 24px rgba(167, 255, 79, 0.5);
  transform: scale(1.16);
}

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

.why-section {
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.why-heading {
  max-width: 820px;
}

.why-heading h2.why-title {
  margin-bottom: 20px;
  color: #f5f6f1;
  font-size: 70px;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

.why-title span {
  color: var(--section-lime);
}

.why-heading > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.65;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 22px);
  margin-top: clamp(38px, 4.6vw, 62px);
}

.why-grid article {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 0%, rgba(167, 255, 79, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(22, 24, 27, 0.96), rgba(13, 15, 18, 0.98));
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card-media {
  position: relative;
  height: clamp(180px, 14vw, 240px);
  overflow: hidden;
  background: #090c0c;
}

.why-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(13, 15, 18, 0.82)),
    radial-gradient(circle at 72% 20%, rgba(167, 255, 79, 0.18), transparent 34%);
  pointer-events: none;
}

.why-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08) brightness(0.88);
  transform: scale(1.02);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.why-card-body {
  padding: clamp(22px, 2vw, 30px);
}

.why-grid span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 16px;
  color: var(--section-lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.why-grid h3 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 650;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.why-grid a {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--section-lime);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.why-grid article:hover {
  border-color: rgba(167, 255, 79, 0.24);
  background:
    radial-gradient(circle at 82% 0%, rgba(167, 255, 79, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(25, 28, 30, 0.98), rgba(12, 15, 16, 0.99));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(167, 255, 79, 0.03);
  transform: translateY(-6px);
}

.why-grid article:hover .why-card-media img {
  filter: saturate(1.18) contrast(1.14) brightness(1);
  transform: scale(1.08);
}

.why-grid article:hover a {
  color: #d6ffae;
  transform: translateX(3px);
}

.withdraw-band {
  margin-top: clamp(82px, 8vw, 128px);
  text-align: center;
}

.withdraw-band h3 {
  margin: 0;
  color: #f5f6f1;
  font-family: "PingFang SC", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: 0;
}

.withdraw-band p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 650;
}

.withdraw-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 82px);
  margin-top: clamp(32px, 4vw, 56px);
}

.withdraw-logos img {
  display: block;
  width: auto;
  height: 30px;
  max-width: 66px;
  object-fit: contain;
  opacity: 0.58;
  filter: brightness(0) invert(1);
  transition: opacity 220ms ease, transform 220ms ease;
}

.withdraw-logos img:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  width: min(100%, var(--site-max));
  margin-inline: auto;
  padding: 38px clamp(20px, 5vw, 96px) 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 clamp(20px, 5vw, 96px) auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 255, 79, 0.22), rgba(255, 255, 255, 0.12), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 96px);
  bottom: -80px;
  width: 560px;
  height: 260px;
  background:
    radial-gradient(circle at 50% 50%, rgba(80, 142, 138, 0.12), transparent 62%),
    radial-gradient(circle, rgba(148, 168, 168, 0.12) 0 0.7px, transparent 1px);
  background-size: 100% 100%, 10px 10px;
  opacity: 0.42;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) auto auto;
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
}

.footer-logo {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 0;
  font-weight: 800;
}

.site-footer h2 {
  display: none;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  color: #deded8;
  white-space: nowrap;
}

.footer-contact-link {
  color: #deded8;
  font-weight: 800;
}

.footer-contact-link:hover {
  color: var(--section-lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.025);
  color: #c5c8c0;
  white-space: nowrap;
}

.footer-cta {
  justify-self: end;
  min-height: 42px;
  padding-inline: 18px;
}

.footer-note {
  color: rgba(155, 157, 152, 0.68);
  font-size: 12px;
  text-align: right;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.technology-grid article.reveal-item,
.newsroom-grid article.reveal-item,
.culture-grid article.reveal-item,
.why-grid article.reveal-item,
.market-card.reveal-item {
  transform: translateY(28px) scale(0.985);
}

.technology-grid article.reveal-item.is-visible,
.newsroom-grid article.reveal-item.is-visible,
.culture-grid article.reveal-item.is-visible,
.why-grid article.reveal-item.is-visible,
.market-card.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

.roadmap-list article.reveal-item {
  transform: translateY(26px);
}

.roadmap-list article.reveal-item.is-visible {
  transform: translateY(0);
}

.technology-grid article.reveal-item.is-visible:hover,
.culture-grid article.reveal-item.is-visible:hover,
.why-grid article.reveal-item.is-visible:hover {
  transform: translateY(-6px) scale(1);
}

.roadmap-list article.reveal-item.is-visible:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .technology-grid article.reveal-item,
  .newsroom-grid article.reveal-item,
  .culture-grid article.reveal-item,
  .why-grid article.reveal-item,
  .roadmap-list article.reveal-item,
  .market-card.reveal-item {
    transform: none;
  }
}

.content-page {
  min-height: calc(100vh - 94px);
  padding-top: 168px;
  padding-bottom: 90px;
}

.page-kicker {
  width: min(100%, 960px);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 70px;
  background: var(--line);
}

.page-grid article {
  padding: 34px;
  background: var(--panel);
}

.page-grid h2 {
  font-size: 30px;
}

.page-grid p {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.markets-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(310px, 0.5fr);
  align-items: stretch;
  gap: 20px;
  margin-top: clamp(44px, 6vw, 70px);
}

.markets-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 1fr);
  gap: 1px;
  background: var(--line);
}

.markets-board article,
.markets-stack div {
  background:
    radial-gradient(circle at 80% 0%, rgba(167, 255, 79, 0.055), transparent 34%),
    var(--panel);
}

.markets-board article {
  padding: clamp(26px, 2.8vw, 44px);
  min-width: 0;
}

.markets-board-main {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}

.markets-board span,
.console-grid span,
.about-principles span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.markets-board h2,
.markets-board h3,
.console-rail h2,
.console-grid h3,
.about-statement h2,
.about-principles h3 {
  margin: 22px 0 14px;
  color: var(--text);
}

.markets-board h2,
.about-statement h2 {
  font-size: clamp(42px, 3.9vw, 70px);
  line-height: 0.98;
}

.markets-board h3,
.console-grid h3,
.about-principles h3 {
  font-size: clamp(23px, 1.6vw, 28px);
  line-height: 1.1;
}

.markets-board p,
.markets-stack p,
.console-rail p,
.console-grid p,
.about-statement p,
.about-principles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.markets-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.markets-stack div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 40px);
}

.markets-stack strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.12;
}

.control-console {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  margin-top: 74px;
}

.console-rail {
  min-height: 620px;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(167, 255, 79, 0.28);
  background:
    linear-gradient(180deg, rgba(167, 255, 79, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(12, 16, 15, 0.98), rgba(4, 7, 6, 0.98));
}

.console-rail span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-rail h2 {
  font-size: clamp(38px, 3.8vw, 64px);
  line-height: 1;
}

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

.console-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 12, 11, 0.92);
}

.institutional-page {
  background:
    linear-gradient(180deg, rgba(167, 255, 79, 0.025), transparent 18rem),
    radial-gradient(circle at 78% 18%, rgba(87, 232, 255, 0.045), transparent 26rem);
}

.institutional-hero {
  width: min(100%, 1120px);
}

.about-page .page-kicker {
  width: min(100%, 980px);
  margin-inline: auto;
}

.institutional-system {
  margin-top: clamp(54px, 7vw, 98px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.institutional-thesis {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 6vw, 96px);
  padding: clamp(40px, 5.5vw, 78px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.institutional-thesis span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.institutional-thesis h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(38px, 4vw, 68px);
  line-height: 1.02;
  font-weight: 700;
}

.institutional-thesis p,
.institutional-deployment p {
  margin: 0;
  color: #b4b8b0;
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.72;
  font-weight: 600;
}

.institutional-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(34px, 5vw, 70px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.institutional-flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(52px, 6vw, 92px);
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 255, 79, 0.58), rgba(255, 255, 255, 0.15), rgba(87, 232, 255, 0.2));
}

.institutional-flow section {
  position: relative;
  min-width: 0;
  padding: 0 clamp(20px, 2.6vw, 42px) 0 0;
}

.institutional-flow section::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin-bottom: 42px;
  border: 1px solid rgba(167, 255, 79, 0.66);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 24px rgba(167, 255, 79, 0.18);
}

.institutional-flow span {
  display: block;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.institutional-flow h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.12;
}

.institutional-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 650;
}

.institutional-deployment {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(42px, 5.8vw, 82px) 0 0;
}

.institutional-deployment h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.04;
}

.institutional-deployment p + p {
  margin-top: 22px;
}

.institutional-page {
  background:
    radial-gradient(circle at 18% 70%, rgba(167, 255, 79, 0.045), transparent 25rem),
    var(--bg);
}

.institutional-deck {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(240px, 0.72fr));
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
  margin-top: clamp(54px, 7vw, 88px);
}

.institutional-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(26px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 86% 0%, rgba(167, 255, 79, 0.075), transparent 36%),
    linear-gradient(180deg, rgba(13, 16, 15, 0.98), rgba(6, 8, 7, 0.98));
}

.institutional-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(167, 255, 79, 0.72), rgba(87, 232, 255, 0.2), transparent);
  opacity: 0.55;
}

.institutional-card-primary {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 536px;
  background:
    radial-gradient(circle at 78% 10%, rgba(167, 255, 79, 0.16), transparent 34%),
    radial-gradient(circle at 8% 90%, rgba(87, 232, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(14, 18, 16, 0.99), rgba(4, 7, 6, 0.99));
}

.institutional-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.institutional-card h2 {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(40px, 4.2vw, 76px);
  line-height: 0.98;
  font-weight: 700;
}

.institutional-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(25px, 1.8vw, 34px);
  line-height: 1.12;
}

.institutional-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 650;
}

.institutional-card-primary p {
  color: #b9bdb6;
  font-size: clamp(17px, 1.15vw, 21px);
}

.institutional-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.institutional-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(167, 255, 79, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(167, 255, 79, 0.055);
  color: #d8ffb7;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.institutional-assurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(24px, 2.8vw, 36px);
  background: rgba(9, 12, 11, 0.92);
}

.institutional-assurance p {
  max-width: 980px;
  margin: 0;
  color: #b8bbb5;
  font-size: 17px;
  line-height: 1.66;
  font-weight: 650;
}

.about-redesign {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: 22px;
  margin-top: clamp(46px, 6vw, 78px);
}

.about-narrative,
.about-operating-card {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 86% 0%, rgba(167, 255, 79, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(11, 14, 13, 0.98), rgba(5, 7, 6, 0.98));
}

.about-narrative {
  padding: clamp(34px, 4.5vw, 66px);
}

.about-narrative span,
.about-operating-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-narrative h2 {
  max-width: 920px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(38px, 3.45vw, 64px);
  line-height: 1.02;
  font-weight: 700;
}

.about-narrative p {
  max-width: 840px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.72;
  font-weight: 600;
}

.about-narrative p:last-child {
  margin-bottom: 0;
}

.about-operating-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 3.8vw, 48px);
}

.about-operating-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.08;
}

.about-operating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 650;
}

.about-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 8px;
  background: var(--line);
}

.about-principles article {
  min-height: 260px;
  padding: clamp(28px, 3vw, 42px);
  background: var(--panel);
}

.about-scope {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 8px;
  background: var(--line);
}

.about-scope article {
  min-height: 250px;
  padding: clamp(26px, 2.6vw, 38px);
  background:
    radial-gradient(circle at 86% 0%, rgba(87, 232, 255, 0.04), transparent 34%),
    rgba(9, 12, 11, 0.94);
}

.about-scope strong {
  display: block;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(22px, 1.45vw, 27px);
  line-height: 1.15;
}

.about-scope p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.64;
  font-weight: 600;
}

.about-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 8px;
  background: var(--line);
}

.about-metrics article {
  min-height: 190px;
  background: rgba(9, 12, 11, 0.92);
  padding: clamp(26px, 3vw, 38px);
}

.about-metrics strong {
  display: block;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1;
}

.about-metrics span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 750;
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(42px, 6vw, 110px);
  margin-top: clamp(58px, 7vw, 96px);
  padding-top: clamp(42px, 5vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.about-copy-intro {
  align-self: start;
}

.about-section-label {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 1.04;
  font-weight: 700;
}

.about-copy-body {
  max-width: 850px;
}

.about-copy-body p {
  margin: 0 0 28px;
  color: #b7bab3;
  font-size: clamp(18px, 1.22vw, 22px);
  line-height: 1.72;
  font-weight: 600;
}

.about-copy-body p:first-child {
  color: #dedfd9;
  font-size: clamp(21px, 1.5vw, 28px);
  line-height: 1.55;
}

.about-copy-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 72px);
  margin-top: clamp(38px, 5vw, 82px);
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.about-copy-notes section {
  min-width: 0;
}

.about-copy-notes span {
  display: block;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-copy-notes h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.16;
}

.about-copy-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
  font-weight: 650;
}

.about-article {
  width: min(100%, 980px);
  margin-inline: auto;
  margin-top: clamp(58px, 7vw, 96px);
  padding-top: clamp(42px, 5vw, 68px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.about-article p {
  max-width: 940px;
  margin: 0 0 28px;
  color: #b6bab3;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 500;
}

.about-article .about-article-lead {
  color: #b6bab3;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 500;
}

.about-article p:last-child {
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.contact-list a {
  color: var(--text);
}

@media (max-width: 1180px) {
  .section-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.95fr);
    column-gap: clamp(24px, 3vw, 46px);
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
  }

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

  .stats div:nth-child(odd) {
    border-left: 0;
  }

  .globe-panel {
    width: min(100%, 520px);
    height: min(100%, 520px);
  }
}

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

  .desktop-nav {
    display: none;
  }

  .section-grid,
  .mission-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-actions {
    margin-bottom: 50px;
  }

  .globe-panel {
    grid-row: auto;
    grid-column: auto;
    justify-self: center;
    width: min(90vw, 560px);
    min-height: 560px;
  }

  .stats {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-grid,
  .newsroom-grid,
  .newsroom-page-grid,
  .culture-grid,
  .why-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .newsroom-grid article {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .newsroom-grid time,
  .newsroom-grid h2,
  .newsroom-grid h3,
  .newsroom-grid p,
  .news-link {
    grid-column: 1;
    grid-row: auto;
  }

  .newsroom-grid p {
    max-width: 100%;
  }

  .news-link {
    justify-self: start;
  }

  .newsroom-page-grid {
    grid-template-columns: 1fr;
  }

  .newsroom-page-grid article {
    display: flex;
  }

  .markets-layout,
  .control-console,
  .about-story,
  .about-redesign {
    grid-template-columns: 1fr;
  }

  .about-narrative,
  .about-operating-card {
    min-height: auto;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

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

  .about-copy {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .institutional-thesis,
  .institutional-deployment {
    grid-template-columns: 1fr;
  }

  .institutional-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 0;
  }

  .institutional-flow::before {
    display: none;
  }

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

  .institutional-card-primary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }

  .institutional-assurance {
    grid-template-columns: 1fr;
  }

  .about-copy-intro {
    position: static;
  }

  .about-copy-notes {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .markets-board,
  .console-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .markets-board-main {
    grid-column: span 2;
  }

  .console-rail {
    min-height: 0;
  }

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

  .market-heading h2 {
    white-space: normal;
  }

  .roadmap-list article {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 42px;
    text-align: left;
  }

  .roadmap-list::before {
    left: 10px;
  }

  .roadmap-list article:nth-child(even) {
    justify-self: stretch;
  }

  .roadmap-list article i,
  .roadmap-list article:nth-child(even) i {
    left: 1px;
    right: auto;
  }

  .roadmap-list article:nth-child(odd) p {
    justify-self: start;
  }

  .site-footer {
    padding-top: 42px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-nav,
  .footer-tags {
    flex-wrap: wrap;
  }

  .footer-note {
    text-align: left;
  }

  .footer-cta {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 18px 20px;
  }

  .content-page {
    min-height: 0;
    padding: 118px 20px 64px;
  }

  .brand-section,
  .market-section {
    padding-inline: 20px;
  }

  .section-grid {
    display: block;
    padding-inline: 20px;
  }

  .hero {
    padding-top: 82px;
    padding-bottom: 46px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-copy::before {
    top: 28px;
    width: min(220px, 58vw);
  }

  .brand {
    font-size: 13px;
    letter-spacing: 0;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
    max-width: 100%;
    line-height: 1.08;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
    max-width: 9ch;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: block;
  }

  .page-kicker,
  .about-page .page-kicker,
  .institutional-hero {
    width: 100%;
  }

  .hero-copy,
  .lede {
    max-width: 100%;
  }

  .lede,
  .technology-grid p,
  .newsroom-grid p,
  .roadmap-list p,
  .culture-grid p,
  .page-lede {
    font-size: 15px;
  }

  .page-lede {
    line-height: 1.62;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .market-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .market-heading h2 {
    font-size: 40px;
  }

  .home-page h2,
  .why-heading h2.why-title {
    font-size: 40px;
  }

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

  .market-table {
    min-width: 680px;
  }

  .market-table td {
    height: 74px;
  }

  .market-card {
    border-radius: 10px;
  }

  .stats div {
    min-height: 122px;
    padding: 18px 0;
    border-left: 0;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon svg {
    width: 42px;
    height: 42px;
  }

  .globe-panel {
    min-height: 0;
    width: min(90vw, 420px);
    height: min(90vw, 420px);
    margin: 0 auto;
  }

  .globe-panel::before {
    inset: -16%;
    background-size: 10px 10px, 100% 100%;
    opacity: 0.28;
  }

  .globe-panel::after {
    inset: -12%;
    opacity: 0.38;
  }

  #globeCanvas {
    min-height: 0;
  }

  .node-label {
    font-size: 11px;
  }

  .label-access,
  .label-settlement {
    display: none;
  }

  .site-footer {
    gap: 24px;
  }

  .footer-nav {
    gap: 14px 20px;
  }

  .brand-section {
    padding-inline: 20px;
  }

  .page-grid article,
  .technology-grid article,
  .culture-grid article,
  .newsroom-grid article,
  .newsroom-page-grid article,
  .console-grid article,
  .markets-board article,
  .markets-stack div {
    padding: 24px;
  }

  .markets-board,
  .console-grid,
  .about-metrics,
  .about-scope {
    grid-template-columns: 1fr;
  }

  .markets-board-main {
    grid-column: auto;
    grid-row: auto;
    min-height: min(84vw, 320px);
  }

  .markets-board h2,
  .about-statement h2,
  .about-narrative h2 {
    font-size: 40px;
  }

  .about-narrative,
  .about-operating-card,
  .about-principles article,
  .about-scope article,
  .about-metrics article {
    padding: 26px;
  }

  .about-principles article,
  .about-scope article {
    min-height: 0;
  }

  .about-copy {
    margin-top: 42px;
    padding-top: 34px;
  }

  .about-article {
    width: 100%;
    margin-top: 42px;
    padding-top: 34px;
  }

  .about-article p,
  .about-article .about-article-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-copy-body p,
  .about-copy-body p:first-child {
    font-size: 16px;
    line-height: 1.68;
  }

  .institutional-flow {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .institutional-flow section {
    padding-right: 0;
  }

  .institutional-flow section::before {
    margin-bottom: 18px;
  }

  .institutional-thesis,
  .institutional-flow,
  .institutional-deployment {
    padding-block: 34px;
  }

  .institutional-deck {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .institutional-card,
  .institutional-card-primary {
    min-height: 0;
    padding: 26px;
  }

  .institutional-card h2 {
    font-size: 38px;
  }

  .institutional-card h3 {
    font-size: 25px;
  }

  .institutional-assurance {
    padding: 24px;
  }

  .news-detail h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .news-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .roadmap-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mission-points {
    grid-template-columns: 1fr;
  }
}
