/* Open Source Garden — Design System v1
   Minimal, calm, trustworthy. Money and data feel controlled.
   Garden as atmosphere, not theme: pointillist flowers, warm paper,
   a soft serif voice (Fraunces) over a plain sans body. */

:root {
  --bg: #fbf8f4;
  --surface: #ffffff;
  --text: #111c2b;
  --muted: #647084;
  --border: #eadfd6;
  --coral: #ff5f55;
  --coral-deep: #e84c42;
  --coral-soft: #fff0ec;
  --lavender: #d8cdf2;
  --lavender-soft: #f3effb;
  --peach: #f7cbb7;
  --peach-soft: #fdf3ec;
  --green-ink: #2e5339;
  --code-bg: #14201a;
  --ink-soft: #2b3748;
  --paper: #fffdf9;
  --radius-s: 8px;
  --radius-m: 10px;
  --radius-l: 14px;
  --radius-xl: 18px;
  --shadow-soft: 0 28px 80px -44px rgba(17, 28, 43, 0.34);
  --font:
    "Inter", "SF Pro Text", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --mono:
    "SFMono-Regular", ui-monospace, "JetBrains Mono", Menlo, Consolas,
    "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
.cta-final h2 {
  font-family: var(--display);
  font-weight: 580;
}

/* ─────────────── the pointillist garden ─────────────── */

.meadow svg {
  display: block;
  width: 100%;
  height: auto;
}

.meadow .fl {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: grow 1s cubic-bezier(0.24, 0.9, 0.32, 1.15) backwards;
  animation-delay: var(--d, 0s);
}

.meadow .sw {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: sway 7s ease-in-out infinite alternate;
}

@keyframes grow {
  from {
    transform: scale(0.25);
    opacity: 0;
  }
}

@keyframes sway {
  from {
    transform: rotate(-1.1deg);
  }
  to {
    transform: rotate(1.3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .meadow .fl,
  .meadow .sw {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

.dotted-rule {
  display: flex;
  justify-content: center;
  color: var(--coral);
  opacity: 0.55;
  padding: 6px 0;
}

/* ───────────────────────── nav ───────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 14.5px;
  color: var(--muted);
}

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

.nav-links a.active {
  color: var(--text);
  font-weight: 550;
}

.nav-cta {
  margin-left: 4px;
}

.nav-toggle {
  display: none;
}

/* ─────────────────────── buttons ─────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
  font-size: 15px;
  font-weight: 560;
  border-radius: 999px;
  padding: 12px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--coral-deep);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(232, 76, 66, 0.55);
}

.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #d9c8ba;
}

.btn-small {
  padding: 8px 17px;
  font-size: 14px;
}

.text-action {
  color: var(--coral-deep);
  font-weight: 560;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.text-action:hover {
  color: var(--coral);
}

/* ───────────────────────── hero ───────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 205, 242, 0.18), transparent 30%),
    radial-gradient(circle at 96% 92%, rgba(247, 203, 183, 0.28), transparent 38%);
}

.hero-art {
  position: absolute;
  right: -10px;
  bottom: -4px;
  z-index: 0;
  width: min(56%, 780px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%);
  mask-image: linear-gradient(90deg, transparent, #000 22%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(40px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral-deep);
}

.hero .lede {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 34em;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 34em;
}

.hero-note svg {
  margin-right: 6px;
  margin-top: -2px;
}

.hero-note b {
  color: var(--green-ink);
  font-weight: 620;
}

.hero-note svg {
  color: var(--green-ink);
  flex-shrink: 0;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  border-top: 1px solid var(--border);
  margin-top: 30px;
}

.proof-rail span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 14px 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.proof-rail b {
  color: var(--text);
  font-size: 13.5px;
}

/* ─────────────────────── sections ─────────────────────── */

.section {
  position: relative;
  padding: 92px 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 640;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-deep);
  margin-bottom: 16px;
}

.kicker.left {
  justify-content: flex-start;
}

.section h2 {
  font-size: clamp(30px, 4.4vw, 44px);
  letter-spacing: -0.015em;
  line-height: 1.08;
  text-align: center;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section h2.left {
  text-align: left;
}

.section .sub {
  text-align: center;
  color: var(--muted);
  max-width: 42em;
  margin: 0 auto 52px;
  font-size: 17px;
}

.section .sub.left {
  text-align: left;
  margin-left: 0;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
}

/* why it's fair */

.fair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fair-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px 30px 30px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.fair-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -30px rgba(17, 28, 43, 0.28);
}

.fair-card .posy {
  display: block;
  margin: -6px 0 14px -6px;
}

.fair-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.fair-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* how it works */

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--paper);
}

.flow-step {
  position: relative;
  padding: 34px 30px;
}

.flow-step + .flow-step::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  width: 1px;
  height: calc(100% - 84px);
  background: var(--border);
}

.flow-step .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral-soft);
  border: 1px solid #ffd9d2;
  color: var(--coral-deep);
  font-family: var(--display);
  font-weight: 620;
  font-size: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.flow-step h3 {
  font-size: 17px;
  font-weight: 640;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}

