:root {
  color-scheme: light;
  --page: #f7f9fc;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, .92);
  --surface: #f2f6fb;
  --surface-2: #eaf0f8;
  --line: rgba(28, 48, 79, .11);
  --line-strong: rgba(28, 48, 79, .2);
  --ink: #17243b;
  --ink-strong: #0d182a;
  --muted: #607087;
  --muted-2: #8a98ab;
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --blue-soft: #e9f0ff;
  --cyan: #2d97d5;
  --green: #14956f;
  --red: #c8424c;
  --amber: #aa650e;
  --radius-xl: 30px;
  --radius-lg: 21px;
  --radius-md: 14px;
  --shadow: 0 22px 62px rgba(36, 61, 99, .085);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --header-height: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page); }
body.suite-home {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 83% -12%, rgba(61, 116, 231, .12), transparent 34rem),
    radial-gradient(circle at 20% 32%, rgba(47, 151, 213, .05), transparent 38rem),
    linear-gradient(180deg, #ffffff 0, #f7f9fc 46rem, #ffffff 100%);
  color: var(--ink);
  font: 15px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.suite-home button,
body.suite-home input,
body.suite-home select { font: inherit; }
body.suite-home a { color: inherit; text-decoration: none; }
body.suite-home button,
body.suite-home a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
::selection { background: rgba(37, 99, 235, .17); color: var(--ink); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 9px 13px;
  transform: translateY(-160%);
  border-radius: 9px;
  background: var(--ink-strong);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }

.suite-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}
.suite-header-inner {
  width: min(1680px, 100%);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 48px);
}
.suite-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.suite-brand img {
  width: 37px;
  height: 37px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 7px 16px rgba(26, 73, 161, .14));
}
.suite-brand strong {
  display: block;
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.1;
  letter-spacing: -.015em;
}
.suite-brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font: 9px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.suite-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.suite-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.suite-nav a:hover { color: var(--ink); background: var(--surface); transform: translateY(-1px); }
.suite-nav a.active { color: var(--blue-2); background: var(--blue-soft); }
.suite-network-pill {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--muted);
  font: 10px/1 var(--mono);
  white-space: nowrap;
}
.suite-network-pill strong {
  max-width: 88px;
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
}
.live-dot,
.endpoint-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--muted-2);
  box-shadow: 0 0 0 4px rgba(96, 112, 135, .1);
}
.live-dot.live,
.endpoint-dot.live {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(20, 149, 111, .1), 0 0 14px rgba(20, 149, 111, .28);
}
.live-dot.error,
.endpoint-dot.error {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 66, 76, .1);
}
.live-dot.loading,
.endpoint-dot.loading {
  background: var(--amber);
  animation: suite-pulse 1.2s ease-in-out infinite;
}
.suite-menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
}
.suite-menu-toggle > span:not(.sr-only) {
  width: 17px;
  height: 1.5px;
  display: block;
  border-radius: 2px;
  background: var(--ink);
}

