/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #0d1f26;
  --ink-soft: #17323a;
  --paper: #f3f0e7;
  --paper-deep: #e6e0d2;
  --white: #fffdf7;
  --teal: #12bfa7;
  --teal-bright: #42e8cd;
  --teal-dark: #076f62;
  --sage: #dce4dc;
  --muted: #566267;
  --rule: #0d1f2630;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

button, input, textarea, select {
  font: inherit;
}

::selection {
  background: var(--teal-bright);
  color: var(--ink);
}

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

button, a, input, textarea, select, summary {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  transition: transform .16s;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
}

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

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

.site-header {
  z-index: 100;
  color: var(--paper);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #0d1f26f5;
  border-bottom: 1px solid #f3f0e729;
  position: sticky;
  top: 0;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-height: 76px;
  display: flex;
}

.wordmark {
  font-family: var(--font-sans);
  letter-spacing: -.04em;
  align-items: baseline;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
}

.wordmark span {
  color: var(--teal-bright);
  font-family: var(--font-sans);
  letter-spacing: -.02em;
  font-size: .58em;
  font-weight: 700;
}

.site-nav {
  align-items: center;
  gap: clamp(20px, 2.7vw, 40px);
  font-size: 14px;
  display: flex;
}

.site-nav > a:not(.button) {
  color: #f3f0e7d1;
  position: relative;
}

