:root {
  --platform-ink: #10202c;
  --platform-muted: #5a6c79;
  --platform-line: #cfdfdc;
  --platform-surface: #ffffff;
  --platform-soft: #eef6f4;
  --platform-green: #11b887;
  --platform-mint: #54ddba;
  --platform-blue: #5b9df2;
  --platform-amber: #efb43c;
  --platform-magenta: #c96bea;
  --platform-dark: #0e1922;
  --platform-dark-soft: #172832;
}

html {
  scroll-behavior: smooth;
}

.platform-body {
  overflow-x: clip;
  color: var(--platform-ink);
  background: #f2f7f6;
}

.platform-body * {
  box-sizing: border-box;
}

.platform-main {
  overflow: clip;
}

.platform-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: 72px;
  width: min(100%, 1240px);
  min-height: 700px;
  margin: 0 auto;
  padding: 76px 24px 88px;
}

.platform-hero::before {
  content: "";
  position: absolute;
  inset: 22px 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 118, 94, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 118, 94, .055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.platform-hero-copy,
.ops-command-card,
.trust-shield-stage,
.terms-summary-card {
  position: relative;
  z-index: 1;
}

.platform-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(46px, 4.2vw, 56px);
  line-height: 1.05;
  text-wrap: wrap;
}

.trust-platform-hero #trust-title span {
  display: block;
}

.platform-hero-copy > p {
  max-width: 670px;
  margin: 0;
  color: var(--platform-muted);
  font-size: 18px;
  line-height: 1.72;
}

.platform-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.platform-hero-actions .btn,
.platform-cta .btn,
.trust-download-copy .btn {
  min-height: 52px;
  padding-inline: 26px;
}

.platform-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--platform-ink);
  font-weight: 800;
  text-decoration: none;
}

.platform-text-link span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #b9d7d0;
  border-radius: 50%;
  color: #008e68;
  transition: transform .25s ease, background .25s ease;
}

.platform-text-link:hover span {
  transform: translateX(4px);
  background: #e1f7f0;
}

.platform-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.platform-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #354d5b;
  font-size: 13px;
  font-weight: 700;
}

.platform-proof i,
.stage-topline b i,
.trust-shield-foot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--platform-green);
  box-shadow: 0 0 0 6px rgba(17, 184, 135, .1);
}

.platform-band {
  padding: 88px 24px;
}

.platform-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.platform-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 36px;
}

.platform-section-heading.compact {
  align-items: center;
}

.platform-section-heading h2,
.ops-loop-copy h2,
.trust-response-copy h2,
.trust-download-copy h2,
.trust-brand-card h2,
.platform-cta h2,
.terms-notice h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.08;
  text-wrap: pretty;
}

.platform-section-heading > p,
.ops-loop-copy > p,
.trust-response-copy > p,
.trust-download-copy > p,
.trust-brand-card > p,
.platform-cta p,
.terms-notice p {
  margin: 0;
  color: var(--platform-muted);
  line-height: 1.75;
}

[data-platform-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

[data-platform-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stage-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #47616e;
  font-size: 12px;
  font-weight: 800;
}

.stage-topline b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a8d68;
}

.stage-topline b i {
  animation: platform-pulse 2s ease-in-out infinite;
}

.stage-note {
  margin: 12px 0 0;
  color: #72838d;
  font-size: 11px;
}

/* Operations */
.ops-command-card {
  width: min(100%, 520px);
  justify-self: end;
  padding: 18px;
  border: 1px solid #bcd8d3;
  border-radius: 8px;
  background: rgba(238, 247, 245, .94);
  box-shadow: 0 32px 70px rgba(35, 71, 72, .16);
}

.ops-command-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 122px;
  margin-top: 14px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--platform-dark);
}

.ops-command-head small,
.ops-command-head strong {
  display: block;
}

.ops-command-head small {
  color: #9db1bb;
  font-size: 12px;
}

.ops-command-head strong {
  margin-top: 8px;
  font-size: 27px;
}

.ops-live-pulse {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(84, 221, 186, .5);
  border-radius: 50%;
}

.ops-live-pulse::before,
.ops-live-pulse::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--platform-mint);
}

.ops-live-pulse::after {
  inset: 0;
  border: 1px solid var(--platform-mint);
  background: transparent;
  animation: platform-radar 2.2s ease-out infinite;
}

.ops-command-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.ops-command-metrics article {
  min-width: 0;
  min-height: 112px;
  padding: 15px;
  border: 1px solid #d3e2df;
  border-radius: 8px;
  background: #fff;
}

.ops-command-metrics span,
.ops-command-metrics small,
.ops-command-metrics strong {
  display: block;
}

.ops-command-metrics span,
.ops-command-metrics small {
  color: #647783;
  font-size: 11px;
}

.ops-command-metrics strong {
  margin: 8px 0 5px;
  font-size: 25px;
}

.ops-chart {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid #d3e2df;
  border-radius: 8px;
  background: #fff;
}

.ops-chart-label {
  display: flex;
  justify-content: space-between;
  color: #526571;
  font-size: 12px;
}

.ops-chart-label b {
  color: #058b66;
}

.ops-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 86px;
  margin-top: 14px;
  padding-top: 10px;
  border-bottom: 1px solid #d9e6e3;
}

.ops-bars i {
  flex: 1;
  height: var(--bar);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#66dfbd, #12ae80);
  transform-origin: bottom;
  animation: ops-bar-rise 1.1s both cubic-bezier(.2, .8, .25, 1);
}

.ops-console-section,
.trust-boundary-section,
.terms-reader-section {
  background: #fff;
}

