@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --paper: #f3f2ee;
  --paper-bright: #faf9f5;
  --ink: #0b0b0b;
  --muted: #73736f;
  --line: #c9c8c2;
  --line-dark: #292929;
  --cobalt: #244cff;
  --ultramarine: #0d31c9;
  --signal: #ff4f1f;
  --header-bg: rgba(243, 242, 238, 0.94);
  --header-shadow: rgba(0, 0, 0, 0.05);
  --secondary: #4b4b48;
  --diagram-muted: #858581;
  --diagram-soft: #9c9c98;
  --module-grid: rgba(11, 11, 11, 0.035);
  --module-bg: rgba(243, 242, 238, 0.86);
  --module-hover: rgba(250, 249, 245, 0.96);
  --module-dotted: #aaa9a4;
  --inverse-bg: #0b0b0b;
  --inverse-fg: #f3f2ee;
  --inverse-line: #292929;
  --inverse-muted: #a2a29d;
  --soft-blue: #e4e6ff;
  --soft-blue-line: #b3b6d8;
  --soft-blue-muted: #626479;
  --accent-contrast: #ffffff;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #090b0a;
  --paper-bright: #0e110f;
  --ink: #f3f2ee;
  --muted: #939690;
  --line: #303430;
  --line-dark: #303430;
  --cobalt: #5875ff;
  --ultramarine: #7d92ff;
  --header-bg: rgba(9, 11, 10, 0.94);
  --header-shadow: rgba(0, 0, 0, 0.34);
  --secondary: #b1b4ae;
  --diagram-muted: #737873;
  --diagram-soft: #656a65;
  --module-grid: rgba(255, 255, 255, 0.035);
  --module-bg: rgba(9, 11, 10, 0.88);
  --module-hover: rgba(16, 20, 17, 0.97);
  --module-dotted: #454a46;
  --inverse-bg: #111512;
  --inverse-fg: #f3f2ee;
  --inverse-line: #303530;
  --inverse-muted: #a5a9a3;
  --soft-blue: #10172b;
  --soft-blue-line: #2e3b64;
  --soft-blue-muted: #9ba7ce;
  --accent-contrast: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light dark;
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  transition: color 220ms ease, background 220ms ease;
}

main,
.hero,
.hero-copy,
.project-module,
.product-detail {
  min-width: 0;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--cobalt);
  color: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--cobalt);
  color: white;
  font: 500 12px/1 var(--mono);
  text-decoration: none;
}

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

.site-header {
  position: relative;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4vw;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  position: fixed;
  inset: 0 0 auto;
  box-shadow: 0 12px 35px var(--header-shadow);
  backdrop-filter: blur(12px);
}

