:root {
  --bg: #030303;
  --bg-soft: #0c0c0d;
  --panel: #141416;
  --panel-soft: #1b1b1d;
  --text: #fbfbff;
  --muted: #b6b6be;
  --faint: #777780;
  --line: rgba(251, 251, 255, 0.12);
  --line-soft: rgba(251, 251, 255, 0.07);
  --violet: #5b49ff;
  --violet-soft: #8f84ff;
  --green: #8df2a9;
  --amber: #f1c46b;
  --red: #ff8a8a;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  background: rgba(143, 132, 255, 0.32);
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--violet-soft);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #050506;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip:focus {
  transform: translateY(0);
}

.site-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.025), transparent 18%),
    linear-gradient(180deg, #000 0%, var(--bg) 45%, #050505 100%);
  border-bottom: 1px solid var(--line-soft);
}

.topline {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(251, 251, 255, 0.055);
  color: rgba(251, 251, 255, 0.88);
  text-align: center;
  font-size: 16px;
}

.topline p {
  margin: 0;
}

.topline a {
  color: var(--violet-soft);
  text-decoration: none;
  white-space: nowrap;
}

.topline a:hover {
  color: var(--text);
}

.nav {
  position: relative;
  width: min(100%, var(--container));
  min-height: 86px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: inline-block;
  border: 1px solid rgba(251, 251, 255, 0.70);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(251, 251, 255, 0.92) 48%, rgba(251, 251, 255, 0.92) 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(251, 251, 255, 0.92) 48%, rgba(251, 251, 255, 0.92) 52%, transparent 53%),
    #050506;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(251, 251, 255, 0.70);
  font-size: 16px;
  font-weight: 400;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button-primary {
  background: var(--violet);
  color: var(--text) !important;
}

.button-primary:hover,
.nav-cta:hover {
  background: #6e5cff;
}

.button-secondary {
  background: rgba(251, 251, 255, 0.045);
  border-color: var(--line);
  color: rgba(251, 251, 255, 0.82);
}

