@font-face {
  font-family: "InterVariable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/InterVariable.woff2") format("woff2");
}

:root {
  color-scheme: light dark;
  --paper: #f7f2e8;
  --paper-raised: #fffdf8;
  --paper-tint: #eee9df;
  --ink: #1b211c;
  --muted: #596158;
  --cedar: #245c42;
  --cedar-strong: #17452f;
  --cedar-soft: #dbe9df;
  --line: rgb(27 33 28 / 12%);
  --line-strong: rgb(27 33 28 / 22%);
  --focus: #1671c5;
  --shadow: 0 24px 60px rgb(45 54 45 / 14%);
  --page-width: 76rem;
  --radius: 1.25rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #111512;
    --paper-raised: #191f1a;
    --paper-tint: #151a16;
    --ink: #f1eee5;
    --muted: #adb5ac;
    --cedar: #91d3ad;
    --cedar-strong: #b4e5c7;
    --cedar-soft: #193224;
    --line: rgb(255 255 255 / 10%);
    --line-strong: rgb(255 255 255 / 18%);
    --focus: #7cc8ff;
    --shadow: none;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "InterVariable", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11", "ss01", "ss03";
  font-optical-sizing: auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

@media (min-width: 40rem) {
  body {
    font-size: 1rem;
  }
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  font-weight: 600;
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.04em;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
}

h2 {
  max-width: 24ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.25rem;
}

p {
  max-width: 56ch;
  text-wrap: pretty;
}

.site-main {
  isolation: isolate;
  overflow: clip;
}

.page-shell {
  width: min(100% - 2rem, var(--page-width));
  margin-inline: auto;
}

@media (min-width: 40rem) {
  .page-shell {
    width: min(100% - 3rem, var(--page-width));
  }
}

@media (min-width: 64rem) {
  .page-shell {
    width: min(100% - 5rem, var(--page-width));
  }
}

.section-space {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  transform: translateY(-200%);
}

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.wordmark {
  flex-shrink: 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 40rem) {
  .button {
    min-height: 2.75rem;
    font-size: 0.9375rem;
  }
}

.button-primary {
  background: var(--cedar-strong);
  color: #fffdf8;
  box-shadow: 0 0 0 1px var(--cedar-strong);
}

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

.button-primary:focus-visible {
  outline-color: var(--focus);
  outline-offset: 3px;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

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

.text-link {
  color: var(--cedar-strong);
  font-weight: 600;
  text-underline-offset: 0.22em;
}

.text-link:hover {
  text-decoration-thickness: 2px;
}

.eyebrow {
  color: var(--cedar-strong);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 20%), transparent 80%);
  opacity: 0.32;
}

.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 62rem) {
  .hero-grid {
    grid-template-columns: 21fr 19fr;
    gap: 4rem;
  }
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
}

