/* self-hosted variable fonts, no CDN */
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/jetbrains-mono-vf.woff2") format("woff2-variations");
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-vf.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-display: swap;
}

/* cool near-black + one mint signal, both lifted straight from the lantern mark.
   Mint is reserved for "this needs you" moments and primary actions, so the
   accent means something. */
:root {
  color-scheme: dark;
  --bg: #0d1113;
  --bg-sunken: #090c0e;
  --panel: #12181b;
  --panel-2: #172025;
  --line: #202b30;
  --line-strong: #31414a;
  --text: #e7eef0;
  --text-2: #a3b4ba;
  --text-3: #75868d;
  --accent: #46d6a7;
  --accent-hover: #64e2ba;
  --accent-press: #33bd90;
  --accent-ink: #04241a;
  --accent-dim: rgba(70, 214, 167, 0.12);
  --focus: #9fefd3;
  --mono: "JetBrains Mono", "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 71rem;
  --prose: 46rem;
  --r-control: 8px;
  --r-panel: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p a,
li a,
td a {
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 0.22em;
  transition: text-decoration-color 160ms var(--ease);
}

p a:hover,
li a:hover,
td a:hover {
  text-decoration-color: var(--accent);
}

button,
summary {
  font: inherit;
  color: inherit;
}

code,
pre {
  font-family: var(--mono);
  font-variant-ligatures: none;
}

code {
  font-size: 0.88em;
}

p code,
li code,
td code {
  padding: 0.1em 0.35em;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  white-space: nowrap;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
code[tabindex]:focus-visible,
pre[tabindex]:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-inline: 24px;
}

.skip-link {
  position: fixed;
  z-index: 40;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-220%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--mono);
  font-size: 0.85rem;
  border-radius: var(--r-control);
  transition: transform 180ms var(--ease);
}

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

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand svg {
  width: 24px;
  height: 24px;
  flex: none;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 0.95rem;
  color: var(--text-2);
}

.nav-links a {
  transition: color 160ms var(--ease);
}

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

.nav-cta {
  flex: none;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-control);
  font-family: var(--mono);
  font-size: 0.85rem;
  transition: border-color 160ms var(--ease), color 160ms var(--ease);
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
  }
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--r-control);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms var(--ease), border-color 160ms var(--ease),
    color 160ms var(--ease), transform 120ms var(--ease);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-primary:active {
  background: var(--accent-press);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.hero {
  position: relative;
  padding: 72px 0 84px;
  overflow: hidden;
}

/* one lantern glow, top center. That's the whole lightshow. */
.hero::before {
  content: "";
  position: absolute;
  inset: -46% -20% auto;
  height: 130%;
  background: radial-gradient(
    56% 44% at 50% 0%,
    rgba(70, 214, 167, 0.09),
    transparent 68%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
}

.release-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 5px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.release-label strong {
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.15rem, 5.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 34rem;
  font-size: 1.13rem;
  color: var(--text-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-shot {
  position: relative;
  min-width: 0;
}

.window {
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 8, 6, 0.55);
}

.window-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--text-3);
}

.window-bar .addr {
  color: var(--text-2);
}

.window img {
  width: 100%;
}

.shot-caption {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text-3);
}

@media (max-width: 940px) {
  .hero {
    padding: 48px 0 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-lead {
    max-width: none;
  }
}

/* ---------- section scaffolding ---------- */

section {
  padding: 84px 0;
}

section + section {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: var(--prose);
  margin-bottom: 44px;
}

.section-head h2,
.h2-std {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  line-height: 1.15;
}

.section-head p {
  margin-top: 14px;
  color: var(--text-2);
}

.kicker {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- code blocks ---------- */

.term {
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  overflow: hidden;
}

.term-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--text-3);
}

.term pre {
  margin: 0;
  padding: 18px 18px 20px;
  overflow-x: auto;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text);
}

.term .c {
  color: var(--text-3);
}

.term .p {
  color: var(--accent);
  user-select: none;
}

.term .o {
  color: var(--text-2);
}

.copy-button {
  padding: 4px 10px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 140ms var(--ease), color 140ms var(--ease);
}