.operations-page .platform-section-heading h2 {
  margin-top: 0;
}

.ops-workbench {
  position: relative;
  overflow: visible;
  border: 1px solid #bfd6d1;
  border-radius: 8px;
  background: var(--platform-dark);
  box-shadow: 0 26px 60px rgba(22, 48, 54, .14);
}

.ops-tablist {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ops-tablist button {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 58px;
  padding: 12px 8px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
  color: #a8bac3;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: color .25s ease, background .25s ease;
}

.ops-tablist button:last-child {
  border-right: 0;
}

.ops-tablist button:hover,
.ops-tablist button.is-active {
  color: #fff;
  background: rgba(76, 219, 181, .1);
}

.ops-panels {
  min-height: 430px;
}

.ops-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
  align-items: center;
  gap: 64px;
  min-height: 430px;
  padding: 54px;
  color: #fff;
  animation: panel-enter .45s ease both;
}

.ops-panel[hidden],
.trust-boundary-panel[hidden] {
  display: none;
}

.ops-panel-copy > span,
.trust-boundary-panel > div > span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(84, 221, 186, .25);
  border-radius: 999px;
  color: #66dfbd;
  background: rgba(84, 221, 186, .08);
  font-size: 11px;
  font-weight: 800;
}

.ops-panel-copy h3 {
  max-width: 590px;
  margin: 18px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.ops-panel-copy p {
  margin: 0;
  color: #b4c5cc;
  line-height: 1.75;
}

.ops-panel-copy ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ops-panel-copy li {
  position: relative;
  padding-left: 18px;
  color: #d8e5e8;
  font-size: 13px;
}

.ops-panel-copy li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--platform-mint);
}

.ops-panel-visual,
.ops-rule-stack {
  display: grid;
  gap: 9px;
}

.mini-kpi,
.ops-rule-stack div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.mini-kpi span,
.ops-rule-stack span {
  color: #9fb2ba;
  font-size: 12px;
}

.mini-kpi b,
.ops-rule-stack b {
  grid-row: span 2;
  font-size: 20px;
}

.mini-kpi em {
  color: #63dfbd;
  font-size: 11px;
  font-style: normal;
}

.ops-funnel {
  display: grid;
  gap: 20px;
}

.ops-funnel div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  color: #d7e5e8;
  font-size: 12px;
}

.ops-funnel i {
  grid-column: 1 / -1;
  width: var(--size);
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, #20c99d, #63a8ff);
}

.ops-device-map,
.ops-risk-radar {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.ops-device-map > b {
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex;
  width: 110px;
  height: 110px;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid #3fd5ad;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 34% 28%, #1a574f, #123d38 68%);
  box-shadow: 0 0 0 9px rgba(63, 213, 173, .06), 0 14px 28px rgba(0, 0, 0, .18);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  transform: translate(-50%, -50%);
}

.ops-device-map .node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(84, 221, 186, .2);
  border-radius: 999px;
  color: #cfe1e5;
  background: rgba(13, 35, 44, .82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.ops-device-map .node i {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #54ddba;
  box-shadow: 0 0 0 6px rgba(84, 221, 186, .1);
}

.ops-device-map .node-a { top: 24px; left: 22px; }
.ops-device-map .node-b { right: 22px; top: 38px; }
.ops-device-map .node-c { left: 38px; bottom: 24px; }

.ops-settlement-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding-inline: 8px;
}

.ops-settlement-flow span {
  display: grid;
  flex: 0 0 78px;
  height: 78px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(84, 221, 186, .45);
  border-radius: 50%;
  box-sizing: border-box;
  color: #dff8f1;
  background: rgba(84, 221, 186, .1);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-align: center;
  text-wrap: balance;
}

.ops-settlement-flow i {
  flex: 1;
  min-width: 10px;
  max-width: 46px;
  height: 1px;
  background: rgba(84, 221, 186, .4);
}

.ops-risk-radar {
  display: grid;
  place-items: center;
}

.ops-risk-radar b {
  position: relative;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(84, 221, 186, .35);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 28px, rgba(84, 221, 186, .08) 29px 30px);
}

.ops-risk-radar b::after {
  content: "";
  position: absolute;
  inset: 50% 50% auto auto;
  width: 72px;
  height: 1px;
  background: #54ddba;
  transform-origin: right center;
  animation: radar-sweep 4s linear infinite;
}

.ops-risk-radar b i {
  position: absolute;
  top: 44px;
  right: 36px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--platform-amber);
  box-shadow: 0 0 0 8px rgba(239, 180, 60, .12);
}

.ops-risk-radar > span {
  position: absolute;
  color: #a9bbc3;
  font-size: 10px;
}

.ops-risk-radar > span:nth-child(1) { left: 18px; bottom: 18px; }
.ops-risk-radar > span:nth-child(2) { top: 18px; left: 18px; }
.ops-risk-radar > span:nth-child(3) { top: 18px; right: 18px; }

.ops-tab-progress {
  height: 4px;
  background: rgba(255, 255, 255, .08);
}

.ops-tab-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #3ed7ae, #6aa7ff);
  animation: tab-progress 6s linear infinite;
}

.ops-capability-section {
  background: #edf5f3;
}

.ops-console-heading,
.ops-governance-heading,
.ops-capability-heading {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  align-items: center;
  gap: 60px;
  margin-bottom: 30px;
}

.ops-console-heading h2,
.ops-governance-heading h2,
.ops-capability-heading h2 {
  max-width: 690px;
  font-size: 44px;
  line-height: 1.1;
  text-wrap: balance;
}

