/* xemulator -- "flight-test protocol" identity.
   Engineered paper surface; the simulation runs on a black instrument panel.
   Type: Archivo (variable width) display+body, Spline Sans Mono for data.
   Palette: paper / ink / signal blue / heat orange (heat = intensity ONLY). */

:root {
  --paper: #f6f5f0;
  --paper-2: #eeede6;
  --ink: #0e0f12;
  --ink-2: #17181d;
  --line: #d9d7cd;
  --line-ink: #2c2d34;
  --dim: #6d6c64;
  --dim-ink: #8b8c95;
  --blue: #2233ee;
  --heat: #e8451c;
  --ok: #1a7f4b;
  --mono: "Spline Sans Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans: "Archivo", ui-sans-serif, "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* faint engineering grid on the paper */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 96px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 96px 100%;
  opacity: 0.28;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

::selection { background: var(--blue); color: var(--paper); }

a { color: inherit; }
button { font: inherit; cursor: pointer; }

.hidden { display: none !important; }

/* ---------- microtype ---------- */

.microlabel {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.index-no {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--blue);
}

/* ---------- protocol bar (replaces the ticker) ---------- */

.protocol-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 28px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  overflow: hidden;
  white-space: nowrap;
}
.protocol-bar b { color: var(--ink); font-weight: 600; }
.protocol-bar .rule { flex: 1; height: 1px; background: var(--line); min-width: 24px; }
.protocol-bar .sim-flag {
  color: var(--paper);
  background: var(--ink);
  padding: 2px 8px;
  font-weight: 600;
}

/* ---------- header ---------- */

header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-stretch: 115%;
}
.brand .x { color: var(--blue); }
/* literal X mark, sized to the x-height of "immulator" and sitting on the
   same baseline, tucked tight against the wordmark */
.brand-x {
  height: 0.76em;
  width: 0.76em;
  fill: var(--ink);
  display: inline-block;
  vertical-align: baseline;
  margin-right: 0.045em;
  transform: translateY(0.045em);
}
.brand:hover .brand-x { fill: var(--blue); }
.brand-rest { letter-spacing: -0.02em; }
nav { display: flex; align-items: center; gap: 22px; }
nav a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
nav a:hover { color: var(--blue); }
nav .navbtn {
  background: none;
  border: 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0;
}
nav .navbtn:hover { color: var(--blue); }

.chip {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid var(--ink);
  padding: 4px 10px;
}

/* ---------- buttons ---------- */

