:root {
  --canvas: #f5efe6;
  --paper: #fffaf4;
  --ink: #171719;
  --ink-2: #27262b;
  --muted: #66636b;
  --line: rgba(23, 23, 25, .16);
  --line-light: rgba(255, 250, 244, .16);
  --coral: #ff5a42;
  --ultra: #4a40ff;
  --ultra-deep: #342cc6;
  --acid: #d9ff62;
  --lilac: #c8bcff;
  --sand: #e5d8c7;
  --radius: 28px;
  --display: "Arial Black", "Arial Narrow", Arial, Helvetica, sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --ease: cubic-bezier(.2,.75,.2,1);
  --shadow: 0 28px 80px rgba(23,23,25,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { color: var(--paper); background: var(--ultra); }

.shell { width: min(1400px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 138px 0; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--ultra); outline-offset: 4px; }

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--coral);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 88px;
  background: rgba(245, 239, 230, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  height: 74px;
  border-color: var(--line);
  background: rgba(245, 239, 230, .95);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}
.wordmark-symbol {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
}
.wordmark-symbol i,
.wordmark-symbol b {
  position: absolute;
  display: block;
  content: "";
}
.wordmark-symbol i {
  width: 18px;
  height: 18px;
  right: 0;
  top: 0;
  border-radius: 50%;
  background: var(--coral);
}
.wordmark-symbol b {
  width: 18px;
  height: 7px;
  left: 9px;
  top: 14px;
  background: var(--paper);
  transform: rotate(-45deg);
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.nav-cta) {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.site-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { background: var(--ultra); transform: translateY(-2px); }
.menu-button { display: none; }

/* Shared */
.kicker,
.section-label,
.principle-top,
.panel-caption span,
.board-head,
.board-label,
.form-head,
.hero-art-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}
.section-label.light { color: rgba(255,250,244,.74); border-color: var(--line-light); }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-3px); }
.button-ink { color: var(--paper); background: var(--ink); box-shadow: 0 12px 32px rgba(23,23,25,.14); }
.button-ink:hover { background: var(--ultra); box-shadow: 0 16px 36px rgba(74,64,255,.25); }
.button-ghost { background: transparent; }
.button-ghost:hover { color: var(--paper); background: var(--ink); }
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-one { transition-delay: .10s; }
.reveal-delay-two { transition-delay: .20s; }
.reveal-delay-three { transition-delay: .30s; }

/* Hero */
.hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 13%, rgba(200,188,255,.52), transparent 25%),
    var(--canvas);
  border-bottom: 1px solid var(--ink);
}
.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,250,244,.44));
  border-left: 1px solid rgba(23,23,25,.09);
}
.hero-rule {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(23,23,25,.12);
}
.hero-rule-one { top: 232px; }
.hero-rule-two { bottom: 118px; }
.hero-corner {
  position: absolute;
  z-index: 2;
  top: 124px;
  right: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .09em;
  writing-mode: vertical-rl;
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 26px;
  align-items: center;
  min-height: 730px;
  padding-top: 28px;
}
.hero-copy { padding: 68px 0 72px; }
.kicker {
  display: flex;
  max-width: 350px;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ink);
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(78px, 8.1vw, 128px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--coral);
  font-style: normal;
  white-space: nowrap;
}
.hero h1 em::after {
  position: absolute;
  right: .03em;
  bottom: -.08em;
  left: .04em;
  height: .09em;
  content: "";
  background: var(--ink);
  transform: rotate(-1deg);
}
.hero-copy > p {
  max-width: 590px;
  margin: 38px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note {
  display: flex;
  max-width: 590px;
  align-items: center;
  gap: 12px;
  margin-top: 31px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.pulse-dot {
  position: relative;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ultra);
}
.pulse-dot::after {
  position: absolute;
  inset: -6px;
  content: "";
  border: 1px solid var(--ultra);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { opacity: .6; transform: scale(.5); } 75%,100% { opacity: 0; transform: scale(1.4); } }
.hero-art {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 38px 0 28px;
}
.hero-art::before {
  position: absolute;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  background: var(--lilac);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .48;
}
.hero-art img { width: min(100%, 900px); filter: drop-shadow(0 30px 46px rgba(23,23,25,.08)); }
.hero-art-label {
  position: absolute;
  z-index: 4;
  top: 60px;
  right: 10px;
  padding: 9px 13px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
}
.hero-index {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 118px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.hero-index > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 17px;
  padding: 0 28px;
  border-right: 1px solid var(--ink);
}
.hero-index > div:last-child { border-right: 0; }
.hero-index strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 11px;
}
.hero-index span { font-size: 15px; font-weight: 720; }