.ops-console-heading > p,
.ops-governance-heading > p,
.ops-capability-heading > p {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  padding-left: 26px;
  border-left: 2px solid rgba(24, 189, 145, .5);
  line-height: 1.65;
}

.ops-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ops-capability-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #cbded9;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.ops-capability-grid b,
.trust-principle-grid b,
.terms-priority-grid b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #087a5a;
  background: #dff5ee;
  font-size: 12px;
}

.ops-capability-grid h3,
.trust-principle-grid h3,
.terms-priority-grid h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.ops-capability-grid p,
.trust-principle-grid p,
.terms-priority-grid p {
  margin: 0;
  color: var(--platform-muted);
  line-height: 1.65;
}

.ops-capability-grid article > span {
  position: static;
  z-index: 1;
  display: block;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #dfebe8;
  color: #0d9871;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.trust-principle-grid article > span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: #0d9871;
  font-size: 11px;
  font-weight: 800;
}

.ops-loop-section {
  color: #fff;
  background: var(--platform-dark);
}

.ops-loop-inner {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: 76px;
}

.ops-loop-copy .eyebrow,
.trust-response-copy .eyebrow {
  color: #61dcbb;
  border-color: rgba(84, 221, 186, .3);
  background: rgba(84, 221, 186, .08);
}

.ops-loop-copy > p,
.trust-response-copy > p {
  margin-top: 22px;
  color: #afc1c8;
}

.ops-loop-list,
.trust-response-flow {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ops-loop-list li,
.trust-response-flow li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 105px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.ops-loop-list i,
.trust-response-flow i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(84, 221, 186, .42);
  border-radius: 50%;
  color: #62dfbd;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.ops-loop-list h3,
.trust-response-flow h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.ops-loop-list p,
.trust-response-flow p {
  margin: 0;
  color: #9eb1ba;
  font-size: 13px;
  line-height: 1.55;
}

.ops-governance-section {
  background: #fff;
}

.ops-governance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ops-governance-grid article {
  min-height: 200px;
  padding: 26px;
  border-top: 3px solid var(--accent, #18b98b);
  border-radius: 8px;
  background: #edf5f3;
}

.ops-governance-grid article:nth-child(2) { --accent: #5b9df2; }
.ops-governance-grid article:nth-child(3) { --accent: #efb43c; }
.ops-governance-grid span { color: #087c5b; font-size: 12px; font-weight: 900; }
.ops-governance-grid h3 { margin: 18px 0 10px; font-size: 24px; }
.ops-governance-grid p { margin: 0; color: var(--platform-muted); line-height: 1.65; }

.platform-cta-band {
  padding-top: 48px;
  padding-bottom: 110px;
}

.platform-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: 40px;
  border: 1px solid #a9d5c9;
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(17, 184, 135, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 184, 135, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  background-color: #e8f5f1;
}

.platform-cta h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.platform-cta p {
  margin-top: 14px;
}

/* Trust */
.trust-shield-stage {
  --shield-accent: #20c997;
  width: min(100%, 510px);
  justify-self: end;
  padding: 18px;
  border: 1px solid #bdd8d2;
  border-radius: 8px;
  background: rgba(237, 247, 244, .94);
  box-shadow: 0 32px 70px rgba(35, 71, 72, .16);
}

.trust-shield-visual {
  position: relative;
  display: grid;
  min-height: 340px;
  margin-top: 14px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 46%, color-mix(in srgb, var(--shield-accent) 18%, transparent), transparent 42%),
    var(--platform-dark);
  transition: background .45s ease;
}

.trust-shield-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -40% 0 auto;
  height: 54%;
  opacity: .25;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--shield-accent) 45%, transparent), transparent);
  animation: trust-shield-scan 5.6s ease-in-out infinite;
}

.trust-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--shield-accent) 38%, transparent);
  border-radius: 50%;
  box-shadow: inset 0 0 24px color-mix(in srgb, var(--shield-accent) 5%, transparent);
  transition: border-color .35s ease, box-shadow .35s ease;
}

.trust-orbit::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed color-mix(in srgb, var(--shield-accent) 16%, transparent);
  border-radius: 50%;
  opacity: .65;
}

.orbit-one { width: 260px; height: 260px; }
.orbit-two { width: 190px; height: 190px; }