.site-header.scrolled + main {
  padding-top: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font: 500 15px/1 var(--mono);
  letter-spacing: 0.42em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 24px;
  fill: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 4vw, 70px);
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--signal);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.theme-glyph {
  position: relative;
  width: 13px;
  height: 13px;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.theme-glyph::after {
  content: "";
  position: absolute;
  inset: -1px -1px -1px 48%;
  background: currentColor;
  transition: inset 220ms ease;
}

html[data-theme="dark"] .theme-glyph::after {
  inset: -1px 48% -1px -1px;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(460px, 0.92fr) minmax(650px, 1.25fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: clamp(60px, 8vh, 115px) 2.4vw 34px;
}

.micro-label,
.section-tag,
.product-title > p,
.manifesto-heading > p,
.principles-heading > p,
.vision-kicker,
.trust-line,
.early-note {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.micro-label {
  margin: 0 0 clamp(32px, 6vh, 70px);
  color: var(--muted);
  font-size: 9px;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(78px, 8.9vw, 164px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero-lead {
  margin: 34px 0 0;
  font: 400 clamp(14px, 1.1vw, 18px)/1.5 var(--mono);
  letter-spacing: 0.02em;
}

.circle-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.circle-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 22px;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.circle-link:hover .circle-arrow,
.circle-link:focus-visible .circle-arrow {
  transform: rotate(-20deg);
  background: var(--cobalt);
  color: white;
}

.trust-line {
  margin: auto 0 0;
  padding-top: 35px;
  color: var(--secondary);
  font-size: 9px;
}

.trust-line i {
  padding: 0 8px;
  color: var(--cobalt);
  font-style: normal;
}

.crypto-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background-image: radial-gradient(circle at 72% 44%, rgba(36, 76, 255, 0.035), transparent 35%);
}

.crypto-meta {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 6%;
  display: flex;
  gap: 28px;
  color: var(--muted);
  font: 400 8px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crypto-meta span:first-child {
  color: var(--ink);
}

.crypto-diagram {
  position: absolute;
  inset: 7% 1% 3%;
  width: 98%;
  height: 90%;
  overflow: visible;
  color: var(--ink);
  font-family: var(--mono);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.crypto-diagram text {
  fill: currentColor;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.field-grid path,
.share-guides path,
.proof-lines path,
.ecc path,
.merkle path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.field-grid text {
  font-size: 8px;
}

.polynomial {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: draw-line 2.1s 0.3s ease forwards;
}

.share-guides path {
  stroke: var(--diagram-soft);
  stroke-dasharray: 5 5;
}

.curve-points circle {
  fill: var(--paper);
  stroke: var(--cobalt);
  stroke-width: 2;
  animation: point-pulse 3.6s ease-in-out infinite;
}

.curve-points circle:nth-child(2) { animation-delay: -0.7s; }
.curve-points circle:nth-child(3) { animation-delay: -1.4s; }
.curve-points circle:nth-child(4) { animation-delay: -2.1s; }
.curve-points circle:nth-child(5) { animation-delay: -2.8s; }

.shard path {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1;
}

.shard.selected path {
  fill: var(--ink);
}

.shard text {
  text-anchor: middle;
}

.shard.selected > text:not(.hash) {
  fill: var(--paper);
}

.shard .hash {
  font-size: 7px;
}

.proof-lines path {
  stroke: var(--cobalt);
  stroke-dasharray: 4 4;
}

.secret-output circle {
  fill: var(--cobalt);
}

.secret-output text {
  font-size: 7px;
}

.ecc .axis {
  stroke: var(--diagram-muted);
}

.ecc-curve {
  stroke-width: 1.4 !important;
}

.ecc-chord {
  stroke: var(--muted) !important;
  stroke-dasharray: 5 4;
}

.ecc-reflection {
  stroke: var(--cobalt) !important;
  stroke-dasharray: 3 3;
}

.ecc-point {
  fill: var(--ink);
}

.ecc-point.accent {
  fill: var(--cobalt);
}

.ecc-point.intersection {
  fill: var(--paper);
  stroke: var(--ink);
}

.merkle rect {
  fill: var(--paper);
  stroke: var(--ink);
}

.merkle g > text:not(.hash-end) {
  text-anchor: middle;
  font-size: 8px;
}

.merkle .selected-block rect {
  fill: var(--cobalt);
  stroke: var(--cobalt);
}

.merkle .selected-block > text:not(.hash-end) {
  fill: white;
}

.merkle .hash-end {
  font-size: 7px;
}

.merkle-flow {
  color: var(--cobalt);
}

.crypto-legend {
  position: absolute;
  right: 4%;
  bottom: 22px;
  display: flex;
  gap: 18px;
  font: 400 7px/1 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.crypto-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.crypto-legend i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.crypto-legend .selected-key {
  border-color: var(--cobalt);
  background: var(--cobalt);
}

.index-bar {
  position: relative;
  z-index: 10;
  height: 40px;
  display: grid;
  grid-template-columns: 220px 150px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font: 400 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-bar a,
.scroll-label {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2.4vw;
  text-decoration: none;
}

.index-bar a:nth-child(2) {
  border-bottom: 2px solid var(--cobalt);
}

.registry-label {
  gap: 9px;
}

.registry-label i {
  width: 6px;
  height: 6px;
  border: 1px solid var(--cobalt);
  background: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(36, 76, 255, 0.12);
}

.scroll-label {
  gap: 12px;
}

.scroll-label i {
  color: var(--cobalt);
  font-style: normal;
  font-size: 7px;
}

.scroll-label b {
  color: var(--muted);
  font-weight: 400;
}

.work-section {
  position: relative;
  background-image:
    linear-gradient(var(--module-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--module-grid) 1px, transparent 1px);
  background-size: 24px 24px;
}

.project-module {
  position: relative;
  min-height: 260px;
  border-bottom: 1px solid var(--line);
  background: var(--module-bg);
  transition: background 220ms ease;
}

.project-module:hover {
  background: var(--module-hover);
}

.module-header {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4vw;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 400 7px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.module-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(36, 76, 255, 0.1);
}

.module-body {
  min-height: 225px;
  display: grid;
  grid-template-columns: 8% 21% 25% minmax(250px, 1fr) 70px;
  align-items: stretch;
  padding: 0 2.4vw;
}

.module-index {
  align-self: center;
  color: var(--cobalt);
  font: 500 clamp(38px, 4vw, 66px)/1 var(--display);
  letter-spacing: -0.04em;
}

.module-title,
.module-specs,
.protocol-trace,
.module-link {
  border-left: 1px solid var(--line);
}

.module-title {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px clamp(18px, 2vw, 38px);
}

.module-title p {
  margin: 0 0 8px;
  color: var(--cobalt);
  font: 400 7px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-title h2 {
  margin: 0;
  font: 500 clamp(50px, 5vw, 82px)/0.82 var(--display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.module-title > span {
  margin: 0;
  color: var(--secondary);
  font: 400 10px/1.45 var(--mono);
}

.module-title h2 + span {
  margin-top: 15px;
}

.module-specs {
  margin: 0;
  padding: 20px clamp(18px, 2vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.module-specs div {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dotted var(--module-dotted);
  font: 400 8px/1.35 var(--mono);
  text-transform: uppercase;
}

.module-specs div:last-child {
  border-bottom: 0;
}

.module-specs dt {
  color: var(--muted);
}

.module-specs dd {
  margin: 0;
}

.protocol-trace {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px clamp(18px, 2.4vw, 44px);
}

.protocol-trace svg {
  width: 100%;
  max-height: 118px;
  overflow: visible;
  color: var(--ink);
  font-family: var(--mono);
}

.protocol-trace svg path,
.protocol-trace svg circle,
.protocol-trace svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.protocol-trace svg text {
  fill: currentColor;
  font-size: 8px;
  text-anchor: middle;
}

.protocol-trace svg .trace-label {
  fill: var(--muted);
  font-size: 6px;
}

.protocol-trace svg .trace-nodes circle:nth-child(1),
.protocol-trace svg .trace-nodes circle:nth-child(3),
.protocol-trace svg .trace-nodes circle:nth-child(5),
.protocol-trace svg .trace-core {
  fill: var(--cobalt);
  stroke: var(--cobalt);
}

.protocol-trace svg .trace-core + text {
  fill: white;
}

.protocol-trace .trace-lines path,
.protocol-trace .trace-flow {
  stroke: var(--diagram-muted);
}

.protocol-trace .trace-dash {
  stroke: var(--cobalt);
  stroke-dasharray: 4 3;
}

.protocol-trace .cipher-block path {
  fill: var(--cobalt);
  stroke: var(--cobalt);
}

.protocol-trace .cipher-block text {
  fill: white;
  font-size: 7px;
}

.protocol-trace > p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0;
  padding-top: 7px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 400 6px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.protocol-trace > p span {
  color: var(--cobalt);
}

.protocol-trace-id0 .trace-shard path {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.1;
}

.protocol-trace-id0 .trace-shard.selected path {
  fill: var(--signal);
  stroke: var(--signal);
}

.protocol-trace-id0 .trace-shard .shard-id {
  fill: var(--ink);
  font-size: 7px;
  font-weight: 500;
}

.protocol-trace-id0 .trace-shard.selected .shard-id {
  fill: #fff;
}

.protocol-trace-id0 .trace-shard .shard-hash {
  fill: var(--muted);
  font-size: 4.5px;
  letter-spacing: 0.04em;
}

.protocol-trace-id0 .trace-lines .trace-branch {
  stroke: var(--diagram-muted);
  stroke-width: 1;
}

.protocol-trace-id0 .trace-lines .trace-branch.selected {
  stroke: var(--signal);
  stroke-dasharray: 3 2;
}

.protocol-trace-id0 .trace-lines .trace-quorum {
  stroke: var(--ink);
  stroke-width: 2;
}

.protocol-trace-id0 .quorum-node {
  fill: var(--signal);
  stroke: var(--paper);
  stroke-width: 1.5;
}

.protocol-trace-id0 .trace-dash {
  stroke: var(--signal);
}

.protocol-trace-id0 svg .trace-core {
  fill: var(--ink);
  stroke: var(--ink);
}

.protocol-trace-id0 svg text.trace-core-text {
  fill: var(--paper);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.protocol-trace-id0 .trace-verdict {
  fill: var(--signal);
  font-size: 4.5px;
  letter-spacing: 0.14em;
}

.protocol-trace-id0 > p span {
  color: var(--signal);
}

.protocol-trace-nook svg .device-shell,
.protocol-trace-nook svg .storage-shell {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.1;
}

.protocol-trace-nook svg .device-screen {
  fill: color-mix(in srgb, var(--ink) 4%, transparent);
  stroke: var(--line);
}

.protocol-trace-nook svg .key-ring {
  fill: none;
  stroke: var(--signal);
  stroke-width: 1.7;
}

.protocol-trace-nook svg .key-stem {
  stroke: var(--signal);
  stroke-width: 1.7;
}

.protocol-trace-nook svg .trace-hash,
.protocol-trace-nook svg .cipher-hash {
  fill: var(--muted);
  font-size: 4.5px;
  letter-spacing: 0.04em;
}

.protocol-trace-nook svg .plaintext-rail path {
  stroke: var(--diagram-muted);
}

.protocol-trace-nook svg .plaintext-rail circle,
.protocol-trace-nook svg .ciphertext-rail circle {
  fill: var(--signal);
  stroke: var(--paper);
  stroke-width: 1;
}

.protocol-trace-nook svg .plaintext-rail text,
.protocol-trace-nook svg .ciphertext-rail text {
  fill: var(--muted);
  font-size: 5px;
}

.protocol-trace-nook svg .cipher-shell {
  fill: var(--ink);
  stroke: var(--ink);
}

.protocol-trace-nook svg .cipher-orbit {
  fill: none;
  stroke: var(--signal);
  stroke-width: 1;
  stroke-dasharray: 3 2;
}

.protocol-trace-nook svg .cipher-core {
  fill: var(--signal);
  stroke: var(--paper);
  stroke-width: 1.2;
}

.protocol-trace-nook svg text.cipher-title {
  fill: var(--paper);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.protocol-trace-nook svg text.cipher-subtitle {
  fill: var(--signal);
  font-size: 4.5px;
  letter-spacing: 0.14em;
}

.protocol-trace-nook svg .ciphertext-rail .trace-dash {
  stroke: var(--signal);
  stroke-width: 1.2;
}

.protocol-trace-nook svg .storage-node path:not(.storage-shell) {
  stroke: var(--line);
}

.protocol-trace-nook svg .boundary-scan {
  stroke: var(--line);
}

.protocol-trace-nook svg .boundary-signal {
  stroke: var(--signal);
  stroke-width: 2;
}

.protocol-trace-nook > p span {
  color: var(--signal);
}

.module-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font: 400 20px/1 var(--mono);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.module-link span {
  writing-mode: vertical-rl;
  color: var(--muted);
  font-size: 6px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-module:hover .module-link,
.module-link:focus-visible {
  background: var(--cobalt);
  color: white;
}

.project-module:hover .module-link:not(.crypto-cta) span,
.module-link:not(.crypto-cta):focus-visible span {
  color: white;
}

.panel {
  padding: clamp(80px, 10vw, 170px) 4.8vw;
  border-bottom: 1px solid var(--line);
}

.section-tag {
  color: var(--muted);
  font-size: 9px;
}

.manifesto {
  display: grid;
  grid-template-columns: 18% 50% 1fr;
  gap: 4vw;
}

.manifesto-heading > p,
.principles-heading > p,
.product-title > p,
.vision-kicker {
  margin: 0 0 24px;
  color: var(--cobalt);
  font-size: 9px;
}

.manifesto h2,
.principles-heading h2,
.product-title h2,
.vision h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.manifesto h2 {
  font-size: clamp(54px, 7vw, 120px);
}

.manifesto-copy {
  align-self: end;
}

.manifesto-copy p {
  margin: 0 0 25px;
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.75;
}

.manifesto-copy p:last-child {
  margin-bottom: 0;
}

.principles {
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: 4vw;
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.principles .section-tag {
  color: var(--inverse-muted);
}

.principles-heading h2 {
  max-width: 900px;
  font-size: clamp(58px, 8vw, 132px);
}

.principle-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--inverse-line);
  border-left: 1px solid var(--inverse-line);
}

.principle-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--inverse-line);
  border-bottom: 1px solid var(--inverse-line);
  transition: color 200ms ease, background 200ms ease;
}

.principle-grid article:hover {
  background: var(--cobalt);
  color: white;
}

.principle-grid span {
  font: 400 9px/1 var(--mono);
}

.principle-grid h3 {
  margin: auto 0 14px;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.principle-grid p {
  max-width: 460px;
  margin: 0;
  color: var(--inverse-muted);
  font-size: 12px;
  line-height: 1.6;
}

.principle-grid article:hover p {
  color: white;
}

.product-detail {
  position: relative;
  min-height: 750px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 7vw;
  overflow: hidden;
}

.product-code {
  position: absolute;
  right: -1vw;
  bottom: -12vw;
  color: transparent;
  font-family: var(--display);
  font-size: 40vw;
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(36, 76, 255, 0.16);
  pointer-events: none;
}

.product-title,
.product-body {
  position: relative;
  z-index: 1;
}

.product-title h2 {
  max-width: 850px;
  font-size: clamp(68px, 8.4vw, 145px);
}

.product-body {
  align-self: end;
  padding-bottom: 20px;
}

.product-body > p {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.8;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.product-links a {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.product-links a:hover,
.product-links a:focus-visible {
  background: var(--cobalt);
  color: white;
}

.product-detail-nook {
  background: var(--soft-blue);
}

.vault-links {
  margin-top: 35px;
  border-top: 1px solid var(--soft-blue-line);
}

.vault-links a {
  display: grid;
  grid-template-columns: 35px 120px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-blue-line);
  text-decoration: none;
}

.vault-links span,
.vault-links small,
.vault-links b {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  text-transform: uppercase;
}

.vault-links strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.vault-links small {
  color: var(--soft-blue-muted);
}

.vault-links b {
  font-size: 16px;
  transition: transform 180ms ease;
}

.vault-links a:hover b {
  transform: rotate(45deg);
}

.vision {
  display: grid;
  grid-template-columns: 18% 50% 1fr;
  gap: 4vw;
  background: var(--cobalt);
  color: white;
}

.vision .section-tag,
.vision-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.vision h2 {
  font-size: clamp(60px, 8vw, 135px);
}

.vision-copy {
  align-self: end;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.closing {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  background: var(--paper-bright);
}

.closing .micro-label {
  margin: 0 0 50px;
}

.closing h2 {
  font-size: clamp(90px, 15vw, 250px);
}

.closing-links {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-top: 55px;
}

.closing-links .circle-link {
  margin: 0;
}

.closing-links > a:last-child {
  font: 400 11px/1 var(--mono);
  text-underline-offset: 5px;
}

.early-note {
  margin: auto 0 0;
  padding-top: 70px;
  color: var(--muted);
  font-size: 8px;
}

.site-footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 2.4vw;
  border-top: 1px solid var(--line);
  font: 400 8px/1.5 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer .brand {
  font-size: 10px;
}

.site-footer .brand-mark {
  width: 27px;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes point-pulse {
  0%, 100% { r: 5px; fill: var(--paper); }
  50% { r: 7px; fill: var(--cobalt); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(410px, 0.85fr) minmax(520px, 1.15fr);
  }

  .hero h1 {
    font-size: clamp(80px, 9vw, 120px);
  }

  .crypto-diagram {
    inset: 9% -6% 3%;
    width: 110%;
  }

  .product-detail {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 901px) {
  .crypto-diagram {
    transform: translate(var(--pointer-x, 0), var(--pointer-y, 0));
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .site-header.scrolled + main {
    padding-top: 64px;
  }

  .brand {
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .menu-toggle {
    position: relative;
    z-index: 60;
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 10px;
    border: 1px solid var(--ink);
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    background: var(--paper);
    font-size: 22px;
  }

  .theme-toggle {
    font-size: 22px;
  }

  .theme-glyph {
    width: 18px;
    height: 18px;
  }

  .site-nav.open {
    display: flex;
  }

  .status-dot {
    margin: 15px 0 0;
  }

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

  .hero-copy {
    min-height: calc(100svh - 64px);
    padding: 70px 20px 30px;
  }

  .hero h1 {
    font-size: clamp(78px, 19vw, 145px);
  }

  .crypto-stage {
    min-height: 680px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .crypto-diagram {
    inset: 8% 0 5%;
    width: 100%;
    height: 87%;
  }

  .index-bar {
    grid-template-columns: 80px 130px 1fr;
  }

  .scroll-label {
    display: none;
  }

  .module-body {
    grid-template-columns: 10% 26% 29% minmax(160px, 1fr) 56px;
    padding: 0 20px;
  }

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

  .module-title,
  .module-specs,
  .protocol-trace {
    padding-inline: 18px;
  }

  .module-specs div {
    grid-template-columns: 62px 1fr;
  }

  .module-title h2 {
    font-size: 58px;
  }

  .manifesto,
  .vision {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .manifesto-copy,
  .vision-copy {
    max-width: 620px;
  }

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

  .principle-grid {
    grid-column: 1;
  }

  .product-detail {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .product-body {
    max-width: 660px;
  }

  .product-code {
    right: 0;
    font-size: 70vw;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 30px 20px;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-copy {
    min-height: 740px;
  }

  .micro-label {
    margin-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(64px, 18.5vw, 82px);
    line-height: 0.81;
  }

  .hero-lead {
    max-width: 320px;
    font-size: 13px;
  }

  .trust-line {
    max-width: 300px;
    line-height: 1.8;
  }

  .crypto-stage {
    min-height: 575px;
  }

  .crypto-meta {
    left: 20px;
  }

  .crypto-diagram {
    inset: 7% auto 2%;
    left: 50%;
    width: 770px;
    height: 525px;
    transform: translateX(-49%) scale(0.71);
    transform-origin: center;
  }

  .crypto-legend {
    right: auto;
    bottom: 18px;
    left: 20px;
  }

  .index-bar {
    grid-template-columns: 70px 1fr 1fr;
    padding: 0 5px;
  }

  .index-bar a {
    padding: 0 10px;
  }

  .registry-label {
    font-size: 0;
  }

  .project-module {
    min-height: 0;
  }

  .module-header span:nth-child(2) {
    display: none;
  }

  .module-body {
    min-height: 0;
    grid-template-columns: 58px 1fr 46px;
    padding: 0 20px;
  }

  .module-index {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    align-items: center;
    font-size: 34px;
  }

  .module-title {
    grid-column: 2;
    grid-row: 1;
    min-height: 145px;
  }

  .module-title h2 {
    font-size: 56px;
  }

  .module-specs {
    grid-column: 1 / 3;
    grid-row: 2;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 18px 0;
  }

  .module-specs div {
    grid-template-columns: 90px 1fr;
  }

  .protocol-trace {
    grid-column: 1 / 3;
    grid-row: 3;
    min-height: 165px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 15px 0 22px;
  }

  .protocol-trace svg {
    max-height: 112px;
  }

  .module-link {
    grid-column: 3;
    grid-row: 1 / 4;
  }

  .panel {
    padding: 85px 20px;
  }

  .manifesto h2,
  .principles-heading h2,
  .product-title h2,
  .vision h2 {
    font-size: 58px;
  }

  .manifesto h2 br,
  .product-title h2 br {
    display: none;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .principle-grid article {
    min-height: 230px;
    padding: 25px;
  }

  .vault-links a {
    grid-template-columns: 28px 1fr 18px;
  }

  .vault-links small {
    grid-column: 2;
  }

  .vault-links b {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .closing {
    min-height: 650px;
  }

  .closing h2 {
    font-size: 27vw;
  }

  .closing-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Minimal editorial direction: open composition, reference-faithful crypto plate. */
.site-header {
  height: 78px;
  padding: 0 3vw;
  border-bottom: 0;
}

.site-header.scrolled + main {
  padding-top: 78px;
}

.brand {
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.brand-mark {
  width: 27px;
  height: 20px;
}

.hero {
  min-height: calc(100svh - 78px);
  grid-template-columns: minmax(360px, 0.72fr) minmax(650px, 1.45fr);
  gap: clamp(24px, 3vw, 60px);
  padding: 0 3vw 20px;
  border-bottom: 0;
}

.hero-copy {
  justify-content: flex-start;
  padding: 96px 0 26px;
  container-type: inline-size;
  container-name: hero-copy;
}

.micro-label {
  margin-bottom: 28px;
  color: var(--cobalt);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 620px;
  font-family: var(--sans);
  font-size: clamp(68px, 6.5vw, 112px);
  font-weight: 400;
  letter-spacing: -0.068em;
  line-height: 0.89;
  text-transform: none;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 430px;
  margin-top: 30px;
  color: var(--secondary);
  font-size: clamp(13px, 1vw, 16px);
}

.circle-link {
  gap: 14px;
  margin-top: 30px;
}

.circle-arrow {
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
}

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

.crypto-stage {
  min-height: 650px;
  overflow: visible;
  border-left: 0;
  background: radial-gradient(ellipse at 52% 47%, rgba(36, 76, 255, 0.1), transparent 63%);
}

.crypto-stage > :not(.crypto-plate-art) {
  display: none;
}

.crypto-plate-art {
  position: absolute;
  inset: calc(50% - 44px) auto auto 50%;
  width: min(94%, 980px);
  height: auto;
  transform: translate(-50%, -50%);
  transition: filter 220ms ease;
}

html[data-theme="dark"] .crypto-plate-art {
  filter: invert(1) hue-rotate(180deg) brightness(0.96);
}

@media (min-width: 1001px) and (max-height: 780px) {
  .crypto-plate-art {
    inset: calc(50% + 52px) auto auto 50%;
    width: min(82%, 840px);
  }
}

.index-bar {
  height: 58px;
  grid-template-columns: 200px 1fr 1fr auto;
  gap: 30px;
  margin: 0 3vw;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.index-bar a,
.scroll-label {
  padding: 0;
}

.index-bar a:nth-child(2),
.index-bar a:nth-child(3) {
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: -0.02em;
  text-transform: none;
  border-bottom: 0;
}

.work-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 120px);
  padding: 42px 3vw clamp(90px, 10vw, 155px);
  background: none;
}

.project-module,
.project-module:hover {
  min-height: 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: transparent;
}

.module-header {
  height: auto;
  padding: 16px 0;
  border-bottom: 0;
}

.module-header span:nth-child(2) {
  display: none;
}

.module-body {
  min-height: 0;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  padding: 18px 0 0;
}

.module-index {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-top: 12px;
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 400;
}

.module-title,
.module-specs,
.protocol-trace,
.module-link {
  border-left: 0;
}

.module-title {
  grid-column: 2;
  grid-row: 1;
  padding: 0 12px 30px 0;
}

.module-title h2 {
  font-family: var(--sans);
  font-size: clamp(58px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: none;
}

.module-specs {
  grid-column: 2;
  grid-row: 2;
  padding: 8px 12px 20px 0;
  border-top: 1px solid var(--line);
}

.module-specs div {
  grid-template-columns: 82px 1fr;
  padding: 8px 0;
}

.protocol-trace {
  grid-column: 2;
  grid-row: 3;
  padding: 15px 12px 0 0;
  border-top: 1px solid var(--line);
}

.module-link {
  grid-column: 3;
  grid-row: 1;
  width: auto;
  min-width: clamp(142px, 13vw, 176px);
  height: 52px;
  align-self: start;
  flex-direction: row;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid var(--cobalt);
  border-radius: 999px;
  background: var(--cobalt);
  color: var(--accent-contrast);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(36, 76, 255, 0.18);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.module-link span {
  display: inline;
  writing-mode: horizontal-tb;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.module-link b {
  font: 500 16px/1 var(--mono);
}

.project-module:hover .module-link,
.module-link:hover,
.module-link:focus-visible {
  border-color: var(--ultramarine);
  background: var(--ultramarine);
  color: var(--accent-contrast);
  box-shadow: 0 12px 34px rgba(36, 76, 255, 0.28);
  transform: translateY(-2px);
}

.module-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.panel {
  padding: clamp(90px, 11vw, 170px) 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.manifesto {
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
  grid-template-rows: auto auto;
  column-gap: clamp(56px, 7vw, 140px);
  row-gap: 28px;
}

.manifesto > .section-tag {
  grid-column: 1;
  grid-row: 1;
}

.manifesto-heading {
  grid-column: 1;
  grid-row: 2;
}

.manifesto-copy {
  grid-column: 2;
  grid-row: 2;
}

.vision {
  grid-template-columns: 16% minmax(0, 1.5fr) minmax(240px, 0.65fr);
}

.manifesto h2,
.principles-heading h2,
.product-title h2,
.vision h2,
.closing h2 {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: none;
}

.principles {
  background: var(--paper-bright);
  color: var(--ink);
}

.principles .section-tag,
.principle-grid p {
  color: var(--muted);
}

.principle-grid {
  gap: 34px;
  border: 0;
}

.principle-grid article {
  min-height: 220px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}

.principle-grid article:hover {
  background: transparent;
  color: var(--ink);
}

.principle-grid article:hover p {
  color: var(--muted);
}

.principle-grid h3 {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: none;
}

.product-detail {
  min-height: 620px;
}

.product-code {
  display: none;
}

.product-detail-nook {
  margin: 0 2vw;
  border-radius: 42px;
  background: var(--soft-blue);
}

.product-links a {
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 0 2px;
}

.vault-links strong {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: none;
}

.vision {
  background: var(--paper);
  color: var(--ink);
}

.vision .section-tag,
.vision-kicker {
  color: var(--cobalt);
}

.closing {
  min-height: 610px;
}

.closing h2 {
  font-size: clamp(80px, 12vw, 190px);
}

@media (max-width: 1200px) {
  .manifesto,
  .vision {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .manifesto > .section-tag,
  .manifesto-heading,
  .manifesto-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .manifesto-copy,
  .vision-copy {
    max-width: 700px;
  }

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

  .principle-grid {
    grid-column: 1;
  }

  .product-detail {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 70px;
  }

  .product-body {
    max-width: 700px;
  }
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    min-height: 600px;
  }

  .crypto-stage {
    min-height: min(76vw, 650px);
  }

  .crypto-plate-art {
    inset: 50% auto auto 50%;
    width: min(100%, 920px);
  }

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

@media (max-width: 700px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .hero {
    padding: 0 20px 24px;
  }

  .hero-copy {
    min-height: 560px;
    padding-top: 54px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(54px, 15vw, 64px);
    line-height: 0.9;
    overflow-wrap: normal;
  }

  .crypto-stage {
    min-height: 360px;
    margin: 0;
    overflow: hidden;
  }

  .crypto-plate-art {
    width: calc(100% + 12px);
    max-width: none;
    transform: translate(-50%, -50%);
  }

  .index-bar {
    height: 60px;
    grid-template-columns: 1fr 1fr;
    margin: 0 20px;
  }

  .registry-label,
  .scroll-label {
    display: none !important;
  }

  .work-section {
    padding: 36px 20px 90px;
  }

  .panel {
    padding: 84px 20px;
  }

  .manifesto,
  .vision {
    grid-template-columns: 1fr;
  }

  .manifesto-heading,
  .vision-kicker {
    margin-top: 42px;
  }

  .manifesto-copy,
  .vision-copy {
    margin-top: 38px;
  }

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

  .principle-grid {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .product-detail-nook {
    margin: 0 10px;
    border-radius: 28px;
  }
}

@media (max-width: 520px) {
  .module-body {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .module-title {
    grid-column: 2;
    grid-row: 1;
  }

  .module-link {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: 58px;
    margin: 8px 0 28px;
  }

  .module-specs {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .protocol-trace {
    grid-column: 1 / -1;
    grid-row: 4;
  }
}

/* Vision layout: keep the headline in the primary column at every width. */
.vision {
  grid-template-columns: 16% minmax(0, 1.5fr) minmax(240px, 0.65fr);
  align-items: start;
}

.vision-heading {
  min-width: 0;
}

.vision-heading h2 {
  max-width: 11ch;
  font-size: clamp(64px, 7vw, 118px);
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.vision-copy {
  align-self: end;
}

@media (max-width: 1200px) {
  .vision {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .vision-heading h2 {
    max-width: 12ch;
  }

  .vision-copy {
    max-width: 700px;
  }
}

@media (max-width: 700px) {
  .vision-heading h2 {
    max-width: 100%;
    font-size: clamp(54px, 14vw, 72px);
  }
}

/* Lower-page actions preserve the same primary/secondary hierarchy. */
.product-links a:first-child {
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--cobalt);
  background: var(--cobalt);
  color: white;
}

.product-links a:first-child:hover,
.product-links a:first-child:focus-visible {
  border-color: var(--ultramarine);
  background: var(--ultramarine);
}

.product-links a:not(:first-child) {
  color: var(--secondary);
}

.vault-links a {
  transition: background 180ms ease, padding 180ms ease;
}

.vault-links a:hover,
.vault-links a:focus-visible {
  padding-inline: 14px;
  background: color-mix(in srgb, var(--cobalt) 7%, transparent);
}

/* Compact proof links: direct routes live beside the hero copy. */
.hero {
  grid-template-areas: "copy stage";
  grid-template-rows: minmax(620px, calc(100svh - 78px));
}

.hero-copy {
  grid-area: copy;
}

.crypto-stage {
  grid-area: stage;
}

.hero-copy,
.crypto-stage {
  min-height: 0;
}

.hero-actions {
  width: min(100%, 540px);
  margin-top: 30px;
}

.launch-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.launch-gate {
  position: relative;
  min-width: 0;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: stretch;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.launch-gate::before,
.launch-gate::after {
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  background: var(--paper);
}

.launch-gate::before { left: 0; }
.launch-gate::after {
  right: 0;
  border-color: var(--signal);
  background: var(--signal);
}

.gate-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  padding: 10px 12px 9px 2px;
}

.system-tag,
.endpoint,
.proof-line,
.compare-link {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-tag,
.endpoint,
.proof-line {
  color: var(--muted);
}

.system-tag {
  grid-column: 1;
  font-size: 8px;
}

.gate-title {
  grid-column: 1;
  overflow: hidden;
  font: 500 clamp(16px, 1.25vw, 20px)/1.1 var(--sans);
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.endpoint {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  writing-mode: vertical-rl;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.endpoint::before {
  content: "";
}

.gate-action {
  position: relative;
  display: grid;
  place-items: center;
  border-left: 1px dashed var(--line);
  background: transparent;
  color: var(--ink);
  font: 500 16px/1 var(--mono);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gate-action::before {
  position: absolute;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.launch-gate:hover,
.launch-gate:focus-visible {
  border-color: var(--signal);
  background: color-mix(in srgb, var(--signal) 7%, transparent);
  transform: translateY(-1px);
}

.launch-gate:hover .gate-action,
.launch-gate:focus-visible .gate-action {
  background: var(--ink);
  color: var(--paper);
  transform: translateX(2px);
}

.launch-gate:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* Weighted project launch gates: Proof Rail 1, Key Shard 1, ZK Gate 2. */
.crypto-cta {
  position: relative;
  min-width: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  padding: 0 16px 0 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-bright) 58%, transparent);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.crypto-cta .cta-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: inherit;
  font-family: var(--mono);
  writing-mode: horizontal-tb;
}

.crypto-cta .cta-copy small {
  overflow: hidden;
  color: var(--muted);
  font: 400 8px/1 var(--mono);
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.crypto-cta .cta-copy strong {
  overflow: hidden;
  color: inherit;
  font: 500 clamp(12px, 1vw, 15px)/1 var(--mono);
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.crypto-cta .cta-arrow {
  color: inherit;
  font: 500 17px/1 var(--mono);
  text-align: center;
  writing-mode: horizontal-tb;
}

.crypto-cta .cta-proof {
  position: relative;
  width: 58px;
  height: 52px;
  color: inherit;
  writing-mode: horizontal-tb;
}

.crypto-cta:hover,
.crypto-cta:focus-visible {
  transform: translateY(-2px);
}

.crypto-cta:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}

.compare-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--secondary);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.compare-link:hover,
.compare-link:focus-visible {
  color: var(--cobalt);
}

/* 01 / Proof Rail */
html[data-cta-variant="proof"] .crypto-cta {
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 0;
  padding: 0;
  border-left: 3px solid var(--cobalt);
  background: color-mix(in srgb, var(--cobalt) 7%, transparent);
}

html[data-cta-variant="proof"] .crypto-cta::before,
html[data-cta-variant="proof"] .crypto-cta::after {
  position: absolute;
  right: 72px;
  width: 48px;
  height: 1px;
  content: "";
  background: var(--line);
}

html[data-cta-variant="proof"] .crypto-cta::before { top: 14px; }
html[data-cta-variant="proof"] .crypto-cta::after { bottom: 14px; }

html[data-cta-variant="proof"] .crypto-cta .cta-proof {
  display: none;
}

html[data-cta-variant="proof"] .crypto-cta .cta-copy {
  padding: 16px 20px;
}

html[data-cta-variant="proof"] .crypto-cta .cta-arrow {
  align-self: stretch;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
}

html[data-cta-variant="proof"] .crypto-cta:hover,
html[data-cta-variant="proof"] .crypto-cta:focus-visible {
  border-color: var(--cobalt);
  background: color-mix(in srgb, var(--cobalt) 13%, transparent);
}

html[data-cta-variant="proof"] .crypto-cta:hover .cta-arrow,
html[data-cta-variant="proof"] .crypto-cta:focus-visible .cta-arrow {
  background: var(--cobalt);
  color: white;
}

/* 02 / Key Shard */
html[data-cta-variant="shard"] .crypto-cta {
  border: 0;
  clip-path: polygon(12px 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 12px 100%, 0 50%);
  background: var(--ink);
  color: var(--paper);
}

html[data-cta-variant="shard"] .crypto-cta .cta-proof {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 100% 34%, 84% 100%, 16% 100%, 0 34%);
  background: var(--cobalt);
  color: white;
}

html[data-cta-variant="shard"] .crypto-cta .cta-proof::before {
  content: "KEY";
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.08em;
}

html[data-cta-variant="shard"] .crypto-cta[data-product="id0"] .cta-proof::before {
  content: "3 / 5";
}

html[data-cta-variant="shard"] .crypto-cta .cta-copy small {
  color: color-mix(in srgb, var(--paper) 62%, transparent);
}

html[data-cta-variant="shard"] .crypto-cta:hover .cta-proof,
html[data-cta-variant="shard"] .crypto-cta:focus-visible .cta-proof {
  transform: rotate(7deg);
}

/* 03 / ZK Gate */
html[data-cta-variant="zk"] .crypto-cta {
  background: transparent;
}

html[data-cta-variant="zk"] .crypto-cta::after {
  position: absolute;
  right: 48px;
  bottom: 13px;
  left: 82px;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--cobalt) 0 6px, transparent 6px 12px);
}

html[data-cta-variant="zk"] .crypto-cta .cta-proof::before,
html[data-cta-variant="zk"] .crypto-cta .cta-proof::after {
  position: absolute;
  top: 17px;
  width: 17px;
  height: 17px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

html[data-cta-variant="zk"] .crypto-cta .cta-proof::before { left: 5px; }

html[data-cta-variant="zk"] .crypto-cta .cta-proof::after {
  right: 4px;
  border-color: var(--cobalt);
  background: var(--cobalt);
}

html[data-cta-variant="zk"] .crypto-cta .cta-proof > span {
  position: absolute;
  top: 25px;
  right: 18px;
  left: 22px;
  border-top: 1px dashed var(--muted);
}

html[data-cta-variant="zk"] .crypto-cta .cta-copy small::before {
  content: "● ";
  color: var(--cobalt);
}

html[data-cta-variant="zk"] .crypto-cta:hover,
html[data-cta-variant="zk"] .crypto-cta:focus-visible {
  border-color: var(--cobalt);
  background: color-mix(in srgb, var(--cobalt) 8%, transparent);
}

.module-link.crypto-cta {
  --cobalt: var(--signal);
  --ultramarine: var(--signal);
  grid-column: 2;
  grid-row: 4;
  width: min(100%, 280px);
  min-width: 0;
  min-height: 68px;
  height: auto;
  align-self: start;
  justify-self: center;
  display: grid;
  padding: 0 16px 0 10px;
  margin: 18px 12px 0 0;
  border-radius: 0;
  box-shadow: none;
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}

html[data-cta-variant="proof"] .module-link.crypto-cta {
  padding: 0;
}

.project-module:hover .module-link.crypto-cta {
  border-color: var(--line);
  background: color-mix(in srgb, var(--paper-bright) 58%, transparent);
  color: var(--ink);
  transform: none;
}

html[data-cta-variant="shard"] .project-module:hover .module-link.crypto-cta {
  border: 0;
  background: var(--ink);
  color: var(--paper);
}

html[data-cta-variant="proof"] .project-module:hover .module-link.crypto-cta {
  border-color: var(--line);
  border-left-color: var(--cobalt);
  background: color-mix(in srgb, var(--cobalt) 7%, transparent);
}

html[data-cta-variant="zk"] .project-module:hover .module-link.crypto-cta:hover,
html[data-cta-variant="zk"] .project-module:hover .module-link.crypto-cta:focus-visible {
  border-color: var(--cobalt);
  background: color-mix(in srgb, var(--cobalt) 8%, transparent);
  transform: translateY(-2px);
}

html[data-cta-variant="proof"] .project-module:hover .module-link.crypto-cta:hover,
html[data-cta-variant="proof"] .project-module:hover .module-link.crypto-cta:focus-visible {
  border-color: var(--cobalt);
  background: color-mix(in srgb, var(--cobalt) 13%, transparent);
  transform: translateY(-2px);
}

html[data-cta-variant="shard"] .project-module:hover .module-link.crypto-cta:hover,
html[data-cta-variant="shard"] .project-module:hover .module-link.crypto-cta:focus-visible {
  transform: translateY(-2px);
}

@media (max-width: 1180px) and (min-width: 1001px) {
  .module-body {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .module-link.crypto-cta {
    grid-column: 1 / -1;
    grid-row: 4;
    width: min(100%, 280px);
    margin: 18px 0 0;
  }

  .module-specs {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .protocol-trace {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 1000px) {
  .hero {
    grid-template-areas:
      "copy"
      "stage";
    grid-template-rows: auto auto;
  }

  .hero-copy {
    min-height: 520px;
  }

  .crypto-stage {
    min-height: min(76vw, 650px);
    overflow: hidden;
  }
}

@media (max-width: 700px) {
  .hero-copy {
    min-height: 0;
  }

  .hero-actions {
    width: 100%;
    margin-top: 26px;
  }

  .crypto-cta {
    min-height: 78px;
  }

  .module-body {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .module-link.crypto-cta {
    grid-column: 1 / -1;
    grid-row: 4;
    width: min(100%, 280px);
    min-width: 0;
    margin: 18px 0 0;
  }

  .module-specs {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .protocol-trace {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 620px) {
  .launch-deck {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .launch-gate {
    min-height: 64px;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    min-height: 0;
  }

  .module-link.crypto-cta {
    width: min(100%, 280px);
    min-width: 0;
    min-height: 68px;
    height: auto;
    margin: 18px 0 0;
  }
}

/* Compact, organic page rhythm: keep related content visually connected. */
:root {
  --section-space-y: clamp(64px, 6vw, 88px);
}

.panel {
  padding-block: var(--section-space-y);
}

.work-section {
  padding-top: 32px;
  padding-bottom: var(--section-space-y);
}

.principle-grid {
  gap: clamp(22px, 2.4vw, 34px);
  margin-top: clamp(38px, 4vw, 54px);
}

.principle-grid article {
  min-height: 180px;
  padding-block: 20px;
}

.product-detail {
  min-height: 0;
}

.product-body {
  padding-bottom: 0;
}

.closing {
  min-height: 520px;
}

.closing .micro-label {
  margin-bottom: 30px;
}

.closing-links {
  margin-top: 36px;
}

.early-note {
  padding-top: 36px;
}

@media (min-width: 1001px) {
  .hero {
    min-height: 0;
    grid-template-rows: minmax(500px, calc(62svh - 8px));
    padding-bottom: 12px;
  }

  .hero-copy {
    padding: 32px 0 20px;
  }

  .hero-copy .micro-label {
    margin-bottom: 20px;
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .crypto-plate-art {
    inset: calc(50% - 44px) auto auto 50%;
  }

  .trust-line {
    margin: 36px 0 0;
    padding-top: 0;
  }
}

@media (min-width: 1001px) and (max-height: 780px) {
  .crypto-plate-art {
    inset: calc(50% - 22px) auto auto 50%;
    width: min(78%, 800px);
  }
}

@media (max-width: 1200px) {
  .manifesto,
  .vision {
    gap: 32px;
  }

  .product-detail {
    gap: 46px;
  }
}

@media (max-width: 1000px) {
  :root {
    --section-space-y: clamp(54px, 8vw, 72px);
  }

  .hero-copy {
    padding-top: 62px;
    padding-bottom: 20px;
  }

  .hero-copy .micro-label {
    margin-bottom: 22px;
  }

  .hero-lead,
  .hero-actions {
    margin-top: 24px;
  }

  .trust-line {
    margin: 32px 0 0;
    padding-top: 0;
  }

  .crypto-stage {
    min-height: min(68vw, 560px);
  }
}

@media (max-width: 700px) {
  :root {
    --section-space-y: 54px;
  }

  .work-section {
    padding: 28px 20px 58px;
  }

  .panel {
    padding: var(--section-space-y) 20px;
  }

  .manifesto,
  .vision {
    gap: 28px;
  }

  .manifesto-heading,
  .vision-kicker,
  .manifesto-copy,
  .vision-copy {
    margin-top: 0;
  }

  .principle-grid {
    margin-top: 36px;
  }

  .product-detail {
    gap: 34px;
  }

  .crypto-stage {
    min-height: min(78vw, 420px);
  }

  .closing {
    min-height: 0;
  }

  .early-note {
    margin-top: 36px;
    padding-top: 0;
  }
}

/* Product actions use the same proof-gate language as the system modules. */
.product-links {
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.product-links a:first-child,
.product-links a:first-child:hover,
.product-links a:first-child:focus-visible {
  position: relative;
  min-width: 188px;
  min-height: 50px;
  justify-content: space-between;
  padding: 0 24px 0 42px;
  border: 0;
  clip-path: polygon(10px 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 10px 100%, 0 50%);
  background: var(--inverse-bg);
  color: var(--inverse-fg);
  box-shadow: inset 0 0 0 1px var(--inverse-line);
}

.product-links a:first-child::before {
  position: absolute;
  top: 50%;
  left: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--signal);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--signal) 18%, transparent);
  transform: translateY(-50%);
}

.product-links a:first-child:hover,
.product-links a:first-child:focus-visible {
  background: var(--signal);
  color: #fff;
  box-shadow: none;
  transform: translateY(-2px);
}

.product-links a:first-child:hover::before,
.product-links a:first-child:focus-visible::before {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.product-links a:not(:first-child),
.product-links a:not(:first-child):hover,
.product-links a:not(:first-child):focus-visible {
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px dashed var(--signal);
  background: transparent;
  color: var(--secondary);
  box-shadow: none;
}

.product-links a:not(:first-child):hover,
.product-links a:not(:first-child):focus-visible {
  color: var(--ink);
  transform: translateX(3px);
}

.product-links a span {
  color: var(--signal);
}

.product-links a:first-child:hover span,
.product-links a:first-child:focus-visible span {
  color: currentColor;
}

@media (max-width: 520px) {
  .product-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-links a:first-child {
    width: min(100%, 240px);
  }

  .product-links a:not(:first-child) {
    width: fit-content;
  }
}

/* Closing action is one coherent proof gate, not a detached icon and label. */
.closing-links .closing-gate,
.closing-links .closing-gate:hover,
.closing-links .closing-gate:focus-visible {
  position: relative;
  width: 218px;
  min-height: 50px;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 0 22px 0 42px;
  clip-path: polygon(10px 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 10px 100%, 0 50%);
  background: var(--inverse-bg);
  color: var(--inverse-fg);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.closing-links .closing-gate::before {
  position: absolute;
  top: 50%;
  left: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--signal);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--signal) 18%, transparent);
  transform: translateY(-50%);
}

.closing-links .closing-gate .circle-arrow,
.closing-links .closing-gate:hover .circle-arrow,
.closing-links .closing-gate:focus-visible .circle-arrow {
  order: 2;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--signal);
  font-size: 14px;
  transform: none;
}

.closing-links .closing-gate:hover,
.closing-links .closing-gate:focus-visible {
  background: var(--signal);
  color: #fff;
  transform: translateY(-2px);
}

.closing-links .closing-gate:hover::before,
.closing-links .closing-gate:focus-visible::before {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.closing-links .closing-gate:hover .circle-arrow,
.closing-links .closing-gate:focus-visible .circle-arrow {
  color: currentColor;
}

@media (max-width: 520px) {
  .closing-links .closing-gate {
    width: min(100%, 240px);
  }
}

/* Keep the desktop composition intact until navigation enters its mobile state.
   Previously the hero stacked at 1000px while the header stayed desktop down to
   900px, leaving an empty right half at common laptop and scaled-browser widths. */
@media (min-width: 901px) and (max-width: 1000px) {
  .hero {
    min-height: 0;
    grid-template-areas: "copy stage";
    grid-template-columns: minmax(350px, 0.78fr) minmax(0, 1.22fr);
    grid-template-rows: minmax(500px, calc(62svh - 8px));
    gap: clamp(18px, 2.4vw, 30px);
    padding: 0 3vw 12px;
  }

  .hero-copy {
    min-height: 0;
    padding: 32px 0 20px;
  }

  .crypto-stage {
    min-height: 0;
    overflow: visible;
  }

  .crypto-plate-art {
    inset: calc(50% - 34px) auto auto 50%;
    width: min(104%, 820px);
  }
}

/* Wide-screen hero safety: the plate must fit the stage vertically as well as
   horizontally, and the copy needs enough height to clear the project index. */
@media (min-width: 1001px) {
  .hero {
    grid-template-rows: minmax(620px, calc(62svh - 8px));
  }

  .hero-copy {
    padding-bottom: 32px;
  }

  .crypto-stage {
    overflow: hidden;
  }

  .crypto-plate-art {
    inset: 50% auto auto 50%;
    width: min(94%, 980px);
    max-height: calc(100% - 28px);
    object-fit: contain;
  }

  .trust-line {
    margin-top: 28px;
  }
}

@media (min-width: 1001px) and (max-height: 780px) {
  .crypto-plate-art {
    width: min(82%, 840px);
  }
}

/* Size the rotating phrase from the copy column (cqi), not the viewport —
   otherwise "master password" + caret overflows the narrower hero track. */
.hero h1 .privacy-slot {
  position: relative;
  height: clamp(48px, 5.2vw, 84px);
  height: clamp(48px, 12cqi, 84px);
  overflow: visible;
}

.hero h1 .privacy-term {
  position: absolute;
  inset: 0 auto auto 0;
  font-size: clamp(34px, 3.4vw, 68px);
  font-size: clamp(34px, 9.4cqi, 68px);
  letter-spacing: -0.06em;
  line-height: 1.08;
  white-space: nowrap;
}

.hero h1 .privacy-term::after {
  content: "";
  display: inline-block;
  width: 0.07em;
  height: 0.82em;
  margin-left: 0.06em;
  background: currentColor;
  vertical-align: -0.04em;
  animation: privacy-caret 1.05s steps(1, end) infinite;
}

@keyframes privacy-caret {
  0%,
  45% {
    opacity: 1;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero h1 .privacy-term::after {
    display: none;
  }
}