.copy-button:hover,
.copy-button.copied {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- agent strip (illustration, not a screenshot) ---------- */

.agent-strip {
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  background: var(--bg-sunken);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.86rem;
}

.agent-strip-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--text-3);
}

.agent-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
}

.agent-row:first-of-type {
  border-top: 0;
}

.agent-row.lit {
  background: linear-gradient(90deg, var(--accent-dim), transparent 62%);
}

.agent-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-3);
}

.agent-row.lit .agent-dot {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(70, 214, 167, 0.7);
}

.agent-name {
  color: var(--text);
  font-weight: 600;
}

.agent-task {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-state {
  margin-left: auto;
  flex: none;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  color: var(--text-2);
}

.agent-row.lit .agent-state {
  border-color: var(--accent);
  color: var(--accent);
}

.mock-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-3);
}

/* ---------- feature rows ---------- */

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 88px;
}

.feature-row.flip .feature-copy {
  order: 2;
}

.feature-copy h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.2;
}

.feature-copy p {
  margin-top: 14px;
  color: var(--text-2);
}

.feature-copy .fact {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  font-size: 0.92rem;
  color: var(--text-3);
}

.phone-shot {
  max-width: 300px;
  margin: 0 auto;
}

.phone-shot .window {
  border-radius: 20px;
}

.phone-shot figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-3);
  text-align: center;
}

@media (max-width: 940px) {
  .feature-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .feature-row.flip .feature-copy {
    order: 0;
  }
  .feature-row + .feature-row {
    margin-top: 64px;
  }
}

/* ---------- files mock (labelled illustration) ---------- */

.files-mock {
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  background: var(--bg-sunken);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.84rem;
}

.files-mock-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--text-3);
}

.files-cols {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.files-tree {
  padding: 14px 8px 16px 14px;
  border-right: 1px solid var(--line);
  color: var(--text-2);
  line-height: 1.9;
  white-space: nowrap;
  overflow: hidden;
}

.files-tree .dir {
  color: var(--text);
}

.files-tree .sel {
  color: var(--accent);
}

.files-view {
  padding: 14px 16px 16px;
  color: var(--text-3);
  line-height: 1.8;
  overflow: hidden;
}

.files-view .ro {
  display: inline-block;
  margin-bottom: 8px;
  padding: 1px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--text-2);
}

.files-view .k {
  color: var(--accent);
}

.files-view .s {
  color: var(--text-2);
}

@media (max-width: 560px) {
  .files-cols {
    grid-template-columns: 1fr;
  }
  .files-tree {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* ---------- lifecycle strip ---------- */

.lifecycle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  overflow: hidden;
  counter-reset: step;
}

.lifecycle li {
  position: relative;
  list-style: none;
  padding: 28px 26px 30px;
  background: var(--panel);
}

.lifecycle li + li {
  border-left: 1px solid var(--line);
}

.lifecycle li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent);
}

.lifecycle h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.lifecycle p {
  font-size: 0.92rem;
  color: var(--text-2);
}

.lifecycle code {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 8px;
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.78rem;
  color: var(--text-2);
  white-space: nowrap;
  max-width: 100%;
  overflow-x: auto;
}

@media (max-width: 860px) {
  .lifecycle {
    grid-template-columns: 1fr;
  }
  .lifecycle li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

/* ---------- guarantees grid ---------- */

.guarantees {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  overflow: hidden;
}

.guarantees article {
  padding: 26px 24px 28px;
  background: var(--panel);
}

.guarantees article:nth-child(1) {
  background: linear-gradient(160deg, var(--accent-dim), transparent 55%),
    var(--panel);
}

.guarantees h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.guarantees p {
  font-size: 0.9rem;
  color: var(--text-2);
}

@media (max-width: 940px) {
  .guarantees {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .guarantees {
    grid-template-columns: 1fr;
  }
}

/* ---------- comparison ---------- */

.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
}

.compare {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare th,
.compare td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}

.compare thead th {
  background: var(--panel);
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.compare thead th:first-child {
  color: var(--text-3);
  font-weight: 400;
}

.compare tbody th {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--text);
  white-space: nowrap;
}

.compare tbody tr.you th {
  color: var(--accent);
}

.compare tbody tr.you {
  background: linear-gradient(90deg, var(--accent-dim), transparent 70%);
}

.compare tbody tr:nth-child(even):not(.you) {
  background: rgba(255, 255, 255, 0.015);
}

.compare td {
  color: var(--text-2);
}

.compare tbody tr.you td {
  color: var(--text);
}

.compare-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-3);
  max-width: var(--prose);
}