.trust-orbit-particle {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.trust-shield-stage.has-live-orbits .trust-orbit-particle {
  animation: none;
  will-change: transform;
}

.trust-shield-stage.has-live-orbits .trust-orbit-particle > i {
  will-change: left, transform, opacity;
}

.trust-orbit-particle > i {
  position: absolute;
  top: 0;
  left: var(--orbit-radius);
  display: block;
  width: var(--particle-size);
  height: var(--particle-size);
  border: 1px solid color-mix(in srgb, var(--shield-accent) 72%, #fff);
  border-radius: 50%;
  background: color-mix(in srgb, var(--shield-accent) 82%, #fff);
  box-shadow:
    0 0 0 var(--halo-size) color-mix(in srgb, var(--shield-accent) 14%, transparent),
    0 0 16px color-mix(in srgb, var(--shield-accent) 80%, transparent);
  transform: translate(-50%, -50%);
  animation: trust-orbit-particle-glow var(--pulse-duration) ease-in-out infinite;
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.particle-one {
  --orbit-radius: 130px;
  --particle-size: 11px;
  --halo-size: 7px;
  --pulse-duration: 2.2s;
  animation-name: trust-orbit-path-one;
  animation-duration: 13.4s;
  animation-delay: -4.7s;
}

.particle-two {
  --orbit-radius: 130px;
  --particle-size: 8px;
  --halo-size: 3px;
  --pulse-duration: 3.1s;
  animation-name: trust-orbit-path-two;
  animation-duration: 18.2s;
  animation-delay: -11.3s;
}

.particle-three {
  --orbit-radius: 95px;
  --particle-size: 10px;
  --halo-size: 6px;
  --pulse-duration: 2.7s;
  animation-name: trust-orbit-path-three;
  animation-duration: 10.8s;
  animation-delay: -7.1s;
}

.particle-four {
  --orbit-radius: 95px;
  --particle-size: 7px;
  --halo-size: 3px;
  --pulse-duration: 3.6s;
  animation-name: trust-orbit-path-four;
  animation-duration: 15.6s;
  animation-delay: -2.4s;
}

.trust-shield-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 148px;
  height: 172px;
  place-items: center;
  align-content: center;
  padding: 18px;
  clip-path: polygon(50% 0, 92% 16%, 84% 72%, 50% 100%, 16% 72%, 8% 16%);
  color: #fff;
  background: linear-gradient(160deg, color-mix(in srgb, var(--shield-accent) 24%, #17372f), #132720);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--shield-accent) 70%, #fff), 0 0 34px color-mix(in srgb, var(--shield-accent) 18%, transparent);
  animation: trust-shield-float 3.2s ease-in-out infinite;
  transition: background .4s ease, box-shadow .4s ease;
}

.trust-shield-core img { width: 52px; height: 52px; border-radius: 8px; transition: transform .35s ease; }
.trust-shield-core strong { margin-top: 8px; font-size: 34px; line-height: 1; }
.trust-shield-core span { min-width: 76px; color: #b8d9d0; font-size: 11px; text-align: center; }

.trust-shield-stage.is-switching .trust-shield-core img {
  animation: trust-shield-logo-pulse .45s ease;
}

.trust-shield-tags {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
  margin-top: 8px;
}

.trust-shield-tags button {
  min-width: 0;
  padding: 9px 4px;
  border: 1px solid #d4e4e1;
  border-radius: 6px;
  text-align: center;
  color: #41606d;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.trust-shield-tags button:hover,
.trust-shield-tags button:focus-visible {
  border-color: var(--shield-accent);
  color: #17372f;
  outline: 0;
  transform: translateY(-2px);
}

.trust-shield-tags button.is-active {
  border-color: var(--shield-accent);
  color: #fff;
  background: var(--shield-accent);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--shield-accent) 24%, transparent);
}

.trust-shield-progress {
  height: 3px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dceae7;
}

.trust-shield-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--shield-accent);
  transform-origin: left;
  animation: trust-shield-progress 3.8s linear infinite;
  transition: background .3s ease;
}

.trust-shield-stage.is-paused .trust-shield-core,
.trust-shield-stage.is-paused .trust-shield-visual::before,
.trust-shield-stage.is-paused .trust-shield-progress i {
  animation-play-state: paused;
}

.trust-shield-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: #526975;
  font-size: 11px;
}

.trust-shield-foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-principle-section,
.trust-settlement-section,
.trust-brand-section {
  background: #edf5f3;
}

.trust-page .platform-section-heading h2 {
  margin-top: 0;
}

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

.trust-principle-grid article {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid #cadeda;
  border-radius: 8px;
  background: #fff;
}

.trust-boundary-tool {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #c5d9d5;
  border-radius: 8px;
  background: #edf5f3;
}

.trust-tablist {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid #c5d9d5;
  background: #e6f1ef;
}

.trust-tablist button {
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #4f6672;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  transition: color .25s ease, border .25s ease, background .25s ease, transform .25s ease;
}

.trust-tablist button:hover,
.trust-tablist button.is-active {
  border-color: #b2d7ce;
  color: #067b5a;
  background: #fff;
  transform: translateX(5px);
}

.trust-boundary-panels {
  display: grid;
}

.trust-boundary-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  gap: 56px;
  min-height: 460px;
  padding: 48px;
  animation: panel-enter .45s ease both;
}

.trust-boundary-panel > div > span {
  color: #07805f;
  border-color: #b8ded5;
  background: #e1f5ef;
}

.trust-boundary-panel h3 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}

.trust-boundary-panel p {
  margin: 0;
  color: var(--platform-muted);
  line-height: 1.75;
}

.trust-boundary-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-boundary-panel li {
  position: relative;
  min-height: 58px;
  padding: 17px 16px 17px 42px;
  border: 1px solid #d1e1de;
  border-radius: 8px;
  background: #fff;
  color: #405864;
  line-height: 1.5;
}

.trust-boundary-panel li::before {
  content: "✓";
  position: absolute;
  top: 16px;
  left: 16px;
  color: #0aa67a;
  font-weight: 900;
}

.trust-state-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-state-track article {
  --state-color: #efb43c;
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: 40px auto 1fr;
  align-content: start;
  column-gap: 12px;
  min-height: 205px;
  padding: 20px 22px 18px;
  overflow: hidden;
  border: 1px solid #c7dcd7;
  border-radius: 8px;
  background: #fff;
}

.trust-state-track article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--state-color, #efb43c);
}