.hero-lede {
  max-width: 47ch;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-note {
  max-width: 50ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.browser-frame {
  overflow: hidden;
  border-radius: min(2vw, 1.25rem);
  background: var(--paper-raised);
  box-shadow: var(--shadow);
  outline: 1px solid var(--line-strong);
  outline-offset: -1px;
}

.browser-bar {
  display: grid;
  grid-template-columns: auto auto auto minmax(0, 1fr);
  gap: 0.4rem;
  align-items: center;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.browser-bar > span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--line-strong);
}

.browser-bar > div {
  min-width: 0;
  overflow: hidden;
  margin-left: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--paper-tint);
  color: var(--muted);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sample-placeholder {
  display: grid;
  min-height: 25rem;
  align-content: center;
  gap: 1rem;
  padding: clamp(2rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 80% 15%, var(--cedar-soft), transparent 36%),
    var(--paper-raised);
}

.placeholder-kicker {
  color: var(--cedar-strong);
  font-size: 0.875rem;
  font-weight: 650;
}

.placeholder-title {
  max-width: 17ch;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.placeholder-lines {
  display: grid;
  gap: 0.6rem;
  max-width: 18rem;
}

.placeholder-lines span {
  height: 0.5rem;
  border-radius: 999px;
  background: var(--line-strong);
}

.placeholder-lines span:nth-child(2) {
  width: 82%;
}

.placeholder-lines span:nth-child(3) {
  width: 58%;
}

.browser-frame figcaption {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.proof-strip {
  border-block: 1px solid var(--line);
}

.proof-list {
  display: grid;
}

@media (min-width: 45rem) {
  .proof-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-list > div {
  padding-block: 1.5rem;
}

.proof-list > div + div {
  border-top: 1px solid var(--line);
}

@media (min-width: 45rem) {
  .proof-list > div {
    padding-inline: 2rem;
  }

  .proof-list > div:first-child {
    padding-left: 0;
  }

  .proof-list > div:last-child {
    padding-right: 0;
  }

  .proof-list > div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

.proof-list dt,
.feature-grid dt {
  color: var(--ink);
  font-weight: 600;
}

.proof-list dd,
.feature-grid dd {
  color: var(--muted);
  font-weight: 400;
}

.heading-group {
  display: grid;
  gap: 1.25rem;
}

.heading-group > p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.125rem;
}

.steps {
  display: grid;
  gap: 0;
  margin: 4rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

@media (min-width: 50rem) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  display: grid;
  gap: 1rem;
  padding-block: 2rem;
}

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

@media (min-width: 50rem) {
  .steps li {
    padding-inline: 2rem;
  }

  .steps li:first-child {
    padding-left: 0;
  }

  .steps li:last-child {
    padding-right: 0;
  }

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

.step-number {
  color: var(--cedar-strong);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.steps p {
  color: var(--muted);
}

.section-tint {
  background: var(--paper-tint);
}

.feature-grid {
  display: grid;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid var(--line-strong);
}

@media (min-width: 46rem) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 68rem) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-grid > div {
  display: grid;
  gap: 0.6rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line-strong);
}

@media (min-width: 46rem) {
  .feature-grid > div {
    padding-inline: 2rem;
  }

  .feature-grid > div:nth-child(odd) {
    padding-left: 0;
  }

  .feature-grid > div:nth-child(even) {
    padding-right: 0;
    border-left: 1px solid var(--line-strong);
  }
}

@media (min-width: 68rem) {
  .feature-grid > div:nth-child(n) {
    padding-inline: 2rem;
    border-left: 0;
  }

  .feature-grid > div:nth-child(3n + 1) {
    padding-left: 0;
  }

  .feature-grid > div:nth-child(3n) {
    padding-right: 0;
  }

  .feature-grid > div:not(:nth-child(3n + 1)) {
    border-left: 1px solid var(--line-strong);
  }
}

.work-grid {
  display: grid;
  gap: 3rem;
  align-items: end;
}

@media (min-width: 58rem) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.work-placeholder {
  display: grid;
  min-height: 19rem;
  align-content: end;
  gap: 0.75rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, transparent 0 0.75rem, var(--line) 0.75rem 0.8rem),
    var(--paper-raised);
  outline: 1px solid var(--line-strong);
  outline-offset: -1px;
}

.work-placeholder span {
  color: var(--cedar-strong);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-placeholder strong {
  max-width: 22ch;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.preview-band {
  border-block: 1px solid var(--line);
  background: var(--cedar-strong);
  color: #fffdf8;
}

@media (prefers-color-scheme: dark) {
  .preview-band {
    background: var(--paper);
    color: var(--ink);
  }
}

.preview-inner {
  display: grid;
  gap: 2rem;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

@media (min-width: 52rem) {
  .preview-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.preview-band .eyebrow,
.preview-band .text-link {
  color: #d9f4e2;
}

@media (prefers-color-scheme: dark) {
  .preview-band .eyebrow,
  .preview-band .text-link {
    color: var(--cedar);
  }
}

.preview-band h2 {
  max-width: 17ch;
}

.preview-inner > div {
  display: grid;
  gap: 1rem;
}

.preview-inner p {
  color: rgb(255 253 248 / 82%);
}

@media (prefers-color-scheme: dark) {
  .preview-inner p {
    color: var(--muted);
  }
}

.faq-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 60rem) {
  .faq-layout {
    grid-template-columns: 2fr 3fr;
    gap: 5rem;
  }
}

.faq-heading {
  align-content: start;
}

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

.faq-list details {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 600;
}

.faq-list details p {
  padding-top: 1rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 52rem) {
  .about-grid {
    grid-template-columns: minmax(16rem, 2fr) 3fr;
    gap: 5rem;
  }
}

.portrait {
  overflow: hidden;
  width: min(100%, 24rem);
  border-radius: min(4vw, 1.25rem);
  background: var(--paper-raised);
  outline: 1px solid var(--line-strong);
  outline-offset: -1px;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.closing {
  border-bottom: 1px solid var(--line);
}

.closing-inner {
  display: grid;
  gap: 1.5rem;
}

.closing-inner h2 {
  max-width: 12ch;
}

.closing-inner p {
  color: var(--muted);
  font-size: 1.25rem;
}

.site-footer {
  padding-block: 3rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.footer-wordmark {
  width: max-content;
  color: var(--ink);
  font-weight: 500;
}

.footer-inner address {
  max-width: 70ch;
  font-style: normal;
}

.footer-inner a {
  font-weight: 400;
  text-underline-offset: 0.2em;
}

.privacy-note:target {
  color: var(--ink);
}

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