.button-secondary:hover {
  background: rgba(251, 251, 255, 0.09);
  color: var(--text);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.hero-lead {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.hero-lead {
  padding: clamp(28px, 4vh, 42px) 24px clamp(8px, 1.2vh, 14px);
}

.hero-grid {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  max-width: min(100%, 760px);
  margin: 0 0 18px;
  margin-inline: auto;
  color: rgba(251, 251, 255, 0.55);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(44px, 3.9vw, 56px);
  font-weight: 500;
  line-height: 1.107;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: inline-block;
}

.hero-line {
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(251, 251, 255, 0.70);
  font-size: clamp(18px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0;
}

.hero-text {
  max-width: 690px;
  margin: 6px auto 0;
  color: rgba(251, 251, 255, 0.50);
  font-size: 16px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-ctas .button-primary {
  background: var(--text);
  color: #050506 !important;
}

.hero-ctas .button-primary:hover {
  background: rgba(251, 251, 255, 0.88);
}

.launch-proof-card {
  width: min(100%, 880px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 180px);
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(141, 242, 169, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(141, 242, 169, 0.10), rgba(251, 251, 255, 0.040) 42%, rgba(143, 132, 255, 0.060)),
    rgba(6, 7, 8, 0.88);
  text-align: left;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.proof-status {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.launch-proof-card h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.08;
}

.launch-proof-card p {
  margin: 10px 0 0;
  color: rgba(251, 251, 255, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

.proof-facts {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.proof-facts div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(251, 251, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.proof-facts dt,
.proof-facts dd {
  margin: 0;
}

.proof-facts dt {
  color: rgba(251, 251, 255, 0.44);
  font-size: 10px;
  text-transform: uppercase;
}

.proof-facts dd {
  margin-top: 4px;
  overflow: hidden;
  color: rgba(251, 251, 255, 0.84);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-honesty {
  color: rgba(251, 255, 253, 0.58) !important;
}

.proof-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-actions .button {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 13px;
}

.proof-qr {
  min-height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(251, 251, 255, 0.08);
  border-radius: 8px;
  background: rgba(251, 251, 255, 0.90);
  color: #050506;
  font-size: 12px;
  text-align: center;
}

.proof-qr svg {
  width: min(100%, 154px);
  height: auto;
  display: block;
}

.launch-proof-card.is-proof-error {
  border-color: rgba(255, 138, 138, 0.36);
}

.launch-proof-card.is-proof-error .proof-status,
.waitlist-status.is-error {
  color: var(--red);
}

.hero-visual {
  width: min(100%, 1320px);
  margin: 0 auto;
  transform: none;
}

.proof-flow {
  position: relative;
  min-height: clamp(360px, 29vw, 430px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, transparent, rgba(251, 251, 255, 0.018) 55%, transparent),
    #000;
}

.flow-mode {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 24;
  display: inline-flex;
  transform: translateX(-50%);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(18px);
}

.flow-mode-button {
  min-height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(251, 251, 255, 0.52);
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.flow-mode-button.is-active {
  background: rgba(251, 251, 255, 0.11);
  color: var(--text);
}

.flow-stage-copy {
  position: absolute;
  left: max(28px, calc((100vw - var(--container)) / 2 + 24px));
  top: 76px;
  z-index: 22;
  width: min(560px, calc(100% - 56px));
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.proof-flow.is-stage-changing .flow-stage-copy {
  opacity: 0.72;
  transform: translateY(4px);
}

.flow-stage-copy span {
  display: block;
  margin-bottom: 12px;
  color: rgba(143, 132, 255, 0.86);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.flow-stage-copy strong {
  display: block;
  max-width: 640px;
  color: var(--text);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.flow-stage-copy p {
  max-width: 470px;
  margin: 12px 0 0;
  color: rgba(251, 251, 255, 0.58);
  font-size: 16px;
  line-height: 1.75;
}

.flow-scene {
  position: absolute;
  inset: 148px 0 88px;
  overflow: hidden;
}

.flow-scene::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - var(--container)) / 2));
  right: max(20px, calc((100vw - var(--container)) / 2));
  top: 50%;
  z-index: 0;
  height: 1px;
  background: rgba(251, 251, 255, 0.12);
}

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

.flow-svg path,
.flow-svg circle {
  vector-effect: non-scaling-stroke;
}

.route {
  fill: none;
  stroke: rgba(251, 251, 255, 0.90);
  stroke-width: 2.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition:
    opacity 260ms ease,
    stroke-width 260ms ease,
    stroke-dashoffset 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.route-violet {
  stroke: var(--violet-soft);
  marker-end: url("#arrow-violet");
}

.route-white {
  stroke: rgba(251, 251, 255, 0.90);
  marker-end: url("#arrow-white");
}

.route-green {
  stroke: var(--green);
  marker-end: url("#arrow-green");
}

.route-amber {
  stroke: var(--amber);
  marker-end: url("#arrow-amber");
}

.route.is-active {
  opacity: 0.98;
  filter:
    drop-shadow(0 0 10px rgba(251, 251, 255, 0.12))
    drop-shadow(0 0 22px rgba(143, 132, 255, 0.10));
}

.route.is-final {
  opacity: 0;
  stroke-width: 1.05;
  marker-end: none;
  filter: none;
}

.proof-flow[data-motion="executed"] .route.is-active {
  stroke-width: 2.2;
  opacity: 0.88;
}

.flow-packet,
.flow-packet-secondary {
  position: absolute;
  z-index: 16;
  left: 50%;
  top: 50%;
  width: 13px;
  min-width: 13px;
  height: 13px;
  min-height: 13px;
  border: 1px solid rgba(251, 251, 255, 0.80);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 220ms ease,
    left 680ms cubic-bezier(0.2, 0.75, 0.2, 1),
    top 680ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 260ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.flow-packet span,
.flow-packet-secondary span {
  display: none;
}

.flow-packet.is-active,
.flow-packet-secondary.is-active {
  opacity: 1;
}

.flow-packet.is-violet,
.flow-packet-secondary.is-violet {
  background: var(--violet-soft);
  border-color: rgba(220, 217, 255, 0.94);
  box-shadow:
    0 0 0 6px rgba(143, 132, 255, 0.055),
    0 0 20px rgba(143, 132, 255, 0.22);
}

.flow-packet.is-white,
.flow-packet-secondary.is-white {
  background: var(--text);
  border-color: rgba(251, 251, 255, 0.94);
  box-shadow:
    0 0 0 6px rgba(251, 251, 255, 0.040),
    0 0 20px rgba(251, 251, 255, 0.18);
}

.flow-packet.is-green,
.flow-packet-secondary.is-green {
  background: var(--green);
  border-color: rgba(214, 255, 224, 0.94);
  box-shadow:
    0 0 0 6px rgba(141, 242, 169, 0.050),
    0 0 20px rgba(141, 242, 169, 0.24);
}

.flow-packet.is-amber,
.flow-packet-secondary.is-amber {
  background: var(--amber);
  border-color: rgba(255, 230, 172, 0.94);
  box-shadow:
    0 0 0 6px rgba(241, 196, 107, 0.050),
    0 0 20px rgba(241, 196, 107, 0.20);
}

.proof-flow.is-stage-changing .flow-packet,
.proof-flow.is-stage-changing .flow-packet-secondary {
  opacity: 0.25;
  transform: translate(-50%, -50%) scale(0.84);
}

.flow-company {
  position: absolute;
  top: 50%;
  z-index: 12;
  width: 156px;
  min-height: 72px;
  transform: translateY(-50%);
  opacity: 0.18;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.flow-company-a {
  left: max(42px, calc((100vw - var(--container)) / 2 + 22px));
}

.flow-company-b {
  right: max(42px, calc((100vw - var(--container)) / 2 + 22px));
  text-align: right;
}

.flow-company.is-active {
  opacity: 1;
}

.flow-company.is-complete {
  opacity: 0.42;
}

.proof-flow[data-motion="receipt"] .flow-company,
.proof-flow[data-motion="executed"] .flow-company {
  opacity: 1;
}

.flow-company-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 11px;
  border: 1px solid rgba(251, 251, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: rgba(251, 251, 255, 0.75);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.flow-company.is-active .flow-company-label,
.proof-flow[data-motion="receipt"] .flow-company-label,
.proof-flow[data-motion="executed"] .flow-company-label {
  border-color: rgba(143, 132, 255, 0.42);
  color: var(--text);
}

.flow-person-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  padding-left: 8px;
}

.flow-company-b .flow-person-row {
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 8px;
}

.flow-person {
  position: relative;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  overflow: visible;
  border: 1px solid rgba(251, 251, 255, 0.16);
  border-radius: 50%;
  background: rgba(251, 251, 255, 0.070);
  color: transparent;
  opacity: 0.11;
  transform: scale(0.74);
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.flow-person::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 21px;
  transform: translate(-50%, 4px);
  color: rgba(251, 251, 255, 0.55);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

[data-person="a1"]::after {
  content: "preparer";
}

[data-person="a2"]::after {
  content: "signer";
}

[data-person="b1"]::after {
  content: "receiver";
}

[data-person="b2"]::after {
  content: "signer";
}

.proof-flow[data-mode="sender"] [data-person="a1"],
.proof-flow[data-mode="sender"] [data-person="b2"] {
  display: none;
}

.flow-person.is-active,
.flow-person.is-green {
  opacity: 1;
  transform: scale(1);
}

.flow-person.is-active {
  background: var(--text);
  border-color: rgba(251, 251, 255, 0.94);
  box-shadow:
    0 0 0 6px rgba(251, 251, 255, 0.038),
    0 0 18px rgba(251, 251, 255, 0.12);
}

.flow-person.is-green {
  background: var(--green);
  border-color: rgba(214, 255, 224, 0.94);
  box-shadow:
    0 0 0 6px rgba(141, 242, 169, 0.040),
    0 0 18px rgba(141, 242, 169, 0.16);
}

.flow-person.is-active::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.proof-flow[data-motion="executed"] .flow-person.is-green::after {
  opacity: 0.52;
  transform: translate(-50%, 0);
}

.flow-verifier {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 14;
  width: 172px;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(251, 251, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--text);
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(251, 251, 255, 0.020),
    0 22px 48px rgba(0, 0, 0, 0.38);
  transition:
    border-color 220ms ease,
    color 220ms ease;
}

.flow-verifier span,
.flow-verifier small {
  display: none;
}

.flow-verifier strong {
  display: block;
  color: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.flow-verifier.is-green,
.proof-flow[data-motion="decision"] .flow-verifier,
.proof-flow[data-motion="receipt"] .flow-verifier,
.proof-flow[data-motion="executed"] .flow-verifier {
  border-color: rgba(141, 242, 169, 0.34);
}

.flow-verifier.is-amber,
.proof-flow[data-motion="countersign"] .flow-verifier {
  border-color: rgba(241, 196, 107, 0.34);
}

.flow-proof-port {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border: 1px solid rgba(251, 251, 255, 0.30);
  border-radius: 50%;
  background: #000;
  opacity: 0.70;
}

.flow-proof-port-left {
  left: -4px;
}

.flow-proof-port-right {
  right: -4px;
}

.flow-receipt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin-top: 18px;
  padding: 0 9px;
  border: 1px solid rgba(141, 242, 169, 0.24);
  border-radius: 999px;
  background: rgba(5, 20, 9, 0.72);
  color: rgba(184, 255, 203, 0.82);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.flow-receipt.is-active {
  opacity: 1;
  transform: none;
}

.flow-stage-nav {
  position: absolute;
  left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  right: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  bottom: 20px;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.flow-stage-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  height: 1px;
  background: rgba(251, 251, 255, 0.13);
}

.flow-stage-button {
  position: relative;
  min-height: 58px;
  padding: 25px 0 0;
  border: 0;
  background: transparent;
  color: rgba(251, 251, 255, 0.45);
  cursor: pointer;
  text-align: center;
}

.flow-stage-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
  border: 1px solid rgba(251, 251, 255, 0.25);
  border-radius: 50%;
  background: #050506;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.flow-stage-button b {
  display: block;
  color: inherit;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.flow-stage-button small {
  display: block;
  max-width: 110px;
  margin: 6px auto 0;
  overflow: hidden;
  color: rgba(251, 251, 255, 0.36);
  font-size: 8px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.flow-stage-button.is-active small {
  color: rgba(251, 251, 255, 0.62);
}

.flow-stage-button.is-done::before {
  background: rgba(251, 251, 255, 0.72);
  border-color: rgba(251, 251, 255, 0.72);
}

.flow-stage-button.is-active {
  color: rgba(251, 251, 255, 0.86);
}

.flow-stage-button.is-active::before {
  background: var(--violet-soft);
  border-color: rgba(220, 217, 255, 0.92);
  box-shadow: 0 0 0 6px rgba(143, 132, 255, 0.07);
}

/* Proof animation baseline: one active movement per stage. */
.proof-flow {
  min-height: clamp(360px, 29vw, 430px);
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.018), transparent 42%, rgba(251, 251, 255, 0.014)),
    #000;
}

.flow-mode {
  top: 8px;
}

.flow-stage-copy {
  left: 50%;
  top: 50px;
  width: min(760px, calc(100% - 56px));
  text-align: center;
  transform: translateX(-50%);
}

.proof-flow.is-stage-changing .flow-stage-copy {
  transform: translateX(-50%) translateY(3px);
}

.flow-stage-copy span {
  margin-bottom: 10px;
}

.flow-stage-copy strong {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(25px, 2.7vw, 40px);
}

.flow-stage-copy p {
  max-width: 560px;
  margin: 12px auto 0;
}

.flow-scene {
  inset: 126px 0 62px;
}

.flow-scene::before {
  left: max(42px, calc((100vw - var(--container)) / 2 + 24px));
  right: max(42px, calc((100vw - var(--container)) / 2 + 24px));
  background: linear-gradient(90deg, transparent, rgba(251, 251, 255, 0.055) 20%, rgba(251, 251, 255, 0.055) 80%, transparent);
}

.route {
  stroke-width: 2.8;
  opacity: 0;
  filter: none;
}

.route.is-active {
  opacity: 0.98;
  filter:
    drop-shadow(0 0 12px rgba(251, 251, 255, 0.14))
    drop-shadow(0 0 26px rgba(143, 132, 255, 0.14));
}

.route.is-context {
  opacity: 0.14;
  stroke-width: 1.2;
  marker-end: none;
}

.flow-company {
  width: 226px;
  min-height: 130px;
  padding: 17px 18px;
  border: 1px solid rgba(251, 251, 255, 0.085);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.035), transparent 70%),
    rgba(4, 4, 5, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  opacity: 0.30;
}

.flow-company-a {
  left: max(26px, calc((100vw - var(--container)) / 2 + 24px));
}

.flow-company-b {
  right: max(26px, calc((100vw - var(--container)) / 2 + 24px));
}

.flow-company.is-active {
  opacity: 1;
  border-color: rgba(143, 132, 255, 0.32);
}

.flow-company.is-complete {
  opacity: 0.58;
}

.proof-flow[data-motion="receipt"] .flow-company,
.proof-flow[data-motion="executed"] .flow-company {
  opacity: 1;
}

.flow-company-label {
  min-height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(251, 251, 255, 0.54);
}

.flow-company.is-active .flow-company-label,
.proof-flow[data-motion="receipt"] .flow-company-label,
.proof-flow[data-motion="executed"] .flow-company-label {
  color: rgba(251, 251, 255, 0.86);
}

.flow-person-row {
  gap: 34px;
  margin-top: 30px;
  padding-left: 0;
}

.flow-company-b .flow-person-row {
  padding-right: 0;
}

.flow-person {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  opacity: 0.28;
  transform: none;
}

.flow-person::after {
  top: 35px;
  color: rgba(251, 251, 255, 0.54);
  font-size: 10px;
  opacity: 0.42;
  transform: translate(-50%, 0);
}

.flow-person.is-active,
.flow-person.is-green {
  transform: none;
}

.flow-person.is-active::after,
.flow-person.is-green::after {
  opacity: 1;
}

.flow-verifier {
  width: 252px;
  min-height: 126px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.045), transparent 76%),
    rgba(0, 0, 0, 0.88);
}

.flow-verifier span,
.flow-verifier small {
  display: block;
}

.flow-verifier span {
  margin-bottom: 8px;
  color: rgba(143, 132, 255, 0.84);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.flow-verifier strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.02;
  text-transform: none;
}

.flow-verifier small {
  margin-top: 9px;
  color: rgba(251, 251, 255, 0.54);
  font-size: 13px;
  line-height: 1.35;
}

.flow-proof-port {
  width: 9px;
  height: 9px;
}

.flow-packet,
.flow-packet-secondary {
  width: auto;
  min-width: 78px;
  height: 31px;
  min-height: 31px;
  padding: 0 12px 0 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.86);
  color: var(--text);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.flow-packet::before,
.flow-packet-secondary::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: currentColor;
}

.flow-packet span,
.flow-packet-secondary span {
  display: block;
  color: currentColor;
  font-size: 10px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.flow-packet.is-violet,
.flow-packet-secondary.is-violet {
  color: rgba(205, 200, 255, 0.96);
  background: rgba(29, 24, 78, 0.90);
}

.flow-packet.is-white,
.flow-packet-secondary.is-white {
  color: rgba(251, 251, 255, 0.96);
  background: rgba(28, 28, 32, 0.94);
}

.flow-packet.is-green,
.flow-packet-secondary.is-green {
  color: rgba(184, 255, 203, 0.98);
  background: rgba(8, 39, 17, 0.92);
}

.flow-packet.is-amber,
.flow-packet-secondary.is-amber {
  color: rgba(255, 225, 160, 0.98);
  background: rgba(58, 39, 8, 0.92);
}

.flow-receipt {
  display: none;
}

.flow-stage-nav {
  left: max(24px, calc((100vw - var(--container)) / 2 + 150px));
  right: max(24px, calc((100vw - var(--container)) / 2 + 150px));
  bottom: 8px;
  gap: 12px;
}

.flow-stage-nav::before {
  left: 7%;
  right: 7%;
  top: 10px;
  background: rgba(251, 251, 255, 0.075);
}

.flow-stage-button {
  min-height: 48px;
  padding: 22px 6px 0;
  color: rgba(251, 251, 255, 0.34);
}

.flow-stage-button::before {
  top: 6px;
  width: 7px;
  height: 7px;
  border-color: rgba(251, 251, 255, 0.18);
  background: rgba(251, 251, 255, 0.04);
}

.flow-stage-button.is-done::before {
  background: rgba(251, 251, 255, 0.34);
  border-color: rgba(251, 251, 255, 0.34);
}

.flow-stage-button.is-active::before {
  background: var(--violet-soft);
  border-color: rgba(220, 217, 255, 0.88);
  box-shadow: 0 0 0 5px rgba(143, 132, 255, 0.05);
}

.flow-stage-button b {
  font-size: 9px;
}

.flow-stage-button small {
  max-width: none;
  color: rgba(251, 251, 255, 0.28);
}

/* Proof cleanup: fewer persistent labels, no timeline rail, stronger curved movement. */
.flow-scene {
  inset: 124px 0 70px;
}

.route {
  stroke-width: 3.2;
}

.route.is-active {
  filter:
    drop-shadow(0 0 12px rgba(251, 251, 255, 0.18))
    drop-shadow(0 0 28px rgba(143, 132, 255, 0.18));
}

.route.is-context {
  opacity: 0.08;
  stroke-width: 1;
}

.flow-company {
  width: 206px;
  min-height: 112px;
  padding: 16px 17px;
  opacity: 0.16;
}

.flow-company.is-complete {
  opacity: 0.42;
}

.flow-person-row {
  gap: 30px;
  margin-top: 26px;
}

.flow-person {
  opacity: 0.12;
}

.flow-person::after {
  opacity: 0;
}

.flow-person.is-active::after,
.flow-person.is-green::after {
  opacity: 1;
}

.flow-verifier {
  width: 230px;
  min-height: 112px;
  padding: 20px;
}

.flow-verifier strong {
  font-size: 22px;
}

.flow-packet,
.flow-packet-secondary {
  box-shadow:
    0 0 0 1px rgba(251, 251, 255, 0.05),
    0 18px 46px rgba(0, 0, 0, 0.45);
}

.flow-stage-nav {
  left: 50%;
  right: auto;
  bottom: 10px;
  width: min(760px, calc(100% - 72px));
  counter-reset: flowStage;
  transform: translateX(-50%);
  gap: 10px;
}

.flow-stage-nav::before {
  display: none;
}

.flow-stage-button {
  min-height: 46px;
  padding: 9px 10px 9px 39px;
  overflow: hidden;
  border: 1px solid rgba(251, 251, 255, 0.065);
  border-radius: 999px;
  background: rgba(251, 251, 255, 0.028);
  text-align: left;
  counter-increment: flowStage;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.flow-stage-button::before {
  content: counter(flowStage);
  left: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-color: rgba(251, 251, 255, 0.16);
  background: rgba(251, 251, 255, 0.045);
  color: rgba(251, 251, 255, 0.42);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.flow-stage-button.is-done::before {
  background: rgba(251, 251, 255, 0.13);
  border-color: rgba(251, 251, 255, 0.22);
  color: rgba(251, 251, 255, 0.68);
}

.flow-stage-button.is-active {
  border-color: rgba(143, 132, 255, 0.28);
  background: rgba(143, 132, 255, 0.10);
}

.flow-stage-button.is-active::before {
  color: #060607;
}

.flow-stage-button b {
  font-size: 9px;
}

.flow-stage-button small {
  margin-top: 4px;
  text-align: left;
}

/* Simplify the hero to three anchors and one purposeful curve. */
.proof-flow {
  min-height: clamp(390px, 31vw, 455px);
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.016), transparent 38%, rgba(251, 251, 255, 0.012)),
    #000;
}

.flow-stage-copy strong {
  font-size: clamp(25px, 2.45vw, 38px);
}

.flow-scene {
  inset: 130px 0 82px;
}

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

.flow-company {
  width: 210px;
  min-height: 86px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.12;
}

.flow-company.is-active {
  opacity: 1;
}

.flow-company.is-complete {
  opacity: 0.34;
}

.proof-flow[data-motion="receipt"] .flow-company,
.proof-flow[data-motion="executed"] .flow-company {
  opacity: 0.88;
}

.flow-company-label {
  min-height: auto;
  color: rgba(251, 251, 255, 0.38);
  font-size: 10px;
  font-weight: 400;
}

.flow-company.is-active .flow-company-label,
.proof-flow[data-motion="receipt"] .flow-company-label,
.proof-flow[data-motion="executed"] .flow-company-label {
  color: rgba(251, 251, 255, 0.76);
}

.flow-person-row {
  gap: 30px;
  margin-top: 22px;
}

.flow-person {
  width: 26px;
  min-width: 26px;
  height: 26px;
  min-height: 26px;
  border-color: rgba(251, 251, 255, 0.20);
  background: rgba(251, 251, 255, 0.045);
  opacity: 0.16;
}

.flow-person::after {
  top: 37px;
  color: rgba(251, 251, 255, 0.48);
  font-size: 10px;
  font-weight: 400;
}

.flow-person.is-active {
  background: var(--text);
  border-color: rgba(251, 251, 255, 0.94);
  box-shadow:
    0 0 0 7px rgba(251, 251, 255, 0.035),
    0 0 18px rgba(251, 251, 255, 0.16);
}

.flow-person.is-green {
  background: var(--green);
  border-color: rgba(214, 255, 224, 0.94);
  box-shadow:
    0 0 0 7px rgba(141, 242, 169, 0.040),
    0 0 20px rgba(141, 242, 169, 0.18);
}

.flow-verifier {
  width: 224px;
  min-height: 82px;
  padding: 15px 22px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.055), transparent 78%),
    rgba(0, 0, 0, 0.90);
  box-shadow:
    0 0 0 1px rgba(251, 251, 255, 0.025),
    0 18px 42px rgba(0, 0, 0, 0.42);
}

.flow-verifier span {
  margin-bottom: 6px;
  font-size: 9px;
}

.flow-verifier strong {
  font-size: 18px;
  font-weight: 540;
}

.flow-verifier small {
  margin-top: 6px;
  font-size: 11px;
}

.flow-proof-port {
  width: 8px;
  height: 8px;
}

.route {
  stroke-width: 2.45;
}

.route.is-active {
  filter:
    drop-shadow(0 0 10px rgba(251, 251, 255, 0.14))
    drop-shadow(0 0 24px rgba(143, 132, 255, 0.16));
}

.proof-flow[data-motion="receipt"] .route.is-active,
.proof-flow[data-motion="executed"] .route.is-active {
  stroke-width: 2.1;
}

.flow-packet,
.flow-packet-secondary {
  min-width: 0;
  height: 25px;
  min-height: 25px;
  padding: 0 10px 0 22px;
  box-shadow:
    0 0 0 1px rgba(251, 251, 255, 0.045),
    0 14px 34px rgba(0, 0, 0, 0.38);
}

.flow-packet::before,
.flow-packet-secondary::before {
  left: 8px;
  width: 6px;
  height: 6px;
}

.flow-packet span,
.flow-packet-secondary span {
  font-size: 8px;
  line-height: 23px;
}

.flow-stage-nav {
  bottom: 15px;
  width: min(660px, calc(100% - 86px));
  gap: 8px;
}

.flow-stage-button {
  min-height: 42px;
  padding: 8px 10px 8px 34px;
  border-color: rgba(251, 251, 255, 0.055);
  background: rgba(251, 251, 255, 0.018);
}

.flow-stage-button::before {
  left: 9px;
  width: 18px;
  height: 18px;
}

.flow-stage-button b {
  font-size: 8px;
}

.flow-stage-button small {
  margin-top: 3px;
  font-size: 8px;
}

/* Final hero-flow layout pass: flex to the content container and viewport height. */
.hero-grid {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 0 24px;
}

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

.proof-flow {
  width: 100%;
  min-height: clamp(520px, 62vh, 660px);
}

.flow-mode {
  top: clamp(4px, 0.8vh, 8px);
}

.flow-stage-copy {
  top: clamp(58px, 8vh, 76px);
  width: min(760px, calc(100% - 48px));
}

.flow-stage-copy span {
  margin-bottom: 8px;
}

.flow-stage-copy strong {
  font-size: clamp(24px, 2.35vw, 34px);
}

.flow-stage-copy p {
  margin-top: 8px;
}

.flow-scene {
  top: clamp(178px, 24vh, 220px);
  right: 0;
  bottom: clamp(124px, 16vh, 148px);
  left: 0;
}

.flow-company {
  width: clamp(138px, 18vw, 210px);
}

.flow-company-a {
  left: clamp(34px, 6vw, 78px);
}

.flow-company-b {
  right: clamp(34px, 6vw, 78px);
}

.flow-verifier {
  width: clamp(176px, 19vw, 224px);
  min-height: clamp(74px, 10vh, 82px);
}

.flow-stage-nav {
  bottom: clamp(32px, 4vh, 44px);
  width: min(660px, calc(100% - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-row {
  width: min(100%, var(--container));
  margin: clamp(44px, 5vw, 80px) auto 0;
  padding: 0 24px clamp(54px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-row article {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  padding: 26px 22px;
  border: 1px solid rgba(251, 251, 255, 0.055);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.050), rgba(251, 251, 255, 0.030)),
    rgba(251, 251, 255, 0.055);
  isolation: isolate;
}

.metric-row article::before,
.metric-row article::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.metric-row article::before {
  right: -58px;
  bottom: -94px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(251, 251, 255, 0.16);
  border-radius: 50%;
  opacity: 0.36;
}

.metric-row article::after {
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 1px;
  background: rgba(251, 251, 255, 0.12);
  transform: rotate(-36deg);
  transform-origin: right center;
}

.metric-row article:nth-child(2)::before {
  right: -36px;
  bottom: -74px;
  width: 156px;
  height: 156px;
  border-radius: 24px;
  transform: rotate(45deg);
}

.metric-row article:nth-child(2)::after {
  right: 28px;
  bottom: 24px;
  width: 98px;
  box-shadow:
    0 -18px 0 rgba(251, 251, 255, 0.06),
    0 18px 0 rgba(251, 251, 255, 0.06);
  transform: rotate(0deg);
}

.metric-row article:nth-child(3)::before {
  right: -42px;
  bottom: -88px;
  width: 182px;
  height: 182px;
  border-radius: 50%;
  border-color: rgba(143, 132, 255, 0.24);
}

.metric-row article:nth-child(3)::after {
  right: 30px;
  bottom: 30px;
  width: 104px;
  background: rgba(143, 132, 255, 0.16);
  box-shadow: 0 16px 0 rgba(141, 242, 169, 0.10);
  transform: rotate(26deg);
}

.metric-row article:nth-child(4)::before {
  right: -48px;
  bottom: -72px;
  width: 164px;
  height: 164px;
  border-radius: 36px;
  border-color: rgba(141, 242, 169, 0.20);
  transform: rotate(-18deg);
}

.metric-row article:nth-child(4)::after {
  right: 26px;
  bottom: 24px;
  width: 94px;
  background: rgba(141, 242, 169, 0.14);
  box-shadow: 0 -14px 0 rgba(251, 251, 255, 0.06);
  transform: rotate(-28deg);
}

.metric-row strong {
  display: block;
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.metric-row span {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 230px;
  margin-top: 3px;
  color: rgba(251, 251, 255, 0.70);
  font-size: 13px;
  line-height: 1.45;
}

.intro-section {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(64px, 6.2vw, 92px) 24px clamp(62px, 5.8vw, 86px);
  text-align: center;
  isolation: isolate;
}

.intro-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(1280px, 100vw);
  height: clamp(210px, 18vw, 290px);
  transform: translate(-50%, -48%);
  background:
    linear-gradient(90deg, transparent 0%, rgba(38, 31, 108, 0.06) 18%, rgba(77, 66, 255, 0.15) 48%, rgba(38, 31, 108, 0.06) 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(143, 132, 255, 0.075) 46%, transparent 100%);
  filter: blur(26px);
  opacity: 0.82;
}

.intro-section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 3.35vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.intro-section p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(251, 251, 255, 0.58);
  font-size: 18px;
  line-height: 1.78;
}

.platform-principles {
  max-width: 980px;
  margin: clamp(42px, 5vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.platform-principles article {
  min-height: 178px;
  padding: 26px 28px 28px;
  text-align: left;
  border-right: 1px solid var(--line-soft);
}

.platform-principles article:last-child {
  border-right: 0;
}

.platform-principles span {
  display: block;
  color: rgba(143, 132, 255, 0.72);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.platform-principles strong {
  display: block;
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(27px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.platform-principles p {
  max-width: 240px;
  margin: 14px 0 0;
  color: rgba(251, 251, 255, 0.52);
  font-size: 15px;
  line-height: 1.58;
}

.feature-section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(74px, 7.2vw, 112px) 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  border-top: 1px solid var(--line-soft);
}

.feature-copy .eyebrow {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--violet);
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
}

.feature-b,
.feature-d {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.feature-copy h2 {
  max-width: 580px;
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 3.35vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.feature-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(251, 251, 255, 0.66);
  font-size: 18px;
  line-height: 1.78;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(251, 251, 255, 0.74);
  font-size: 16px;
  line-height: 1.6;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--violet);
  color: var(--text);
  font-size: 9px;
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: rgba(251, 251, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.text-link:hover {
  color: var(--violet-soft);
}

.platform-graphic {
  position: relative;
  min-height: clamp(390px, 35vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(251, 251, 255, 0.055);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.070), rgba(251, 251, 255, 0.040)),
    rgba(251, 251, 255, 0.075);
}

.platform-graphic::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 251, 255, 0.075), transparent);
}

.platform-graphic::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 251, 255, 0.12), transparent);
}

.platform-graphic svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.platform-graphic path,
.platform-graphic circle {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.graphic-orbit {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(251, 251, 255, 0.08) 9% 9.2%, transparent 9.2% 100%),
    linear-gradient(0deg, transparent 0 16%, rgba(251, 251, 255, 0.06) 16% 16.2%, transparent 16.2% 100%);
}

.detail-stack path,
.verifier-radar path,
.agreement-curves path,
.evidence-rings path,
.evidence-ledger path {
  stroke-width: 1.35;
  stroke-opacity: 0.92;
}

.detail-layer-a,
.radar-ring-a,
.agreement-orbit-top,
.agreement-orbit-bottom,
.evidence-stream-export {
  stroke: rgba(251, 251, 255, 0.72);
}

.detail-layer-b,
.radar-arc,
.agreement-spoke,
.evidence-stream {
  stroke: rgba(251, 251, 255, 0.42);
}

.detail-layer-c,
.detail-link,
.radar-allow,
.agreement-copy,
.evidence-ledger-line,
.evidence-ledger-staple {
  stroke: rgba(141, 242, 169, 0.68);
}

.radar-stop,
.radar-wall {
  stroke: rgba(255, 138, 138, 0.54);
}

.detail-stack circle,
.radar-dot,
.agreement-dot,
.evidence-stream-dot,
.evidence-ledger-dot {
  fill: rgba(251, 251, 255, 0.78);
  stroke: none;
}

.radar-dot-green,
.evidence-ledger-dot-green,
.evidence-stream-dot-export {
  fill: var(--green);
}

.radar-dot-red {
  fill: var(--red);
}

.radar-dot-amber {
  fill: var(--amber);
}

.radar-target {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
}

.detail-card,
.verdict-card,
.company-cluster,
.agreement-core,
.evidence-core,
.evidence-chip,
.verifier-core {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(251, 251, 255, 0.12);
  border-radius: 8px;
  background: rgba(8, 8, 10, 0.78);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.detail-card span,
.agreement-core span,
.evidence-core span,
.verifier-core span,
.company-cluster span {
  display: block;
  color: rgba(143, 132, 255, 0.82);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-card strong,
.agreement-core strong,
.evidence-core strong,
.verifier-core strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.detail-card p,
.agreement-core p,
.evidence-core p,
.verifier-core small {
  display: block;
  margin: 8px 0 0;
  color: rgba(251, 251, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.detail-card-primary {
  left: 11%;
  top: 13%;
  width: min(280px, 44%);
  padding: 18px;
}

.detail-card-shadow {
  right: 10%;
  bottom: 12%;
  width: min(230px, 38%);
  padding: 14px;
  opacity: 0.76;
}

.signature-rail {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 18%;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.signature-rail span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(251, 251, 255, 0.75);
}

.hash-strip {
  position: absolute;
  right: 12%;
  top: 18%;
  z-index: 3;
  display: grid;
  gap: 7px;
}

.hash-strip i {
  width: 76px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: rgba(251, 251, 255, 0.16);
}

.verifier-core {
  left: 50%;
  top: 50%;
  width: 210px;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translate(-50%, -50%);
  padding: 22px;
  text-align: center;
}

.verdict-card {
  width: 76px;
  height: 34px;
  opacity: 0.82;
}

.verdict-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: currentColor;
}

.verdict-green {
  right: 12%;
  top: 22%;
  color: var(--green);
}

.verdict-amber {
  right: 18%;
  bottom: 22%;
  color: var(--amber);
}

.verdict-red {
  left: 12%;
  bottom: 26%;
  color: var(--red);
}

.company-cluster {
  width: 126px;
  padding: 14px;
}

.company-left {
  left: 8%;
  top: 23%;
}

.company-right {
  right: 8%;
  top: 23%;
}

.company-cluster b {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: rgba(251, 251, 255, 0.76);
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
}

.company-cluster b::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(251, 251, 255, 0.70);
}

.company-cluster em {
  font-style: normal;
}

.agreement-core,
.evidence-core {
  left: 50%;
  top: 50%;
  width: 218px;
  padding: 20px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.evidence-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: rgba(251, 251, 255, 0.74);
  font-size: 11px;
  font-weight: 500;
}

.evidence-chip span {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(251, 251, 255, 0.12);
  color: var(--text);
  font-size: 9px;
}

.evidence-chip-a {
  left: 8%;
  top: 18%;
}

.evidence-chip-b {
  left: 10%;
  top: 42%;
}

.evidence-chip-c {
  left: 12%;
  bottom: 20%;
}

.evidence-chip-d {
  right: 10%;
  top: 24%;
}

.evidence-chip-export {
  right: 9%;
  bottom: 22%;
  color: rgba(184, 255, 203, 0.82);
}

.evidence-chip-export span {
  background: var(--green);
}

.feature-trace {
  fill: none;
  stroke: rgba(251, 251, 255, 0.72);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--trace-segment, 70) var(--trace-length, 420);
  stroke-dashoffset: var(--trace-length, 420);
  opacity: 0.24;
  animation: featureTraceTravel 16s linear infinite;
  animation-delay: var(--trace-delay, 0s);
  pointer-events: none;
}

.feature-trace.is-primary {
  opacity: 0.34;
}

.detail-graphic .feature-trace,
.agreement-graphic .feature-trace {
  stroke: rgba(143, 132, 255, 0.70);
}

.verifier-graphic .feature-trace,
.evidence-graphic .feature-trace {
  stroke: rgba(141, 242, 169, 0.64);
}

/* Feature graphics should read like quiet product diagrams, not annotated slides. */
.platform-graphic {
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.060), rgba(251, 251, 255, 0.034)),
    rgba(251, 251, 255, 0.066);
}

.detail-card,
.verifier-core,
.agreement-core,
.evidence-core,
.company-cluster,
.evidence-chip {
  border-color: rgba(251, 251, 255, 0.070);
  background:
    linear-gradient(180deg, rgba(251, 251, 255, 0.044), rgba(0, 0, 0, 0.42)),
    rgba(5, 5, 7, 0.60);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.detail-card p {
  display: none;
}

.detail-card span,
.agreement-core span,
.evidence-core span,
.verifier-core span,
.company-cluster span {
  color: rgba(143, 132, 255, 0.64);
  font-size: 10px;
  font-weight: 400;
}

.detail-card strong,
.agreement-core strong,
.evidence-core strong,
.verifier-core strong {
  font-size: 15px;
  font-weight: 500;
}

.detail-card-primary {
  left: 13%;
  top: 15%;
  width: min(204px, 32%);
  padding: 15px 16px;
}

.detail-card-shadow {
  right: 11%;
  bottom: 14%;
  width: min(170px, 28%);
  padding: 13px 14px;
}

.verifier-core,
.agreement-core,
.evidence-core {
  width: 184px;
  padding: 16px;
}

.company-cluster {
  width: 118px;
  padding: 12px;
}

.company-cluster b {
  color: rgba(251, 251, 255, 0.62);
  font-weight: 400;
}

.evidence-chip {
  background: rgba(5, 5, 7, 0.58);
  color: rgba(251, 251, 255, 0.62);
}

.hash-strip i {
  width: 66px;
  background: rgba(251, 251, 255, 0.13);
}

/* Frictionless panel mirrors NewCore's disciplined wave graphic. */
.evidence-graphic::before {
  display: none;
}

.evidence-graphic {
  background:
    linear-gradient(90deg, rgba(251, 251, 255, 0.020), rgba(251, 251, 255, 0.070) 52%, rgba(251, 251, 255, 0.038)),
    rgba(251, 251, 255, 0.060);
}

.evidence-wave-line {
  stroke: rgba(251, 251, 255, 0.50);
  stroke-width: 1.22;
  stroke-opacity: 0.90;
}

.evidence-wave-a,
.evidence-wave-g {
  stroke-opacity: 0.50;
}

.evidence-wave-b,
.evidence-wave-f {
  stroke-opacity: 0.66;
}

.evidence-wave-c,
.evidence-wave-d,
.evidence-wave-e {
  stroke: rgba(251, 251, 255, 0.66);
}

.evidence-wave-export {
  stroke: rgba(141, 242, 169, 0.70);
  stroke-width: 1.4;
}

.evidence-threshold {
  stroke: rgba(251, 251, 255, 0.40);
  stroke-width: 1.2;
  stroke-opacity: 0.55;
}

.evidence-threshold-b {
  stroke: rgba(141, 242, 169, 0.42);
}

.evidence-dot-a,
.evidence-dot-b,
.evidence-dot-c {
  fill: rgba(251, 251, 255, 0.64);
}

.evidence-graphic .evidence-core {
  left: 58%;
  top: 50%;
  width: 164px;
  min-height: 86px;
  padding: 16px;
  text-align: left;
  transform: translate(-50%, -50%);
}

.evidence-graphic .evidence-core strong {
  font-size: 17px;
}

.evidence-graphic .evidence-core p {
  max-width: 116px;
  font-size: 11px;
}

@keyframes featureTraceTravel {
  0% {
    opacity: 0;
    stroke-dashoffset: var(--trace-length, 420);
  }
  16% {
    opacity: 0.28;
  }
  58% {
    opacity: 0.28;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: calc(var(--trace-length, 420) * -1);
  }
}

.final-cta {
  position: relative;
  width: min(1110px, calc(100% - 48px));
  margin: clamp(72px, 8vw, 124px) auto clamp(70px, 7vw, 104px);
  padding: clamp(34px, 4vw, 48px) clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 36px;
  overflow: hidden;
  border: 1px solid rgba(143, 132, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(37, 31, 104, 0.76), rgba(10, 10, 15, 0.92) 56%, rgba(6, 6, 8, 0.96)),
    #09090d;
  text-align: left;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.final-cta::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(143, 132, 255, 0.18), rgba(143, 132, 255, 0.05) 34%, transparent 68%),
    linear-gradient(180deg, rgba(251, 251, 255, 0.055), transparent 52%);
}

.final-cta::after {
  right: 18%;
  bottom: 0;
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 251, 255, 0.18), transparent);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 2.25vw, 32px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.final-cta p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(251, 251, 255, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.final-cta .eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: rgba(251, 251, 255, 0.66);
}

.final-cta-copy {
  position: relative;
  z-index: 1;
}

.waitlist-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.waitlist-form span {
  color: rgba(251, 251, 255, 0.60);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(251, 251, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.30);
  color: var(--text);
  font-size: 14px;
}

.waitlist-form input,
.waitlist-form select {
  min-height: 44px;
  padding: 0 12px;
}

.waitlist-form textarea {
  resize: vertical;
  min-height: 80px;
  padding: 11px 12px;
}

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder {
  color: rgba(251, 251, 255, 0.34);
}

.waitlist-form select {
  color: rgba(251, 251, 255, 0.82);
}

.waitlist-note,
.waitlist-status,
.waitlist-form .final-cta-button {
  grid-column: 1 / -1;
}

.final-cta-button {
  position: relative;
  z-index: 1;
  margin-top: 0;
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
  white-space: nowrap;
}

.waitlist-form .final-cta-button {
  width: fit-content;
}

.waitlist-form .final-cta-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.waitlist-status {
  min-height: 20px;
  margin-top: 0 !important;
  color: rgba(251, 251, 255, 0.50) !important;
  font-size: 12px !important;
}

.waitlist-form.is-waitlist-saved .waitlist-status {
  color: var(--green) !important;
}

.footer {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 56px 24px 60px;
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(120px, 1fr));
  gap: 28px;
  border-top: 1px solid var(--line-soft);
}

.footer-brand p,
.footer-legal {
  color: rgba(251, 251, 255, 0.58);
  font-size: 13px;
}

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

.footer-column strong {
  color: rgba(251, 251, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
}

.footer-column a {
  color: rgba(251, 251, 255, 0.58);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 10px 0 0;
}

.simple-page-header {
  border-bottom: 1px solid var(--line-soft);
}

.legal-nav-links {
  gap: 24px;
}

.simple-page {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0 clamp(70px, 8vw, 112px);
}

.simple-page h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.simple-page > p:not(.eyebrow):not(.simple-page-actions) {
  margin: 18px 0 0;
  color: rgba(251, 251, 255, 0.66);
  font-size: 18px;
  line-height: 1.7;
}

.simple-page-panel {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(251, 251, 255, 0.10);
  border-radius: 8px;
  background: rgba(251, 251, 255, 0.045);
}

.simple-page-panel h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
}

.simple-page-panel a {
  color: var(--green);
}

.simple-page-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.motion-ready .reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.22, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    z-index: 50;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 8, 9, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 12px;
  }

  .simple-page-header .nav-links {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .simple-page-header .nav-links a {
    padding: 0;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .feature-section,
  .feature-b,
  .feature-d {
    grid-template-columns: 1fr;
  }

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

  .platform-principles article {
    min-height: 142px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .platform-principles article:last-child {
    border-bottom: 0;
  }

  .feature-b .platform-graphic,
  .feature-d .platform-graphic {
    order: 2;
  }

  .launch-proof-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

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

  .metric-row article:nth-child(2) {
    border-right: 0;
  }

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

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

@media (max-width: 760px) {
  .topline {
    min-height: 46px;
    justify-content: flex-start;
    overflow: hidden;
    font-size: 12px;
  }

  .topline p {
    max-width: 318px;
    margin: 0 auto;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
  }

  .topline a {
    display: none;
  }

  .nav {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
  }

  .simple-page-header .nav {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .simple-page-header .nav-links {
    justify-content: flex-start;
    gap: 14px;
    font-size: 12px;
  }

  .nav-toggle {
    position: absolute;
    left: calc(100% - 60px);
    right: auto;
    top: 50%;
    z-index: 2;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    overflow: hidden;
    background: rgba(8, 8, 9, 0.92);
    color: transparent;
    font-size: 0;
  }

  .nav-toggle::before {
    content: "";
    width: 16px;
    height: 2px;
    display: block;
    flex: 0 0 auto;
    border-radius: 2px;
    background: rgba(251, 251, 255, 0.86);
    box-shadow:
      0 -6px 0 rgba(251, 251, 255, 0.86),
      0 6px 0 rgba(251, 251, 255, 0.86);
  }

  .hero-lead {
    padding: 50px 18px 28px;
  }

  .hero-grid {
    width: 100%;
    max-width: 100%;
    padding: 22px 0 0;
  }

  .hero-visual {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .proof-flow {
    width: 100%;
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(34px, 9.6vw, 43px);
    line-height: 1.08;
  }

  .hero-copy .eyebrow {
    max-width: 286px;
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-text {
    max-width: 320px;
  }

  .hero-line {
    max-width: 320px;
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-ctas {
    display: grid;
    gap: 10px;
    width: min(100%, 310px);
    margin-inline: auto;
  }

  .launch-proof-card {
    width: min(100%, 336px);
    margin-top: 24px;
    padding: 16px;
  }

  .proof-actions,
  .proof-facts,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .proof-actions {
    display: grid;
  }

  .proof-qr {
    min-height: 148px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .proof-flow {
    min-height: min(720px, 184vw);
  }

  .flow-mode {
    top: 0;
    left: 50%;
    max-width: calc(100% - 36px);
  }

  .flow-mode-button {
    min-width: 96px;
    padding-inline: 10px;
    font-size: 11px;
    line-height: 1.1;
    white-space: normal;
  }

  .flow-stage-copy {
    left: 50%;
    top: 72px;
    width: calc(100% - 40px);
    transform: translateX(-50%);
    text-align: center;
  }

  .flow-stage-copy strong {
    max-width: 318px;
    margin: 0 auto;
    font-size: 22px;
  }

  .flow-stage-copy p {
    max-width: 300px;
    margin-inline: auto;
    font-size: 12px;
  }

  .flow-scene {
    inset: 202px 0 138px;
    width: 100%;
  }

  .flow-scene::before {
    left: 16px;
    right: 16px;
  }

  .flow-company {
    width: 94px;
    min-height: 82px;
    padding: 0;
    top: 45%;
  }

  .flow-company-a {
    left: 22px !important;
  }

  .flow-company-b {
    left: auto !important;
    right: 22px !important;
  }

  .flow-company-label {
    min-height: 21px;
    padding-inline: 8px;
    font-size: 8px;
  }

  .flow-person-row {
    gap: 14px;
    margin-top: 14px;
  }

  .flow-person {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
  }

  .flow-person::after {
    display: none;
  }

  .flow-verifier {
    left: 50%;
    top: 45%;
    width: 128px;
    min-height: 84px;
    padding: 12px;
  }

  .flow-verifier strong {
    font-size: 15px;
  }

  .flow-verifier span {
    font-size: 8px;
  }

  .flow-verifier small {
    font-size: 10px;
  }

  .flow-packet,
  .flow-packet-secondary {
    min-width: 54px;
    height: 27px;
    min-height: 27px;
    padding: 0 8px 0 21px;
  }

  .flow-packet::before,
  .flow-packet-secondary::before {
    left: 9px;
    width: 7px;
    height: 7px;
  }

  .flow-packet span,
  .flow-packet-secondary span {
    font-size: 8px;
    line-height: 25px;
  }

  .flow-stage-nav {
    left: 18px;
    right: auto;
    width: calc(100% - 36px);
    bottom: 30px;
    transform: none;
    gap: 5px;
  }

  .flow-stage-button {
    min-height: 50px;
    padding: 27px 5px 7px;
    border-radius: 16px;
    text-align: center;
  }

  .flow-stage-button::before {
    left: 50%;
    top: 7px;
    width: 17px;
    height: 17px;
    transform: translateX(-50%);
    font-size: 9px;
  }

  .flow-stage-button b {
    font-size: 8px;
  }

  .flow-stage-button small {
    display: none;
  }

  .metric-row {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .metric-row article {
    min-height: 104px;
    border-right: 0;
  }

  .intro-section,
  .feature-section,
  .final-cta,
  .footer {
    padding-inline: 18px;
  }

  .platform-principles article {
    padding-inline: 0;
  }

  .platform-principles p {
    max-width: 100%;
  }

  .platform-graphic {
    min-height: 330px;
  }

  .detail-card-primary,
  .detail-card-shadow {
    width: 210px;
  }

  .company-cluster {
    width: 106px;
  }

  .agreement-core,
  .evidence-core,
  .verifier-core {
    width: 184px;
  }

  .evidence-chip {
    font-size: 10px;
  }

  .final-cta {
    width: calc(100% - 36px);
    margin: 70px auto 72px;
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .final-cta-button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 22px;
  }

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

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