:root {
      --paper: #f4efe6;
      --paper-2: #ebe3d6;
      --paper-3: #fbf7ef;
      --ink: #171512;
      --muted: #6f685e;
      --faint: #948b7d;
      --line: #d9cfc0;
      --line-strong: #b8aa98;
      --green: #1f5a46;
      --green-2: #143d31;
      --green-soft: #dce8df;
      --clay: #a96545;
      --amber: #b98b3e;
      --white: #fffdf8;
      --shadow: 0 28px 80px rgba(23, 21, 18, .11);
      --font: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-display: "Source Serif 4", Georgia, serif;
      --max: 1440px;
      --heading-weight: 650;
      --heading-tracking: -.018em;
      --hero-heading-size: 80px;
      --hero-heading-weight: 650;
      --hero-heading-tracking: -.022em;
      --hero-heading-line: .94;
      --hero-heading-size-tablet: 60px;
      --hero-heading-size-mobile: 46px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.58;
      letter-spacing: 0;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

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

    button,
    input,
    textarea {
      font: inherit;
    }

    .wrap {
      width: min(var(--max), calc(100% - 48px));
      margin-inline: auto;
    }

    .skip-link {
      position: absolute;
      top: -72px;
      left: 16px;
      z-index: 100;
      background: var(--ink);
      color: var(--white);
      padding: 10px 14px;
      border-radius: 6px;
    }

    .skip-link:focus {
      top: 12px;
    }

    .site-nav {
      position: sticky;
      top: 0;
      z-index: 40;
      border-bottom: 1px solid var(--line);
      background: rgba(244, 239, 230, .94);
    }

    .nav-inner {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
    }

    .brand img {
      width: 136px;
      height: auto;
      border-radius: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #3c3934;
      font-size: 14px;
      font-weight: 520;
    }

    .nav-links a:not(.button):hover,
    .nav-links a:not(.button):focus-visible {
      color: var(--green);
    }

    .button,
    button {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid var(--ink);
      border-radius: 6px;
      padding: 0 20px;
      color: var(--white);
      background: var(--ink);
      font-size: 14px;
      font-weight: 650;
      line-height: 1;
      white-space: nowrap;
      cursor: pointer;
      transition: color .16s ease-out, border-color .16s ease-out, background-color .16s ease-out;
    }

    .button:hover,
    .button:focus-visible,
    button:hover,
    button:focus-visible {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
    }

    .button.secondary {
      color: var(--ink);
      background: transparent;
    }

    .button.secondary:hover,
    .button.secondary:focus-visible {
      color: var(--green);
      background: transparent;
      border-color: var(--green);
    }

    .button.on-dark {
      color: var(--paper);
      border-color: rgba(244, 239, 230, .78);
      background: transparent;
    }

    .button.on-dark:hover,
    .button.on-dark:focus-visible {
      color: var(--ink);
      background: var(--paper);
      border-color: var(--paper);
    }

    .hero {
      position: relative;
      min-height: calc(100dvh - 70px);
      display: grid;
      align-items: center;
      padding: 72px 0 56px;
      border-bottom: 1px solid var(--line);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 920px;
      margin: 0 auto;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 30px;
      color: var(--green);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 78px;
      height: 1px;
      background: var(--line-strong);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 920px;
      margin: 0 auto 24px;
      font-family: var(--font-display);
      font-size: 74px;
      font-weight: var(--heading-weight);
      line-height: .98;
      letter-spacing: var(--heading-tracking);
      text-wrap: balance;
    }

    .home-page .hero-content {
      max-width: 1120px;
    }

    .home-page h1 {
      max-width: 1120px;
      font-size: var(--hero-heading-size);
      font-weight: var(--hero-heading-weight);
      line-height: var(--hero-heading-line);
      letter-spacing: var(--hero-heading-tracking);
    }

    .home-page .hero-sub {
      max-width: 760px;
      font-size: 22px;
      font-weight: 500;
    }

    .green {
      color: var(--green);
    }

    .hero-sub {
      max-width: 690px;
      margin: 0 auto 34px;
      color: var(--muted);
      font-size: 21px;
      line-height: 1.36;
      text-wrap: pretty;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-bottom: 34px;
    }

    .proof-note {
      width: min(820px, 100%);
      display: grid;
      grid-template-columns: 96px 1fr auto auto;
      align-items: center;
      gap: 24px;
      margin: 0 auto;
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      background: rgba(251, 247, 239, .88);
      padding: 18px 20px;
      text-align: left;
      box-shadow: var(--shadow);
    }

    .proof-note img {
      width: 40px;
      height: 40px;
      border-radius: 8px;
    }

    .proof-note-logo {
      width: 96px;
      min-height: 72px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 0;
      background: transparent;
    }

    .proof-note-logo img {
      width: 76px;
      max-width: 76px;
      height: auto;
      max-height: none;
      border-radius: 0;
    }

    .proof-note strong {
      display: block;
      font-size: 15px;
      font-weight: 700;
    }

    .proof-note span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
    }

    .metric {
      color: var(--green);
      font-weight: 750;
      white-space: nowrap;
    }

    .proof-note-read {
      min-height: 42px;
      padding-inline: 16px;
    }

    .section {
      padding: 96px 0;
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(300px, .52fr);
      gap: 64px;
      align-items: end;
      margin-bottom: 44px;
    }

    .kicker {
      margin-bottom: 16px;
      color: var(--green);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
    }

    h2 {
      margin-bottom: 0;
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: var(--heading-weight);
      line-height: 1.05;
      letter-spacing: var(--heading-tracking);
      text-wrap: balance;
    }

    .section-head p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.48;
      text-wrap: pretty;
    }

    .proof {
      background: var(--green-2);
      color: var(--paper);
    }

    .proof .section {
      border-bottom-color: rgba(244, 239, 230, .16);
    }

    .proof .kicker {
      color: #b7d8c5;
    }

    .proof .section-head p,
    .proof p,
    .proof small {
      color: rgba(244, 239, 230, .72);
    }

    .client-lockup {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      color: rgba(244, 239, 230, .72);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .client-lockup img {
      width: auto;
      max-width: 54px;
      max-height: 54px;
      border-radius: 0;
      background: transparent;
      padding: 0;
    }

    .proof-board {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr);
      gap: 18px;
    }

    .proof-main,
    .proof-side {
      border: 1px solid rgba(244, 239, 230, .2);
      border-radius: 8px;
      background: rgba(244, 239, 230, .045);
      padding: 32px;
    }

    .proof-main h3 {
      max-width: 720px;
      margin-bottom: 14px;
      color: var(--paper);
      font-size: 30px;
      font-weight: 600;
      line-height: 1.12;
      text-wrap: balance;
    }

    .before-after {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin: 30px 0;
    }

    .before-after div {
      min-height: 126px;
      border: 1px solid rgba(244, 239, 230, .18);
      border-radius: 8px;
      padding: 18px;
      background: rgba(244, 239, 230, .04);
    }

    .before-after span {
      display: block;
      margin-bottom: 14px;
      color: rgba(244, 239, 230, .62);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .before-after b {
      display: block;
      color: var(--paper);
      font-size: 28px;
      font-weight: 620;
      line-height: 1.08;
      font-variant-numeric: tabular-nums;
    }

    .proof-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .proof-side ul {
      margin: 0;
      padding-left: 20px;
    }

    .proof-side li {
      color: rgba(244, 239, 230, .84);
      font-size: 15px;
      line-height: 1.5;
    }

    .proof-side li + li {
      margin-top: 14px;
    }

    .services-layout {
      display: block;
    }

    .service-grid article,
    .process-step,
    .faq-grid details,
    .contact-form {
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      background: rgba(251, 247, 239, .78);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }

    .service-grid article {
      min-height: 260px;
      display: flex;
      flex-direction: column;
      padding: 28px;
    }

    .service-grid b {
      display: block;
      margin-bottom: 8px;
      font-size: 19px;
      font-weight: 700;
    }

    .service-grid p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .tool-row {
      margin-top: auto;
      padding-top: 28px;
    }

    .tool-list {
      width: min(100%, 286px);
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 22px;
      align-items: center;
    }

    .tool-logo {
      min-height: 30px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .tool-logo img {
      display: block;
      width: auto;
      max-width: 118px;
      height: 22px;
      object-fit: contain;
      opacity: 1;
    }

    .tool-logo.custom-code {
      gap: 9px;
    }

    .tool-logo.custom-code span {
      min-width: 52px;
      height: 28px;
      display: inline-grid;
      place-items: center;
      color: var(--green);
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
      opacity: .82;
    }

    .tool-logo.custom-code b {
      margin: 0;
      color: var(--muted);
      font-family: var(--font);
      font-size: 13px;
      font-weight: 750;
      line-height: 1;
    }

    .founder {
      background: var(--paper-3);
    }

    .founder-card {
      display: grid;
      grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
      gap: 34px;
      align-items: center;
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      background: rgba(244, 239, 230, .72);
      padding: 28px;
    }

    .founder-photo {
      aspect-ratio: 4 / 5;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--green-soft);
    }

    .founder-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .founder-copy h2 {
      max-width: 720px;
      margin-bottom: 18px;
    }

    .founder-copy p {
      max-width: 720px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.5;
      text-wrap: pretty;
    }

    .founder-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 24px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .process-step {
      min-height: 230px;
      padding: 24px;
    }

    .process-step span {
      display: block;
      margin-bottom: 34px;
      color: var(--green);
      font-size: 13px;
      font-weight: 750;
      font-variant-numeric: tabular-nums;
    }

    .process-step b {
      display: block;
      margin-bottom: 10px;
      font-size: 18px;
      font-weight: 700;
    }

    .process-step p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }

    details {
      overflow: hidden;
    }

    summary {
      cursor: pointer;
      padding: 20px 22px;
      font-weight: 700;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      float: right;
      color: var(--green);
    }

    details[open] summary::after {
      content: "-";
    }

    details p {
      margin: 0;
      padding: 0 22px 22px;
      color: var(--muted);
      font-size: 15px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, .88fr) minmax(340px, .5fr);
      gap: 56px;
      align-items: start;
    }

    .contact-copy h2 {
      margin-bottom: 20px;
      font-family: var(--font-display);
      font-size: 56px;
      font-weight: var(--heading-weight);
      letter-spacing: var(--heading-tracking);
    }

    .contact-copy p {
      max-width: 640px;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.45;
    }

    .contact-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .contact-form {
      padding: 26px;
    }

    .field {
      display: grid;
      gap: 8px;
      margin-bottom: 16px;
    }

    label {
      font-size: 13px;
      font-weight: 700;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--line-strong);
      border-radius: 6px;
      background: var(--paper-3);
      color: var(--ink);
      padding: 13px 14px;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    .form-note {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 12px;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 32px 0;
      color: var(--muted);
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 16px;
    }

    .footer-brandline {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--ink);
      font-weight: 650;
    }

    .footer-brandline img {
      width: 22px;
      height: 22px;
      border-radius: 6px;
    }

    :focus-visible {
      outline: 3px solid rgba(31, 90, 70, .34);
      outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition: none !important;
      }
    }

    @media (max-width: 980px) {
      h1 {
        font-size: 56px;
      }

      h2,
      .contact-copy h2 {
        font-size: 40px;
      }

      .section-head,
      .proof-board,
      .founder-card,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .process-grid,
      .before-after,
      .faq-grid {
        grid-template-columns: 1fr 1fr;
      }

    }

    @media (max-width: 720px) {
      .wrap {
        width: min(var(--max), calc(100% - 32px));
      }

      .nav-inner {
        min-height: 64px;
      }

      .brand span {
        max-width: 170px;
        line-height: 1.08;
      }

      .nav-links a:not(.button) {
        display: none;
      }

      .nav-links {
        gap: 0;
      }

      .nav-links .button {
        min-height: 42px;
        padding-inline: 16px;
      }

      .hero {
        min-height: auto;
        padding: 58px 0 46px;
      }

      .hero-content {
        text-align: left;
      }

      .eyebrow {
        justify-content: flex-start;
      }

      .eyebrow::before {
        display: none;
      }

      h1 {
        font-size: 44px;
      }

      .hero-sub {
        margin-inline: 0;
        font-size: 18px;
      }

      .hero-actions,
      .contact-links,
      .founder-actions,
      .proof-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .button,
      button {
        width: 100%;
      }

      .proof-note {
        grid-template-columns: auto 1fr;
      }

      .metric {
        grid-column: 1 / -1;
        white-space: normal;
      }

      .process-grid,
      .before-after,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 68px 0;
      }

      .section-head {
        gap: 24px;
        margin-bottom: 32px;
      }

      h2,
      .contact-copy h2 {
        font-size: 34px;
      }

      .service-grid article,
      .proof-main,
      .proof-side,
      .founder-card,
      .contact-form {
        padding: 20px;
      }
    }

    .case-study-page {
      --max: 1440px;
    }

    .case-study-page .site-nav {
      position: sticky;
      background: rgba(244, 239, 230, .96);
    }

    .case-study-page .nav-links {
      gap: 18px;
    }

    .case-study-page .hero {
      min-height: auto;
      display: block;
      padding: 84px 0 60px;
      border-bottom: 1px solid var(--line);
    }

    .case-study-page .eyebrow {
      display: block;
      margin-bottom: 26px;
      justify-content: flex-start;
    }

    .case-study-page .eyebrow::before,
    .case-study-page .eyebrow::after {
      display: none;
    }

    .case-study-page h1 {
      max-width: 1040px;
      margin: 0 0 24px;
      font-size: 72px;
      line-height: 1;
      text-align: left;
    }

    .lead {
      max-width: 820px;
      color: var(--muted);
      font-size: 22px;
      line-height: 1.32;
      text-wrap: pretty;
    }

    .meta-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 40px;
    }

    .meta {
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      background: rgba(251, 247, 239, .78);
      padding: 22px;
    }

    .meta span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      text-transform: uppercase;
    }

    .meta b {
      display: block;
      margin-top: 10px;
      font-size: 22px;
      font-weight: 560;
      line-height: 1.12;
      font-variant-numeric: tabular-nums;
    }

    .meta-logo {
      width: 58px;
      max-width: 58px;
      height: auto;
      margin-bottom: 12px;
      border-radius: 0;
      background: transparent;
    }

    .case-study-shell {
      display: grid;
      grid-template-columns: 160px minmax(0, 1fr) 280px;
      gap: 28px;
      align-items: start;
      padding: 72px 0;
    }

    .article {
      min-width: 0;
    }

    .toc,
    .side {
      position: sticky;
      top: 94px;
      height: fit-content;
    }

    .toc {
      border-left: 2px solid var(--line-strong);
      padding: 6px 0 6px 18px;
    }

    .toc span {
      display: block;
      margin-bottom: 14px;
      color: var(--green);
      font-size: 12px;
      font-weight: 750;
      text-transform: uppercase;
    }

    .toc a {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
      line-height: 1.35;
    }

    .toc a + a {
      margin-top: 12px;
    }

    .toc a:hover,
    .toc a:focus-visible,
    .toc a[aria-current="location"] {
      color: var(--green);
    }

    .toc a[aria-current="location"] {
      font-weight: 800;
    }

    .article h2 {
      scroll-margin-top: 112px;
      margin: 54px 0 18px;
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: var(--heading-weight);
      line-height: 1.08;
      letter-spacing: var(--heading-tracking);
      text-wrap: balance;
    }

    .article h2:first-child {
      margin-top: 0;
    }

    .article p,
    .article li {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.62;
      text-wrap: pretty;
    }

    .article strong {
      color: var(--ink);
      font-weight: 650;
    }

    .article ul {
      padding-left: 20px;
    }

    .article li + li {
      margin-top: 10px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 26px 0;
      background: rgba(251, 247, 239, .78);
    }

    th,
    td {
      border: 1px solid var(--line-strong);
      padding: 16px;
      text-align: left;
      vertical-align: top;
    }

    th {
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      text-transform: uppercase;
    }

    td {
      color: var(--ink);
      font-variant-numeric: tabular-nums;
    }

    .side {
      height: fit-content;
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      background: rgba(251, 247, 239, .88);
      padding: 22px;
    }

    .side b {
      display: block;
      margin-bottom: 12px;
      font-size: 18px;
      font-weight: 620;
    }

    .side a {
      width: 100%;
      margin-top: 16px;
    }

    .note {
      margin-top: 28px;
      border-left: 3px solid var(--green);
      padding-left: 18px;
      color: var(--muted);
    }

    @media (max-width: 980px) {
      .home-page h1 {
        font-size: var(--hero-heading-size-tablet);
      }

      .case-study-page h1 {
        font-size: 56px;
      }

      .case-study-shell,
      .meta-grid {
        grid-template-columns: 1fr;
      }

      .toc,
      .side {
        position: static;
      }

      .toc {
        display: none;
      }
    }

    @media (max-width: 720px) {
      .proof-note {
        grid-template-columns: 72px 1fr;
      }

      .proof-note-logo {
        width: 72px;
        min-height: 58px;
      }

      .proof-note-logo img {
        width: 58px;
        max-width: 58px;
      }

      .proof-note-read {
        grid-column: 1 / -1;
      }

      .home-page h1 {
        font-size: var(--hero-heading-size-mobile);
      }

      .case-study-page .nav-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0 18px;
      }

      .case-study-page .nav-links,
      .case-study-page .button,
      .case-study-page button {
        width: 100%;
      }

      .case-study-page .hero {
        padding: 58px 0 48px;
      }

      .case-study-page h1 {
        font-size: 44px;
      }

      .lead {
        font-size: 19px;
      }
    }
