:root {
  --canvas: #f4f4f1;
  --ink: #0b0b0b;
  --lead: #1f1f1c;
  --muted: #3a3a37;
  --quiet: #6a6a66;
  --line: rgba(11, 11, 11, 0.12);
  --focus: #0b0b0b;
  --event: #0b0b0b;
  --event-text: #f4f4f1;
  --event-muted: #c4c4bf;
  --event-line: rgba(244, 244, 241, 0.16);
  --gutter: 18px;
  --wrap: 72rem;
  --proof: 88rem;
  --measure: 32rem;
  --font: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --util: 0.8125rem;
  --body: 1.0625rem;
  --chapter: 1.375rem;
  --proposition: 1.8125rem;
  --header-h: 44px;
  --cta-h: 52px;
  --space-tight: 12px;
  --space-chapter: 48px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
  scroll-padding-top: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--canvas); }
body {
  font-size: var(--body);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums;
  color-scheme: light;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, figure, dl, dd, dt { margin: 0; }
h1, h2 {
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: pretty;
}
h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
ul, ol { margin: 0; padding: 0; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
iframe:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.site { background: var(--canvas); color: var(--ink); overflow-x: clip; }
.wrap { width: min(var(--wrap), calc(100% - (var(--gutter) * 2))); margin: 0 auto; }
.measure { max-width: var(--measure); }

.header { position: relative; z-index: 20; }
.navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.brand {
  font-size: var(--util);
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  line-height: 1;
}
.desktop-nav { display: none; }
.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0 10px;
  text-decoration: none;
  font-size: var(--util);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--quiet);
}
.desktop-nav a:hover { color: var(--ink); }

.menu { position: static; }
.menu summary {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  list-style: none;
  border: 0;
  background: transparent;
}
.menu summary::-webkit-details-marker { display: none; }
.menu summary span[aria-hidden="true"] {
  width: 18px;
  height: 1px;
  background: var(--ink);
  display: block;
}
.menu nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 25;
  display: grid;
  align-content: start;
  padding: 8px 0 32px;
  background: var(--canvas);
  overflow: auto;
}
.menu nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  text-decoration: none;
  font-size: var(--util);
  letter-spacing: 0;
}
body:has(.menu[open]) {
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--quiet);
  font-size: var(--util);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}

.hero { padding: 2px 0 0; }
.hero-grid { display: block; }
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 32rem;
}
.hero .eyebrow { display: none; }
.hero h1 {
  font-size: var(--proposition);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.04;
  max-width: 13.6ch;
  text-wrap: wrap;
  hyphens: none;
}
.price-mark {
  display: block;
  margin-top: 6px;
  font-size: 52px;
  letter-spacing: -0.07em;
  line-height: 0.84;
  white-space: nowrap;
}
.hero-lead {
  max-width: 20rem;
  margin-top: 6px;
  font-size: var(--body);
  line-height: 1.26;
  letter-spacing: -0.01em;
  color: var(--lead);
  text-wrap: wrap;
  hyphens: none;
}
.hero-actions {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 8px;
}
.hero-actions .btn-solid {
  width: max-content;
  max-width: 100%;
  height: var(--cta-h);
  min-height: var(--cta-h);
  padding: 0 18px;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
}
.hero-secondary {
  display: none;
}
.hero-process,
.hero-value {
  display: none;
}

.design { padding: 0 0 16px; }
.proof {
  width: 100%;
  margin: 0;
  background: #101820;
}
.demo-embed {
  display: block;
  width: 100%;
  height: calc(100svh - 270px);
  min-height: 300px;
  border: 0;
  background: #101820;
}
.design-after {
  padding-top: 16px;
}
.design-after .example-kicker {
  margin: 0;
  max-width: var(--measure);
  font-size: var(--util);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--quiet);
}
.design-actions { margin-top: 10px; font-size: var(--util); }
.design-actions a { color: var(--ink); text-underline-offset: 3px; }
.bridge { margin-top: 8px; font-size: var(--util); }
.bridge a { color: var(--quiet); text-underline-offset: 3px; }
.bridge a:hover { color: var(--ink); }

