:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d8e1ea;
  --paper: #f8faf9;
  --soft: #eef5f3;
  --gold: #f58b22;
  --teal: #009c9c;
  --cyan: #1f8fff;
  --coral: #e45b2d;
  --navy: #07111f;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(11, 24, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #eef6f4 0, var(--paper) 360px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(248, 250, 249, 0.88);
  border-bottom: 1px solid rgba(216, 225, 234, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 44px;
  padding: 5px;
  background: var(--navy);
  border-radius: 8px;
  flex: 0 0 auto;
}

.brand-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
}

.nav a:hover {
  background: rgba(0, 156, 156, 0.08);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(88svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding-right: clamp(18px, 6vw, 72px);
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 92%);
  pointer-events: none;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 74% 38%, rgba(0, 156, 156, 0.38), transparent 28%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.74) 48%, rgba(7, 17, 31, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.14));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 36px));
  margin-right: auto;
  padding: 5vh 0 6vh clamp(18px, 6vw, 72px);
  color: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 420px;
}

.terminal-panel {
  width: min(100%, 460px);
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(7, 17, 31, 0.62);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.terminal-top span:last-child {
  color: #56d8d8;
}

.rail-map {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
}

.rail-node {
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 54px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 900;
}

.rail-node.active {
  border-color: rgba(86, 216, 216, 0.58);
  background: rgba(0, 156, 156, 0.2);
  color: #ffffff;
}

.rail-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(86, 216, 216, 0.18), rgba(245, 139, 34, 0.84));
}

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

.terminal-metrics div,
.transaction-feed {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.terminal-metrics div {
  padding: 14px;
}

.terminal-metrics span,
.transaction-feed span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.terminal-metrics strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.transaction-feed {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 14px;
}

.transaction-feed span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.transaction-feed b {
  color: #56d8d8;
  font-weight: 900;
}

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

h1,
h2,
h3,
p,
a,
span,
strong,
small,
li,
dt,
dd {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(36px, 4.9vw, 66px);
  line-height: 1.05;
  text-wrap: balance;
}

h1 span {
  display: block;
}

@media (min-width: 761px) {
  h1 span:nth-child(2),
  h1 span:nth-child(3) {
    display: inline;
  }
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.link-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.button.ghost,
.link-row a {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

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

.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-stack span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts article {
  min-height: 160px;
  padding: 28px clamp(18px, 3vw, 40px);
  background: var(--white);
}

.facts span {
  color: var(--muted);
  font-size: 13px;
}

.facts strong {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 34px;
  line-height: 1;
}

.facts p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section > p,
.split p,
.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.status-panel,
.service,
.compliance-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-band {
  background: var(--navy);
  color: var(--white);
}

.product-band .section-head p,
.product-band .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.product-band .eyebrow {
  color: #56d8d8;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.capability-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.capability-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(0, 156, 156, 0.18);
  color: #56d8d8;
  font-weight: 900;
}

.capability-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.tech-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 156, 156, 0.1), transparent 38%),
    var(--paper);
}

.tech-copy p {
  color: var(--muted);
  font-size: 17px;
}

.flow-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.flow-board article {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(31, 143, 255, 0.07), rgba(255, 255, 255, 0)),
    var(--paper);
}

.flow-board span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.flow-board strong,
.flow-board small {
  display: block;
}

.flow-board strong {
  font-size: 20px;
  line-height: 1.16;
}

.flow-board small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.status-panel {
  padding: 28px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.service-grid,
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.service {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.service:hover {
  border-color: rgba(0, 156, 156, 0.45);
  box-shadow: 0 22px 55px rgba(11, 24, 40, 0.12);
  transform: translateY(-2px);
}

.service-code {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 156, 156, 0.28);
  background: rgba(0, 156, 156, 0.08);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 850;
}

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

.partner-logo {
  display: block;
  max-width: 190px;
  max-height: 62px;
  margin: auto auto 0;
  object-fit: contain;
}

.service a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.registry {
  background: var(--white);
}

.registry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.registry-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 156, 156, 0.06), rgba(255, 255, 255, 0) 62%),
    var(--paper);
}

.registry-code {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 156, 156, 0.11);
  color: #08706f;
  font-size: 12px;
  font-weight: 850;
}