.flow-step p {
  color: var(--muted);
  font-size: 14.5px;
}

.assurance {
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  background: #eef4ee;
  border: 1px solid #d8e5d8;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--green-ink);
}

.assurance svg {
  color: var(--green-ink);
}

/* safety */

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-list li {
  display: flex;
  gap: 16px;
}

.trust-list .dot {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon.coral {
  background: var(--coral-soft);
  color: var(--coral);
}
.icon.lavender {
  background: var(--lavender-soft);
  color: #7f6cc0;
}
.icon.peach {
  background: var(--peach-soft);
  color: #c07a4e;
}
.icon.green {
  background: #eef4ee;
  color: var(--green-ink);
}

.trust-list h3 {
  font-size: 16px;
  font-weight: 640;
  margin-bottom: 3px;
}

.trust-list p {
  font-size: 14.5px;
  color: var(--muted);
}

.trust-map {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, var(--paper));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.trust-node {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 18px;
}

.trust-node span {
  grid-row: span 2;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.trust-node.platform span {
  background: var(--lavender-soft);
  color: #7f6cc0;
}

.trust-node.app span {
  background: var(--coral-soft);
  color: var(--coral);
}

.trust-node.user span {
  background: #eef4ee;
  color: var(--green-ink);
}

.trust-node strong {
  font-size: 15px;
}

.trust-node p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.trust-path {
  width: 1px;
  height: 18px;
  background-image: linear-gradient(var(--coral) 40%, transparent 0);
  background-size: 1px 6px;
  margin-left: 47px;
}

/* developers */

.dev-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin-top: 34px;
}

.mini {
  display: flex;
  gap: 13px;
}

.mini svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.mini h4 {
  font-size: 15px;
  font-weight: 630;
  margin-bottom: 2px;
}

.mini p {
  font-size: 13.5px;
  color: var(--muted);
}

/* code window */

.code-window {
  position: relative;
  z-index: 1;
  background: var(--code-bg);
  border-radius: var(--radius-l);
  border: 1px solid #24332b;
  box-shadow: 0 30px 70px -30px rgba(17, 28, 43, 0.4);
  overflow: hidden;
}

.code-window .bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid #24332b;
}

.code-window .bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.code-window .bar .name {
  width: auto;
  height: auto;
  border-radius: 0;
  margin-left: 10px;
  color: #7d907f;
  font-size: 12.5px;
  font-family: var(--mono);
}

.code-window pre {
  margin: 0;
  padding: 18px 20px;
  overflow-x: auto;
  font-size: 13.5px;
  line-height: 1.65;
}

.code-window pre code {
  font-family: var(--mono);
  background: transparent;
}

.code-window pre.shiki {
  background: transparent !important;
}

/* final CTA */

.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 104px 0 210px;
  border-top: 1px solid var(--border);
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 205, 242, 0.28), transparent 34%),
    radial-gradient(circle at 86% 30%, rgba(247, 203, 183, 0.32), transparent 34%);
}

.cta-art {
  position: absolute;
  inset: auto 0 -4px;
  z-index: 0;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 34%);
  mask-image: linear-gradient(180deg, transparent, #000 34%);
  pointer-events: none;
}

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

.cta-final h2 {
  font-size: clamp(32px, 4.8vw, 50px);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.cta-final h2 em {
  font-style: italic;
  color: var(--green-ink);
}

.cta-final p {
  color: var(--muted);
  max-width: 36em;
  margin: 0 auto 34px;
  font-size: 17px;
}

.cta-final .hero-ctas {
  justify-content: center;
}

/* footer */

.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 48px;
  font-size: 14px;
  color: var(--muted);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 32px;
}

.footer .brand {
  font-size: 15px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: auto;
}

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

.footer .fine {
  width: 100%;
  font-size: 13px;
  color: #8b95a5;
}

/* ───────────────────────── docs ───────────────────────── */

.docs-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  padding: 48px 0 104px;
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding: 14px;
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.docs-sidebar .group {
  margin-bottom: 26px;
}

.docs-sidebar .group-title {
  font-size: 12px;
  font-weight: 660;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #8b95a5;
  margin-bottom: 9px;
}

.docs-sidebar ul {
  list-style: none;
}

.docs-sidebar li a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
}

.docs-sidebar li a:hover {
  color: var(--text);
  background: var(--paper);
  border-color: var(--border);
}