.site-nav > a:not(.button):after {
  content: "";
  background: var(--teal-bright);
  transform-origin: 0;
  height: 1px;
  transition: transform .18s;
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.site-nav > a:not(.button):hover:after, .site-nav > a:not(.button):focus-visible:after {
  transform: scaleX(1);
}

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

.site-nav > a[aria-current="page"]:after {
  transform: scaleX(1);
}

.menu-toggle {
  color: var(--paper);
  background: none;
  border: 0;
  padding: 8px 0;
  display: none;
}

.button {
  border: 1px solid var(--teal);
  background: var(--teal);
  min-height: 52px;
  color: var(--ink);
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background .18s, border-color .18s, transform .18s;
  display: inline-flex;
}

.button:hover {
  border-color: var(--teal-bright);
  background: var(--teal-bright);
  transform: translateY(-2px);
}

.button-small {
  border-color: var(--teal-bright);
  min-height: 42px;
  color: var(--paper);
  background: none;
  padding: 10px 16px;
}

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

.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#ffffff06 1px, #0000 1px), linear-gradient(90deg, #ffffff06 1px, #0000 1px);
  background-size: 80px 80px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000, #0000 86%);
  mask-image: linear-gradient(#000, #0000 86%);
}

.hero-grid {
  grid-template-columns: minmax(380px, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  min-height: 700px;
  padding-block: 92px 62px;
  display: grid;
  position: relative;
}

.eyebrow {
  color: var(--teal-dark);
  letter-spacing: .16em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  display: flex;
}

.hero .eyebrow, .use-cases .eyebrow, .trust .eyebrow {
  color: var(--teal-bright);
}

.eyebrow:before {
  content: "";
  background: currentColor;
  width: 32px;
  height: 1px;
}

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

h1, h2 {
  font-family: var(--font-sans);
  letter-spacing: -.047em;
  font-weight: 500;
}

h1 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(60px, 6.25vw, 94px);
  line-height: .94;
}

.button-row {
  align-items: center;
  gap: 28px;
  display: flex;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  display: inline-flex;
}

.button-row .text-link {
  border-color: #f3f0e780;
}

.text-link span {
  color: var(--teal);
}

.hero-footer {
  color: #f3f0e794;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-top: 1px solid #f3f0e726;
  align-items: center;
  gap: 18px;
  padding: 18px 0 22px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.track-line {
  background: #f3f0e724;
  flex: 1;
  height: 1px;
  position: relative;
}

.track-line:before {
  content: "";
  background: var(--teal-bright);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: -3px;
  left: 34%;
}

.section {
  padding-block: clamp(88px, 10vw, 148px);
}

.section-heading {
  margin-bottom: clamp(54px, 6vw, 86px);
}

.split-heading {
  grid-template-columns: 1fr 2fr;
  gap: 42px;
  display: grid;
}

.split-heading h2, .workflow-copy h2, .trust-intro h2, .faq-intro h2, .contact-copy h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
}

.split-heading > div > p, .workflow-copy > p, .trust-intro > p, .faq-intro > p, .contact-copy > p {
  max-width: 650px;
  color: var(--muted);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
}

.page-contents {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.page-contents-inner {
  grid-template-columns: 1fr 2fr;
  align-items: baseline;
  gap: 24px;
  padding-block: 26px;
  display: grid;
}

.page-contents-label {
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.page-contents-list {
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.page-contents-list > li {
  border-right: 1px solid var(--rule);
}

.page-contents-list > li:last-child {
  border-right: 0;
}

.page-contents-list a {
  color: var(--ink);
  align-items: baseline;
  gap: 10px;
  padding: 2px 20px;
  font-size: 15px;
  line-height: 1.35;
  transition: color .18s;
  display: flex;
}

.page-contents-list > li:first-child a {
  padding-left: 0;
}

.page-contents-list > li:last-child a {
  padding-right: 0;
}

.page-contents-list a span {
  color: var(--muted);
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 800;
  transition: color .18s;
}

.page-contents-list a:hover, .page-contents-list a:focus-visible, .page-contents-list a:hover span {
  color: var(--teal-dark);
}

.section[id], .contact[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 800px) {
  .page-contents-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-contents-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-contents-list a {
    padding: 12px 18px;
  }

  .page-contents-list > li:nth-child(odd) {
    border-right: 1px solid var(--rule);
  }

  .page-contents-list > li:nth-child(2n) {
    border-right: 0;
  }

  .page-contents-list > li:nth-child(-n+2) {
    border-bottom: 1px solid var(--rule);
  }

  .page-contents-list > li:nth-child(odd) a {
    padding-left: 0;
  }

  .page-contents-list > li:nth-child(2n) a {
    padding-right: 0;
  }

  .section[id], .contact[id] {
    scroll-margin-top: 84px;
  }
}

.recognition {
  background: var(--paper);
}

.recognition-grid {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.recognition-card {
  border-right: 1px solid var(--rule);
  flex-direction: column;
  min-height: 390px;
  padding: 28px clamp(24px, 3vw, 42px) 30px;
  transition: background .2s, transform .2s;
  display: flex;
  position: relative;
}

.recognition-card-link {
  z-index: 1;
  position: absolute;
  inset: 0;
}

.recognition-card > :not(.recognition-card-link) {
  z-index: 2;
  pointer-events: none;
  position: relative;
}

.recognition-card:first-child {
  padding-left: 0;
}

.recognition-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.recognition-card:hover {
  background: #fffdf76b;
  transform: translateY(-4px);
}

.card-number, .service-number, .use-case-number {
  color: var(--muted);
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 800;
}

.status-icon {
  width: 76px;
  height: 76px;
  color: var(--ink);
  place-items: center;
  margin: 32px 0 40px;
  display: grid;
}

.status-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.status-icon .icon-accent {
  stroke: var(--teal-dark);
  stroke-width: 2px;
}

.recognition-card h3 {
  font-family: var(--font-sans);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: 31px;
  font-weight: 500;
}

.recognition-card p {
  color: var(--muted);
  margin-bottom: 36px;
}

.card-foot {
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.card-foot span {
  color: var(--teal);
}

.use-cases {
  background: var(--ink);
  color: var(--paper);
}

.light-heading > div > p {
  color: #f3f0e7a1;
}

.use-case-list {
  border-top: 1px solid #f3f0e72e;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.use-case {
  border-bottom: 1px solid #f3f0e72e;
  border-right: 1px solid #f3f0e72e;
  flex-direction: column;
  min-height: 286px;
  padding: 30px 32px;
  transition: background .18s;
  display: flex;
}

.use-case:nth-child(3n) {
  border-right: 0;
}

.use-case:hover {
  background: #42e8cd0f;
}

.use-case-number {
  color: var(--teal);
  margin-bottom: 42px;
}

.use-case h3 {
  font-family: var(--font-sans);
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 500;
}

.use-case p {
  color: #f3f0e7a6;
  font-size: 15px;
}

.outcome-label {
  color: var(--paper);
  letter-spacing: .06em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.outcome-label:before {
  content: "";
  background: var(--teal-bright);
  width: 17px;
  height: 1px;
}

.services {
  background: var(--white);
}

.services-list {
  border-top: 1px solid var(--rule);
}

.service-row {
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 65px minmax(210px, .7fr) 1.2fr minmax(180px, .55fr);
  align-items: start;
  gap: 34px;
  padding: 36px 0;
  display: grid;
}

.service-row h3 {
  font-family: var(--font-sans);
  letter-spacing: -.025em;
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
}

.service-row > p {
  color: var(--muted);
  margin: 0;
}

.service-outcome {
  border-left: 2px solid var(--teal);
  padding-left: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink) !important;
}

.workflow-section {
  background: #dce4de;
  overflow: hidden;
}

.workflow-heading {
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(44px, 7vw, 104px);
  margin-bottom: clamp(50px, 6vw, 78px);
  display: grid;
}

.workflow-heading h2 {
  max-width: 790px;
  font-family: var(--font-sans);
  letter-spacing: -.058em;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.6vw, 82px);
  font-weight: 500;
  line-height: .96;
}

.workflow-heading > div > p {
  color: #4b5d62;
  max-width: 700px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
}

.workflow-story {
  background: var(--paper);
  border: 1px solid #0d1f2633;
  box-shadow: 16px 16px #0d1f2614;
}

.workflow-artwork {
  border-bottom: 1px solid var(--rule);
  min-width: 0;
  margin: 0;
  padding: 20px;
}

.workflow-artwork img {
  aspect-ratio: 2.15;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.88) contrast(1.03);
  width: 100%;
  height: auto;
  display: block;
}

.workflow-blueprint {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(24px, 3.5vw, 46px);
  position: relative;
  overflow: hidden;
}

.workflow-blueprint:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#f3f0e709 1px, #0000 1px), linear-gradient(90deg, #f3f0e709 1px, #0000 1px);
  background-size: 34px 34px;
  position: absolute;
  inset: 0;
}

.workflow-blueprint-header, .workflow-blueprint-flow, .workflow-blueprint-boundary {
  z-index: 1;
  position: relative;
}

.workflow-blueprint-header {
  border-bottom: 1px solid #f3f0e738;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 20px;
  display: flex;
}

.workflow-blueprint-header span, .workflow-blueprint-node small, .workflow-blueprint-node > span, .workflow-blueprint-boundary {
  text-transform: uppercase;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
}

.workflow-blueprint-header span {
  color: var(--teal-bright);
  letter-spacing: .12em;
  font-size: 11px;
}

.workflow-blueprint-header p {
  color: #f3f0e794;
  margin: 0;
  font-size: 12px;
}

.workflow-blueprint-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: clamp(30px, 4vw, 48px) 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.workflow-blueprint-node {
  background: #07161bd1;
  border: 1px solid #f3f0e74d;
  flex-direction: column;
  min-height: 182px;
  padding: 18px;
  display: flex;
  position: relative;
}

.workflow-blueprint-node:not(:last-child):after {
  content: "→";
  z-index: 2;
  width: 17px;
  color: var(--teal-bright);
  text-align: center;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 15px;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
}

.workflow-blueprint-node > span {
  color: #f3f0e76b;
  letter-spacing: .08em;
  margin-bottom: 24px;
  font-size: 10px;
}

.workflow-blueprint-node small {
  color: var(--teal-bright);
  letter-spacing: .1em;
  margin-bottom: 7px;
  font-size: 9px;
}

.workflow-blueprint-node strong {
  letter-spacing: -.025em;
  margin-bottom: 10px;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.12;
}

.workflow-blueprint-node p {
  color: #f3f0e794;
  margin: auto 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.workflow-blueprint-human {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
  border-radius: 48px;
}

.workflow-blueprint-human > span {
  color: var(--muted);
}

.workflow-blueprint-human small {
  color: var(--teal-dark);
}

.workflow-blueprint-human p {
  color: var(--muted);
}

.workflow-blueprint-boundary {
  color: #f3f0e79e;
  letter-spacing: .1em;
  align-items: center;
  gap: 18px;
  font-size: 9px;
  display: flex;
}

.workflow-blueprint-boundary i {
  background: #f3f0e73d;
  flex: 1;
  height: 1px;
}

.workflow-blueprint-boundary span:last-child {
  color: var(--teal-bright);
}

.workflow-artwork figcaption {
  color: var(--muted);
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
}

.workflow-story-copy {
  grid-template-columns: minmax(280px, .78fr) minmax(430px, 1.22fr);
  align-items: stretch;
  display: grid;
}

.workflow-stage {
  padding: clamp(28px, 3.6vw, 50px);
}

.workflow-stage + .workflow-stage {
  border-left: 1px solid var(--rule);
}

.workflow-stage-label {
  color: var(--teal-dark);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
}

.workflow-stage h3 {
  max-width: 520px;
  font-family: var(--font-sans);
  letter-spacing: -.04em;
  margin-bottom: 14px;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.workflow-stage > p:not(.workflow-stage-label) {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}

.workflow-stage-better {
  background: var(--ink);
  color: var(--paper);
}

.workflow-stage-better .workflow-stage-label {
  color: var(--teal-bright);
}

.workflow-steps {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  border-top: 1px solid #f3f0e72e;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 15px 0;
  display: grid;
}

.workflow-steps li > span {
  color: var(--teal-bright);
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.workflow-steps strong {
  margin-bottom: 3px;
  font-size: 15px;
  display: block;
}

.workflow-steps p {
  color: #f3f0e7ad;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.workflow-boundary {
  background: #42e8cd14;
  border: 1px solid #42e8cd80;
  margin-top: 22px;
  padding: 18px;
}

.workflow-boundary strong {
  color: var(--teal-bright);
  margin-bottom: 5px;
  font-size: 14px;
  display: block;
}

.workflow-boundary p {
  color: #f3f0e7c2;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.method {
  background: var(--paper);
}

.method-list {
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  position: relative;
}

.method-list:before {
  content: "";
  background: var(--rule);
  height: 1px;
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
}

.method-list li {
  padding-right: 22px;
  position: relative;
}

.method-list li > span {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 800;
  display: block;
}

.method-node {
  z-index: 1;
  border: 3px solid var(--paper);
  background: var(--ink);
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 1px var(--ink);
  border-radius: 50%;
  margin-bottom: 31px;
  position: relative;
}

.method-list li:nth-child(3) .method-node, .method-list li:nth-child(6) .method-node {
  background: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}

.method-list h3 {
  font-family: var(--font-sans);
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 500;
}

.method-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.trust {
  background: var(--ink);
  color: var(--paper);
}

.trust-layout {
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 9vw, 140px);
  display: grid;
}

.trust-intro {
  align-self: start;
  position: sticky;
  top: 126px;
}

.trust-intro > p {
  color: #f3f0e7a6;
}

.text-link-light {
  border-color: #f3f0e780;
  margin-top: 34px;
}

.principle-list {
  border-top: 1px solid #f3f0e72e;
}

.principle-list article {
  border-bottom: 1px solid #f3f0e72e;
  grid-template-columns: 50px 1fr;
  gap: 26px;
  padding: 34px 0;
  display: grid;
}

.principle-list article > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
}

.principle-list h3 {
  font-family: var(--font-sans);
  margin-bottom: 10px;
  font-size: 27px;
  font-weight: 500;
}

.principle-list p {
  color: #f3f0e79e;
  margin-bottom: 0;
}

.founder {
  background: var(--sage);
}

.founder-layout {
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
  display: grid;
}

.founder-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
}

.founder-portrait {
  background: var(--ink);
  margin: clamp(42px, 6vw, 72px) 0 12px;
  padding: 12px 12px 0;
  box-shadow: 12px 12px #0d1f261a;
}

.founder-portrait img {
  filter: contrast(1.03);
  width: 100%;
  height: auto;
  display: block;
}

.founder-portrait figcaption {
  color: #f3f0e7b8;
  letter-spacing: .08em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 2px 13px;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  line-height: 1.45;
  display: flex;
}

.founder-portrait figcaption span {
  color: var(--teal-bright);
}

.founder-profile {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.founder-role {
  color: var(--teal-dark);
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 34px;
  font-size: 11px;
  font-weight: 800;
}

.founder-profile h3 {
  font-family: var(--font-sans);
  letter-spacing: -.035em;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
}

.founder-profile > p:not(.founder-role) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.founder-profile > .founder-personality {
  max-width: 640px;
  color: var(--ink);
  letter-spacing: -.025em;
  margin-bottom: 28px;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 500;
  line-height: 1.32;
}

.founder-profile ul {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  margin: 30px 0 34px;
  padding: 24px 0 24px 20px;
}

.founder-profile li {
  margin-block: 8px;
}

.faq {
  background: var(--white);
}

.faq-layout {
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 10vw, 150px);
  display: grid;
}

.faq-intro {
  align-self: start;
}

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

.faq-list details {
  border-bottom: 1px solid var(--rule);
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-sans);
  grid-template-columns: 45px 1fr 20px;
  align-items: center;
  gap: 18px;
  padding: 27px 0;
  font-size: 22px;
  font-weight: 500;
  list-style: none;
  display: grid;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--teal-dark);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
}

.faq-list summary i:before, .faq-list summary i:after {
  content: "";
  background: var(--ink);
  width: 14px;
  height: 1px;
  transition: transform .18s;
  position: absolute;
}

.faq-list summary i:after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i:after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 38px 28px 63px;
}