.trust-state-track article:nth-child(2) { --state-color: #5b9df2; }
.trust-state-track article:nth-child(3) { --state-color: #11b887; }
.trust-state-track i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--state-color) 34%, #d8e8e4);
  border-radius: 10px;
  color: var(--state-color);
  background: color-mix(in srgb, var(--state-color) 12%, #fff);
  font-style: normal;
  font-weight: 900;
}
.trust-state-track > article > span {
  align-self: center;
  color: #70818b;
  font-size: 12px;
  font-weight: 700;
}
.trust-state-track h3 {
  grid-column: 1 / -1;
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1.18;
}
.trust-state-track p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--platform-muted);
  line-height: 1.58;
}
.trust-settlement-section {
  padding-block: 64px 68px;
}

.trust-settlement-section .platform-inner {
  width: min(100%, 1120px);
}

.trust-settlement-section .platform-section-heading {
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  align-items: start;
  gap: 36px;
  margin-bottom: 20px;
}

.trust-settlement-section .platform-section-heading h2 {
  max-width: none;
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.08;
}

.trust-settlement-section .platform-section-heading > p {
  max-width: 440px;
  padding-left: 20px;
  border-left: 2px solid rgba(17, 184, 135, .28);
  line-height: 1.65;
}

.trust-response-section {
  color: #fff;
  background: var(--platform-dark);
}

.trust-response-inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 72px;
}

.trust-response-copy .btn {
  margin-top: 28px;
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}

.trust-response-flow {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.trust-response-flow li {
  --step-accent: #54ddba;
  position: relative;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 260px;
  overflow: visible;
  isolation: isolate;
  cursor: pointer;
  transition:
    transform .45s cubic-bezier(.2, .75, .25, 1),
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}

.trust-response-flow li:nth-child(2) { --step-accent: #5b9df2; }
.trust-response-flow li:nth-child(3) { --step-accent: #efb43c; }
.trust-response-flow li:nth-child(4) { --step-accent: #c96bea; }
.trust-response-flow li:nth-child(5) { --step-accent: #45d5bd; }

.trust-response-flow li::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--step-accent), color-mix(in srgb, var(--step-accent) 55%, #fff));
  transform: scaleX(0);
  transform-origin: left;
}

.trust-response-flow li::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -66px;
  left: 50%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--step-accent) 22%, transparent), transparent 70%);
  transform: translateX(-50%) scale(.7);
  transition: opacity .4s ease, transform .55s ease;
}

.trust-response-flow li:hover {
  border-color: color-mix(in srgb, var(--step-accent) 34%, rgba(255, 255, 255, .12));
}

.trust-response-flow li:focus-visible {
  outline: 2px solid var(--step-accent);
  outline-offset: 3px;
}

.trust-response-flow li.is-active {
  z-index: 1;
  border-color: color-mix(in srgb, var(--step-accent) 56%, rgba(255, 255, 255, .18));
  background: linear-gradient(180deg, color-mix(in srgb, var(--step-accent) 12%, transparent), rgba(255, 255, 255, .035));
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22), 0 0 0 1px color-mix(in srgb, var(--step-accent) 12%, transparent);
  transform: translateY(-7px);
}

.trust-response-flow li.is-active::before {
  animation: trust-response-progress 4.2s linear both;
}

.trust-response-flow li.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.trust-response-flow li.is-complete {
  border-color: color-mix(in srgb, var(--step-accent) 24%, rgba(255, 255, 255, .12));
}

.trust-response-flow li.is-complete::before {
  opacity: .45;
  transform: scaleX(1);
}

.trust-response-flow li i {
  position: relative;
  transition: color .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.trust-response-flow li i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--step-accent);
  border-radius: 50%;
  opacity: 0;
}

.trust-response-flow li.is-active i {
  color: #071711;
  border-color: var(--step-accent);
  background: var(--step-accent);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--step-accent) 12%, transparent), 0 0 22px color-mix(in srgb, var(--step-accent) 28%, transparent);
  transform: translateY(1px) scale(1.04);
}

.trust-response-flow li.is-active i::after {
  animation: trust-response-ring 1.8s ease-out infinite;
}

.trust-response-flow li.is-active p {
  color: #c0d1d7;
}

.trust-response-flow.is-paused li.is-active::before,
.trust-response-flow.is-paused li.is-active i::after {
  animation-play-state: paused;
}

.trust-download-section {
  background: #fff;
}

.trust-page > footer,
.trust-page > .site-footer {
  margin-top: 0;
}

.trust-download-card {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: 64px;
  padding: 38px;
  border: 1px solid #bfd8d2;
  border-radius: 8px;
  background: #edf5f3;
}

.trust-download-copy h2 {
  font-size: clamp(32px, 3vw, 44px);
}

.trust-download-copy > p {
  margin-top: 16px;
}

.trust-download-copy .btn {
  margin-top: 24px;
}

.trust-release-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.trust-release-data div {
  min-width: 0;
  padding: 16px;
  border: 1px solid #d0e0dd;
  border-radius: 8px;
  background: #fff;
}

.trust-release-data dt {
  color: #71818b;
  font-size: 11px;
}

.trust-release-data dd {
  margin: 8px 0 0;
  color: #1f3541;
  font-size: 14px;
  font-weight: 800;
}

.trust-release-data .trust-hash {
  grid-column: 1 / -1;
}

.trust-release-data .trust-hash dd {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
}

.trust-brand-card {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 44px;
  padding: 34px;
  border: 1px solid #c9ddd8;
  border-radius: 8px;
  background: #fff;
}

.trust-brand-card h2 {
  font-size: clamp(28px, 2.5vw, 38px);
}

/* Terms */
.terms-page .platform-section-heading h2,
.terms-page .terms-notice h2 {
  margin-top: 0;
}

.terms-scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.terms-scroll-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #11b887, #5b9df2, #efb43c);
}