.docs-sidebar li a.active {
  color: var(--coral-deep);
  background: var(--coral-soft);
  font-weight: 570;
  border-color: #ffd9d2;
}

.docs-menu-summary {
  display: none;
}

/* docs prose */

.prose {
  max-width: 50rem;
  font-size: 16px;
  background: rgba(255, 253, 249, 0.52);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 54px);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h1 {
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0 0 20px;
}

.prose h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 48px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.prose h3 {
  font-size: 18px;
  font-weight: 640;
  margin: 32px 0 10px;
}

.prose h4 {
  font-size: 15.5px;
  font-weight: 640;
  margin: 24px 0 8px;
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: 1.35em;
}

.prose li {
  margin-bottom: 5px;
}

.prose a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-decoration-color: #f5c1ba;
  text-underline-offset: 2.5px;
}

.prose a:hover {
  text-decoration-color: var(--coral);
}

.prose strong {
  font-weight: 640;
  color: var(--text);
}

.prose code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: var(--paper);
  border: 1px solid #ece1d4;
  border-radius: 6px;
  padding: 0.12em 0.38em;
  color: #3d2f22;
}

.prose pre {
  background: var(--code-bg);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  overflow-x: auto;
  margin: 18px 0;
  font-size: 13.5px;
  line-height: 1.6;
}

.prose pre.shiki {
  background: var(--code-bg) !important;
}

.prose pre code {
  background: transparent;
  border: 0;
  padding: 0;
  color: #d4e4d4;
  font-size: 1em;
}

.prose blockquote {
  border-left: 3px solid var(--coral);
  background: var(--coral-soft);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  padding: 14px 18px;
  margin: 18px 0;
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

.table-scroll {
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--paper);
}

.prose table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

.prose th,
.prose td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.prose tr:last-child td {
  border-bottom: 0;
}

.prose th {
  font-weight: 620;
  background: var(--paper);
  white-space: nowrap;
}

.prose td code,
.prose th code {
  white-space: nowrap;
}

/* heading anchors */

.hlink {
  margin-left: 8px;
  opacity: 0;
  font-weight: 400;
  color: var(--coral);
  text-decoration: none !important;
}

h2:hover .hlink,
h3:hover .hlink,
h4:hover .hlink {
  opacity: 1;
}

/* prev / next */

.docs-pager {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
}

.docs-pager a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface);
  min-width: 0;
}

.docs-pager a:hover {
  border-color: #d9c8ba;
}

.docs-pager .dir {
  font-size: 12px;
  color: #8b95a5;
}

.docs-pager .title {
  font-weight: 570;
  color: var(--coral-deep);
}

.docs-pager .next {
  margin-left: auto;
  text-align: right;
}

/* ─────────────────────── responsive ─────────────────────── */

@media (max-width: 960px) {
  .trust-grid,
  .dev-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .fair-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0 0;
  }

  .hero-art {
    position: static;
    width: 100%;
    margin-top: 34px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%);
    mask-image: linear-gradient(180deg, transparent, #000 18%);
  }

  .hero-copy {
    max-width: 640px;
  }

  .flow-step + .flow-step::before {
    top: 0;
    left: 28px;
    width: calc(100% - 56px);
    height: 1px;
  }

  .docs-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .docs-sidebar {
    position: static;
    max-height: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    background: var(--surface);
    padding: 0;
  }

  .prose {
    max-width: none;
  }

  .docs-menu-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    font-weight: 570;
    font-size: 14.5px;
    cursor: pointer;
    list-style: none;
  }

  .docs-menu-summary::-webkit-details-marker {
    display: none;
  }

  .docs-sidebar-body {
    padding: 4px 12px 16px;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 720px) {
  .nav-inner {
    gap: 12px;
  }

  .brand span {
    font-size: 16px;
    white-space: nowrap;
  }

  .nav-links {
    gap: 12px;
    font-size: 13.5px;
  }

  .nav-cta {
    padding: 7px 14px;
    font-size: 13px;
  }

  .nav-links .optional {
    display: none;
  }

  .mini-features {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero .lede {
    font-size: 16.5px;
  }

  .proof-rail span {
    padding-right: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .cta-final {
    padding: 72px 0 150px;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 24px;
    row-gap: 2px;
  }

  .nav-links {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .proof-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proof-rail span {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    padding: 10px 0;
  }

  .proof-rail span + span {
    border-top: 1px dashed var(--border);
  }

  .fair-card,
  .flow-step,
  .trust-map,
  .prose {
    padding: 24px;
  }

  .trust-node {
    grid-template-columns: 1fr;
  }

  .trust-node span {
    grid-row: auto;
  }
}