.situation { padding: 48px 0 0; }
.why { padding: 20px 0 56px; }
.starter {
  padding: 0;
  background: var(--event);
  color: var(--event-text);
  scroll-margin-top: -12px;
}
.delegation { padding: 56px 0 0; }
.delegation .wrap { max-width: var(--measure); }
.process { padding: 24px 0 0; }
.trust { padding: 24px 0 0; }
.faq { padding: 24px 0 0; }
.final-cta { padding: 64px 0 56px; }
.footer { padding: 24px 0 32px; }

.situation .eyebrow,
.why .eyebrow,
.delegation .eyebrow,
.process .eyebrow,
.trust .eyebrow,
.final-cta .eyebrow { display: none; }

.situation h2,
.why h2 {
  font-size: 1.25rem;
  max-width: 22rem;
  letter-spacing: -0.04em;
  line-height: 1.16;
  text-wrap: pretty;
}
.delegation h2,
.process h2,
.trust h2,
.faq h2 {
  font-size: 1.125rem;
  max-width: 22rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-wrap: pretty;
}
.process h2 { max-width: 18em; }
.starter h2 {
  max-width: 16em;
  margin-top: 56px;
  font-size: 1.625rem;
  letter-spacing: -0.045em;
  line-height: 1.12;
  color: var(--event-text);
  text-wrap: pretty;
}
.faq h2 { max-width: 8ch; }
.section-lead {
  margin-top: 12px;
  max-width: var(--measure);
  font-size: var(--body);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--lead);
}
.situation .section-lead,
.why .section-lead,
.delegation .section-lead {
  margin-top: 10px;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.38;
  color: var(--muted);
}
.support,
.close-line,
.boundary,
.domain-note,
.not-included,
.microcopy,
.order-hold,
.payment-caption,
.support-line {
  margin-top: 10px;
  font-size: var(--body);
  line-height: 1.42;
}
.support, .boundary, .domain-note, .not-included, .microcopy, .payment-caption { color: var(--muted); }
.close-line {
  margin-top: 12px;
  max-width: 28rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.28;
  color: var(--ink);
  text-wrap: pretty;
}

.starter .eyebrow { color: var(--event-muted); }
.starter .section-lead,
.starter .payment-caption,
.starter .not-included,
.starter .domain-note,
.starter .support-line { color: var(--event-muted); }
.starter a:focus-visible,
.starter input:focus-visible,
.starter summary:focus-visible { outline-color: var(--event-text); }