.btn-primary, .btn-ghost {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-primary:disabled { opacity: 0.55; cursor: wait; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-small { padding: 7px 14px; font-size: 12.5px; }

/* ---------- hero ---------- */

.hero {
  padding: 84px 28px 64px;
  max-width: 1060px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.hero .kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(44px, 7.2vw, 84px);
  line-height: 0.98;
  font-weight: 800;
  font-stretch: 120%;
  letter-spacing: -0.03em;
  text-wrap: balance;
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero .sub {
  margin-top: 28px;
  max-width: 58ch;
  font-size: 17px;
  color: #33342f;
}
.hero .sub b { font-weight: 700; }
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* staggered load */
.hero .kicker, .hero h1, .hero .sub, .hero-ctas, .roster-strip {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero h1 { animation-delay: 0.08s; }
.hero .sub { animation-delay: 0.16s; }
.hero-ctas { animation-delay: 0.24s; }
.roster-strip { animation-delay: 0.32s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* split hero: copy left, ambient simulated feed right */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
}
.hero-feed {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #e8e7e0;
  padding: 0 0 6px;
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s forwards;
}
.hero-feed::before, .hero-feed::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--blue);
}
.hero-feed::before { top: -4px; left: -4px; border-right: 0; border-bottom: 0; }
.hero-feed::after { bottom: -4px; right: -4px; border-left: 0; border-top: 0; }
.hero-feed-head {
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-ink);
}
.hero-feed-head .microlabel { color: var(--dim-ink); }
.hero-post {
  display: flex;
  gap: 10px;
  padding: 13px 16px 11px;
  border-bottom: 1px solid var(--line-ink);
  opacity: 0;
  animation: hero-post-in 12.8s linear infinite;
}
.hero-post:last-child { border-bottom: 0; }
.hero-post .name { font-weight: 700; font-size: 13px; }
.hero-post .handle { font-family: var(--mono); font-size: 11px; color: var(--dim-ink); }
.hero-post .stamp { margin-left: 6px; }
.hero-post-text { font-size: 12.5px; line-height: 1.45; color: #c9c8c0; margin-top: 3px; max-width: 40ch; }
@keyframes hero-post-in {
  0% { opacity: 0; transform: translateY(6px); }
  4%, 88% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0.35; }
}

/* proof points */
.proofs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.proof { background: var(--paper); padding: 22px 20px 24px; }
.proof h4 { margin: 10px 0 8px; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.proof p { font-size: 13.5px; color: #44453f; }

.demo-honesty { margin-top: 12px; }

/* waitlist */
.waitlist-box {
  border: 1px solid var(--ink);
  background: #fbfaf7;
  padding: 30px 32px 28px;
}
.waitlist-box h3 { font-size: 24px; font-weight: 800; font-stretch: 116%; letter-spacing: -0.02em; }
.waitlist-box p { margin-top: 8px; color: #33342f; max-width: 56ch; }
.waitlist-row { display: flex; gap: 10px; margin-top: 18px; max-width: 480px; }
.waitlist-row input { flex: 1; }
#waitlist-msg { margin-top: 12px; }

/* ---------- sections ---------- */

main { max-width: 1060px; margin: 0 auto; padding: 0 28px 90px; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 64px 0 22px;
}
.section-head .rule { flex: 1; height: 1px; background: var(--line); }

/* ---------- composer ---------- */

.composer {
  border: 1px solid var(--ink);
  background: #fbfaf7;
  padding: 26px 28px 22px;
}
.tabs { display: flex; gap: 0; margin-bottom: 20px; border: 1px solid var(--line); width: fit-content; }
.tab {
  border: 0;
  background: transparent;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dim);
  border-right: 1px solid var(--line);
}
.tab:last-child { border-right: 0; }
.tab.active { background: var(--ink); color: var(--paper); }

label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 14px 0 6px;
}

select, input[type="email"], input[type="password"], textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
}
select:focus, input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
textarea { resize: vertical; margin-top: 14px; }

.examples { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.examples .try {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-right: 4px;
}
.example-chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 6px 12px;
  font-size: 12.5px;
  color: #44453f;
  transition: border-color 0.15s, color 0.15s;
}
.example-chip:hover { border-color: var(--blue); color: var(--blue); }

.composer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}
.fine { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.fine a { color: var(--blue); }

.error {
  margin-top: 14px;
  border: 1px solid var(--heat);
  border-left: 4px solid var(--heat);
  padding: 11px 14px;
  font-size: 14px;
  background: #fdf1ed;
}
.error.notice { border-color: var(--ok); background: #eef6f0; }

/* ---------- the instrument panel (simulation feed) ---------- */

.panel {
  background: var(--ink);
  color: #e8e7e0;
  border: 1px solid var(--ink);
  margin-top: 26px;
  position: relative;
}
/* corner ticks */
.panel::before, .panel::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--blue);
  pointer-events: none;
}
.panel::before { top: -4px; left: -4px; border-right: 0; border-bottom: 0; }
.panel::after { bottom: -4px; right: -4px; border-left: 0; border-top: 0; }

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim-ink);
}
.panel-head .status { color: #e8e7e0; display: flex; align-items: center; gap: 9px; }
.status-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  display: inline-block;
  animation: pulse 1.4s ease-in-out infinite;
}
.status-dot.done { background: var(--ok); animation: none; }
@keyframes pulse { 50% { opacity: 0.25; } }

.demo-pill {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: #d9b23a;
  padding: 3px 8px;
}

.caption-line {
  padding: 8px 20px;
  border-bottom: 1px solid var(--line-ink);
  font-family: var(--mono);
  font-size: 12px;
  color: #7f8cff;
  background: #121318;
  min-height: 32px;
}
.caption-line:empty { display: none; }

#thread { padding: 10px 20px 16px; }