/* Ticker */
.ticker { overflow: hidden; color: var(--paper); background: var(--ink); border-bottom: 1px solid var(--ink); }
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding-inline: 28px;
  animation: ticker 32s linear infinite;
}
.ticker span { font-family: var(--display); font-size: 16px; letter-spacing: .04em; }
.ticker i { color: var(--coral); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Manifesto */
.manifesto { background: var(--paper); }
.manifesto-heading h2 {
  max-width: 1180px;
  margin: 47px 0 70px;
  font-family: var(--display);
  font-size: clamp(50px, 6.3vw, 94px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.067em;
  text-transform: uppercase;
}
.manifesto-heading mark {
  position: relative;
  z-index: 1;
  padding: 0 .08em;
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}
.manifesto-heading mark::before {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: .03em;
  left: 0;
  height: .48em;
  content: "";
  background: var(--acid);
  transform: rotate(-1deg);
}
.manifesto-grid { display: grid; grid-template-columns: 1.05fr .9fr 1.05fr; gap: 18px; }
.principle-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 4px;
}
.principle-card-dark { color: var(--paper); background: var(--ink); }
.principle-card-coral { background: var(--coral); }
.principle-card-lilac { background: var(--lilac); }
.principle-top { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid currentColor; }
.principle-card h3 { margin: auto 0 12px; font-size: 29px; line-height: 1.1; letter-spacing: -.045em; }
.principle-card p { max-width: 360px; margin: 0; opacity: .72; }
.shape-stack {
  position: relative;
  width: 250px;
  height: 190px;
  margin: 55px auto 30px;
}
.shape-stack i {
  position: absolute;
  display: block;
  width: 150px;
  height: 92px;
  border: 1px solid rgba(255,250,244,.45);
  border-radius: 20px;
  background: #242329;
}
.shape-stack i:nth-child(1) { left: 0; top: 0; transform: rotate(-8deg); }
.shape-stack i:nth-child(2) { right: 0; top: 40px; background: var(--ultra); transform: rotate(8deg); }
.shape-stack i:nth-child(3) { left: 50px; bottom: 0; background: var(--acid); transform: rotate(-2deg); }
.shape-stack i:nth-child(3)::before,
.shape-stack i:nth-child(3)::after {
  position: absolute;
  left: 18px;
  height: 7px;
  content: "";
  border-radius: 5px;
  background: var(--ink);
}
.shape-stack i:nth-child(3)::before { top: 28px; width: 80px; }
.shape-stack i:nth-child(3)::after { top: 45px; width: 55px; opacity: .4; }
.dial {
  position: relative;
  width: 184px;
  height: 184px;
  margin: 49px auto 27px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--ink) 0 2deg, transparent 2deg 12deg);
}
.dial::before {
  position: absolute;
  inset: 22px;
  content: "";
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.dial span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.dial b {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 50%;
  width: 5px;
  height: 74px;
  background: var(--paper);
  border-radius: 5px;
  transform: translateX(-50%) rotate(36deg);
  transform-origin: 50% 66px;
}
.record-bars {
  display: flex;
  height: 190px;
  align-items: end;
  justify-content: center;
  gap: 13px;
  margin: 48px 0 27px;
  padding: 20px 30px;
  border: 1px solid var(--ink);
  background: rgba(255,250,244,.28);
}
.record-bars i { display: block; width: 46px; border: 1px solid var(--ink); background: var(--paper); }
.record-bars i:nth-child(1) { height: 48px; }
.record-bars i:nth-child(2) { height: 86px; background: var(--coral); }
.record-bars i:nth-child(3) { height: 125px; background: var(--acid); }
.record-bars i:nth-child(4) { height: 150px; background: var(--ink); }

/* System */
.system { color: var(--paper); background: var(--ink); }
.system-title-row {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  margin: 44px 0 68px;
}
.system-title-row h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.system-title-row p { max-width: 450px; margin: 0 0 4px; color: rgba(255,250,244,.64); font-size: 17px; }
.system-stage {
  display: grid;
  grid-template-columns: 330px 1fr;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(255,250,244,.24);
}
.tab-list { display: flex; flex-direction: column; border-right: 1px solid rgba(255,250,244,.24); }
.tab-list button {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 7px 14px;
  flex: 1;
  padding: 34px 30px;
  color: rgba(255,250,244,.48);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,250,244,.18);
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}
.tab-list button:last-child { border-bottom: 0; }
.tab-list button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  content: "";
  background: var(--coral);
  transform: scaleY(0);
  transition: transform .25s var(--ease);
}
.tab-list button:hover { color: var(--paper); background: rgba(255,250,244,.04); }
.tab-list button[aria-selected="true"] { color: var(--paper); background: rgba(255,250,244,.07); }
.tab-list button[aria-selected="true"]::before { transform: scaleY(1); }
.tab-list button > span { grid-row: 1 / 3; font-family: var(--mono); font-size: 11px; }
.tab-list strong { font-size: 18px; line-height: 1.2; letter-spacing: -.02em; }
.tab-list small { color: inherit; font-size: 12px; line-height: 1.5; opacity: .72; }
.tab-panels { position: relative; overflow: hidden; background: #211f25; }
.tab-panel {
  height: 100%;
  padding: 28px;
  animation: panel-in .45s var(--ease);
}
.tab-panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.panel-caption { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.panel-caption p { margin: 0; color: rgba(255,250,244,.58); font-size: 12px; }
.tab-panel img { width: 100%; height: calc(100% - 40px); object-fit: contain; }

/* Flow */
.flow { position: relative; overflow: hidden; background: var(--coral); }
.flow::before {
  position: absolute;
  top: -180px;
  right: -90px;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(23,23,25,.05), 0 0 0 104px rgba(23,23,25,.04);
}
.flow-heading { display: grid; grid-template-columns: .8fr 1fr .6fr; gap: 55px; align-items: end; }
.flow-heading .section-label { align-self: start; }
.flow-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 98px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.flow-heading > p { margin: 0 0 6px; font-size: 17px; }
.flow-visual { margin: 78px 0 48px; }
.flow-visual img { width: 100%; }
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); list-style: none; }
.flow-steps li { min-height: 255px; padding: 27px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.flow-steps span { font-family: var(--mono); font-size: 11px; }
.flow-steps h3 { margin: 75px 0 10px; font-size: 23px; letter-spacing: -.03em; }
.flow-steps p { margin: 0; font-size: 13px; line-height: 1.55; }

/* Signals */
.signals { background: var(--canvas); }
.signals-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: center; }
.signals-copy h2 {
  margin: 44px 0 24px;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 900;
  line-height: .91;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.signals-copy > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; }