.faq-answer p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact {
  background: var(--teal);
  color: var(--ink);
  padding-block: clamp(86px, 10vw, 136px);
}

.contact .eyebrow {
  color: var(--ink);
}

.contact-layout {
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
  display: grid;
}

.contact-copy > p {
  color: #0d1f26d6;
}

.contact-prompt {
  border-top: 1px solid #0d1f2659;
  margin-top: 40px;
  padding-top: 22px;
}

.contact-prompt > span {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.contact-prompt ul {
  color: #0d1f26d6;
  margin: 14px 0 0;
  padding-left: 20px;
}

.contact-form {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 4vw, 50px);
  box-shadow: 16px 16px #0d1f2621;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  display: grid;
}

.field {
  margin-bottom: 22px;
}

.field label {
  color: #f3f0e7cc;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.field input, .field select, .field textarea {
  width: 100%;
  color: var(--paper);
  background: #ffffff09;
  border: 1px solid #f3f0e740;
  border-radius: 0;
  outline: 0;
  transition: border-color .16s, background .16s;
}

.field input, .field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  resize: vertical;
  min-height: 125px;
  padding: 13px;
}

.field select {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 1px var(--teal-bright);
  background: #ffffff12;
}

.field textarea::placeholder {
  color: #f3f0e759;
}

.form-error {
  color: #ffd8cd;
  background: #ffb5a017;
  border-left: 3px solid #ffb5a0;
  padding: 10px 12px;
  font-size: 13px;
}

.button-light {
  border-color: var(--teal-bright);
  background: var(--teal-bright);
  width: 100%;
  margin-top: 4px;
}

.form-note {
  color: #f3f0e78c;
  margin: 18px 0 0;
  font-size: 11px;
  line-height: 1.55;
}

.form-note a {
  color: var(--paper);
  text-underline-offset: 3px;
  text-decoration: underline;
}

.site-footer {
  color: var(--paper);
  background: #07161b;
  padding-top: 70px;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 66px;
  display: grid;
}

.wordmark-footer {
  margin-bottom: 18px;
}

.footer-statement {
  color: #f3f0e78c;
  max-width: 340px;
  font-size: 14px;
}

.footer-heading {
  color: #f3f0e7a3;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 800;
}