.terms-summary-card {
  width: min(100%, 510px);
  justify-self: end;
  padding: 18px;
  border: 1px solid #bdd8d2;
  border-radius: 8px;
  background: rgba(237, 247, 244, .96);
  box-shadow: 0 32px 70px rgba(35, 71, 72, .15);
}

.terms-version {
  margin-top: 14px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--platform-dark);
}

.terms-version small,
.terms-version strong,
.terms-version span {
  display: block;
}

.terms-version small { color: #94abb5; }
.terms-version strong { margin: 8px 0; font-size: 28px; }
.terms-version span { color: #c5d3d8; font-size: 12px; }

.terms-summary-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.terms-summary-card li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid #d3e2df;
  border-radius: 8px;
  background: #fff;
}

.terms-summary-card li > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #07805e;
  background: #e1f5ef;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.terms-summary-card li b,
.terms-summary-card li span {
  display: block;
}

.terms-summary-card li b { font-size: 13px; }
.terms-summary-card li span { margin-top: 4px; color: #6c7d87; font-size: 11px; }

.terms-priority-section,
.terms-lifecycle-section {
  background: #edf5f3;
}

.terms-lifecycle-section {
  padding: 64px 24px;
}

.terms-lifecycle-section .platform-inner {
  width: min(100%, 1120px);
}

.terms-lifecycle-section .platform-section-heading.compact {
  gap: 32px;
  align-items: end;
  margin-bottom: 20px;
}

.terms-lifecycle-section .platform-section-heading > p {
  max-width: 450px;
}

.terms-priority-section {
  padding: 64px 24px;
}

.terms-priority-section .platform-inner {
  width: min(100%, 1120px);
}

.terms-priority-section .platform-section-heading.compact {
  gap: 32px;
  align-items: end;
  margin-bottom: 20px;
}

.terms-priority-section .platform-section-heading > p {
  max-width: 450px;
}

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

.terms-priority-grid article {
  min-height: 146px;
  padding: 20px;
  border: 1px solid #cadeda;
  border-radius: 8px;
  background: #fff;
}

.terms-priority-grid b {
  width: 36px;
  height: 36px;
}

.terms-priority-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.terms-priority-grid p {
  line-height: 1.58;
}

.terms-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 22px;
}

.terms-toolbar label {
  position: relative;
}

.terms-toolbar input {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px 12px 46px;
  border: 1px solid #c6d9d5;
  border-radius: 8px;
  outline: 0;
  color: var(--platform-ink);
  background: #fff;
  font: inherit;
}

.terms-toolbar input:focus {
  border-color: #25b78d;
  box-shadow: 0 0 0 4px rgba(17, 184, 135, .1);
}

.terms-search-icon {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 18px;
  width: 16px;
  height: 16px;
  border: 2px solid #63808c;
  border-radius: 50%;
}

.terms-search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: #63808c;
  transform: rotate(45deg);
}

.terms-toolbar button {
  min-width: 120px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #a9ccc4;
  border-radius: 8px;
  color: #087654;
  background: #edf8f5;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.terms-reader-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

.terms-index {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid #c9dbd7;
  border-radius: 8px;
  background: #edf5f3;
}

.terms-index strong {
  margin: 5px 8px 10px;
  color: #5b707a;
  font-size: 12px;
}

.terms-index a {
  padding: 11px 10px;
  border-left: 3px solid transparent;
  color: #4e6570;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, border .2s ease, background .2s ease;
}

.terms-index a:hover,
.terms-index a.is-active {
  border-left-color: #12af81;
  color: #087957;
  background: #fff;
}

.terms-accordion {
  display: grid;
  gap: 10px;
}

.terms-accordion details {
  border: 1px solid #c7dad6;
  border-radius: 8px;
  background: #fff;
}

.terms-accordion summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.terms-accordion summary::-webkit-details-marker { display: none; }

.terms-accordion summary > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #07805e;
  background: #e1f5ef;
  font-size: 11px;
  font-weight: 900;
}

.terms-accordion summary h3 {
  margin: 0;
  font-size: 20px;
}

.terms-accordion summary p {
  margin: 5px 0 0;
  color: #6b7d87;
  font-size: 13px;
}

.terms-accordion summary > i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #c4d8d3;
  border-radius: 50%;
}

.terms-accordion summary > i::before,
.terms-accordion summary > i::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 1px;
  background: #3d5a66;
  transition: transform .25s ease;
}

.terms-accordion summary > i::after { transform: rotate(90deg); }
.terms-accordion details[open] summary > i::after { transform: rotate(0); }

.terms-detail-body {
  padding: 0 22px 24px 84px;
  border-top: 1px solid #e0eae8;
}

.terms-detail-body ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.terms-detail-body li {
  position: relative;
  padding-left: 20px;
  color: #4f6570;
  line-height: 1.7;
}

.terms-detail-body li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17b689;
}

.terms-empty {
  padding: 34px;
  border: 1px dashed #b8d2cc;
  border-radius: 8px;
  color: #637983;
  text-align: center;
  background: #edf5f3;
}

.terms-lifecycle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-lifecycle::before {
  content: "";
  position: absolute;
  top: 41px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #add8cd;
}

.terms-lifecycle li {
  position: relative;
  min-height: 176px;
  padding: 18px;
  border: 1px solid #c8ddd8;
  border-radius: 8px;
  background: #fff;
}

.terms-lifecycle i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 5px solid #edf5f3;
  border-radius: 50%;
  color: #fff;
  background: #13af81;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.terms-lifecycle h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.terms-lifecycle p {
  margin: 0;
  color: var(--platform-muted);
  line-height: 1.58;
}