.check-list { display: grid; gap: 14px; margin: 33px 0 0; padding: 28px 0 0; border-top: 1px solid var(--line); list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; font-weight: 650; }
.check-list span { color: var(--coral); font-size: 18px; }
.signal-board { padding: 24px; color: var(--paper); background: var(--ultra); border-radius: 36px; box-shadow: var(--shadow); transform: rotate(1deg); }
.board-head { display: flex; justify-content: space-between; gap: 24px; padding: 6px 4px 20px; color: rgba(255,250,244,.78); }
.board-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; }
.board-card { min-height: 170px; padding: 22px; color: var(--ink); background: var(--paper); border-radius: 20px; }
.board-card-wide { grid-row: span 2; min-height: 354px; }
.board-label { display: block; margin-bottom: 22px; }
.action-row { display: grid; grid-template-columns: 12px 1fr auto; gap: 13px; align-items: center; padding: 17px 0; border-top: 1px solid var(--line); }
.status { display: block; width: 10px; height: 10px; border-radius: 50%; }
.status-coral { background: var(--coral); }
.status-lilac { background: var(--lilac); }
.status-acid { background: var(--acid); border: 1px solid var(--ink); }
.action-row strong, .action-row small { display: block; }
.action-row strong { font-size: 13px; }
.action-row small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.action-row b { font-family: var(--mono); font-size: 9px; }
.board-card-acid { background: var(--acid); }
.board-card-ink { color: var(--paper); background: var(--ink); }
.board-card-chart { grid-column: 1 / -1; min-height: 190px; }
.board-number { display: block; margin-top: 18px; font-family: var(--display); font-size: 56px; line-height: .9; letter-spacing: -.06em; }
.board-card > small { display: block; margin-top: 15px; font-size: 10px; opacity: .68; }
.avatar-stack { display: flex; margin: 33px 0 25px; }
.avatar-stack i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: -8px;
  color: var(--ink);
  background: var(--lilac);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}
