:root {
  --ink: #18212b;
  --muted: #68727e;
  --paper: #f8f6f1;
  --white: #ffffff;
  --line: #dfe2df;
  --coral: #ff7657;
  --yellow: #f5be4f;
  --mint: #2cbf9b;
  --blue: #5878ff;
  --violet: #9b6bdf;
  --navy: #172331;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #e8e5de;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(1440px, calc(100% - 28px));
  margin: 14px auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(24, 33, 43, 0.14);
  box-shadow: 0 24px 70px rgba(24, 33, 43, 0.12);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 48px;
  background: rgba(248, 246, 241, 0.84);
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-wordmark {
  display: block;
  width: 210px;
  height: auto;
}

.brand-wordmark-header {
  width: 235px;
  filter: brightness(0) saturate(100%) invert(31%) sepia(35%) saturate(1148%) hue-rotate(128deg) brightness(91%) contrast(96%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4d5864;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.products-menu-trigger,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.products-menu-trigger:hover,
.footer-links a:hover {
  color: var(--coral);
}

.products-menu {
  position: relative;
}

.products-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.products-menu-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.products-menu.open .products-menu-chevron {
  transform: translateY(2px) rotate(225deg);
}

.products-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 13px);
  left: 50%;
  width: 520px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(24, 33, 43, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-34%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.products-dropdown::before {
  position: absolute;
  top: -7px;
  left: 31%;
  width: 12px;
  height: 12px;
  content: "";
  background: #fff;
  border-top: 1px solid rgba(24, 33, 43, 0.12);
  border-left: 1px solid rgba(24, 33, 43, 0.12);
  transform: rotate(45deg);
}

.products-menu.open .products-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-34%, 0);
}

.products-dropdown-label {
  display: block;
  margin-bottom: 12px;
  color: #7a858d;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.products-dropdown a {
  color: var(--ink);
}

.products-dropdown-featured {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #edf8f4;
  border: 1px solid rgba(44, 191, 155, 0.25);
  border-radius: 6px;
}

.products-dropdown-index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: #168675;
  border-radius: 50%;
  font-size: 11px;
}

.products-dropdown-featured b,
.products-dropdown-featured small {
  display: block;
}

.products-dropdown-featured b {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.products-dropdown-featured small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.products-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.products-dropdown-grid a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.products-dropdown-grid a:hover {
  color: #087a70;
  background: #f8faf8;
  border-color: rgba(8, 122, 112, 0.28);
}

.products-dropdown-grid span {
  color: var(--coral);
  font-size: 10px;
}

.products-dropdown-grid b {
  font-size: 12px;
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(24, 33, 43, 0.2);
}

.button-outline {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(24, 33, 43, 0.2);
}

.button-ink {
  color: #fff;
  background: var(--ink);
}

.button-white {
  color: var(--ink);
  background: white;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 700px;
  padding: 64px 48px 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 42%, rgba(54, 201, 167, 0.13), transparent 26%),
    radial-gradient(circle at 91% 12%, rgba(255, 118, 87, 0.14), transparent 25%),
    linear-gradient(125deg, #fffdf7 0%, #f7f3ea 60%, #edf8f5 100%);
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 247, 0.94) 0%, rgba(255, 253, 247, 0.76) 38%, rgba(255, 253, 247, 0.08) 72%);
  content: "";
  pointer-events: none;
}

.hero-map {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0.78;
  pointer-events: none;
  transform: translateX(8%) scale(1.06);
  transform-origin: center right;
}

.hero-routes {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  transform: translateX(8%) scale(1.06);
  transform-origin: center right;
}

.motion-route {
  stroke-width: 3.2;
  stroke-dasharray: 4 12;
  animation: route-flow 4.8s linear infinite;
}

.route-coral {
  stroke: #ef7556;
  animation-duration: 3.8s;
}

.route-mint {
  stroke: #27aa8e;
  animation-delay: -1.1s;
}

.route-blue {
  stroke: #5878e8;
  animation-duration: 5.6s;
  animation-delay: -2.4s;
}

.route-yellow {
  stroke: #e7ad43;
  animation-duration: 4.2s;
  animation-delay: -0.8s;
}

.route-green {
  stroke: #27aa8e;
  animation-duration: 6.2s;
  animation-delay: -3.1s;
}