.essentials,
.trust-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.essentials dt,
.trust-list dt {
  display: inline;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.essentials dt::after,
.trust-list dt::after { content: " — "; font-weight: 400; color: var(--muted); }
.essentials dd,
.trust-list dd {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.38;
}

.why .boundary { margin-top: 8px; font-size: 0.9375rem; }

.starter-stage {
  display: grid;
  gap: 0;
}
.starter-offer {
  min-height: 100svh;
  max-width: 32rem;
  padding: 10vh 0 12vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.starter-offer .section-lead {
  max-width: 22rem;
  margin-top: 16px;
  font-size: var(--body);
  line-height: 1.38;
  color: #e6e6e1;
}
.starter .payment-caption {
  margin-top: 28px;
  max-width: 22rem;
  font-size: var(--util);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--event-muted);
}
.starter-price {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 7.5rem;
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.78;
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--event-text);
}
.starter-price .currency {
  margin-right: 0.05em;
  margin-top: 0.1em;
  font-size: 0.44em;
  line-height: 1;
}
.currency {
  margin-right: 0.02em;
  margin-top: 0.16em;
  font-size: 0.38em;
  line-height: 1;
}
.starter-spec {
  max-width: 32rem;
  padding: 56px 0 64px;
}
.starter-spec h3 {
  margin-top: 40px;
  font-size: var(--util);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--event-muted);
}
.starter-spec h3:first-child { margin-top: 0; }
.spec-list { list-style: none; margin-top: 16px; }
.spec-list li {
  padding: 7px 0;
  font-size: var(--body);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #d2d2cc;
}
.starter .not-included,
.starter .domain-note {
  margin-top: 10px;
  font-size: var(--util);
  line-height: 1.45;
  letter-spacing: 0;
  max-width: 32rem;
}
.starter-confirm {
  max-width: 32rem;
  padding: 48px 0 128px;
  border-top: 0;
}
.b2b-scope {
  margin: 0 0 20px;
  max-width: 28rem;
  font-size: 0.75rem;
  line-height: 1.45;
  letter-spacing: 0;
  color: #9a9a95;
}
.b2b-fields { display: grid; gap: 12px; max-width: 22rem; }
.b2b-evidence-note { margin: 0; font-size: 0.75rem; line-height: 1.45; color: #9a9a95; }
.b2b-field span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: #9a9a95;
}
.b2b-field input {
  width: 100%;
  min-height: 44px;
  padding: 0.2rem 0 0.35rem;
  border: 0;
  border-bottom: 1px solid var(--event-line);
  border-radius: 0;
  background: transparent;
  color: var(--event-text);
  font: inherit;
  font-size: 0.9375rem;
}
.b2b-field input:focus {
  border-bottom-color: var(--event-text);
}
.b2b-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.8125rem;
  line-height: 1.45;
  cursor: default;
  color: #b4b4ae;
}
.b2b-confirm input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--event-text);
}
.order-hold {
  margin-top: 14px;
  max-width: 32rem;
  font-size: var(--body);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--event-text);
}
.starter .support-line {
  margin-top: 12px;
  font-size: var(--util);
  letter-spacing: 0;
}

.handoff,
.steps {
  list-style: none;
  margin-top: 14px;
}
.handoff li,
.steps li {
  padding: 8px 0;
}
.handoff h3,
.steps h3 {
  font-size: 0.9375rem;
  font-weight: 500;
}
.handoff p,
.steps p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.38;
}

.faq .eyebrow { display: none; }
.faq-list { margin-top: 10px; }
.faq-list details + details { border-top: 0; }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 10px 0;
  list-style: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--muted);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-body { padding: 0 0 10px; max-width: var(--measure); }
.faq-body p { margin: 0 0 8px; color: var(--muted); font-size: 0.9375rem; line-height: 1.38; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--ink); text-underline-offset: 3px; }

.btn {
  height: var(--cta-h);
  min-height: var(--cta-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  width: max-content;
  max-width: 100%;
}
.btn-solid { background: var(--ink); color: var(--canvas); }
.btn-solid:hover { background: var(--ink); }
.starter .btn-solid { background: var(--event-text); color: var(--event); }

.final-cta h2 {
  font-size: var(--chapter);
  max-width: 6.55em;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: wrap;
}
.final-cta .section-lead { margin-top: 12px; max-width: 24rem; color: var(--lead); }
.final-buttons { margin-top: 16px; }
.final-cta .btn-solid {
  height: var(--cta-h);
  min-height: var(--cta-h);
}
.microcopy { margin-top: 10px; font-size: var(--util); color: var(--quiet); }

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.footer p { margin-top: 10px; color: var(--quiet); font-size: 0.8125rem; }
.footer-row a,
.legal-link,
.footer nav a {
  min-height: 0;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.8125rem;
  color: var(--quiet);
}
.footer-row a:hover,
.legal-link:hover,
.footer nav a:hover { color: var(--ink); }
.footer nav { display: flex; flex-wrap: wrap; gap: 4px 20px; margin-top: 8px; }
.copyright { font-size: 0.75rem; }

.legal-page .brief-form {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  max-width: 36rem;
}
.legal-page .brief-form label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8125rem;
  color: var(--quiet);
}
.legal-page .brief-form input,
.legal-page .brief-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
}
.legal-page .brief-form textarea { min-height: 8rem; resize: vertical; }
.legal-page .form-status { margin: 0; color: var(--muted); font-size: 0.875rem; }
.legal-page .form-status[data-state="error"],
.legal-page .form-status[data-state="ok"] { color: var(--ink); }
.legal-page { padding: 64px 0; }
.legal-page .wrap { width: min(720px, calc(100% - (var(--gutter) * 2))); }
.legal-page .back { display: inline-flex; min-height: 44px; align-items: center; margin-bottom: 20px; }
.legal-page h1 { font-size: var(--chapter); margin-bottom: 16px; }
.legal-page h2 { font-size: 0.9375rem; font-weight: 500; margin: 28px 0 10px; }
.legal-page p { margin: 0 0 12px; color: var(--muted); }
.legal-page a { color: var(--ink); }