.avatar-stack i:first-child { margin-left: 0; background: var(--coral); }
.avatar-stack i:nth-child(3) { background: var(--acid); }
.avatar-stack i:nth-child(4) { background: var(--paper); }
.mini-chart { display: flex; height: 90px; align-items: end; gap: 10px; margin-top: 12px; padding-top: 10px; border-bottom: 1px solid var(--ink); }
.mini-chart i { flex: 1; border: 1px solid var(--ink); background: var(--lilac); border-radius: 6px 6px 0 0; }
.mini-chart i:nth-child(1) { height: 23%; }
.mini-chart i:nth-child(2) { height: 38%; background: var(--coral); }
.mini-chart i:nth-child(3) { height: 31%; }
.mini-chart i:nth-child(4) { height: 58%; background: var(--acid); }
.mini-chart i:nth-child(5) { height: 70%; background: var(--coral); }
.mini-chart i:nth-child(6) { height: 82%; background: var(--ultra); }
.mini-chart i:nth-child(7) { height: 100%; background: var(--ink); }

/* Compare */
.compare { padding-top: 26px; background: var(--canvas); }
.compare-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.compare-shell::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 1px;
  content: "";
  background: var(--ink);
}
.compare-badge {
  position: absolute;
  z-index: 4;
  top: 34px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  color: var(--paper);
  background: var(--coral);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.05;
  text-align: center;
  transform: rotate(8deg);
}
.compare-copy { position: relative; z-index: 2; padding: 70px 72px; }
.compare-copy h2 {
  margin: 42px 0 25px;
  font-family: var(--display);
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.067em;
  text-transform: uppercase;
}
.compare-copy h2 span { color: var(--ultra); }
.compare-copy > p { max-width: 690px; margin: 0 0 28px; color: var(--muted); font-size: 16px; }
.compare-copy > small { display: block; max-width: 680px; margin-top: 26px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.compare-art { position: relative; min-height: 690px; background: var(--lilac); }
.compare-art::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(23,23,25,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(23,23,25,.1) 1px, transparent 1px);
  background-size: 36px 36px;
}
.compare-orbit { position: absolute; top: 50%; left: 50%; width: 430px; height: 430px; border: 1px solid var(--ink); border-radius: 50%; transform: translate(-50%,-50%); }
.compare-orbit::before,
.compare-orbit::after { position: absolute; inset: 55px; content: ""; border: 1px solid var(--ink); border-radius: 50%; }
.compare-orbit::after { inset: 125px; background: var(--ultra); }
.compare-orbit i { position: absolute; z-index: 2; display: block; width: 12px; height: 12px; background: var(--coral); border: 1px solid var(--ink); border-radius: 50%; }
.compare-orbit i:nth-child(1) { top: 28px; left: 120px; }
.compare-orbit i:nth-child(2) { right: 35px; top: 195px; background: var(--acid); }
.compare-orbit i:nth-child(3) { bottom: 57px; left: 88px; background: var(--paper); }
.compare-card-one,
.compare-card-two,
.compare-card-three {
  position: absolute;
  z-index: 3;
  width: 180px;
  height: 120px;
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}
.compare-card-one { top: 140px; left: 60px; transform: rotate(-7deg); }
.compare-card-two { right: 56px; top: 330px; background: var(--acid); transform: rotate(5deg); }
.compare-card-three { bottom: 80px; left: 100px; background: var(--coral); transform: rotate(-3deg); }
.compare-card-one span,
.compare-card-two span,
.compare-card-three span { font-family: var(--mono); font-size: 9px; }
.compare-card-one strong,
.compare-card-two strong,
.compare-card-three strong { display: block; margin-top: 23px; font-size: 20px; }
.compare-card-one b,
.compare-card-two b,
.compare-card-three b { position: absolute; top: 16px; right: 18px; }

