/* ============================================================
   Deskarti, deskarti.com.au
   Design source: "Deskarti Landing v3.dc.html" (Claude Design)
   Palette is authored in oklch; a sRGB fallback block follows
   for browsers without oklch support.
   ============================================================ */

:root {
  --bg:            oklch(0.94 0.022 158);
  --bg-deep:       oklch(0.915 0.03 156);
  --paper:         oklch(0.985 0.01 158);
  --ink:           oklch(0.235 0.03 163);
  --accent:        oklch(0.49 0.128 150);
  --accent-bright: oklch(0.8 0.17 150);
  --muted:         oklch(0.45 0.028 163);
  --dark-fg:       oklch(0.95 0.014 158);
  --dark-muted:    oklch(0.75 0.022 163);
  --link-hover:    oklch(0.44 0.04 158);
  --dark-dim:      oklch(0.66 0.02 163);
  --placeholder:   oklch(0.62 0.015 165);

  --rule:      oklch(0.235 0.03 163 / 0.28);
  --rule-soft: oklch(0.235 0.03 163 / 0.06);
  --ghost:     oklch(0.95 0.014 158 / 0.11);
  --header-bg: oklch(0.94 0.022 158 / 0.88);

  --wash:        oklch(0.49 0.128 150 / 0.06);
  --wash-strong: oklch(0.49 0.128 150 / 0.11);
  --wash-dark:   oklch(0.95 0.014 158 / 0.055);

  --shadow-sm: 0 1px 2px oklch(0.235 0.03 163 / 0.04),
               0 4px 12px -6px oklch(0.235 0.03 163 / 0.14);
  --shadow: 0 1px 2px oklch(0.235 0.03 163 / 0.05),
            0 18px 44px -18px oklch(0.235 0.03 163 / 0.22);

  --radius: 8px;
  --radius-sm: 6px;

  --shell: 1320px;
  --gutter: 48px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
}

@supports not (color: oklch(0.5 0.14 155)) {
  :root {
    --bg: #e0f0e6;          --bg-deep: #d4e9db;
    --paper: #f5fcf7;       --ink: #10231a;
    --accent: #117436;      --accent-bright: #5edb81;
    --muted: #475a51;       --dark-fg: #e7f1eb;
    --dark-muted: #a2b3aa;  --link-hover: #40594a;
    --wash: rgba(17,116,54,.06);  --wash-strong: rgba(17,116,54,.11);
    --wash-dark: rgba(231,241,235,.055);
    --shadow-sm: 0 1px 2px rgba(16,35,26,.04), 0 4px 12px -6px rgba(16,35,26,.14);
    --shadow: 0 1px 2px rgba(16,35,26,.05), 0 18px 44px -18px rgba(16,35,26,.22);
    --rule: rgba(16, 35, 26, 0.28);
    --rule-soft: rgba(16, 35, 26, 0.06);
    --ghost: rgba(231, 241, 235, 0.11);
    --header-bg: rgba(224, 240, 230, 0.88);
  }
}

/* ---------- base ---------- */

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

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

html {
  scroll-behavior: smooth;
  /* keep anchored sections clear of the sticky header */
  scroll-padding-top: 88px;
}

html, body { margin: 0; padding: 0; background: var(--bg); }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease, background .18s ease,
              border-color .18s ease, transform .18s ease;
}
a:hover { color: var(--link-hover); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--dark-fg);
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--dark-fg); }

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

/* ---------- layout ---------- */