.footer-grid > div:not(:first-child) {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-grid a:not(.wordmark) {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-grid a:not(.wordmark):hover {
  color: var(--teal-bright);
}

.footer-base {
  color: #f3f0e79e;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-top: 1px solid #f3f0e71f;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px;
  font-size: 10px;
  display: flex;
}

.footer-base p {
  margin: 0;
}

.legal-hero {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(80px, 10vw, 132px);
}

.legal-hero-grid {
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
  display: grid;
}

.legal-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(55px, 7vw, 92px);
}

.legal-intro {
  color: #f3f0e7b8;
  max-width: 590px;
  font-size: 19px;
}

.legal-updated {
  color: var(--teal-bright);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 30px 0 0;
  font-size: 10px;
  font-weight: 800;
}

.legal-layout {
  grid-template-columns: .6fr 1.4fr;
  gap: clamp(60px, 10vw, 160px);
  padding-block: clamp(80px, 10vw, 140px);
  display: grid;
}

.legal-layout aside {
  border-top: 1px solid var(--rule);
  align-self: start;
  padding-top: 20px;
  position: sticky;
  top: 118px;
}

.legal-layout aside > span {
  font-family: var(--font-sans);
  font-size: 24px;
}

.legal-layout aside p {
  max-width: 230px;
  color: var(--muted);
  margin: 14px 0 22px;
  font-size: 13px;
}

.legal-layout aside a {
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.legal-content section {
  border-bottom: 1px solid var(--rule);
  margin-bottom: 42px;
  padding: 0 0 42px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
}

.legal-content p, .legal-content li {
  color: #49595e;
  font-size: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: #087c6d;
  text-underline-offset: 3px;
  font-weight: 700;
  text-decoration: underline;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

.not-found {
  background: var(--paper);
  align-items: center;
  min-height: 72vh;
  padding-block: 90px;
  display: grid;
}

.not-found-grid {
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 80px;
  display: grid;
}

.error-code {
  color: var(--paper-deep);
  font-family: var(--font-sans);
  letter-spacing: -.09em;
  margin: 0;
  font-size: clamp(140px, 23vw, 310px);
  font-weight: 700;
  line-height: .65;
}

.not-found h1 {
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(52px, 6vw, 78px);
}

.not-found div > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 18px;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    min-height: 0;
  }

  .workflow-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workflow-heading .eyebrow {
    margin-bottom: 0;
  }

  .workflow-story {
    grid-template-columns: 1fr;
  }

  .workflow-artwork {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .method-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 55px;
  }

  .method-list:before {
    display: none;
  }

  .method-list li {
    padding-right: 35px;
  }

  .method-node {
    margin-bottom: 20px;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    cursor: pointer;
    align-items: center;
    gap: 12px;
    display: inline-flex;
  }

  .menu-label {
    font-size: 12px;
    font-weight: 700;
  }

  .menu-icon {
    width: 22px;
    height: 16px;
    display: inline-block;
    position: relative;
  }

  .menu-icon i {
    background: var(--teal-bright);
    width: 22px;
    height: 1px;
    position: absolute;
    right: 0;
  }

  .menu-icon i:first-child {
    top: 4px;
  }

  .menu-icon i:last-child {
    width: 15px;
    bottom: 4px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 72px 50px;
  }

  h1 {
    max-width: 650px;
  }

  .split-heading, .trust-layout, .founder-layout, .faq-layout, .contact-layout, .legal-hero-grid, .not-found-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 15px;
  }

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

  .recognition-card, .recognition-card:first-child, .recognition-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    min-height: auto;
    padding: 26px 0;
  }

  .recognition-card:last-child {
    border-bottom: 0;
  }

  .status-icon {
    margin: 25px 0;
  }

  .card-foot {
    margin-top: 12px;
  }

  .use-case-list {
    grid-template-columns: 1fr 1fr;
  }

  .use-case:nth-child(3n) {
    border-right: 1px solid #f3f0e72e;
  }

  .use-case:nth-child(2n) {
    border-right: 0;
  }

  .service-row {
    grid-template-columns: 42px 1fr;
    gap: 16px 24px;
  }

  .service-row > p {
    grid-column: 2;
  }

  .workflow-blueprint-flow {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-blueprint-node:after {
    display: none;
  }

  .trust-intro {
    position: static;
  }

  .faq-layout, .contact-layout {
    gap: 55px;
  }

  .legal-hero-grid {
    gap: 35px;
  }

  .not-found-grid {
    gap: 40px;
  }

  .error-code {
    font-size: 150px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .button-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-grid {
    gap: 32px;
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 68px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-footer {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .split-heading h2, .workflow-copy h2, .trust-intro h2, .faq-intro h2, .contact-copy h2 {
    font-size: 42px;
  }

  .split-heading > div > p, .workflow-copy > p, .trust-intro > p, .faq-intro > p, .contact-copy > p {
    font-size: 16px;
  }

  .use-case-list {
    grid-template-columns: 1fr;
  }

  .use-case, .use-case:nth-child(3n) {
    border-right: 0;
    min-height: 245px;
    padding-inline: 8px;
  }

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

  .workflow-heading h2 {
    font-size: 44px;
  }

  .workflow-heading > div > p {
    font-size: 16px;
  }

  .workflow-story {
    margin-inline: -8px;
    box-shadow: 8px 8px #0d1f2614;
  }

  .workflow-artwork {
    padding: 10px;
  }

  .workflow-artwork figcaption {
    padding-inline: 4px;
  }

  .workflow-blueprint {
    padding: 22px 18px;
  }

  .workflow-blueprint-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .workflow-blueprint-flow {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-block: 24px;
  }

  .workflow-blueprint-node {
    min-height: 0;
  }

  .workflow-blueprint-node > span {
    margin-bottom: 16px;
  }

  .workflow-blueprint-node p {
    margin-top: 14px;
  }

  .workflow-blueprint-boundary {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .workflow-blueprint-boundary i {
    flex: none;
    width: 100%;
  }

  .workflow-story-copy {
    grid-template-columns: 1fr;
  }

  .workflow-stage + .workflow-stage {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .workflow-stage {
    padding: 26px 22px;
  }

  .method-list {
    grid-template-columns: 1fr 1fr;
    gap: 42px 20px;
  }

  .method-list li {
    padding-right: 0;
  }

  .principle-list article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr 18px;
    gap: 10px;
    font-size: 19px;
  }

  .faq-answer {
    padding-left: 40px;
  }

  .contact {
    padding-block: 75px;
  }

  .contact-form {
    margin-inline: -8px;
    padding: 25px 20px;
    box-shadow: 8px 8px #0d1f2621;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .legal-layout aside {
    position: static;
  }
}

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

  .hero-video {
    display: none;
  }

  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.font-pixel, .eyebrow, .hero-meta-label, .hero-kicker, .card-number, .service-number, .use-case-number, .outcome-label, .page-contents-label, .page-contents-list a span {
  font-family: basis33, SFMono-Regular, Consolas, monospace;
}

.site-header {
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
  background: #040f14b8;
}

.wordmark {
  font-family: var(--font-sans);
  letter-spacing: -.055em;
  font-weight: 800;
}

.desktop-nav {
  text-transform: uppercase;
  letter-spacing: .08em;
}

.desktop-nav > a:not(.button) {
  transition: opacity .18s;
}

.desktop-nav > a:not(.button):hover {
  opacity: .7;
}

.mobile-menu {
  z-index: 200;
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #020a0df7;
  flex-direction: column;
  padding: 0 max(24px, 50vw - 620px);
  transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: fixed;
  inset: 0;
  transform: translateY(-10px);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header:has(.mobile-menu.is-open) {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.mobile-menu-header {
  border-bottom: 1px solid #f3f0e72e;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  display: flex;
}

.menu-close {
  width: 44px;
  height: 44px;
  color: var(--paper);
  cursor: pointer;
  background: none;
  border: 0;
  position: relative;
}

.menu-close:before, .menu-close:after {
  content: "";
  background: var(--teal-bright);
  width: 24px;
  height: 1px;
  position: absolute;
  top: 21px;
  left: 10px;
}

.menu-close:before {
  transform: rotate(45deg);
}

.menu-close:after {
  transform: rotate(-45deg);
}

.mobile-navigation {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: clamp(20px, 4vh, 38px);
  display: flex;
}

.mobile-navigation > a {
  color: var(--paper);
  letter-spacing: -.035em;
  opacity: 0;
  align-items: baseline;
  gap: 22px;
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 500;
  line-height: 1;
  transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1), color .18s;
  display: flex;
  transform: translateY(16px);
}

.mobile-menu.is-open .mobile-navigation > a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-navigation > a > span:first-child {
  color: var(--teal-bright);
  letter-spacing: .08em;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: .42em;
}

.mobile-navigation > a:hover {
  color: var(--teal-bright);
}

.mobile-navigation .mobile-menu-cta {
  color: var(--teal-bright);
  letter-spacing: 0;
  border-top: 1px solid #f3f0e738;
  margin-top: clamp(8px, 2vh, 20px);
  padding-top: 24px;
  font-size: clamp(17px, 4.6vw, 24px);
}

.mobile-menu-foot {
  color: #f3f0e7ad;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-top: 1px solid #f3f0e72e;
  margin: 0;
  padding-block: 20px;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.hero {
  background: #020b0f;
  min-height: calc(100svh - 76px);
}

.hero:before {
  z-index: 1;
  opacity: .55;
  background-size: 96px 96px;
}

.hero-media, .hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero-media img, .hero-media video {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.92) contrast(1.06) brightness(.9);
  transform: scale(1.02);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, #020b0fcc 0%, #020b0fad 34%, #020b0f33 68%, #020b0f0f 100%), linear-gradient(0deg, #020b0fc7 0%, #020b0f0f 56%, #020b0f8f 100%);
}

.hero-grid {
  z-index: 2;
  flex-direction: column;
  gap: 28px;
  min-height: calc(100svh - 76px);
  padding-block: 38px 22px;
  display: flex;
  position: relative;
}

.hero-meta-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 64px);
  display: grid;
}

.hero-meta-grid > div {
  border-top: 1px solid #f3f0e76b;
  padding-top: 14px;
}

.hero-meta-grid p {
  color: #f3f0e7cc;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.55;
}

.hero-meta-grid .hero-meta-label {
  color: #f3f0e78c;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 13px;
}

.hero-meta-grid .hero-meta-name {
  color: var(--paper);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.1;
}

.hero-meta-name b {
  color: var(--paper);
  letter-spacing: .01em;
  margin-top: 1px;
  font-size: 1.55em;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.hero-meta-name-brand b {
  color: var(--teal-bright);
}

.hero-meta-grid .hero-meta-note {
  color: #f3f0e780;
  margin: 14px 0 0;
  font-size: 10px;
  line-height: 1;
}

.hero-meta-grid .hero-meta-blurb {
  color: #f3f0e799;
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.6;
}

.hero-meta-grid .hero-meta-body {
  color: #f3f0e7e6;
  max-width: 230px;
}

.hero-meta-list {
  color: #f3f0e7e6;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.hero-meta-list li + li {
  margin-top: 2px;
}

.hero-bottom-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
  align-items: end;
  gap: clamp(42px, 7vw, 110px);
  margin-top: auto;
  display: grid;
}

.hero-copy {
  z-index: 2;
  position: relative;
}

.hero-kicker {
  color: var(--teal-bright);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 14px;
}

.hero h1 {
  max-width: 900px;
  color: var(--paper);
  font-family: var(--font-sans);
  letter-spacing: -.065em;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(54px, 6.2vw, 94px);
  font-weight: 500;
  line-height: .78;
}

.hero h1 .font-pixel {
  color: var(--teal-bright);
  letter-spacing: -.01em;
  vertical-align: baseline;
  font-size: 1.25em;
  font-weight: 400;
  line-height: .7;
  display: inline-block;
}

.hero-action {
  padding-bottom: 4px;
}

.hero-intro {
  color: #f3f0e7db;
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.65;
}

.hero .button-row {
  flex-wrap: wrap;
  gap: 18px 24px;
}

.hero .button {
  border-color: var(--teal-bright);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #42e8cdeb;
  min-height: 50px;
}

.hero .text-link {
  color: var(--paper);
}

.hero .button-ghost {
  color: var(--paper);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffff0d;
  border-color: #f3f0e74d;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
}

.hero .button-ghost:hover {
  color: var(--paper);
  background: #ffffff1a;
  border-color: #f3f0e780;
}

.hero .button-ghost span {
  color: var(--teal-bright);
}

.hero-footer {
  width: 100%;
  margin-top: 8px;
  padding: 16px 0 0;
}

.section h2, .workflow-copy h2, .trust-intro h2, .faq-intro h2, .contact-copy h2, .founder-heading h2 {
  font-family: var(--font-sans);
  letter-spacing: -.055em;
  font-weight: 500;
}

.recognition-card h3, .use-case h3, .service-row h3, .method-list h3, .principle-list h3, .faq-list summary, .founder-profile h3 {
  font-family: var(--font-sans);
  letter-spacing: -.035em;
  font-weight: 500;
}

@media (max-width: 800px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu {
    padding-inline: 24px;
  }

  .mobile-menu-header {
    min-height: 68px;
  }

  .hero, .hero-grid {
    min-height: calc(100svh - 68px);
  }

  .hero-media img, .hero-media video {
    object-position: 66% center;
    filter: saturate(.86) contrast(1.06) brightness(.8);
  }

  .hero-shade {
    background: linear-gradient(90deg, #020b0fe6 0%, #020b0f75 100%), linear-gradient(0deg, #020b0feb 0%, #020b0f2e 58%, #020b0f94 100%);
  }

  .hero-grid {
    gap: 24px;
    padding-block: 26px 18px;
    display: flex;
  }

  .hero-meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .hero-meta-grid > div {
    padding-top: 8px;
  }

  .hero-meta-grid > div:nth-child(2n) {
    text-align: right;
  }

  .hero-meta-grid > div:nth-child(2n) .hero-meta-list {
    padding-left: 0;
  }

  .hero-meta-grid p {
    font-size: 10px;
  }

  .hero-meta-grid .hero-meta-name {
    font-size: 14px;
  }

  .hero-meta-grid .hero-meta-blurb {
    font-size: 10px;
  }

  .hero-meta-blurb br {
    display: none;
  }

  .hero-meta-grid .hero-meta-body {
    max-width: none;
  }

  .hero-meta-list {
    font-size: 10px;
  }

  .hero-meta-grid .hero-meta-label {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .hero-bottom-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: auto;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(48px, 11.5vw, 76px);
    line-height: .9;
  }

  .hero-intro {
    max-width: 620px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero .button-row {
    flex-direction: row;
    align-items: center;
  }

  .hero-footer {
    padding-top: 10px;
    display: flex;
  }
}

@media (max-width: 560px) {
  .hero-grid {
    gap: 18px;
    padding-top: 20px;
  }

  .hero-meta-grid {
    gap: 12px 18px;
  }

  .hero-meta-grid p {
    line-height: 1.35;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.6vw, 58px);
  }

  .hero .button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero .button-row .button {
    width: 100%;
  }

  .hero .text-link {
    align-self: flex-start;
  }

  .hero-footer {
    display: none;
  }
}

.insights-hero, .article-hero {
  background: var(--ink);
  color: var(--paper);
}

.insights-hero {
  padding-block: clamp(90px, 11vw, 150px);
}

.insights-hero-grid {
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: clamp(50px, 9vw, 140px);
  display: grid;
}

.insights-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(58px, 7.5vw, 106px);
  line-height: .94;
}

.insights-hero-grid > p {
  color: #f3f0e7b3;
  max-width: 520px;
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.75;
}

.insights-index {
  background: var(--paper);
}

.insights-index-heading {
  grid-template-columns: .65fr 1.35fr;
  gap: 40px;
  margin-bottom: 42px;
  display: grid;
}

.insights-index-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
}

.insights-index-heading p {
  max-width: 580px;
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 17px;
}

.insight-card-list {
  border-top: 1px solid var(--rule);
}

.insight-card {
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 70px minmax(0, 1fr) 220px;
  gap: 38px;
  padding: 42px 0;
  display: grid;
}

.insight-card-number {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}

.insight-card-meta {
  color: var(--teal-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
}

.insight-card h3 {
  letter-spacing: -.04em;
  max-width: 760px;
  margin-bottom: 15px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.insight-card h3 a {
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}

.insight-card h3 a:hover {
  text-decoration-line: underline;
}

.insight-card > div:nth-child(2) > p:last-child {
  max-width: 680px;
  color: var(--muted);
  margin-bottom: 0;
}

.insight-card-foot {
  color: var(--muted);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-size: 12px;
  display: flex;
}

.insight-card-foot a {
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  padding-bottom: 5px;
  font-weight: 700;
}

.insight-card-foot a span {
  color: var(--teal-dark);
  margin-left: 10px;
}

.article-hero {
  padding-block: clamp(74px, 9vw, 124px);
}

.article-hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  display: grid;
}

.article-back-link {
  color: var(--teal-bright);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 800;
  display: inline-block;
}

.article-back-link span {
  color: #f3f0e773;
  margin-inline: 10px;
}

.article-hero h1 {
  max-width: 890px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 92px);
  line-height: .96;
}

.article-intro > p {
  color: #f3f0e7b8;
  font-size: 19px;
  line-height: 1.7;
}

.article-meta {
  color: #f3f0e794;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-top: 1px solid #f3f0e72e;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.article-layout {
  grid-template-columns: minmax(190px, .48fr) minmax(0, 1.52fr);
  gap: clamp(60px, 10vw, 155px);
  padding-block: clamp(80px, 10vw, 140px);
  display: grid;
}

.article-aside {
  border-top: 1px solid var(--rule);
  align-self: start;
  padding-top: 18px;
  position: sticky;
  top: 112px;
}

.article-aside > p {
  color: var(--teal-dark);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 800;
}

.article-aside ol {
  counter-reset: article-nav;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-aside li {
  counter-increment: article-nav;
  color: var(--muted);
  grid-template-columns: 26px 1fr;
  gap: 8px;
  margin-bottom: 13px;
  font-size: 12px;
  line-height: 1.45;
  display: grid;
}

.article-aside li:before {
  content: counter(article-nav, decimal-leading-zero);
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 800;
}

.article-aside a:hover {
  color: var(--ink);
  text-underline-offset: 4px;
  text-decoration: underline;
}

.article-content {
  min-width: 0;
  max-width: 860px;
}

.article-content > p, .article-content section > p, .article-content section > ul {
  max-width: 760px;
}

.article-content p, .article-content li {
  color: #42545a;
  font-size: 17px;
  line-height: 1.82;
}

.article-content .article-lead {
  color: var(--ink);
  font-size: clamp(22px, 2.3vw, 29px);
  line-height: 1.55;
}

.article-figure {
  margin: clamp(48px, 7vw, 76px) 0 0;
}

.article-figure img {
  border: 1px solid var(--rule);
  background: #e9e3d5;
  width: 100%;
  height: auto;
  display: block;
}

.article-figure figcaption {
  border-top: 3px solid var(--teal);
  color: var(--muted);
  grid-template-columns: minmax(145px, .36fr) minmax(0, .64fr);
  gap: 7px 24px;
  padding-top: 18px;
  font-size: 12px;
  line-height: 1.55;
  display: grid;
}

.article-figure-label {
  color: var(--teal-dark);
  letter-spacing: .09em;
  text-transform: uppercase;
  grid-row: 1 / span 2;
  font-size: 10px;
  font-weight: 800;
}

.article-figure-label > span {
  color: var(--muted);
  margin-inline: 5px;
}

.article-figure-prompt {
  color: #617076;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  line-height: 1.65;
}

.article-figure-expand {
  border-bottom: 1px solid var(--ink);
  width: fit-content;
  color: var(--ink);
  align-items: center;
  gap: 9px;
  padding-top: 3px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.article-figure-expand span {
  color: var(--teal-dark);
}

.article-content > section {
  border-top: 1px solid var(--rule);
  margin-top: 72px;
  padding-top: 72px;
  scroll-margin-top: 80px;
}

.article-video-player {
  margin: 36px 0 0;
}

.article-video-player video {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--rule);
  background: var(--ink);
  width: 100%;
  display: block;
  box-shadow: 12px 12px #0d1f261a;
}

.article-video-player--square video {
  aspect-ratio: 1;
}

.article-video-player figcaption {
  border-top: 3px solid var(--teal);
  color: var(--muted);
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-top: 16px;
  padding-top: 15px;
  font-size: 11px;
  line-height: 1.55;
  display: flex;
}

.article-video-player figcaption > span:first-child {
  color: var(--teal-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.article-video-player figcaption i {
  color: var(--muted);
  margin-inline: 6px;
  font-style: normal;
}

.article-content .article-section-label {
  color: var(--teal-dark);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 800;
}

.article-content h2 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(39px, 5vw, 61px);
  line-height: 1.04;
}

.article-content h3 {
  letter-spacing: -.025em;
  margin: 48px 0 20px;
  font-size: 29px;
  font-weight: 500;
}

.article-content ul {
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-pattern {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: repeat(4, 1fr);
  margin: 38px 0;
  display: grid;
}

.article-pattern > div {
  border-right: 1px solid var(--rule);
  min-height: 220px;
  padding: 24px 20px 22px;
}

.article-pattern > div:first-child {
  padding-left: 0;
}

.article-pattern > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.article-pattern span {
  color: var(--teal-dark);
  margin-bottom: 35px;
  font-size: 10px;
  font-weight: 800;
  display: block;
}

.article-pattern strong {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.article-pattern p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.opportunity-list {
  border-top: 1px solid var(--rule);
  margin-top: 50px;
}

.article-content .opportunity {
  border-bottom: 1px solid var(--rule);
  grid-template-columns: minmax(180px, .58fr) minmax(0, 1.42fr);
  gap: 45px;
  padding: 48px 0;
  display: grid;
}

.opportunity-heading > span {
  color: var(--teal-dark);
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 800;
  display: block;
}

.article-content .opportunity-heading h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
}

.opportunity-copy > div {
  margin-bottom: 28px;
}

.opportunity-copy > div:last-child {
  margin-bottom: 0;
}

.opportunity-copy h4 {
  color: var(--ink);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 7px;
  font-size: 11px;
}

.opportunity-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

.opportunity-control {
  border-left: 3px solid var(--teal);
  background: #12bfa714;
  padding: 17px 19px;
}

.article-checklist {
  border-top: 1px solid var(--rule);
  margin-top: 32px;
  list-style: none;
  padding: 0 !important;
}

.article-checklist li {
  border-bottom: 1px solid var(--rule);
  margin: 0;
  padding: 20px 0;
}

.article-checklist strong {
  color: var(--ink);
  display: block;
}

.article-content blockquote {
  border-left: 4px solid var(--teal);
  background: var(--ink);
  max-width: 760px;
  margin: 42px 0;
  padding: 28px 34px;
}

.article-content blockquote p {
  color: var(--paper);
  margin: 0;
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 500;
  line-height: 1.5;
}

.article-cta {
  background: var(--teal);
  padding-block: clamp(76px, 9vw, 120px);
}

.article-cta-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: clamp(60px, 10vw, 160px);
  display: grid;
}

.article-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(43px, 5.4vw, 72px);
  line-height: 1.02;
}

.article-cta-grid > div:last-child > p {
  color: #0d1f26d1;
  margin-bottom: 26px;
  font-size: 17px;
}

.article-cta .button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.article-cta .button:hover {
  border-color: var(--ink-soft);
  background: var(--ink-soft);
}

.first-prompt {
  border: 1px solid var(--rule);
  border-left: 4px solid var(--teal);
  background: var(--white);
  max-width: 760px;
  margin: 40px 0 0;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 10px 10px #0d1f2612;
}

.first-prompt-label {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-weight: 800;
  color: var(--teal-dark) !important;
  margin-bottom: 15px !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
}

.first-prompt p:last-child {
  margin: 0;
  font-weight: 500;
  color: var(--ink) !important;
  font-size: clamp(19px, 2vw, 24px) !important;
  line-height: 1.55 !important;
}

@media (max-width: 800px) {
  .insights-hero-grid, .article-hero-grid, .article-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .insight-card {
    grid-template-columns: 45px 1fr;
  }

  .insight-card-foot {
    flex-direction: row;
    grid-column: 2;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .article-aside {
    position: static;
  }

  .article-aside ol {
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
    display: grid;
  }

  .first-prompt {
    box-shadow: 7px 7px #0d1f2612;
  }
}

@media (max-width: 560px) {
  .insights-index-heading, .article-content .opportunity {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .insight-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .insight-card-foot {
    grid-column: 1;
  }

  .article-aside ol {
    grid-template-columns: 1fr;
  }

  .article-figure figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-figure-label {
    grid-row: auto;
  }

  .article-video-player {
    margin: 28px 0 0;
  }

  .article-video-player video {
    box-shadow: 8px 8px #0d1f261a;
  }

  .article-video-player figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .article-pattern {
    grid-template-columns: 1fr 1fr;
  }

  .article-pattern > div, .article-pattern > div:first-child, .article-pattern > div:last-child {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    min-height: 190px;
    padding: 22px 18px;
  }

  .article-pattern > div:nth-child(2n) {
    border-right: 0;
  }

  .article-pattern > div:nth-child(n+3) {
    border-bottom: 0;
  }

  .article-content > section {
    margin-top: 54px;
    padding-top: 54px;
  }

  .article-content .opportunity {
    padding-block: 38px;
  }
}

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

.search-trigger {
  color: #f3f0e7d1;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  background: #f3f0e70f;
  border: 1px solid #f3f0e747;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 12px;
  font-size: 13px;
  transition: border-color .18s, background .18s, color .18s;
  display: inline-flex;
}

.search-trigger:hover {
  border-color: var(--teal-bright);
  color: var(--paper);
  background: #42e8cd1a;
}

.search-trigger-shortcut {
  color: #f3f0e7a8;
  letter-spacing: .06em;
  border: 1px solid #f3f0e73d;
  padding: 2px 6px;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.search-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7px;
  stroke-linecap: round;
  flex: none;
  width: 18px;
  height: 18px;
}

.menu-search-trigger {
  width: 100%;
  color: var(--paper);
  letter-spacing: -.02em;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-bottom: 1px solid #f3f0e738;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 500;
  display: flex;
}

.menu-search-trigger .search-icon {
  width: 22px;
  height: 22px;
  color: var(--teal-bright);
}

.search-overlay {
  z-index: 300;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(16px, 9vh, 110px) 20px 24px;
  display: flex;
  position: fixed;
  inset: 0;
}

.search-scrim {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #040f149e;
  position: absolute;
  inset: 0;
}

.search-dialog {
  border: 1px solid var(--rule);
  background: var(--white);
  flex-direction: column;
  width: min(720px, 100%);
  max-height: 100%;
  animation: .22s cubic-bezier(.16, 1, .3, 1) search-dialog-in;
  display: flex;
  position: relative;
  box-shadow: 0 30px 80px #040f1459;
}

@keyframes search-dialog-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.search-field {
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  display: flex;
}

.search-field input {
  min-width: 0;
  color: var(--ink);
  background: none;
  border: 0;
  outline: none;
  flex: 1;
  padding: 6px 0;
  font-size: 17px;
}

.search-field input::placeholder {
  color: var(--muted);
}

.search-close {
  border: 1px solid var(--rule);
  color: var(--muted);
  cursor: pointer;
  background: none;
  padding: 6px 10px;
  transition: border-color .18s, color .18s;
}

.search-close:hover {
  border-color: var(--teal-dark);
  color: var(--ink);
}

.search-close-key {
  letter-spacing: .06em;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.search-results {
  overscroll-behavior: contain;
  flex: auto;
  min-height: 0;
  overflow-y: auto;
}

.search-results ul[role="listbox"] {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-result + .search-result {
  border-top: 1px solid var(--rule);
}

.search-result a {
  border-left: 3px solid #0000;
  padding: 16px 18px;
  display: block;
}

.search-result.is-active a {
  border-left-color: var(--teal);
  background: var(--paper);
}

.search-result-meta {
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 12px;
  display: flex;
}

.search-result-title {
  letter-spacing: -.015em;
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.search-result-snippet {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.search-results mark {
  color: inherit;
  background: #12bfa73d;
  font-weight: 600;
}

.search-empty {
  color: var(--muted);
  padding: 20px 18px;
  font-size: 14px;
}

.search-empty p {
  margin: 0 0 10px;
}

.search-empty p:last-child {
  margin-bottom: 0;
}

.search-empty a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.search-suggestions {
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.search-suggestions button {
  border: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  background: none;
  padding: 7px 12px;
  font-size: 13px;
  transition: border-color .18s, background .18s;
}

.search-suggestions button:hover {
  border-color: var(--teal-dark);
  background: var(--paper);
}

.search-foot {
  border-top: 1px solid var(--rule);
  background: var(--paper);
  color: var(--muted);
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 10px 18px;
  font-size: 12px;
  display: flex;
}

.search-foot kbd {
  border: 1px solid var(--rule);
  background: var(--white);
  text-align: center;
  min-width: 20px;
  padding: 1px 5px;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  display: inline-block;
}

@media (max-width: 800px) {
  .search-overlay {
    padding: 0;
  }

  .search-dialog {
    border: 0;
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .search-foot {
    display: none;
  }
}

@media (max-width: 1180px) {
  .search-trigger-shortcut {
    display: none;
  }
}

@media (max-width: 1040px) and (min-width: 801px) {
  .desktop-nav {
    gap: clamp(14px, 2vw, 26px);
  }

  .search-trigger {
    padding: 9px 10px;
  }

  .search-trigger-label {
    clip-path: inset(50%);
    white-space: nowrap;
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
  }
}

.menu-search-trigger {
  opacity: 0;
  transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(16px);
}

.mobile-menu.is-open .menu-search-trigger {
  opacity: 1;
  transform: translateY(0);
}

.tutorials-hero, .tutorial-article-hero {
  background: var(--ink);
  color: var(--paper);
}

.tutorials-hero {
  padding-block: clamp(72px, 9vw, 126px);
  overflow: hidden;
}

.tutorials-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  display: grid;
}

.tutorials-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: .96;
}

.tutorials-hero-copy > p:not(.eyebrow) {
  color: #f3f0e7b8;
  max-width: 650px;
  font-size: 19px;
  line-height: 1.72;
}

.tutorials-hero .eyebrow, .tutorial-principles .eyebrow {
  color: var(--teal-bright);
}

.tutorials-hero .button-row {
  margin-top: 34px;
}

.tutorials-hero-image, .tutorial-route-image {
  background: #07161b;
  border: 1px solid #f3f0e72b;
  width: 100%;
  height: auto;
  display: block;
}

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

.tutorial-job-grid {
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(60px, 9vw, 140px);
  display: grid;
}

.tutorial-job-grid h2, .tutorial-section-heading h2, .tutorial-principles h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
}

.tutorial-job-list {
  border-top: 1px solid var(--rule);
}

.tutorial-job-list article {
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 48px minmax(180px, .72fr) 1.28fr;
  gap: 24px;
  padding: 28px 0;
  display: grid;
}

.tutorial-job-list span, .tutorial-card-meta, .tutorial-risk-note, .tutorial-route-list > li > span, .tutorial-principles li > span, .tutorial-topic-number, .tutorial-topic-foot, .tutorial-breadcrumb, .tutorial-section-label, .tutorial-code-wrap > span {
  font-family: basis33, SFMono-Regular, Consolas, monospace;
}

.tutorial-job-list span, .tutorial-route-list > li > span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}

.tutorial-job-list h3 {
  letter-spacing: -.025em;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.tutorial-job-list p {
  color: var(--muted);
  margin: 0;
}

.tutorial-job-list .tutorial-fit-note {
  color: var(--muted);
  grid-column: 1 / -1;
  padding: 26px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.tutorial-topics {
  background: var(--white);
}

.tutorial-topic-list {
  border-top: 1px solid var(--rule);
  margin: 0;
  padding: 0;
  list-style: none;
}

.tutorial-topic-list li {
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 48px minmax(160px, .55fr) minmax(0, 1.45fr) minmax(150px, auto);
  align-items: start;
  gap: 28px;
  padding: 34px 0;
  display: grid;
}

.tutorial-topic-number {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}

.tutorial-topic-name h3 {
  letter-spacing: -.035em;
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.tutorial-topic-name h3 a:hover {
  text-underline-offset: 6px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.tutorial-topic-name p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.tutorial-topic-summary {
  color: var(--muted);
  margin: 0;
}

.tutorial-topic-foot {
  color: var(--muted);
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  display: flex;
}

.tutorial-topic-foot a {
  color: var(--ink);
  font-weight: 700;
}

.tutorial-topic-foot a span {
  color: var(--teal-dark);
  margin-left: 8px;
}

.kestra-route {
  background: var(--sage);
}

.tutorial-section-heading {
  grid-template-columns: 1.05fr .75fr;
  align-items: end;
  gap: clamp(44px, 8vw, 125px);
  margin-bottom: 52px;
  display: grid;
}

.tutorial-section-heading > p {
  max-width: 570px;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.72;
}

.tutorial-route-list {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
  display: grid;
}

.tutorial-route-list li {
  border-right: 1px solid var(--rule);
  min-height: 230px;
  padding: 28px 30px;
}

.tutorial-route-list li:last-child {
  border-right: 0;
}

.tutorial-route-list h3 {
  letter-spacing: -.035em;
  margin: 40px 0 12px;
  font-size: 27px;
  font-weight: 500;
}

.tutorial-route-list p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.tutorial-route-image {
  object-fit: cover;
  max-height: 410px;
}

.tutorial-index {
  background: var(--white);
}

.tutorial-card-grid {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.tutorial-card {
  border-right: 1px solid var(--rule);
  flex-direction: column;
  min-height: 440px;
  padding: 28px clamp(24px, 3vw, 42px) 30px;
  transition: background .18s;
  display: flex;
}

.tutorial-card:last-child {
  border-right: 0;
}

.tutorial-card:hover {
  background: #f3f0e78f;
}

.tutorial-card-meta {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: space-between;
  gap: 18px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
}

.tutorial-card-meta span:first-child {
  color: var(--teal-dark);
}

.tutorial-card h3 {
  letter-spacing: -.04em;
  margin: 58px 0 18px;
  font-size: clamp(27px, 2.8vw, 35px);
  font-weight: 500;
  line-height: 1.08;
}

.tutorial-card h3 a:hover {
  text-underline-offset: 6px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.tutorial-card > p {
  color: var(--muted);
}

.tutorial-card .tutorial-card-best {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.tutorial-card-foot {
  border-top: 1px solid var(--rule);
  color: var(--muted);
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  display: flex;
}

.tutorial-card-foot a {
  color: var(--ink);
  font-weight: 700;
}

.tutorial-card-foot a span {
  color: var(--teal-dark);
  margin-left: 8px;
}

.tutorial-card .tutorial-risk-note {
  color: var(--teal-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 14px 0 0;
  font-size: 10px;
}

.tutorial-principles {
  background: var(--ink);
  color: var(--paper);
}

.tutorial-principles-grid {
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 10vw, 150px);
  display: grid;
}

.tutorial-principles .text-link {
  margin-top: 34px;
}

.tutorial-principles ol {
  border-top: 1px solid #f3f0e72e;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tutorial-principles li {
  color: #f3f0e7c2;
  border-bottom: 1px solid #f3f0e72e;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 28px 0;
  font-size: 18px;
  display: grid;
}

.tutorial-principles li > span {
  color: var(--teal-bright);
  font-size: 10px;
}

.workflow-tutorial-link {
  border-bottom: 1px solid var(--ink);
  gap: 18px;
  width: fit-content;
  margin-top: 34px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
}

.workflow-tutorial-link span {
  color: var(--teal-dark);
}

.tutorial-article-hero {
  padding-block: clamp(72px, 9vw, 124px);
}

.tutorial-article-hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  display: grid;
}

.tutorial-breadcrumb {
  color: var(--teal-bright);
  letter-spacing: .09em;
  text-transform: uppercase;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
}

.tutorial-breadcrumb span:last-child {
  color: #f3f0e79e;
}

.tutorial-article-hero h1 {
  max-width: 890px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 88px);
  line-height: .96;
}

.tutorial-article-intro > p {
  color: #f3f0e7bd;
  font-size: 19px;
  line-height: 1.7;
}

.tutorial-article-layout {
  grid-template-columns: minmax(190px, .45fr) minmax(0, 1.55fr);
  gap: clamp(60px, 9vw, 140px);
  padding-block: clamp(78px, 9vw, 130px);
  display: grid;
}

.tutorial-aside {
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.tutorial-content {
  min-width: 0;
  max-width: 860px;
}

.tutorial-content > p, .tutorial-content section > p, .tutorial-content section > ul, .tutorial-content section > ol {
  max-width: 760px;
}

.tutorial-content p, .tutorial-content li {
  color: #42545a;
  font-size: 17px;
  line-height: 1.82;
}

.tutorial-content .tutorial-lead {
  color: var(--ink);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.52;
}

.tutorial-content > section {
  border-top: 1px solid var(--rule);
  margin-top: 70px;
  padding-top: 70px;
  scroll-margin-top: 90px;
}

.tutorial-content h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
}

.tutorial-content h3 {
  letter-spacing: -.025em;
  max-width: 760px;
  margin: 34px 0 10px;
  font-size: 22px;
  font-weight: 600;
}

.tutorial-content a:not(.button) {
  color: var(--teal-dark);
  text-underline-offset: 3px;
  font-weight: 700;
  text-decoration: underline;
}

.tutorial-content :not(pre) > code {
  background: var(--paper-deep);
  color: var(--ink);
  padding: .12em .34em;
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: .88em;
}

.tutorial-content ol, .tutorial-content ul {
  padding-left: 24px;
}

.tutorial-content li {
  margin-bottom: 9px;
}

.tutorial-content .article-section-label {
  color: var(--teal-dark);
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 800;
}

.tutorial-callout {
  border-left: 4px solid var(--teal);
  background: var(--sage);
  max-width: 760px;
  margin: 34px 0;
  padding: 24px 26px;
}

.tutorial-callout-security {
  border-color: var(--ink);
  background: var(--paper-deep);
}

.tutorial-callout strong {
  color: var(--ink);
  margin-bottom: 7px;
  display: block;
}

.tutorial-callout p {
  color: #364b51;
  margin: 0;
  font-size: 15px;
}

.tutorial-code-wrap {
  max-width: 860px;
  color: var(--paper);
  background: #07161b;
  border: 1px solid #f3f0e729;
  margin: 30px 0;
  position: relative;
}

.tutorial-code-wrap > span {
  color: var(--teal-bright);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid #f3f0e729;
  padding: 10px 16px;
  font-size: 10px;
  display: block;
}

.tutorial-code-wrap pre {
  tab-size: 2;
  max-height: 680px;
  margin: 0;
  padding: 22px;
  overflow: auto;
}

.tutorial-code-wrap code {
  white-space: pre;
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  line-height: 1.65;
}

.tutorial-workflow {
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: 1fr auto 1fr auto 1.15fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
  padding: 26px;
  display: grid;
}

.tutorial-workflow > div {
  border: 1px solid #f3f0e747;
  flex-direction: column;
  min-height: 130px;
  padding: 16px;
  display: flex;
}

.tutorial-workflow .tutorial-workflow-human {
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  border-radius: 70px;
}

.tutorial-workflow span, .tutorial-workflow small {
  text-transform: uppercase;
  font-family: basis33, SFMono-Regular, Consolas, monospace;
  font-size: 9px;
}

.tutorial-workflow span {
  color: var(--teal-bright);
}

.tutorial-workflow-human span {
  color: var(--teal-dark);
}

.tutorial-workflow small {
  color: #f3f0e794;
  margin: auto 0 5px;
}

.tutorial-workflow-human small {
  color: var(--muted);
}

.tutorial-workflow strong {
  font-size: 15px;
  line-height: 1.2;
}

.tutorial-workflow > i {
  color: var(--teal-bright);
  font-style: normal;
}

.tutorial-checklist {
  border-top: 1px solid var(--rule);
  list-style: none;
  padding: 0 !important;
}

.tutorial-checklist li {
  border-bottom: 1px solid var(--rule);
  margin: 0;
  padding: 16px 12px 16px 42px;
  position: relative;
}

.tutorial-checklist li:before {
  content: "✓";
  color: var(--teal-dark);
  font-weight: 800;
  position: absolute;
  top: 16px;
  left: 12px;
}

.tutorial-troubleshooting {
  border-top: 1px solid var(--rule);
}

.tutorial-troubleshooting article {
  border-bottom: 1px solid var(--rule);
  padding: 25px 0;
}

.tutorial-troubleshooting h3 {
  margin-top: 0;
}

.tutorial-troubleshooting p {
  margin-bottom: 0;
}

.tutorial-faqs {
  border-top: 1px solid var(--rule);
}

.tutorial-faqs details {
  border-bottom: 1px solid var(--rule);
}

.tutorial-faqs summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 19px;
  font-weight: 600;
}

.tutorial-faqs details p {
  padding: 0 28px 22px 0;
}

.tutorial-sources {
  word-break: break-word;
}

.tutorial-related {
  border: 1px solid var(--rule);
  background: var(--rule);
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 72px;
  display: grid;
}

.tutorial-related > div {
  background: var(--paper);
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  display: flex;
}

.tutorial-related > div > span {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .tutorial-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tutorial-workflow {
    grid-template-columns: 1fr 1fr;
  }

  .tutorial-workflow > i {
    display: none;
  }
}

@media (max-width: 800px) {
  .tutorials-hero-grid, .tutorial-job-grid, .tutorial-section-heading, .tutorial-principles-grid, .tutorial-article-hero-grid, .tutorial-article-layout {
    grid-template-columns: 1fr;
  }

  .tutorials-hero-grid, .tutorial-article-hero-grid {
    gap: 42px;
  }

  .tutorials-hero-image {
    object-fit: cover;
    max-height: 360px;
  }

  .tutorial-job-grid, .tutorial-principles-grid {
    gap: 48px;
  }

  .tutorial-section-heading {
    gap: 24px;
  }

  .tutorial-route-list {
    grid-template-columns: 1fr;
  }

  .tutorial-topic-list li {
    grid-template-columns: 48px 1fr;
    gap: 18px 24px;
  }

  .tutorial-topic-summary, .tutorial-topic-foot {
    grid-column: 2;
  }

  .tutorial-route-list li {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    min-height: 0;
  }

  .tutorial-route-list li:last-child {
    border-bottom: 0;
  }

  .tutorial-aside {
    max-height: none;
    position: static;
  }

  .tutorial-article-layout {
    gap: 52px;
  }
}

@media (max-width: 560px) {
  .tutorials-hero h1, .tutorial-article-hero h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .tutorials-hero-copy > p:not(.eyebrow), .tutorial-article-intro > p {
    font-size: 16px;
  }

  .tutorial-job-list article {
    grid-template-columns: 34px 1fr;
  }

  .tutorial-job-list article p {
    grid-column: 2;
  }

  .tutorial-topic-list li {
    grid-template-columns: 34px 1fr;
  }

  .tutorial-card-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-card {
    border-right: 0;
    min-height: 0;
    padding: 26px 0;
  }

  .tutorial-card h3 {
    margin-top: 38px;
  }

  .tutorial-workflow, .tutorial-related {
    grid-template-columns: 1fr;
  }

  .tutorial-workflow {
    padding: 18px;
  }

  .tutorial-workflow > div {
    min-height: 110px;
  }

  .tutorial-code-wrap {
    margin-inline: -8px;
  }

  .tutorial-code-wrap pre {
    padding: 18px;
  }

  .tutorial-code-wrap code {
    font-size: 12px;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/