/* Security */
.security { color: var(--paper); background: var(--ink); }
.security-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 92px; align-items: center; }
.security-art img { width: 100%; }
.security-copy h2 {
  margin: 44px 0 26px;
  font-family: var(--display);
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.067em;
  text-transform: uppercase;
}
.security-copy > p { margin: 0; color: rgba(255,250,244,.62); font-size: 16px; }
.security-points { margin-top: 38px; border-top: 1px solid var(--line-light); }
.security-points article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.security-points article > span { font-family: var(--mono); font-size: 10px; color: var(--coral); }
.security-points h3 { margin: -4px 0 5px; font-size: 18px; }
.security-points p { margin: 0; color: rgba(255,250,244,.54); font-size: 13px; }

/* FAQ */
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 92px; align-items: start; }
.faq-heading { position: sticky; top: 116px; }
.faq-heading h2 {
  margin: 44px 0 24px;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 900;
  line-height: .91;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.faq-heading > p { max-width: 450px; margin: 0; color: var(--muted); }
.accordion { border-top: 1px solid var(--ink); }
.accordion-item { border-bottom: 1px solid var(--ink); }
.accordion-item h3 { margin: 0; }
.accordion-item button {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 25px;
  align-items: center;
  width: 100%;
  padding: 27px 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 19px;
  font-weight: 720;
  line-height: 1.35;
  cursor: pointer;
}
.accordion-item button > span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.accordion-item button > span::before,
.accordion-item button > span::after {
  position: absolute;
  top: 15px;
  left: 9px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--ink);
  transition: transform .25s ease;
}
.accordion-item button > span::after { transform: rotate(90deg); }
.accordion-item button[aria-expanded="true"] > span { background: var(--acid); transform: rotate(90deg); }
.accordion-item button[aria-expanded="true"] > span::after { transform: rotate(0); }
.accordion-panel { overflow: hidden; }
.accordion-panel p { max-width: 720px; margin: -2px 54px 28px 0; color: var(--muted); font-size: 14px; }