.post {
  border-bottom: 1px solid var(--line-ink);
  padding: 16px 0 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.post.landed { opacity: 1; transform: none; }
.post.indent-1 { margin-left: 34px; border-left: 1px solid var(--line-ink); padding-left: 16px; }
.post.indent-2 { margin-left: 68px; border-left: 1px solid var(--line-ink); padding-left: 16px; }
.post.hot { border-left: 3px solid var(--heat); padding-left: 16px; }

.post .wireline {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-ink);
  margin-bottom: 8px;
}
.post .wireline .t { color: #7f8cff; }
.stamp {
  margin-left: auto;
  color: var(--dim-ink);
  border: 1px solid var(--line-ink);
  padding: 1px 6px;
  font-size: 9.5px;
  letter-spacing: 0.16em;
}
.post.stimulus .stamp { color: var(--ink); background: var(--paper); border-color: var(--paper); }

.post .head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.avatar {
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-post .avatar { width: 26px; height: 26px; }
.post .name { font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; }
.post .handle { font-family: var(--mono); font-size: 12px; color: var(--dim-ink); }

.post .body { font-size: 15px; line-height: 1.5; color: #f0efe8; max-width: 62ch; }
.post.stimulus {
  background: #15161b;
  margin: 12px 0 4px;
  padding: 16px;
  border: 1px solid var(--line-ink);
  border-left: 4px solid var(--blue);
}
.post.stimulus .body { font-size: 16.5px; font-weight: 500; }

.quotebox {
  margin-top: 10px;
  border: 1px solid var(--line-ink);
  padding: 9px 12px;
  font-size: 13px;
  color: var(--dim-ink);
  max-width: 60ch;
}

.typing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim-ink);
}
.typing .dots { display: inline-flex; gap: 4px; }
.typing .dots i {
  width: 5px; height: 5px;
  background: var(--blue);
  animation: pulse 1s infinite;
}
.typing .dots i:nth-child(2) { animation-delay: 0.18s; }
.typing .dots i:nth-child(3) { animation-delay: 0.36s; }

.panel-controls { padding: 0 20px 14px; display: flex; justify-content: flex-end; }
.btn-panel {
  background: transparent;
  border: 1px solid var(--line-ink);
  color: var(--dim-ink);
  padding: 6px 13px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-panel:hover { border-color: #7f8cff; color: #7f8cff; }

/* ---------- verdict ---------- */

.verdict {
  border: 1px solid var(--ink);
  background: #fbfaf7;
  margin-top: 26px;
  padding: 28px 30px;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.35s, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.verdict.stamped { opacity: 1; transform: none; }

.verdict .vlabel {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.verdict h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.heat-row { display: flex; align-items: center; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.heat-meter { display: inline-flex; gap: 4px; }
.heat-meter i {
  width: 26px; height: 9px;
  background: var(--line);
}
.heat-meter i.on { background: var(--heat); }
.heat-meter.h1 i.on { background: var(--dim); }
.heat-meter.h2 i.on { background: #d98a1c; }

.lean {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--ink);
}
.lean.hostile { border-color: var(--heat); color: var(--heat); }
.lean.supportive { border-color: var(--ok); color: var(--ok); }

.verdict .prose { margin-top: 18px; font-size: 16px; max-width: 66ch; color: #2c2d28; }
.verdict .vstats {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
}
.verdict .vcta { margin-top: 22px; }

.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.toolbar-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.shared-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--blue);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14.5px;
}

/* ---------- how it works ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--paper); padding: 24px 22px 26px; }
.step h4 { margin: 12px 0 8px; font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: #44453f; }

/* ---------- pricing ---------- */

.packs { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pack { background: var(--paper); padding: 24px 22px 26px; display: flex; flex-direction: column; gap: 12px; }
.pack.featured { outline: 2px solid var(--blue); outline-offset: -2px; position: relative; }
.pack.featured::before {
  content: "MOST CHOSEN";
  position: absolute;
  top: 0; right: 0;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  background: var(--blue);
  color: #fff;
  padding: 3px 8px;
}
.pack .pname {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.pack .price { font-size: 34px; font-weight: 800; font-stretch: 115%; letter-spacing: -0.02em; }
.pack .price small { font-size: 12.5px; font-weight: 500; color: var(--dim); font-stretch: 100%; }
.pack ul { list-style: none; font-size: 13.5px; color: #44453f; flex: 1; }
.pack ul li { padding: 5px 0; border-bottom: 1px solid var(--line); }
.pack ul li:last-child { border-bottom: 0; }
.pack .btn-primary, .pack .btn-ghost { text-align: center; }

/* ---------- modals ---------- */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 15, 18, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 20px;
}
.modal-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  max-width: 460px;
  width: 100%;
  padding: 26px 28px;
  max-height: 90vh;
  overflow: auto;
}
.modal-card .mkick {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.modal-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; margin: 8px 0 6px; }
.modal-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.sandbox-note {
  margin-top: 14px;
  border: 1px solid #d9b23a;
  border-left: 4px solid #d9b23a;
  padding: 10px 13px;
  font-size: 13px;
  background: #faf5e4;
}
.sandbox-note code { font-family: var(--mono); font-size: 12px; }

/* ---------- onboarding (pre-flight sequence) ---------- */

.onboard {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: auto;
}
.onboard::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 96px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 96px 100%;
  opacity: 0.28;
}
.onboard-card { max-width: 640px; width: 100%; position: relative; }
.onboard-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}
.onboard-progress .seg { flex: 1; height: 2px; background: var(--line); }
.onboard-progress .seg.on { background: var(--blue); }
.onboard-progress .microlabel { flex: none; }
.onboard h2 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 16px;
  text-wrap: balance;
}
.onboard p { font-size: 16.5px; color: #33342f; max-width: 52ch; }
.onboard p + p { margin-top: 10px; }
.onboard-scenarios { margin-top: 24px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.onboard-scenario {
  background: var(--paper);
  border: 0;
  text-align: left;
  padding: 16px 18px;
  font-size: 15px;
  display: flex;
  gap: 14px;
  align-items: baseline;
  transition: background 0.15s;
}
.onboard-scenario:hover { background: #fff; }
.onboard-scenario .who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 3px;
}
.onboard-actions { display: flex; gap: 12px; margin-top: 32px; align-items: center; }
.onboard .skip {
  margin-left: auto;
  background: none;
  border: 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.onboard .skip:hover { color: var(--ink); }

.onboard-fact {
  margin-top: 26px;
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 16px;
  font-size: 14px;
  color: #44453f;
}

/* onboarding pipeline diagram */
.onboard-diagram {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 26px;
}
.od-stage {
  flex: 1;
  border: 1px solid var(--line);
  background: #fbfaf7;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: od-pulse 6s ease-in-out infinite;
}
.od-stage .od-body { display: flex; align-items: center; flex: 1; }
.od-1 { animation-delay: 0s; }
.od-2 { animation-delay: 2s; }
.od-3 { animation-delay: 4s; }
@keyframes od-pulse {
  0%, 30%, 100% { border-color: var(--line); box-shadow: none; }
  8%, 22% { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
}
.od-card {
  font-size: 13px;
  font-weight: 500;
  border-left: 3px solid var(--blue);
  padding-left: 10px;
  color: #2c2d28;
}
.od-cluster { display: flex; align-items: center; }
.od-cluster .avatar {
  width: 28px; height: 28px;
  border: 2px solid #fbfaf7;
  margin-left: -8px;
}
.od-cluster .avatar:first-child { margin-left: 0; }
.od-more {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--dim);
  margin-left: 6px;
}
.od-verdict {
  font-weight: 800;
  font-stretch: 116%;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.od-verdict .heat-meter i { width: 18px; height: 7px; }
.od-arrow {
  align-self: center;
  width: 18px;
  height: 1px;
  background: var(--ink);
  position: relative;
  flex: none;
}
.od-arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  border-left: 5px solid var(--ink);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
}
@media (max-width: 700px) {
  .onboard-diagram { flex-direction: column; }
  .od-arrow { transform: rotate(90deg); align-self: flex-start; margin-left: 24px; }
}

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--ink);
  margin-top: 40px;
  padding: 30px 28px 40px;
}
footer .inner { max-width: 1060px; margin: 0 auto; }
footer .cols { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer a, footer span { font-size: 13px; color: #44453f; text-decoration: none; margin-right: 18px; }
footer a:hover { color: var(--blue); }
footer .legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--dim);
  max-width: 84ch;
}

/* ---------- static pages ---------- */

.page { max-width: 760px; margin: 0 auto; padding: 60px 28px 90px; }
.page .pkick {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.page h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: -0.025em;
  line-height: 1.03;
  margin-bottom: 22px;
}
.page h2 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin: 34px 0 10px; }
.page p { margin: 10px 0; color: #2c2d28; }
.page ul, .page ol { margin: 10px 0 10px 22px; color: #2c2d28; }
.page a { color: var(--blue); }

/* ---------- responsive ---------- */

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

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .proofs { grid-template-columns: 1fr; }
  .waitlist-row { flex-direction: column; max-width: none; }
  header { padding: 16px 18px; }
  .hero { padding: 56px 18px 44px; }
  main { padding: 0 18px 70px; }
  .protocol-bar { padding: 8px 18px; }
  .post.indent-1 { margin-left: 16px; }
  .post.indent-2 { margin-left: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .hero .kicker, .hero h1, .hero .sub, .hero-ctas, .roster-strip, .post, .verdict { opacity: 1; transform: none; }
}