.route-pulses circle {
  fill: #fff;
  stroke: var(--mint);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: node-pulse 2.8s ease-in-out infinite;
}

.route-pulses circle:nth-child(2) {
  stroke: var(--coral);
  animation-delay: -0.5s;
}

.route-pulses circle:nth-child(3) {
  animation-delay: -1s;
}

.route-pulses circle:nth-child(4) {
  stroke: var(--blue);
  animation-delay: -1.5s;
}

.route-pulses circle:nth-child(5) {
  stroke: var(--yellow);
  animation-delay: -2s;
}

.route-pulses circle:nth-child(6) {
  animation-delay: -2.5s;
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -64;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.84);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

.topography {
  position: absolute;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  min-width: 0;
  max-width: 690px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #347b73;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(52, 123, 115, 0.25);
  border-radius: 999px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 66px;
  line-height: 1.02;
  font-weight: 800;
}

h1 strong {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #e95f42, #db8f28 33%, #159c80 64%, #4b69e8);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 610px;
  margin: 26px 0 30px;
  color: #53606c;
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 12px;
}

.hero-proof span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.hero-proof b {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.network-orbit {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 100%;
  aspect-ratio: 1.14;
}

.network-orbit > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-orbit circle {
  fill: white;
  stroke: var(--mint);
  stroke-width: 4;
}

.route {
  fill: none;
  stroke: url(#route);
  stroke-width: 2.5;
  stroke-dasharray: 8 9;
  animation: dash 14s linear infinite;
}

.route-two {
  animation-duration: 11s;
}

.route-three {
  animation-duration: 16s;
}

@keyframes dash {
  to {
    stroke-dashoffset: -170;
  }
}

.orbital-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 7px;
  box-shadow: 0 18px 50px rgba(43, 76, 79, 0.12);
  backdrop-filter: blur(10px);
}

.orbital-card b {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.orbital-card > span {
  color: var(--muted);
  font-size: 11px;
}

.node-a {
  top: 60%;
  right: 0;
}

.node-b {
  top: 48%;
  left: 18%;
}

.node-c {
  right: 2%;
  bottom: 13%;
}

.center-node {
  top: 48%;
  left: 49%;
  align-items: center;
  justify-items: center;
  width: 184px;
  min-height: 184px;
  padding: 24px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(24, 33, 43, 0.15);
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(29, 73, 71, 0.18), 0 0 0 9px rgba(255, 255, 255, 0.42);
  transform: translate(-50%, -50%);
}

.center-node > span:last-child {
  color: var(--muted);
}

.routing-symbol {
  display: block;
  width: 62px;
  height: 62px;
  margin-bottom: 5px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip > div {
  position: relative;
  min-height: 170px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.55);
  border-right: 1px solid var(--line);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip span,
.card-index,
.economy-list article > span {
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.trust-strip b {
  display: block;
  margin: 25px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 110px 48px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.developer-copy h2,
.cta h2 {
  max-width: 850px;
  font-size: 62px;
  line-height: 1.08;
}

.section-heading > p,
.developer-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.stablecoin-suite {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.suite-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.suite-intro h2 {
  max-width: 900px;
  font-size: 64px;
  line-height: 1.05;
}

.suite-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.mint-product {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  align-items: center;
}

.mint-console {
  padding: 30px;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 18%, rgba(44, 191, 155, 0.14), transparent 32%),
    linear-gradient(145deg, #fffdf8, #f1f8f4);
  border: 1px solid rgba(24, 33, 43, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(31, 79, 70, 0.12);
}

.console-heading,
.workflow-row {
  display: flex;
  align-items: center;
}

.console-heading {
  justify-content: space-between;
  margin-bottom: 18px;
  color: #245a53;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: #14745f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 116, 95, 0.18);
  border-radius: 999px;
  font-size: 12px;
}

.live-pill i {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
}

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

.workflow-row {
  display: grid;
  grid-template-columns: 38px 48px minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 82px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 43, 0.11);
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(24, 33, 43, 0.035);
}

.workflow-row.active {
  background: linear-gradient(90deg, rgba(44, 191, 155, 0.16), rgba(255, 255, 255, 0.84));
  border-color: rgba(20, 153, 120, 0.56);
  box-shadow: 0 10px 26px rgba(20, 153, 120, 0.1);
}

.step-number,
.step-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #245a53;
  background: #e6f2ed;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.step-icon {
  width: 48px;
  border: 1px solid rgba(24, 33, 43, 0.11);
  border-radius: 7px;
  color: #087a70;
  background: #e5f5ef;
  font-size: 20px;
}

.active .step-icon {
  color: #fff;
  background: #149978;
  border-color: #149978;
}

.workflow-row:nth-child(1) .step-number,
.workflow-row:nth-child(1) .step-icon {
  color: #b7553f;
  background: #ffe2d9;
}

.workflow-row:nth-child(3) .step-number,
.workflow-row:nth-child(3) .step-icon {
  color: #3e5fc6;
  background: #e2e8ff;
}

.workflow-row:nth-child(4) .step-number,
.workflow-row:nth-child(4) .step-icon {
  color: #9a6a14;
  background: #fff0c9;
}

.step-copy {
  display: grid;
  gap: 4px;
}

.step-copy b {
  font-size: 14px;
}

.step-copy small {
  color: var(--muted);
}

.workflow-row strong {
  color: #087a70;
  font-size: 15px;
  white-space: nowrap;
}

.workflow-row .confirmed {
  color: #149978;
  font-size: 12px;
}

.console-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.console-progress i {
  height: 4px;
  background: #d9dfdc;
  border-radius: 4px;
}

.console-progress i:first-child {
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--mint));
}

.mint-details {
  position: relative;
}

.product-number {
  color: #087a70;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mint-details h3 {
  max-width: 680px;
  margin-top: 18px;
  font-size: 48px;
  line-height: 1.08;
}

.mint-details > p {
  margin: 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.mint-details ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.mint-details li::before {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  color: #fff;
  background: #12a477;
  border-radius: 50%;
  content: "✓";
  font-size: 11px;
}

.mint-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  color: #087a70;
  font-weight: 700;
}

.suite-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.suite-catalog article {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(24, 33, 43, 0.14);
  border-radius: 8px;
  background: #fffdf9;
}

.catalog-heading {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}

.catalog-heading > span {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: #fff;
  background: linear-gradient(135deg, #078c7d, #164968);
  border-radius: 50%;
  font-size: 20px;
}

.catalog-heading h3 {
  font-size: 17px;
}

.catalog-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.currency-grid,
.api-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.currency-grid > span,
.api-grid > span,
.corridor-list > span {
  padding: 10px 12px;
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.75);
}

.currency-grid > span {
  display: grid;
  gap: 2px;
}

.currency-grid b {
  color: #087a70;
}

.currency-grid small {
  color: var(--muted);
  font-size: 10px;
}

.corridor-list {
  display: grid;
  gap: 7px;
}

.corridor-list > span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}

.corridor-list small {
  padding: 2px 6px;
  color: #087a70;
  background: #ddf4e7;
  border-radius: 4px;
}

.api-grid > span {
  font-size: 12px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-card {
  position: relative;
  min-height: 410px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 8px;
}

.product-card::after {
  position: absolute;
  right: -60px;
  bottom: -68px;
  width: 210px;
  height: 210px;
  border: 26px double rgba(255, 255, 255, 0.36);
  border-radius: 48% 52% 46% 54%;
  content: "";
  transform: rotate(20deg);
}

.product-card.coral {
  background: #ffe1d8;
}

.product-card.mint {
  background: #d9f3eb;
}

.product-card.blue {
  background: #dde5ff;
}

.product-card.violet {
  background: #eadff7;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 58px 0 30px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
}

.product-card h3 {
  font-size: 22px;
}

.product-card p {
  position: relative;
  z-index: 1;
  min-height: 88px;
  color: #56616b;
  line-height: 1.6;
}

.product-card a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.network-section {
  position: relative;
  overflow: hidden;
  background: #eef2eb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topography-network {
  right: -90px;
  bottom: -220px;
  width: 65%;
  color: rgba(21, 156, 128, 0.3);
}

.network-heading,
.flow {
  position: relative;
  z-index: 2;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.3fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.flow > i {
  color: var(--mint);
  font-size: 25px;
  font-style: normal;
}

.flow-node,
.flow-core {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 190px;
  padding: 24px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 8px;
}

.flow-core .routing-symbol {
  filter: invert(1);
}

.flow-node > span {
  margin-bottom: 18px;
  font-size: 28px;
}

.flow-node b,
.flow-core b {
  margin: 12px 0 6px;
  font-family: "Manrope", sans-serif;
}

.flow-node small,
.flow-core small {
  color: var(--muted);
}

.flow-core {
  min-height: 240px;
  color: white;
  background: var(--ink);
}

.flow-core small {
  color: rgba(255, 255, 255, 0.62);
}

.developer-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
  background: #fff;
}

.developer-copy h2 {
  font-size: 56px;
}

.developer-copy > p {
  margin: 22px 0;
}

.developer-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.developer-copy li::before {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 9px;
  color: white;
  background: var(--mint);
  border-radius: 50%;
  content: "✓";
  font-size: 11px;
}

.code-window {
  overflow: hidden;
  color: #e9edf1;
  background: var(--navy);
  border: 1px solid #2b3c4d;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(23, 35, 49, 0.2);
}

.code-tabs {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 56px;
  padding: 0 22px;
  color: #8996a2;
  background: #1c2a39;
  border-bottom: 1px solid #304151;
  font-size: 12px;
}

.code-tabs .active {
  color: #7fe7cc;
}

.code-tabs button {
  margin-left: auto;
  padding: 7px 12px;
  color: white;
  background: transparent;
  border: 1px solid #4a5d6f;
  border-radius: 5px;
  cursor: pointer;
}

pre {
  min-height: 380px;
  padding: 32px;
  margin: 0;
  overflow: auto;
  font-size: 14px;
  line-height: 1.7;
}

.string {
  color: #f5b25f;
}

.muted {
  color: #77dcc1;
}

.economies {
  background: #fbf4e8;
}

.economy-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(24, 33, 43, 0.15);
}

.economy-list article {
  min-height: 260px;
  padding: 30px 28px;
  border-right: 1px solid rgba(24, 33, 43, 0.15);
}

.economy-list article:last-child {
  border-right: 0;
}

.economy-list h3 {
  margin-top: 90px;
  font-size: 22px;
}

.economy-list p {
  color: var(--muted);
  line-height: 1.55;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 60px;
  min-height: 450px;
  padding: 80px 48px;
  overflow: hidden;
  color: white;
  background: linear-gradient(120deg, #d95f45 0%, #d18735 35%, #198f7a 68%, #405cd2 100%);
}

.topography-cta {
  right: -30px;
  bottom: -25px;
  width: 75%;
  color: rgba(255, 255, 255, 0.23);
}

.cta > div {
  position: relative;
  z-index: 2;
}

.cta .kicker {
  color: white;
}

.cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.cta-actions {
  display: grid;
  gap: 10px;
}

.bottom-art {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(105deg, #f2a45d 0%, #ff7657 25%, #9b6bdf 52%, #5878ff 72%, #2cbf9b 100%);
  isolation: isolate;
  line-height: 0;
}

.bottom-art img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.04) saturate(0.88);
  mix-blend-mode: screen;
}

.bottom-tagline {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 14%;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0;
  color: #0d625d;
  font-family: "Manrope", sans-serif;
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.typewriter-cursor {
  width: 1px;
  height: 1.1em;
  margin-left: 4px;
  background: var(--coral);
  animation: typewriter-blink 800ms steps(1, end) infinite;
}

@keyframes typewriter-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.financial-footer {
  padding: 70px 48px 30px;
  color: #dfeae7;
  background: #102b2b;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(130px, 0.7fr));
  gap: 54px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: block;
  width: 240px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-disclosure p {
  color: #a8bbb7;
  line-height: 1.65;
}

.footer-brand p {
  margin: 24px 0 20px;
}

.footer-contact {
  color: #68d7ba;
  font-weight: 700;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-column a,
.footer-legal a {
  color: #afc1bd;
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: #68d7ba;
}

.footer-disclosure {
  max-width: 1120px;
  padding-top: 42px;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-disclosure p {
  margin: 0;
  font-size: 11px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  margin-top: 26px;
  color: #819691;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-body {
  background: var(--paper);
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
  padding: 0 max(24px, calc((100vw - 1100px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.legal-header img {
  display: block;
  width: 220px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(31%) sepia(35%) saturate(1148%) hue-rotate(128deg) brightness(91%) contrast(96%);
}

.legal-header > a:last-child {
  color: #087a70;
  font-weight: 700;
}

.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-intro {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.legal-intro > span {
  color: #087a70;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-intro h1 {
  margin-top: 14px;
}

.legal-intro p,
.legal-page section p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-page section {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 24px;
}

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

.mobile-nav {
  display: none;
}

.product-card {
  scroll-margin-top: 34px;
}

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

  .desktop-nav,
  .site-header > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 820px;
  }

  h1 {
    font-size: 64px;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 52px;
  }

  .network-orbit {
    max-width: 700px;
    margin: 0 auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-intro,
  .mint-product {
    grid-template-columns: 1fr;
  }

  .suite-intro {
    gap: 24px;
  }

  .suite-copy {
    max-width: 680px;
  }

  .suite-catalog {
    grid-template-columns: 1fr 1fr;
  }

  .suite-catalog article:last-child {
    grid-column: 1 / -1;
  }

  .flow {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .flow > i {
    display: none;
  }

  .flow-core {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .developer-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border: 0;
  }

  .site-header {
    min-height: 66px;
    padding: 0 20px;
  }

  .brand {
    max-width: 190px;
  }

  .brand-wordmark {
    width: 178px;
  }

  .brand-wordmark-header {
    width: 185px;
  }

  .hero,
  .section,
  .cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: 47px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof b {
    font-size: 17px;
  }

  .network-orbit {
    width: 100%;
    height: 420px;
    min-height: 0;
    overflow: hidden;
    aspect-ratio: auto;
  }

  .center-node {
    width: 154px;
    min-height: 154px;
    padding: 19px 12px;
  }

  .center-node .routing-symbol {
    width: 50px;
    height: 50px;
  }

  .node-b {
    left: 0;
  }

  .trust-strip,
  .product-grid,
  .economy-list {
    grid-template-columns: 1fr;
  }

  .trust-strip > div,
  .economy-list article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .developer-copy h2,
  .cta h2 {
    font-size: 39px;
  }

  .suite-intro h2 {
    font-size: 41px;
  }

  .mint-console {
    padding: 18px;
  }

  .workflow-row {
    grid-template-columns: 32px 38px minmax(0, 1fr);
    gap: 9px;
    min-height: 76px;
    padding: 10px;
  }

  .step-number {
    width: 32px;
    height: 32px;
  }

  .step-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .step-copy b {
    font-size: 12px;
  }

  .step-copy small {
    font-size: 10px;
  }

  .workflow-row strong {
    grid-column: 3;
    font-size: 11px;
  }

  .mint-details h3 {
    font-size: 36px;
  }

  .mint-actions {
    display: grid;
    gap: 18px;
  }

  .suite-catalog {
    grid-template-columns: 1fr;
  }

  .suite-catalog article:last-child {
    grid-column: auto;
  }

  .product-card {
    min-height: 350px;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow-core {
    grid-column: 1;
    grid-row: auto;
  }

  .code-tabs span:nth-child(n + 2) {
    display: none;
  }

  pre {
    min-height: 340px;
    padding: 22px 18px;
    font-size: 11px;
  }

  .economy-list article {
    min-height: 190px;
  }

  .economy-list h3 {
    margin-top: 48px;
  }

  .cta {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 520px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 253, 247, 0.9) 0%, rgba(255, 253, 247, 0.68) 48%, rgba(255, 253, 247, 0.18) 100%);
  }

  .hero-map {
    opacity: 0.55;
  }

  .bottom-art img {
    width: 300%;
    max-width: none;
    transform: translateX(-33.333%);
  }

  .bottom-tagline {
    bottom: 12%;
    font-size: 10px;
    white-space: nowrap;
  }

  .financial-footer {
    padding: 56px 20px 28px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-legal {
    display: grid;
  }

  .footer-legal nav {
    gap: 12px 18px;
  }

  .legal-header {
    padding: 0 20px;
  }

  .legal-header img {
    width: 175px;
  }

  .legal-header > a:last-child {
    font-size: 12px;
  }

  .legal-page {
    padding-top: 60px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 50;
    inset: 66px 0 auto;
    display: grid;
    gap: 1px;
    padding: 12px 20px 22px;
    background: rgba(248, 246, 241, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(24, 33, 43, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }

  .mobile-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    padding: 8px 0 10px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-products > span {
    grid-column: 1 / -1;
    padding: 7px 0 4px;
    color: #087a70;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-products a {
    padding: 10px 0;
    border-bottom: 0;
    font-size: 12px;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .typewriter-cursor {
    display: none;
  }
}