/* Demo */
.demo { position: relative; overflow: hidden; background: var(--acid); }
.demo::before {
  position: absolute;
  top: -220px;
  left: -170px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(23,23,25,.05), 0 0 0 120px rgba(23,23,25,.04);
}
.demo-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: start; }
.demo-copy h2 {
  margin: 48px 0 27px;
  font-family: var(--display);
  font-size: clamp(58px, 6.7vw, 96px);
  font-weight: 900;
  line-height: .87;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.demo-copy > p { max-width: 530px; margin: 0 0 38px; font-size: 17px; }
.demo-stamp {
  display: flex;
  width: 210px;
  height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-6deg);
}
.demo-stamp span { font-family: var(--display); font-size: 15px; letter-spacing: .08em; }
.demo-stamp b { font-family: var(--mono); font-size: 10px; line-height: 1.1; text-align: right; }
.demo-detail { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: center; padding: 17px 0; border-top: 1px solid var(--ink); }
.demo-detail:last-child { border-bottom: 1px solid var(--ink); }
.demo-detail span { font-family: var(--mono); font-size: 10px; }
.demo-detail p { margin: 0; font-weight: 690; }
.demo-form { padding: 34px; background: var(--paper); border: 1px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); }
.form-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 29px; padding-bottom: 16px; border-bottom: 1px solid var(--ink); }
.form-head small { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.demo-form label { display: block; margin-bottom: 18px; }
.demo-form label > span:first-child { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 720; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.demo-form input[type="text"],
.demo-form input[type="email"],
.demo-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(23,23,25,.42);
  border-radius: 0;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.demo-form textarea { min-height: 122px; resize: vertical; }
.demo-form input:focus,
.demo-form textarea:focus { background: #fff; border-color: var(--ultra); box-shadow: 0 0 0 3px rgba(74,64,255,.12); }
.demo-form input::placeholder,
.demo-form textarea::placeholder { color: #8a878f; }
.consent { display: grid !important; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; margin-top: 2px; }
.consent input { width: 16px; height: 16px; margin: 3px 0 0; accent-color: var(--ultra); }
.consent span { margin: 0 !important; color: var(--muted); font-size: 10px !important; font-weight: 500 !important; line-height: 1.5; }
.consent a { text-decoration: underline; }
.form-submit {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  font-weight: 760;
  transition: background .2s ease, transform .2s ease;
}
.form-submit:hover { background: var(--ultra); transform: translateY(-2px); }
.form-footnote { margin: 15px 0 0; color: var(--muted); font-size: 9px; }
.honeypot { position: absolute; left: -9999px; }

/* Footer */
.site-footer { color: var(--paper); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; min-height: 155px; border-bottom: 1px solid var(--line-light); }
.wordmark-footer .wordmark-symbol { background: var(--paper); }
.wordmark-footer .wordmark-symbol b { background: var(--ink); }
.footer-top p { margin: 0; color: rgba(255,250,244,.62); font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.footer-arrow {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,250,244,.35);
  border-radius: 50%;
  font-size: 20px;
  transition: color .2s ease, background .2s ease;
}
.footer-arrow:hover { color: var(--ink); background: var(--acid); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; min-height: 108px; color: rgba(255,250,244,.5); font-size: 10px; }
.footer-bottom > div { display: flex; gap: 22px; }
.footer-bottom > div a:hover { color: var(--paper); }
.footer-bottom small { justify-self: end; max-width: 370px; text-align: right; }

/* Legal / utility pages */
.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { position: static; background: var(--paper); border-bottom: 1px solid var(--ink); }
.legal-main { padding: 100px 0 130px; }
.legal-hero { max-width: 1040px; margin-bottom: 70px; }
.legal-hero .section-label { max-width: 500px; }
.legal-hero h1 {
  margin: 45px 0 20px;
  font-family: var(--display);
  font-size: clamp(62px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.legal-hero p { max-width: 700px; color: var(--muted); font-size: 17px; }
.legal-content { display: grid; grid-template-columns: 260px minmax(0,760px); gap: 90px; align-items: start; }
.legal-aside { position: sticky; top: 50px; padding: 22px; background: var(--canvas); border: 1px solid var(--ink); font-size: 11px; }
.legal-aside strong { display: block; margin-bottom: 8px; }
.legal-copy h2 { margin: 48px 0 12px; font-size: 28px; letter-spacing: -.035em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy ul { padding-left: 22px; }
.legal-copy a { text-decoration: underline; }
.utility-main { display: grid; min-height: calc(100vh - 196px); place-items: center; padding: 90px 0; }
.utility-card { width: min(850px, calc(100% - 40px)); padding: 60px; text-align: center; background: var(--acid); border: 1px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); }
.utility-card .utility-code { font-family: var(--mono); font-size: 11px; }
.utility-card h1 { margin: 28px 0 18px; font-family: var(--display); font-size: clamp(54px, 8vw, 100px); line-height: .88; letter-spacing: -.07em; text-transform: uppercase; }
.utility-card p { max-width: 600px; margin: 0 auto 28px; }

/* Tablet */
@media (max-width: 1180px) {
  .shell { width: min(100% - 44px, 1180px); }
  .site-nav { gap: 20px; }
  .hero { min-height: 820px; }
  .hero-grid { min-height: 660px; }
  .hero h1 { font-size: clamp(70px, 8.8vw, 105px); }
  .hero-copy > p { font-size: 16px; }
  .hero-art-label { right: 0; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
  .principle-card-lilac { grid-column: 1 / -1; min-height: 440px; }
  .principle-card-lilac .record-bars { width: min(500px, 100%); margin-inline: auto; }
  .system-stage { grid-template-columns: 285px 1fr; }
  .flow-heading { grid-template-columns: .6fr 1fr; }
  .flow-heading > p { grid-column: 2; }
  .signals-grid { gap: 50px; }
  .compare-copy { padding: 60px 45px; }
  .security-grid { gap: 55px; }
  .faq-grid { gap: 55px; }
  .demo-grid { gap: 55px; }
}

@media (max-width: 960px) {
  .section { padding: 104px 0; }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .menu-button {
    position: relative;
    z-index: 102;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }
  .menu-button span:not(.sr-only) { width: 19px; height: 2px; background: var(--paper); transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 34px 40px;
    color: var(--paper);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) { padding: 17px 0; border-bottom: 1px solid var(--line-light); font-family: var(--display); font-size: 34px; letter-spacing: -.03em; text-transform: uppercase; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { justify-content: space-between; margin-top: 28px; color: var(--ink); background: var(--acid); }
  body.menu-open { overflow: hidden; }
  body.menu-open .wordmark { position: relative; z-index: 103; color: var(--paper); }
  body.menu-open .wordmark-symbol { background: var(--paper); }
  body.menu-open .wordmark-symbol b { background: var(--ink); }

  .hero { min-height: 0; }
  .hero::before { display: none; }
  .hero-rule-one { top: 200px; }
  .hero-rule-two { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .hero-copy { padding: 92px 0 18px; }
  .hero h1 { font-size: clamp(72px, 14vw, 116px); }
  .hero-copy > p { max-width: 690px; }
  .hero-art { min-height: 640px; padding-top: 0; }
  .hero-art img { width: min(100%, 760px); }
  .hero-index { height: auto; grid-template-columns: 1fr; margin-top: 20px; border-bottom: 1px solid var(--ink); }
  .hero-index > div { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .hero-index > div:last-child { border-bottom: 0; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .principle-card-lilac { grid-column: auto; }
  .principle-card { min-height: 470px; }
  .system-title-row { grid-template-columns: 1fr; gap: 28px; }
  .system-stage { grid-template-columns: 1fr; min-height: 0; }
  .tab-list { display: grid; grid-template-columns: repeat(3,1fr); border-right: 0; border-bottom: 1px solid var(--line-light); }
  .tab-list button { display: block; min-height: 150px; padding: 22px 18px; border-right: 1px solid var(--line-light); border-bottom: 0; }
  .tab-list button:last-child { border-right: 0; }
  .tab-list button::before { top: auto; right: 0; bottom: 0; width: auto; height: 5px; transform: scaleX(0); }
  .tab-list button[aria-selected="true"]::before { transform: scaleX(1); }
  .tab-list strong, .tab-list small { display: block; }
  .tab-list strong { margin: 14px 0 6px; font-size: 15px; }
  .tab-list small { font-size: 10px; }
  .tab-panel { min-height: 560px; }
  .flow-heading { grid-template-columns: 1fr; }
  .flow-heading > p { grid-column: auto; max-width: 500px; }
  .flow-visual { margin-top: 50px; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .signals-grid { grid-template-columns: 1fr; }
  .signal-board { transform: none; }
  .compare-shell { grid-template-columns: 1fr; }
  .compare-shell::before { top: 50%; right: 0; bottom: auto; left: 0; width: auto; height: 1px; }
  .compare-art { min-height: 580px; }
  .security-grid { grid-template-columns: 1fr; }
  .security-art { order: 2; }
  .security-copy { order: 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .demo-grid { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom small { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .legal-content { grid-template-columns: 1fr; gap: 35px; }
  .legal-aside { position: static; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 640px); }
  .section { padding: 82px 0; }
  .wordmark { font-size: 16px; }
  .wordmark-symbol { width: 32px; height: 32px; }
  .hero-corner { display: none; }
  .hero-rule-one { top: 174px; }
  .hero-copy { padding-top: 72px; }
  .kicker { margin-bottom: 27px; font-size: 9px; }
  .hero h1 { font-size: clamp(60px, 18vw, 88px); line-height: .84; }
  .hero h1 em { white-space: normal; }
  .hero-copy > p { margin-top: 29px; font-size: 15px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-note { align-items: flex-start; }
  .hero-art { min-height: 420px; padding: 0; }
  .hero-art-label { top: 5px; right: 0; font-size: 8px; }
  .hero-art img { width: 112%; max-width: none; margin-left: -6%; }
  .hero-index > div { padding: 0 18px; }
  .ticker-track { min-height: 54px; gap: 20px; }
  .ticker span { font-size: 13px; }
  .section-label { font-size: 9px; }
  .manifesto-heading h2 { margin: 34px 0 48px; font-size: clamp(42px, 13vw, 62px); }
  .manifesto-heading mark { white-space: normal; }
  .principle-card { min-height: 430px; padding: 23px; }
  .shape-stack { transform: scale(.86); }
  .record-bars { padding-inline: 14px; }
  .system-title-row { margin: 34px 0 46px; }
  .system-title-row h2,
  .signals-copy h2,
  .security-copy h2,
  .faq-heading h2 { font-size: clamp(44px, 13vw, 64px); }
  .tab-list { grid-template-columns: 1fr; }
  .tab-list button { min-height: 0; padding: 20px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .tab-list button:last-child { border-bottom: 0; }
  .tab-list button::before { top: 0; right: auto; bottom: 0; width: 4px; height: auto; transform: scaleY(0); }
  .tab-list button[aria-selected="true"]::before { transform: scaleY(1); }
  .tab-list strong { margin: 6px 0 4px; }
  .tab-panel { min-height: 0; padding: 15px; }
  .panel-caption { display: block; }
  .panel-caption p { margin-top: 6px; }
  .tab-panel img { height: auto; }
  .flow-heading h2 { font-size: clamp(48px, 14vw, 70px); }
  .flow-visual { margin: 36px -8px 28px; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps li { min-height: 210px; }
  .flow-steps h3 { margin-top: 52px; }
  .signal-board { padding: 13px; border-radius: 24px; }
  .board-head { font-size: 8px; }
  .board-grid { grid-template-columns: 1fr; }
  .board-card-wide { grid-row: auto; }
  .board-card-chart { grid-column: auto; }
  .compare { padding-top: 14px; }
  .compare-copy { padding: 40px 24px 55px; }
  .compare-copy h2 { font-size: clamp(45px, 13vw, 65px); }
  .compare-badge { top: auto; right: 18px; bottom: 18px; width: 90px; height: 90px; font-size: 11px; }
  .compare-art { min-height: 510px; }
  .compare-orbit { width: 340px; height: 340px; }
  .compare-card-one,
  .compare-card-two,
  .compare-card-three { width: 150px; height: 105px; }
  .compare-card-one { top: 93px; left: 20px; }
  .compare-card-two { right: 18px; top: 270px; }
  .compare-card-three { bottom: 48px; left: 46px; }
  .security-grid { gap: 48px; }
  .accordion-item button { font-size: 16px; }
  .accordion-panel p { margin-right: 0; }
  .demo-copy h2 { font-size: clamp(48px, 14vw, 70px); }
  .demo-form { padding: 22px; box-shadow: 8px 8px 0 var(--ink); }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .form-head { display: block; }
  .form-head small { display: block; margin-top: 7px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top p { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; padding: 30px 0; }
  .footer-bottom > div { justify-content: flex-start; }
  .footer-bottom small { grid-column: auto; }
  .legal-main { padding: 70px 0 95px; }
  .legal-hero h1 { font-size: clamp(52px, 15vw, 78px); }
  .utility-card { padding: 42px 22px; box-shadow: 8px 8px 0 var(--ink); }
}

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