.terms-notice-section {
  padding-top: 52px;
  padding-bottom: 110px;
  background: #fff;
}

.terms-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: 38px;
  border: 1px solid #253a44;
  border-radius: 8px;
  color: #fff;
  background: var(--platform-dark);
}

.terms-notice .eyebrow {
  color: #61dcbb;
  border-color: rgba(84, 221, 186, .3);
  background: rgba(84, 221, 186, .08);
}

.terms-notice h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.terms-notice p {
  margin-top: 14px;
  color: #b5c5cb;
}

/* Shared animations */
@keyframes platform-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(17, 184, 135, .08); }
  50% { transform: scale(.78); box-shadow: 0 0 0 9px rgba(17, 184, 135, .03); }
}

@keyframes platform-radar {
  0% { opacity: .8; transform: scale(.55); }
  100% { opacity: 0; transform: scale(1.55); }
}

@keyframes ops-bar-rise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tab-progress {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes radar-sweep {
  to { transform: rotate(360deg); }
}

@keyframes trust-orbit-path-one {
  0% { transform: rotate(8deg); }
  17% { transform: rotate(78deg); }
  39% { transform: rotate(139deg); }
  63% { transform: rotate(255deg); }
  82% { transform: rotate(304deg); }
  100% { transform: rotate(368deg); }
}

@keyframes trust-orbit-path-two {
  0% { transform: rotate(224deg); }
  21% { transform: rotate(161deg); }
  38% { transform: rotate(72deg); }
  66% { transform: rotate(5deg); }
  84% { transform: rotate(-92deg); }
  100% { transform: rotate(-136deg); }
}

@keyframes trust-orbit-path-three {
  0% { transform: rotate(118deg); }
  14% { transform: rotate(154deg); }
  36% { transform: rotate(252deg); }
  58% { transform: rotate(306deg); }
  79% { transform: rotate(421deg); }
  100% { transform: rotate(478deg); }
}

@keyframes trust-orbit-path-four {
  0% { transform: rotate(318deg); }
  19% { transform: rotate(235deg); }
  44% { transform: rotate(179deg); }
  61% { transform: rotate(77deg); }
  85% { transform: rotate(21deg); }
  100% { transform: rotate(-42deg); }
}

@keyframes trust-orbit-particle-glow {
  0%, 100% { opacity: .76; transform: translate(-50%, -50%) scale(.82); }
  48% { opacity: 1; transform: translate(-50%, -50%) scale(1.16); }
}

@keyframes trust-shield-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.015); }
}