.win-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 40px;
}

.win-list h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.win-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.win-list li {
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
  font-size: 0.94rem;
  color: var(--text-2);
}

.win-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--mono);
  color: var(--text-3);
}

.win-list li strong {
  color: var(--text);
}

@media (max-width: 860px) {
  .win-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------- install ---------- */

.install-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 56px;
  align-items: start;
}

.install-lede {
  margin-top: 14px;
  color: var(--text-2);
}

.install-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-control);
  font-size: 0.92rem;
  color: var(--text-2);
}

.install-reqs {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-2);
}

.install-reqs li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.install-reqs li:last-child {
  border-bottom: 1px solid var(--line);
}

.install-reqs strong {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.install-stack {
  display: grid;
  gap: 22px;
}

@media (max-width: 940px) {
  .install-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---------- faq ---------- */

.faq-list {
  max-width: 52rem;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 20px 4px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  transition: color 150ms var(--ease);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: none;
  font-weight: 400;
  color: var(--text-3);
  transition: transform 180ms var(--ease);
}

.faq-list details[open] summary {
  color: var(--accent);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 4px 22px;
  max-width: var(--prose);
  color: var(--text-2);
}

/* ---------- closing band ---------- */

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 40px;
  align-items: center;
  padding: 44px 46px;
  background: linear-gradient(150deg, var(--accent-dim), transparent 50%),
    var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-panel);
}

.closing h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.closing p {
  margin-top: 12px;
  color: var(--text-2);
}

.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

@media (max-width: 860px) {
  .closing-inner {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }
}

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

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 56px;
  font-size: 0.9rem;
  color: var(--text-3);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--text-2);
}

.footer-brand svg {
  width: 20px;
  height: 20px;
}

.footer-note {
  margin-top: 10px;
  max-width: 30rem;
}

.footer-links {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 10px 44px;
}

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

/* ---------- legal + guide + changelog pages ---------- */

.legal-main {
  padding-bottom: 40px;
}

.legal-hero {
  padding: 64px 24px 20px;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.legal-summary {
  margin-top: 16px;
  max-width: var(--prose);
  color: var(--text-2);
  font-size: 1.05rem;
}

.legal-updated {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-3);
}

.legal-content section {
  padding-block: 34px 6px;
  border: 0;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1rem;
  margin: 20px 0 8px;
}

.legal-content p,
.legal-content li {
  max-width: var(--prose);
  color: var(--text-2);
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.guide-step {
  border: 0;
  padding-block: 40px 8px;
}

.guide-step h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.guide-step p {
  max-width: var(--prose);
  color: var(--text-2);
}

.guide-step p + p {
  margin-top: 12px;
}

.guide-step .term {
  margin: 20px 0;
  max-width: 54rem;
}

.guide-step ul {
  max-width: var(--prose);
  color: var(--text-2);
  margin: 12px 0 0;
  padding-left: 22px;
}

.guide-step li {
  margin-bottom: 8px;
}

.changelog-entry {
  border: 0;
  padding-block: 36px 4px;
}

.changelog-entry h2 {
  font-size: 1.3rem;
}

.changelog-entry .stamp {
  margin: 6px 0 14px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-3);
}

.changelog-entry h3 {
  font-size: 0.95rem;
  margin: 18px 0 8px;
  color: var(--accent);
}

.changelog-entry p,
.changelog-entry li {
  max-width: 52rem;
  color: var(--text-2);
}

.changelog-entry ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.changelog-entry li {
  margin-bottom: 8px;
}

/* ---------- motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-shot {
    animation: rise 700ms var(--ease) both;
  }
  .hero-shot {
    animation-delay: 120ms;
  }
  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

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