.registry-grid p {
  margin: 0;
  color: var(--muted);
}

.registry-grid button {
  width: fit-content;
  min-height: 38px;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.registry-grid button:hover {
  border-color: var(--teal);
}

.compliance {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
}

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

.compliance-grid article {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px;
  box-shadow: none;
}

.identity-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.identity-panel div {
  min-height: 120px;
  padding: 20px;
  background: var(--white);
}

.identity-panel span,
.identity-panel strong {
  display: block;
}

.identity-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.identity-panel strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.trust-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.trust-links article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 156, 156, 0.06), rgba(255, 255, 255, 0) 64%),
    var(--white);
}

.trust-links span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 156, 156, 0.1);
  color: #08706f;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-links p {
  color: var(--muted);
}

.trust-links a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.compliance-grid .span-2 {
  grid-column: span 2;
}

.disclosure-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.disclosure-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.36fr) minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.disclosure-list.compact div {
  grid-template-columns: minmax(126px, 0.42fr) minmax(0, 1fr);
}

.disclosure-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.disclosure-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
}

.disclosure-points {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.disclosure-points a {
  color: var(--teal);
  font-weight: 800;
}

.disclosure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.disclosure-actions a,
.disclosure-actions button {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.disclosure-actions a:hover,
.disclosure-actions button:hover {
  border-color: var(--teal);
}

.documents {
  background: var(--white);
}

.doc-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.document-tools {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 26px;
}

.search span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.filters button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #465669;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}

.filters button:hover {
  background: var(--soft);
  color: var(--ink);
}

.filters button.active {
  border-color: rgba(202, 169, 85, 0.45);
  background: #fff8e5;
  color: var(--ink);
}

.document-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.doc-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.doc-card:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.08);
  transform: translateY(-1px);
}

.doc-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.doc-topline span {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(31, 138, 138, 0.08);
}

.doc-title {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.28;
}

.doc-section {
  color: var(--muted);
  font-size: 13px;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
}

.doc-meta span {
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.contacts {
  background: var(--soft);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-list dt {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.contact-list dd {
  margin: 0;
}

.contact-photo {
  width: 96px;
  height: 96px;
  border: 1px solid rgba(0, 156, 156, 0.18);
  border-radius: 50%;
  background: var(--soft);
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(11, 24, 40, 0.12);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .facts,
  .service-grid,
  .document-list,
  .capability-grid,
  .flow-board,
  .identity-panel,
  .trust-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .tech-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 0 18px 44px;
  }

  .terminal-panel {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

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

  .compliance-grid .span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    display: block;
    min-height: calc(90svh - 136px);
    width: 100%;
  }

  .hero-image {
    object-position: 34% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.88) 54%, rgba(7, 17, 31, 0.48)),
      linear-gradient(90deg, rgba(0, 156, 156, 0.18), rgba(7, 17, 31, 0));
  }

  .hero-content {
    align-self: end;
    min-width: 0;
    width: min(100vw - 72px, 300px);
    max-width: min(100vw - 72px, 300px);
    margin: 0 18px;
    padding: 20vh 0 42px;
  }

  h1 {
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .lead {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .hero-stack {
    width: 100%;
    max-width: 100%;
  }

  .facts,
  .split,
  .section-head,
  .service-grid,
  .registry-grid,
  .compliance-grid,
  .document-list,
  .capability-grid,
  .flow-board,
  .identity-panel,
  .trust-links {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-right: 0;
  }

  .hero-visual {
    width: min(100vw - 72px, 300px);
    min-width: 0;
    box-sizing: border-box;
    margin: 0 18px;
    padding-right: 0;
    padding-left: 0;
  }

  .rail-map {
    grid-template-columns: 1fr;
  }

  .terminal-metrics {
    grid-template-columns: 1fr;
  }

  .transaction-feed span {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .rail-line {
    width: 2px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(86, 216, 216, 0.18), rgba(245, 139, 34, 0.84));
  }

  .document-tools {
    grid-template-columns: 1fr;
  }

  .compliance-grid .span-2 {
    grid-column: auto;
  }

  .disclosure-list div,
  .disclosure-list.compact div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .filters {
    flex-wrap: nowrap;
    margin-inline: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filters button {
    flex: 0 0 auto;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