.suite-main {
  width: min(1680px, 100%);
  margin: 0 auto;
  padding: 34px clamp(18px, 3vw, 48px) 90px;
}
.desk-hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}
.desk-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
}
.suite-eyebrow,
.suite-kicker,
.panel-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.suite-eyebrow span {
  width: 24px;
  height: 1px;
  display: block;
  background: currentColor;
}
.desk-hero h1 {
  max-width: 800px;
  margin: 22px 0 0;
  color: var(--ink-strong);
  font-size: clamp(47px, 6.2vw, 88px);
  font-weight: 650;
  line-height: .95;
  letter-spacing: -.065em;
}
.desk-hero h1 em { color: var(--blue); font-style: normal; }
.hero-lede {
  max-width: 710px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.suite-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.suite-button:hover { transform: translateY(-1px); border-color: rgba(37, 99, 235, .35); box-shadow: 0 12px 24px rgba(36, 61, 99, .08); }
.suite-button.primary { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 12px 30px rgba(37, 99, 235, .18); }
.suite-button.primary:hover { background: var(--blue-2); }
.suite-button.small { min-height: 36px; padding: 0 12px; border-radius: 10px; font-size: 10px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.hero-proof div { padding: 17px 15px 0 0; }
.hero-proof div + div { padding-left: 17px; border-left: 1px solid var(--line); }
.hero-proof dt { color: var(--muted-2); font-size: 9px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.hero-proof dd { margin: 7px 0 0; color: var(--ink); font: 11px/1.25 var(--mono); }

.dna-laboratory {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  border-left: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 48% 42%, rgba(61, 126, 236, .2), transparent 17rem),
    linear-gradient(150deg, #0d1930 0%, #10203c 45%, #081325 100%);
}
.dna-laboratory::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(125deg, rgba(255,255,255,.04), transparent 32%, rgba(62, 137, 255, .06));
}
.dna-grid {
  position: absolute;
  inset: 0;
  opacity: .46;
  background-image:
    linear-gradient(rgba(126, 167, 239, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 167, 239, .055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 50%, #000 22%, transparent 80%);
}
.dna-sequence-stream {
  position: absolute;
  inset: -10% auto -10% 4%;
  width: 180px;
  overflow: hidden;
  opacity: .16;
  color: #8ab6ff;
  font: 9px/1.35 var(--mono);
  letter-spacing: .12em;
  mask-image: linear-gradient(to bottom, transparent, #000 13%, #000 87%, transparent);
}
.dna-sequence-stream pre {
  position: absolute;
  inset: 0;
  margin: 0;
  white-space: pre;
  animation: dna-stream 25s linear infinite;
}
.dna-sequence-stream pre + pre { transform: translateY(100%); animation-name: dna-stream-two; }
.dna-helix {
  position: absolute;
  inset: 3% 4% 3% 13%;
  transform: rotate(-8deg) scale(1.05);
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.2));
}
.base-pair {
  --phase: 0;
  position: absolute;
  left: 50%;
  top: var(--y);
  width: 210px;
  height: 20px;
  transform: translateX(-50%);
  opacity: var(--alpha, .9);
}
.base-pair::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  right: 18px;
  height: 1px;
  transform: translateY(-50%) scaleX(var(--scale, 1));
  background: linear-gradient(90deg, rgba(82,154,255,.08), rgba(130,189,255,.68), rgba(82,154,255,.08));
}
.base-node {
  position: absolute;
  top: 50%;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(145, 192, 255, .4);
  border-radius: 50%;
  background: rgba(13, 35, 68, .82);
  color: #b9d8ff;
  font: 9px/1 var(--mono);
  box-shadow: inset 0 0 0 5px rgba(75,137,229,.06), 0 0 18px rgba(58,125,229,.12);
}
.base-node.left { left: var(--left); }
.base-node.right { right: var(--left); }
.base-pair:nth-child(4n + 2) .base-node { color: #b5e9e2; border-color: rgba(79, 199, 180, .36); }
.base-pair:nth-child(4n + 3) .base-node { color: #d6ccff; border-color: rgba(135, 114, 228, .36); }
.dna-orbit {
  position: absolute;
  border: 1px solid rgba(111, 166, 249, .14);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 430px; height: 430px; right: -205px; top: -130px; box-shadow: 0 0 0 52px rgba(91,145,228,.025), 0 0 0 108px rgba(91,145,228,.018); }
.orbit-two { width: 240px; height: 240px; left: -150px; bottom: -110px; box-shadow: 0 0 0 42px rgba(91,145,228,.025); }
.ledger-readout {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  width: min(330px, calc(100% - 42px));
  padding: 21px;
  border: 1px solid rgba(153, 190, 248, .2);
  border-radius: 18px;
  background: rgba(7, 20, 39, .74);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.readout-top,
.readout-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.readout-top span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b7c8e4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.readout-top b { color: #739de2; font: 8px/1 var(--mono); letter-spacing: .08em; }
.readout-height { margin-top: 18px; font: 32px/1 var(--mono); letter-spacing: -.045em; }
.readout-label { margin-top: 7px; color: #8497b6; font-size: 10px; }
.readout-foot { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(153, 190, 248, .13); color: #8497b6; font-size: 9px; }
.readout-foot b { display: block; margin-top: 4px; color: #c4d6f2; font: 10px/1 var(--mono); }
.sequence-caption {
  position: absolute;
  top: 30px;
  right: 34px;
  z-index: 3;
  color: #7391bf;
  font: 8px/1 var(--mono);
  letter-spacing: .13em;
  text-align: right;
}
.sequence-caption span,
.sequence-caption b { display: block; }
.sequence-caption b { margin-top: 7px; color: #a9c6f1; font-weight: 500; }

.network-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.network-metric {
  min-height: 150px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  transition: transform .18s ease, border-color .18s ease;
}
.network-metric:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.metric-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 11px; font-weight: 650; }
.metric-head b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--blue);
  font: 9px/1 var(--mono);
}
.network-metric > strong {
  display: block;
  margin-top: 23px;
  overflow: hidden;
  color: var(--ink-strong);
  font-size: clamp(22px, 2.4vw, 35px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.network-metric > small { display: block; margin-top: 12px; color: var(--muted-2); font-size: 10px; }

.suite-section { margin-top: 76px; scroll-margin-top: 90px; }
.suite-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 21px;
}
.suite-section-heading > div { max-width: 840px; }
.suite-section-heading h2 {
  margin: 8px 0 0;
  color: var(--ink-strong);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -.052em;
}
.suite-section-heading p { max-width: 740px; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.section-index { color: var(--muted-2); font: 9px/1 var(--mono); letter-spacing: .12em; white-space: nowrap; }

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.application-card {
  min-height: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 110% -10%, rgba(37,99,235,.08), transparent 14rem),
    var(--paper);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.application-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.26); box-shadow: var(--shadow); }
.application-card.featured {
  background:
    radial-gradient(circle at 92% 16%, rgba(70, 137, 246, .24), transparent 16rem),
    linear-gradient(145deg, #10203a, #0a1629);
  color: #fff;
}
.application-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--muted-2); font: 9px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.featured .application-top { color: #8093b2; }
.app-status { display: inline-flex; align-items: center; gap: 7px; }
.app-status i { width: 6px; height: 6px; display: block; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(20,149,111,.08); }
.featured .app-status i { background: #57c9a7; box-shadow: 0 0 0 4px rgba(87,201,167,.08); }
.app-icon,
.app-glyph,
.bridge-glyph,
.ibc-glyph,
.explorer-glyph,
.supply-glyph {
  width: 132px;
  height: 105px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 38px auto 18px;
}
.coin-stack-icon img { width: 68px; height: 68px; position: absolute; filter: drop-shadow(0 16px 18px rgba(0,0,0,.25)); }
.coin-stack-icon img:nth-child(1) { transform: translate(-23px, 15px) rotate(-10deg); opacity: .55; }
.coin-stack-icon img:nth-child(2) { transform: translate(23px, 16px) rotate(11deg); opacity: .75; }
.coin-stack-icon img:nth-child(3) { transform: translateY(-12px); }
.app-glyph {
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 50%;
  color: var(--blue);
  font: 40px/1 Georgia, serif;
  box-shadow: inset 0 0 0 17px rgba(37,99,235,.025), 0 0 0 14px rgba(37,99,235,.025);
}
.bridge-glyph,
.ibc-glyph { grid-template-columns: auto 1fr auto; gap: 13px; color: var(--blue); font: 18px/1 var(--mono); }
.bridge-glyph span,
.ibc-glyph span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(37,99,235,.22); border-radius: 50%; background: var(--blue-soft); font-size: 11px; font-weight: 800; }
.bridge-glyph i { height: 1px; background: linear-gradient(90deg, var(--blue), transparent 45%, var(--blue)); }
.ibc-glyph i { color: var(--muted-2); font-style: normal; font-size: 13px; text-align: center; }
.explorer-glyph::before,
.explorer-glyph::after { content: ""; position: absolute; border: 1px solid rgba(37,99,235,.2); border-radius: 50%; }
.explorer-glyph::before { width: 88px; height: 88px; }
.explorer-glyph::after { width: 47px; height: 47px; }
.explorer-glyph span { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 9px rgba(37,99,235,.09); }
.explorer-glyph i { position: absolute; width: 43px; height: 1px; right: 4px; bottom: 10px; transform: rotate(45deg); background: var(--blue); }
.supply-glyph { border-radius: 50%; background: conic-gradient(var(--blue) 0 42%, #755fd2 42% 65%, #28a781 65% 84%, #dbe4f1 84% 100%); }
.supply-glyph::after { content: ""; position: absolute; inset: 22px; border-radius: 50%; background: var(--paper); }
.supply-glyph span { position: relative; z-index: 1; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); }
.application-copy { margin-top: auto; }
.app-type { color: var(--blue-2); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.featured .app-type { color: #78a8f6; }
.application-copy h3 { margin: 8px 0 0; color: var(--ink-strong); font-size: 28px; line-height: 1.05; letter-spacing: -.04em; }
.featured .application-copy h3 { color: #fff; }
.application-copy p { margin: 11px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.featured .application-copy p { color: #97a7c1; }
.app-arrow { display: flex; justify-content: space-between; gap: 12px; margin-top: 21px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--ink); font-size: 10px; font-weight: 750; }
.featured .app-arrow { border-color: rgba(255,255,255,.1); color: #c5d3e8; }
.app-arrow b { color: var(--blue); }

.infrastructure-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: 14px; }
.endpoint-panel,
.protocol-panel {
  min-height: 420px;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
}
.endpoint-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.endpoint-panel h3,
.protocol-panel h3 { margin: 7px 0 0; color: var(--ink-strong); font-size: clamp(25px, 2.7vw, 38px); line-height: 1.1; letter-spacing: -.045em; }
.endpoint-list { margin: 34px 0 0; border-top: 1px solid var(--line); }
.endpoint-list > div { display: grid; grid-template-columns: 170px minmax(0,1fr); align-items: center; gap: 18px; min-height: 82px; border-bottom: 1px solid var(--line); }
.endpoint-list dt { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; font-weight: 700; }
.endpoint-list dd { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0; }
.endpoint-list code { min-width: 0; overflow: hidden; color: var(--ink); font: 11px/1.3 var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.endpoint-list button { flex: 0 0 auto; border: 0; background: transparent; color: var(--blue); font-size: 9px; font-weight: 750; cursor: pointer; }
.protocol-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(59, 126, 235, .16), transparent 18rem),
    linear-gradient(145deg, #10203a, #091628);
  color: #fff;
}
.protocol-panel .panel-kicker { color: #78a8f6; }
.protocol-panel h3 { max-width: 530px; color: #fff; }
.protocol-panel > p { max-width: 540px; margin: 16px 0 0; color: #97a7c1; font-size: 13px; line-height: 1.7; }
.protocol-orbit {
  position: absolute;
  width: 290px;
  height: 290px;
  right: -150px;
  top: -150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109,164,251,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(80,140,236,.025), 0 0 0 88px rgba(80,140,236,.018);
}
.protocol-orbit span { color: rgba(255,255,255,.5); font: 20px/1 var(--mono); }
.chain-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 46px 0 0; border-top: 1px solid rgba(255,255,255,.1); }
.chain-facts div { padding: 17px 14px 0 0; }
.chain-facts div:nth-child(even) { padding-left: 17px; border-left: 1px solid rgba(255,255,255,.1); }
.chain-facts dt { color: #7588a7; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.chain-facts dd { margin: 8px 0 0; color: #d3def0; font: 10px/1.35 var(--mono); overflow-wrap: anywhere; }

.integrity-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--paper); overflow: hidden; }
.integrity-grid article { min-height: 250px; padding: clamp(25px, 3vw, 40px); }
.integrity-grid article + article { border-left: 1px solid var(--line); }
.integrity-grid article > span { color: var(--blue); font: 9px/1 var(--mono); letter-spacing: .1em; }
.integrity-grid h3 { margin: 55px 0 0; color: var(--ink-strong); font-size: 21px; letter-spacing: -.025em; }
.integrity-grid p { margin: 11px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.suite-footer {
  width: min(1680px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin: 0 auto;
  padding: 48px clamp(18px, 3vw, 48px) 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.suite-footer > div > p { max-width: 500px; margin: 14px 0 0; font-size: 11px; }
.footer-brand img { width: 32px; height: 32px; }
.suite-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 17px; font-size: 10px; }
.suite-footer nav a:hover { color: var(--blue); }
.suite-footer > small { grid-column: 1 / -1; margin-top: 12px; color: var(--muted-2); font: 8px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.suite-toast {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 22px;
  max-width: min(440px, calc(100% - 32px));
  padding: 10px 14px;
  transform: translate(-50%, 20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  background: rgba(13, 24, 42, .94);
  color: #fff;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 18px 40px rgba(10, 22, 40, .18);
}
.suite-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Shared masthead injected into the standalone applications. */
.suite-app-bar {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-family: var(--sans);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.suite-app-bar-inner {
  width: min(1680px, 100%);
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 8px clamp(15px, 2.5vw, 34px);
}
.suite-app-bar .suite-brand img { width: 31px; height: 31px; }
.suite-app-bar .suite-brand strong { font-size: 12px; }
.suite-app-bar .suite-brand small { font-size: 8px; }
.suite-app-links { flex: 1; display: flex; align-items: center; justify-content: center; gap: 3px; }
.suite-app-links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}
.suite-app-links a:hover { color: var(--ink); background: var(--surface); }
.suite-app-links a.active { color: var(--blue); background: var(--blue-soft); }
.suite-app-health { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font: 9px/1 var(--mono); white-space: nowrap; }
.suite-app-mobile {
  width: 36px;
  height: 36px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
body.has-suite-bar > .standalone-app-masthead,
body.has-suite-bar > #topHeader,
body.has-suite-bar #root header { top: 58px !important; }
body.has-suite-bar > .standalone-app-masthead { position: sticky; z-index: 900; }

/* IBC visual integration. */
body.has-suite-bar.suite-page-ibc {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 84% -10%, rgba(61,116,231,.11), transparent 30rem),
    linear-gradient(180deg, #fff, #f7f9fc 46rem, #fff) !important;
  color: var(--ink);
  font-family: var(--sans);
}
.suite-page-ibc main.wrap { width: min(1560px, 100%) !important; margin: 0 auto !important; padding: 34px clamp(16px,3vw,42px) 70px !important; }
.suite-page-ibc .glass { padding: 0 !important; background: transparent !important; }
.suite-page-ibc .section:first-of-type { margin-top: 0 !important; }
.suite-page-ibc .card {
  border-color: var(--line) !important;
  border-radius: var(--radius-lg) !important;
  background: rgba(255,255,255,.95) !important;
  box-shadow: none !important;
}
.suite-page-ibc .glass > .section > .card { padding: clamp(20px,3vw,34px) !important; box-shadow: var(--shadow) !important; }
.suite-page-ibc .glass > .section > .card > .title-row {
  min-height: 110px;
  margin: -34px -34px 20px !important;
  padding: 28px 34px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background:
    radial-gradient(circle at 90% 0, rgba(54,122,235,.17), transparent 16rem),
    linear-gradient(145deg,#10203a,#0b172b);
  color: #fff;
}
.suite-page-ibc .glass > .section > .card > .title-row > div:first-child > div:first-child { font-size: clamp(27px,3vw,40px) !important; letter-spacing: -.04em; }
.suite-page-ibc .glass > .section > .card > .title-row .muted { color: #91a3bf !important; }
.suite-page-ibc .balances { gap: 14px !important; }
.suite-page-ibc .balances > .card { padding: 21px !important; }
.suite-page-ibc .balances > .card > .card { margin-top: 17px; padding: 16px !important; background: var(--surface) !important; }
.suite-page-ibc .btnx {
  border-color: var(--line-strong) !important;
  border-radius: 11px !important;
  background: #fff !important;
  color: var(--ink) !important;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.suite-page-ibc .btnx:hover { transform: translateY(-1px); border-color: rgba(37,99,235,.3) !important; box-shadow: 0 10px 20px rgba(35,61,99,.07); }
.suite-page-ibc .btnx.primary { border-color: var(--blue) !important; background: var(--blue) !important; color: #fff !important; }
.suite-page-ibc input.sleek-core {
  min-height: 43px;
  border-color: var(--line) !important;
  border-radius: 11px !important;
  background: #fff !important;
}
.suite-page-ibc .muted { color: var(--muted) !important; }
.suite-page-ibc .chip { border-color: rgba(37,99,235,.18) !important; background: var(--blue-soft) !important; color: var(--blue-2) !important; }
.suite-page-ibc .modal { border-color: var(--line) !important; border-radius: 18px !important; box-shadow: var(--shadow) !important; }

/* Explorer visual integration. */
body.has-suite-bar.suite-page-explorer {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 84% -10%, rgba(61,116,231,.1), transparent 28rem),
    linear-gradient(180deg,#fff,#f7f9fc 42rem,#fff) !important;
  color: var(--ink) !important;
  font-family: var(--sans) !important;
}
.suite-page-explorer #topHeader {
  position: sticky !important;
  border-color: var(--line) !important;
  background: rgba(255,255,255,.9) !important;
  backdrop-filter: blur(18px);
}
.suite-page-explorer #topHeader > div,
.suite-page-explorer main,
.suite-page-explorer footer > div {
  width: min(1680px, 100%) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: clamp(16px,3vw,42px) !important;
  padding-left: clamp(16px,3vw,42px) !important;
}
.suite-page-explorer main { padding-top: 28px !important; padding-bottom: 64px !important; }
.suite-page-explorer .card {
  border-color: var(--line) !important;
  border-radius: var(--radius-lg) !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: none !important;
}
.suite-page-explorer #page-home > section:first-child {
  position: relative;
  overflow: hidden;
  padding: clamp(22px,3vw,34px) !important;
  background:
    radial-gradient(circle at 90% 0, rgba(66,132,239,.19), transparent 18rem),
    linear-gradient(145deg,#10203a,#091527) !important;
  color: #fff;
  box-shadow: var(--shadow) !important;
}
.suite-page-explorer #page-home > section:first-child .kpi-label,
.suite-page-explorer #page-home > section:first-child .text-gray-500 { color: #8fa2bf !important; }
.suite-page-explorer #page-home > section:first-child input {
  min-height: 46px;
  border-color: rgba(255,255,255,.15) !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff;
}
.suite-page-explorer #page-home > section:first-child input::placeholder { color: #8fa2bf; }
.suite-page-explorer .btn {
  border-color: var(--line-strong) !important;
  border-radius: 11px !important;
  background: #fff !important;
  color: var(--ink) !important;
}
.suite-page-explorer .pill,
.suite-page-explorer .chip {
  border-color: var(--line) !important;
  background: var(--surface) !important;
}
.suite-page-explorer #page-home > section:first-child .pill { border-color: rgba(255,255,255,.13) !important; background: rgba(255,255,255,.07) !important; color: #a9b9d2; }
.suite-page-explorer th { color: var(--muted) !important; font-size: 10px !important; letter-spacing: .04em; text-transform: uppercase; }
.suite-page-explorer td { border-color: var(--line) !important; }
.suite-page-explorer .link { color: var(--blue) !important; }
.suite-page-explorer #molViewer,
.suite-page-explorer #genericMolViewer { border-color: var(--line) !important; border-radius: var(--radius-md) !important; }

/* The already redesigned staking, bridge and governance pages only need suite spacing/link consistency. */
.suite-page-stake .footer-links a[href="ecosystem.html"],
.suite-page-bridge a[href="ecosystem.html"],
.suite-page-bridge a[href="ecosystem.html#participate"] { display: none !important; }
.suite-page-stake .sidebar {
  top: 58px !important;
  height: calc(100dvh - 58px) !important;
}
.suite-page-stake .topbar { top: 58px !important; }
.suite-page-bridge .standalone-app-masthead { border-color: var(--line) !important; background: rgba(255,255,255,.9) !important; backdrop-filter: blur(18px); }
.suite-page-governance #root { min-height: calc(100vh - 58px); }

@keyframes suite-pulse { 50% { opacity: .42; } }
@keyframes dna-stream { from { transform: translateY(0); } to { transform: translateY(-100%); } }
@keyframes dna-stream-two { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 1180px) {
  .desk-hero { grid-template-columns: minmax(0,1fr) minmax(420px,.9fr); }
  .application-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .network-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .suite-nav a { padding: 0 9px; }
}

@media (max-width: 900px) {
  .suite-header-inner { min-height: 62px; }
  .suite-menu-toggle { display: grid; margin-left: auto; }
  .suite-network-pill { display: none; }
  .suite-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }
  .suite-nav.open { display: grid; }
  .suite-nav a { justify-content: center; }
  .desk-hero { grid-template-columns: 1fr; }
  .dna-laboratory { min-height: 520px; border-top: 1px solid var(--line); border-left: 0; }
  .infrastructure-grid { grid-template-columns: 1fr; }
  .integrity-grid { grid-template-columns: 1fr; }
  .integrity-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .suite-app-links {
    position: absolute;
    top: 100%;
    right: 10px;
    left: 10px;
    display: none;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 4px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .suite-app-links.open { display: grid; }
  .suite-app-links a { justify-content: center; }
  .suite-app-mobile { display: grid; margin-left: auto; }
  .suite-app-health { display: none; }
  .suite-page-ibc .glass > .section > .card > .title-row { margin: -20px -20px 20px !important; padding: 23px 20px; }
}

@media (max-width: 640px) {
  .suite-main { padding-top: 16px; }
  .desk-hero-copy { padding: 32px 24px 38px; }
  .desk-hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { padding: 13px 0; }
  .hero-proof div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .dna-laboratory { min-height: 470px; }
  .dna-helix { right: -8%; }
  .base-pair { width: 185px; }
  .ledger-readout { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .network-metrics,
  .application-grid { grid-template-columns: 1fr; }
  .application-card { min-height: 360px; }
  .suite-section { margin-top: 57px; }
  .suite-section-heading { align-items: flex-start; }
  .section-index { display: none; }
  .endpoint-panel,
  .protocol-panel { min-height: auto; padding: 22px; }
  .endpoint-panel-head { align-items: flex-start; }
  .endpoint-list > div { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .chain-facts { grid-template-columns: 1fr; }
  .chain-facts div,
  .chain-facts div:nth-child(even) { padding: 14px 0 0; border-left: 0; }
  .suite-footer { grid-template-columns: 1fr; align-items: start; }
  .suite-footer nav { justify-content: flex-start; }
  .suite-page-ibc .balances > .card { padding: 14px !important; }
  .suite-page-explorer #topHeader > div { align-items: flex-start !important; gap: 8px; }
}

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