@media (max-width: 389px) {
  :root { --gutter: 16px; }
  .demo-embed { height: calc(100svh - 255px); min-height: 280px; }
}

@media (max-width: 359px) {
  .hero { padding: 0; }
  .hero h1 { font-size: 1.6875rem; max-width: 14.2ch; line-height: 1.05; }
  .price-mark { margin-top: 4px; font-size: 48px; }
  .hero-lead { margin-top: 6px; max-width: 16.5rem; line-height: 1.24; }
  .hero-actions { margin-top: 8px; }
  .starter-price { font-size: 6.75rem; }
  .starter h2 { font-size: 1.375rem; margin-top: 40px; }
}

@media (max-height: 700px) {
  :root { --header-h: 40px; --cta-h: 48px; }
  .menu summary { width: 40px; height: 40px; gap: 5px; }
  .menu summary span[aria-hidden="true"] { width: 16px; }
  .hero { padding: 0; }
  .hero h1 { font-size: 1.625rem; max-width: 14ch; }
  .price-mark { margin-top: 4px; font-size: 44px; }
  .hero-lead { margin-top: 4px; font-size: 0.9375rem; line-height: 1.24; max-width: 16.5rem; }
  .hero-actions { margin-top: 8px; }
  .demo-embed { height: calc(100svh - 196px); min-height: 240px; }
  .starter-price { font-size: 6.5rem; }
  .starter h2 { margin-top: 32px; }
}

@media (min-width: 768px) {
  :root {
    --gutter: 24px;
    --chapter: 1.5rem;
  }
  .hero { padding: 8px 0 0; }
  .hero h1 { max-width: 13.6ch; }
  .hero-lead { max-width: 32rem; }
  .demo-embed { min-height: 600px; height: max(600px, calc(100svh - 300px)); }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 36px;
    --chapter: 1.75rem;
    --proposition: 2.625rem;
  }
  .desktop-nav { display: flex; align-items: center; }
  .menu { display: none; }
  .hero { padding: 8px 0 0; }
  .hero-copy { max-width: 32rem; }
  .hero h1 { font-size: 2.625rem; line-height: 1.02; max-width: 13.6ch; }
  .price-mark { font-size: 76px; margin-top: 10px; }
  .hero-lead { margin-top: 12px; max-width: 32rem; line-height: 1.32; text-wrap: balance; }
  .hero-actions { margin-top: 12px; }
  .design { padding-bottom: 20px; }
  .demo-embed { min-height: 640px; height: max(640px, calc(100svh - 268px)); }
  .situation { padding-top: 56px; }
  .why { padding: 24px 0 64px; }
  .situation h2,
  .why h2 { font-size: 1.375rem; max-width: 24rem; }
  .delegation h2,
  .process h2,
  .trust h2,
  .faq h2 { font-size: 1.1875rem; max-width: 26rem; }
  .process h2 { max-width: 20em; }
  .delegation { padding-top: 64px; }
  .final-cta { padding: 72px 0 64px; }
  .final-cta h2 { font-size: 1.75rem; }
  .starter-offer { padding: 12vh 0 14vh; }
  .starter h2 { font-size: 1.75rem; max-width: none; }
  .starter-price { font-size: 8.125rem; }
  .starter-offer .section-lead { max-width: 28rem; }
}

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