.shell {
  max-width: var(--shell);
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

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

@keyframes dk-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes dk-wipe {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

.dk-rise { animation: dk-rise .7s var(--ease) both; }
.dk-rise--d1 { animation-delay: .12s; }
.dk-rise--d2 { animation-delay: .22s; }

/* Scroll-driven reveal where supported; a no-op everywhere else. */
@supports (animation-timeline: view()) {
  .dk-reveal {
    animation: dk-rise linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 26%;
  }
}

.dk-wipe {
  display: inline-block;
  animation: dk-wipe .85s var(--ease) .35s both;
}

.dk-arrow {
  display: inline-block;
  transition: transform .22s var(--ease);
}
a:hover .dk-arrow, button:hover .dk-arrow { transform: translateX(5px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- calls to action ---------- */

.dk-cta {
  transition: transform .2s var(--ease), background .2s ease,
              color .2s ease, border-color .2s ease;
}
.dk-cta:hover { transform: translateY(-2px); }

.cta-solid {
  white-space: nowrap;
  padding: 14px 26px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--paper);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cta-solid:hover { background: var(--ink); color: var(--bg); }

.cta-quiet {
  white-space: nowrap;
  padding: 13px 24px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cta-quiet:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px var(--gutter);
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark__text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
}

/* Three dots, growing and climbing. The stagger is transform-only so it
   costs no layout, and the hop is hover-only. */
.dots { display: flex; align-items: center; gap: 5px; }
.dots span {
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(var(--y));
}
.dots span:nth-child(1) { width: 5px; height: 5px; --y: 4px; }
.dots span:nth-child(2) { width: 7px; height: 7px; --y: 1px; }
.dots span:nth-child(3) { width: 10px; height: 10px; --y: -2px; background: var(--accent); }

.dots--light span { background: var(--dark-fg); }
.dots--light span:nth-child(3) { background: var(--accent-bright); }

@keyframes dk-hop {
  0%, 100% { transform: translateY(var(--y)); }
  45%      { transform: translateY(calc(var(--y) - 6px)); }
}
.wordmark:hover .dots span { animation: dk-hop .46s var(--ease); }
.wordmark:hover .dots span:nth-child(2) { animation-delay: .06s; }
.wordmark:hover .dots span:nth-child(3) { animation-delay: .12s; }

.site-nav [aria-current="page"] { color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

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

.hero {
  position: relative;
  padding: 128px var(--gutter) 116px;
  max-width: var(--shell);
  margin: 0 auto;
}

.hero__rules {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg, var(--rule-soft) 0 1px, transparent 1px 112px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
}

.hero__grid { position: relative; }

.hero__title {
  grid-column: 1 / span 9;
  margin: 0;
  font-size: clamp(44px, 6.6vw, 104px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.042em;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__lede {
  grid-column: 1 / span 5;
  margin: 40px 0 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
}

.hero__actions {
  grid-column: 7 / span 6;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 40px;
}

/* ---------- trust pillars ---------- */

.pillars { background: var(--paper); }
.pillars > .shell { padding: 96px var(--gutter) 104px; }

.pillar {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.pillar__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

/* ---------- what we build ---------- */

.build {
  background: var(--bg-deep);
  border-top: 6px solid var(--accent);
}
.build__inner { padding: 128px var(--gutter); }

.build__eyebrow { grid-column: 1 / span 12; color: var(--accent); }

.build__title {
  grid-column: 1 / span 7;
  margin: 28px 0 0;
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.build__intro {
  grid-column: 8 / span 5;
  margin: 0;
  align-self: end;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.rows {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
  column-gap: 56px;
  row-gap: 30px;
  align-items: baseline;
  margin: 64px 0 0;
}

.row { display: contents; }

.row__name {
  position: relative;
  padding-left: 26px;
  font-size: clamp(24px, 2.9vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  transition: color .2s ease;
}
/* Space is reserved so nothing shifts; only the dot arrives. */
.row__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-bright);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.row__name:hover::before { opacity: 1; transform: none; }

.row__note {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}

/* ---------- where you are now (dark) ---------- */

.paths {
  background: var(--ink);
  color: var(--dark-fg);
}
.paths__inner { padding: 104px var(--gutter); }

.paths__eyebrow { grid-column: 1 / span 12; color: var(--accent-bright); }

.paths__title {
  grid-column: 1 / span 6;
  margin: 22px 0 0;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.paths__intro {
  grid-column: 8 / span 5;
  margin: 0;
  align-self: end;
  font-size: 18px;
  line-height: 1.55;
  color: var(--dark-muted);
}

.states {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* The rule at the top is the card's only edge, and the first step is pinned
   to the bottom so it lands at the same height in all three. */
.state {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 2px solid var(--accent-bright);
}

.state__n {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-bright);
}

.state__title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.state__desc {
  margin: 0;
  flex: 1;
  font-size: 17px;
  line-height: 1.55;
  color: var(--dark-muted);
}

.state__step {
  margin-top: 12px;
  padding: 16px 18px;
  background: var(--wash-dark);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.state__step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--dark-dim);
}
.state__step-value { font-size: 15px; font-weight: 500; }

/* ---------- how we work ---------- */

.process { background: var(--bg); }
.process__inner { padding: 104px var(--gutter); }

.process__eyebrow { grid-column: 1 / span 12; color: var(--accent); }

.process__title {
  grid-column: 1 / span 6;
  margin: 22px 0 0;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.process__intro {
  grid-column: 8 / span 5;
  margin: 0;
  align-self: end;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

/* A fixed 76px rail keeps every number and title on the same left edge. */
/* One continuous vertical rail carries the sequence, so no row needs a rule
   under it. The numbers sit on the rail as filled markers. */
.steps {
  position: relative;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--wash-strong));
  border-radius: 2px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 76px 3fr 5fr;
  gap: 32px;
  align-items: start;
  padding: 22px 20px 22px 0;
  border-radius: var(--radius);
  transition: background .2s ease;
}
.step:hover { background: var(--wash); }

.step__n {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.step__title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.028em;
}

.step__desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- common questions ---------- */

.faq { background: var(--paper); }
.faq__inner { padding: 104px var(--gutter); }

.faq__eyebrow { grid-column: 1 / span 12; color: var(--accent); }

.faq__title {
  grid-column: 1 / span 6;
  margin: 22px 0 0;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.faq__intro {
  grid-column: 8 / span 5;
  margin: 0;
  align-self: end;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.faq__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 32px 64px;
  align-items: start;
}

.faq__group {
  margin: 0;
  padding-top: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.faq__set { display: flex; flex-direction: column; gap: 8px; }

.qa {
  background: var(--bg);
  border-radius: var(--radius);
  transition: background .2s ease, box-shadow .2s ease;
}
.qa:hover { background: var(--wash-strong); }
.qa[open] {
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color .18s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--accent); }
.qa summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.qa__plus {
  flex: none;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent);
  transition: transform .22s var(--ease);
}
.qa[open] .qa__plus { transform: rotate(45deg); }

.qa p {
  margin: 0 24px 24px;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.faq__more {
  margin: 48px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.faq__more a { color: var(--accent); box-shadow: inset 0 -1px 0 var(--wash-strong); }
.faq__more a:hover { box-shadow: inset 0 -2px 0 var(--accent); }

/* ---------- contact ---------- */

.contact { background: var(--bg-deep); color: var(--ink); }
.contact__inner { padding: 104px var(--gutter); }

.contact__eyebrow { grid-column: 1 / span 12; color: var(--accent); }

.contact__title {
  grid-column: 1 / span 6;
  margin: 22px 0 0;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.contact__lede {
  grid-column: 7 / span 5;
  margin: 0;
  align-self: end;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

/* Left rail: what the free reply leads to. */
.contact__rail {
  grid-column: 1 / span 5;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__rail-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.promises {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promise {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  padding: 14px 16px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  transition: box-shadow .2s ease, transform .2s var(--ease);
}
.promise:hover { box-shadow: var(--shadow-sm); transform: translateX(2px); }
.promise__n {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 3px;
}
.promise__text { font-size: 17px; font-weight: 500; line-height: 1.4; }

.contact__price { margin: 8px 0 0; font-size: 16px; line-height: 1.5; color: var(--muted); }
.contact__price strong { font-weight: 600; color: var(--ink); }

.contact__links {
  margin: 10px 0 0;
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}
.contact__links a { color: var(--accent); box-shadow: inset 0 -1px 0 var(--wash-strong); }
.contact__links a:hover { box-shadow: inset 0 -2px 0 var(--accent); }

/* ---------- form ---------- */

.form {
  grid-column: 7 / span 6;
  margin-top: 72px;
  background: var(--paper);
  padding: 40px 40px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form__label {
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.form__label--tight { margin: 0 0 12px; padding: 0; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field { display: flex; flex-direction: column; }

.field input,
.field textarea {
  font: 500 16px var(--font-sans);
  color: var(--ink);
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 0;
  border-radius: var(--radius-sm);
  outline: none;
  transition: background .18s ease, box-shadow .18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: var(--placeholder); }
.field input:hover,
.field textarea:hover { background: var(--bg-deep); }
.field input:focus,
.field textarea:focus {
  background: var(--paper);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.field input:user-invalid,
.field textarea:user-invalid { box-shadow: inset 0 0 0 1px var(--accent); }

.field--message { margin-top: 22px; }

.field__error {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--accent);
  padding-top: 6px;
}

/* Chips are real radios, so they work with the keyboard and without JS. */
.chips { margin: 26px 0 0; padding: 0; border: 0; }
.chips__set { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--muted);
  transition: background .18s ease, color .18s ease;
}
.chip:hover { background: var(--bg-deep); }
.chip__input:checked + .chip { background: var(--ink); color: var(--dark-fg); }
.chip__input:focus-visible + .chip { outline: 2px solid var(--accent); outline-offset: 2px; }

/* honeypot: off-screen, never shown to a real visitor */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}

.form__submit { font-family: inherit; border: 0; cursor: pointer; }
.form__submit[disabled] { opacity: .55; cursor: progress; transform: none; }

.form__status {
  margin: 0;
  flex: 1;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.form__status[data-state="error"] { color: var(--accent); }
.form__status[data-state="ok"] { color: var(--accent); font-weight: 600; }

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

.site-footer {
  background: var(--ink);
  color: var(--dark-muted);
  border-top: 6px solid var(--accent);
}
.site-footer__inner { padding: 84px var(--gutter) 48px; }

.site-footer__ghost-wrap { overflow: hidden; }
.site-footer__ghost {
  font-weight: 700;
  font-size: clamp(56px, 14.6vw, 236px);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: var(--ghost);
  user-select: none;
  -webkit-user-select: none;
}

.site-footer__grid {
  margin-top: 56px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer__id {
  grid-column: 1 / span 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--dark-fg);
}

.site-footer__quip {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent-bright);
}

.site-footer__nav {
  grid-column: 7 / span 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__nav a { color: var(--dark-muted); }
.site-footer__nav a:hover { color: var(--dark-fg); }

.site-footer__meta {
  grid-column: 10 / span 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

/* ============================================================
   Responsive. The source design is a desktop artboard, so
   everything below here is new work for real viewports.
   ============================================================ */

@media (max-width: 1080px) {
  .hero__title  { grid-column: 1 / span 11; }
  .hero__lede   { grid-column: 1 / span 7; }
  .hero__actions{ grid-column: 1 / span 11; margin-top: 44px; }

  .build__title   { grid-column: 1 / span 10; }
  .build__intro   { grid-column: 1 / span 8; margin-top: 28px; }

  .paths__title   { grid-column: 1 / span 10; }
  .paths__intro   { grid-column: 1 / span 8; margin-top: 28px; }
  /* Groups of three: two-up orphans the third and three-up is too narrow
     below this width, so both stack. */
  .states { grid-template-columns: 1fr; gap: 36px; }
  .pillar { grid-column: 1 / -1; }
  .pillars .grid { gap: 28px; }
  .pillar__desc { max-width: 64ch; }

  .process__title { grid-column: 1 / span 10; }
  .process__intro { grid-column: 1 / span 8; margin-top: 28px; }
  .step { grid-template-columns: 56px 1fr; gap: 8px 24px; padding-right: 12px; }
  .step__desc { grid-column: 2; }

  .faq__title { grid-column: 1 / span 10; }
  .faq__intro { grid-column: 1 / span 8; margin-top: 28px; }
  .faq__grid { grid-template-columns: 1fr; gap: 8px 0; }
  .faq__group { padding-top: 40px; }

  .contact__title { grid-column: 1 / span 10; }
  .contact__lede  { grid-column: 1 / span 8; margin-top: 24px; }
  .contact__rail  { grid-column: 1 / span 12; margin-top: 56px; }
  .form           { grid-column: 1 / span 12; margin-top: 40px; }
}

@media (max-width: 760px) {
  :root { --gutter: 24px; }

  /* The nav drops below the wordmark here: four items plus the wordmark do
     not fit on one line at 390px, and squeezing them was worse than wrapping. */
  html { scroll-padding-top: 116px; }

  .site-header {
    flex-wrap: wrap;
    align-items: baseline;
    padding: 14px var(--gutter);
    gap: 10px 16px;
  }
  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
    font-size: 14px;
  }

  /* Collapse to a single column. Leaving 12 columns in place keeps 11 column
     gaps, which on a narrow screen can sum wider than the container even when
     every child spans the full width. The span override stays, so rules like
     `grid-column: span 4` cannot create implicit columns. */
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid > * { grid-column: 1 / -1 !important; }

  .hero { padding: 72px var(--gutter) 64px; }
  .hero__rules { background-size: 56px 100%; }
  .hero__lede { margin-top: 28px; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 36px;
  }
  .cta-solid, .cta-quiet { text-align: center; }

  .pillars > .shell { padding: 64px var(--gutter) 64px; }

  .build__inner, .paths__inner, .process__inner,
  .faq__inner, .contact__inner { padding: 72px var(--gutter); }

  .build__title, .paths__title, .process__title,
  .faq__title, .contact__title { margin-top: 20px; }
  .build__intro, .paths__intro, .process__intro,
  .faq__intro, .contact__lede { margin-top: 0; }

  .rows { display: flex; flex-direction: column; gap: 26px; margin-top: 40px; }
  .row { display: block; }
  .row__name { padding-left: 0; }
  .row__name::before { display: none; }
  .row__note { margin-top: 8px; }

  .states { grid-template-columns: 1fr; gap: 40px; margin-top: 44px; }

  .steps { margin-top: 40px; gap: 10px; }
  .steps::before { display: none; }
  .step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 16px;
    background: var(--wash);
  }
  .step__n { width: 34px; height: 34px; font-size: 12px; }

  .faq__grid { margin-top: 36px; }
  .faq__group { padding-top: 32px; }
  .qa summary { font-size: 18px; padding: 22px 0; }
  .faq__more { margin-top: 36px; }

  .contact__rail { margin-top: 44px; }
  .form { margin-top: 32px; padding: 24px 24px 22px; }
  .form__row { grid-template-columns: 1fr; gap: 18px; }
  .form__footer { flex-direction: column-reverse; align-items: stretch; gap: 16px; }
  .form__submit { width: 100%; }
  .form__status { text-align: left; }
}

/* ---------- simple subpages (thanks, privacy) ---------- */

.page {
  padding: 112px var(--gutter) 128px;
  max-width: var(--shell);
  margin: 0 auto;
}
.page__inner { max-width: 68ch; }
.page h1 {
  margin: 20px 0 0;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.page h2 {
  margin: 56px 0 0;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.page h3 {
  margin: 40px 0 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* The figure, not the heading, carries the emphasis. */
.page .page__price {
  margin: 12px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent);
}

.page .page__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page .page__list li {
  position: relative;
  padding-left: 20px;
  margin: 0;
}
.page .page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.page__cta { margin-top: 56px; }
.page__cta a { border-bottom: 0; padding-bottom: 0; }
.page__cta a:hover { color: var(--bg); }
.page p, .page li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}
.page p { margin: 16px 0 0; }
.page ul { margin: 16px 0 0; padding-left: 20px; }
.page li { margin-top: 8px; }
.page a { color: var(--accent); box-shadow: inset 0 -1px 0 var(--wash-strong); }
.page a:hover { box-shadow: inset 0 -2px 0 var(--accent); }
.page .page__eyebrow { color: var(--accent); margin: 0; }
.page__back { display: inline-block; margin-top: 48px; }
.page__note {
  margin-top: 40px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 760px) {
  .page { padding: 72px var(--gutter) 88px; }
}

.site-footer__grid--flush { margin-top: 0; }