@keyframes trust-shield-logo-pulse {
  0% { transform: scale(.88); opacity: .55; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes trust-shield-scan {
  0%, 12% { transform: translateY(-120%); opacity: 0; }
  28% { opacity: .28; }
  72% { opacity: .18; }
  88%, 100% { transform: translateY(330%); opacity: 0; }
}

@keyframes trust-shield-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes trust-response-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes trust-response-ring {
  0% { opacity: .7; transform: scale(.72); }
  70%, 100% { opacity: 0; transform: scale(1.28); }
}

@media (max-width: 1080px) {
  .platform-hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
    gap: 42px;
  }

  .platform-hero-copy h1 {
    font-size: clamp(44px, 5vw, 56px);
  }

  .ops-panel {
    gap: 36px;
    padding: 42px;
  }

  .trust-principle-grid,
  .terms-priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-response-inner {
    grid-template-columns: 1fr;
  }

  .trust-response-flow {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .trust-brand-card {
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  }

  .trust-brand-card .platform-text-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .platform-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 58px;
  }

  .platform-hero-copy {
    max-width: 760px;
  }

  .ops-command-card,
  .trust-shield-stage,
  .terms-summary-card {
    width: min(100%, 560px);
    justify-self: center;
  }

  .platform-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .ops-console-heading,
  .ops-governance-heading,
  .ops-capability-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ops-console-heading > p,
  .ops-governance-heading > p,
  .ops-capability-heading > p {
    max-width: 760px;
    justify-self: start;
    padding-left: 0;
    border-left: 0;
  }

  .platform-section-heading > p {
    max-width: 760px;
  }

  .trust-settlement-section .platform-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    margin-bottom: 22px;
  }

  .trust-settlement-section .platform-section-heading > p {
    max-width: 680px;
    padding-left: 0;
    border-left: 0;
  }

  .terms-priority-section .platform-section-heading.compact {
    gap: 14px;
    align-items: start;
  }

  .terms-lifecycle-section .platform-section-heading.compact {
    gap: 14px;
    align-items: start;
  }

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

  .ops-tablist button:nth-child(3) {
    border-right: 0;
  }

  .ops-tablist button:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .ops-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .ops-loop-inner,
  .trust-download-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ops-governance-grid,
  .trust-state-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-state-track article:last-child {
    grid-column: 1 / -1;
  }

  .trust-boundary-tool {
    grid-template-columns: 1fr;
  }

  .trust-tablist {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid #c5d9d5;
  }

  .trust-tablist button {
    text-align: center;
  }

  .trust-tablist button:hover,
  .trust-tablist button.is-active {
    transform: translateY(-3px);
  }

  .trust-brand-card {
    grid-template-columns: 1fr;
  }

  .trust-brand-card .platform-text-link {
    grid-column: auto;
  }

  .terms-reader-layout {
    grid-template-columns: 1fr;
  }

  .terms-index {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .terms-index strong {
    grid-column: 1 / -1;
  }

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

  .terms-lifecycle::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .platform-hero {
    gap: 34px;
    padding: 42px 16px 56px;
  }

  .platform-hero::before {
    inset: 12px -20px;
    background-size: 34px 34px;
  }

  .platform-hero-copy h1 {
    margin: 0 0 18px;
    font-size: 35px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .platform-hero-copy > p {
    font-size: 15px;
    line-height: 1.68;
  }

  .platform-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-top: 24px;
  }

  .platform-hero-actions .btn {
    min-width: 0;
    padding-inline: 14px;
  }

  .platform-text-link {
    font-size: 12px;
  }

  .platform-proof {
    display: grid;
    gap: 11px;
    margin-top: 22px;
  }

  .platform-band {
    padding: 64px 16px;
  }

  .trust-settlement-section {
    padding-block: 50px 54px;
  }

  .trust-settlement-section .platform-section-heading h2 {
    max-width: none;
    font-size: 30px;
  }

  .platform-section-heading {
    margin-bottom: 26px;
  }

  .platform-section-heading h2,
  .ops-loop-copy h2,
  .trust-response-copy h2,
  .trust-download-copy h2,
  .trust-brand-card h2,
  .platform-cta h2,
  .terms-notice h2 {
    font-size: 34px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .ops-command-card,
  .trust-shield-stage,
  .terms-summary-card {
    padding: 10px;
  }

  .ops-command-head {
    min-height: 104px;
    padding: 18px;
  }

  .ops-command-head strong {
    font-size: 23px;
  }

  .ops-command-metrics article {
    min-height: 102px;
    padding: 12px;
  }

  .ops-command-metrics strong {
    font-size: 22px;
  }

  .ops-tablist button {
    min-height: 68px;
    font-size: 11px;
  }

  .ops-panels {
    min-height: 0;
  }

  .ops-panel {
    gap: 30px;
    padding: 26px 18px;
  }

  .ops-panel-copy h3 {
    font-size: 30px;
  }

  .ops-device-map,
  .ops-risk-radar {
    min-height: 230px;
  }

  .ops-device-map > b {
    width: 104px;
    height: 104px;
    padding: 13px;
    font-size: 13px;
  }

  .ops-device-map .node {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .ops-device-map .node-a { top: 20px; left: 16px; }
  .ops-device-map .node-b { top: 32px; right: 16px; }
  .ops-device-map .node-c { left: 24px; bottom: 20px; }

  .ops-settlement-flow span {
    flex-basis: 60px;
    height: 60px;
    padding: 6px;
    font-size: 9px;
  }

  .ops-settlement-flow i {
    min-width: 6px;
  }

  .ops-capability-grid,
  .ops-governance-grid,
  .trust-principle-grid,
  .trust-state-track,
  .terms-priority-grid,
  .terms-lifecycle {
    grid-template-columns: 1fr;
  }

  .trust-state-track article,
  .trust-state-track article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 18px;
  }

  .trust-state-track h3 {
    font-size: 22px;
  }

  .ops-capability-grid article,
  .trust-principle-grid article,
  .terms-priority-grid article,
  .ops-governance-grid article {
    min-height: 0;
  }

  .ops-capability-grid article > span,
  .trust-principle-grid article > span {
    position: static;
    display: block;
    margin-top: 18px;
  }

  .ops-loop-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ops-loop-list li,
  .trust-response-flow li {
    min-height: 0;
  }

  .platform-cta,
  .terms-notice {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 20px;
  }

  .platform-cta .btn,
  .terms-notice .btn {
    width: 100%;
  }

  .trust-shield-visual {
    min-height: 300px;
  }

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

  .trust-shield-foot {
    display: grid;
  }

  .trust-tablist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
  }

  .trust-tablist button {
    min-height: 52px;
    padding: 8px;
    font-size: 12px;
  }

  .trust-boundary-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 28px 18px;
  }

  .trust-boundary-panel h3 {
    font-size: 30px;
  }

  .trust-response-inner {
    grid-template-columns: 1fr;
  }

  .trust-response-flow {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .trust-response-flow li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .trust-download-card,
  .trust-brand-card {
    padding: 24px 18px;
  }

  .trust-release-data {
    grid-template-columns: 1fr;
  }

  .trust-release-data .trust-hash {
    grid-column: auto;
  }

  .terms-version {
    padding: 19px;
  }

  .terms-toolbar {
    grid-template-columns: 1fr;
  }

  .terms-toolbar button {
    width: 100%;
  }

  .terms-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
  }

  .terms-index a {
    padding: 9px 7px;
    font-size: 11px;
  }

  .terms-accordion summary {
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 96px;
    padding: 15px 13px;
  }

  .terms-accordion summary > span {
    width: 36px;
    height: 36px;
  }

  .terms-accordion summary h3 {
    font-size: 17px;
  }

  .terms-accordion summary p {
    font-size: 12px;
  }

  .terms-detail-body {
    padding: 0 16px 18px;
  }

  .terms-lifecycle li {
    min-height: 0;
  }

  html:not([lang="zh-CN"]) .platform-hero-copy h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  html:not([lang="zh-CN"]) .platform-section-heading h2,
  html:not([lang="zh-CN"]) .ops-loop-copy h2,
  html:not([lang="zh-CN"]) .trust-response-copy h2,
  html:not([lang="zh-CN"]) .terms-notice h2 {
    font-size: 30px;
  }

  html:not([lang="zh-CN"]) .ops-tablist button,
  html:not([lang="zh-CN"]) .trust-tablist button {
    font-size: 10px;
  }
}

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