:root {
  --dark: #0b0d0f;
  --dark-soft: #111417;
  --dark-line: rgba(255, 255, 255, .13);
  --light: #f1f0e9;
  --paper: #f8f7f2;
  --ink: #171918;
  --ink-muted: #676b68;
  --light-line: rgba(23, 25, 24, .15);
  --white: #f7f7f2;
  --acid: #baff4f;
  --acid-hover: #caff71;
  --max: 1460px;
  --side: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button,
input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
::selection { color: var(--ink); background: var(--acid); }

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--side);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 17px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 13px var(--side);
  background: rgba(11, 13, 15, .92);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, calc(var(--max) - var(--side) * 2));
  min-height: 48px;
  margin-inline: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 14px;
  letter-spacing: 0;
}
.brand-name i { color: var(--acid); font-style: normal; }
.main-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 45px); }
.main-nav a {
  position: relative;
  color: #c5c8c6;
  font-size: 12px;
  font-weight: 650;
  transition: color .2s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-mobile-contact { display: none; }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.header-cta:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(45px, 7vw, 110px);
  min-height: 690px;
  padding-top: 112px;
  padding-bottom: 48px;
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 74px var(--side) 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}
.hero::after {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -8%;
  width: 54vw;
  height: 70%;
  background: radial-gradient(circle, rgba(186,255,79,.08), transparent 67%);
  content: "";
  filter: blur(12px);
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #adb2af;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.availability span {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(186,255,79,.12);
}
.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(46px, 5.05vw, 78px);
  line-height: .99;
  letter-spacing: -.06em;
  font-weight: 720;
}
.hero h1 em {
  color: var(--acid);
  font-style: normal;
  font-weight: 560;
}
.hero-copy > p {
  max-width: 630px;
  margin: 25px 0 0;
  color: #aeb3b1;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transition: transform .3s var(--ease), background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-acid { color: var(--ink); background: var(--acid); }
.button-acid:hover { background: var(--acid-hover); }
.button-dark { color: var(--white); background: var(--dark); }
.button-dark:hover { color: var(--ink); background: #fff; }
.text-action {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.35);
  color: #d3d6d3;
  font-size: 11px;
  font-weight: 750;
}
.text-action:hover { color: var(--acid); border-color: var(--acid); }
.hero-facts {
  display: flex;
  gap: clamp(25px, 3.5vw, 50px);
  margin: 34px 0 0;
}
.hero-facts div { position: relative; }
.hero-facts div + div::before {
  position: absolute;
  top: 4px;
  left: calc(clamp(25px, 3.5vw, 50px) / -2);
  width: 1px;
  height: 35px;
  background: var(--dark-line);
  content: "";
}
.hero-facts dt {
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 750;
  letter-spacing: -.045em;
}
.hero-facts dd {
  margin: 1px 0 0;
  color: #7e8581;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-preview {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: #14181a;
  box-shadow: 0 30px 80px rgba(0,0,0,.38);
  transition: transform .55s var(--ease), border-color .3s ease;
}
.hero-preview:hover {
  border-color: rgba(186,255,79,.55);
  transform: translateY(-7px);
}
.browser-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #7f8783;
  font-size: 8px;
  letter-spacing: .06em;
}
.browser-bar b {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: .12em;
}
.browser-dots { display: flex; gap: 4px; }
.browser-dots i {
  width: 5px;
  height: 5px;
  background: #59605d;
  border-radius: 50%;
}
.hero-preview-stage {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: 16px;
  overflow: hidden;
  background: #070a0c;
}
.hero-preview-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px;
}
.hero-preview-caption {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 16px 18px 18px;
}
.hero-preview-caption div { display: grid; gap: 3px; }
.hero-preview-caption small {
  color: var(--acid);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-preview-caption strong {
  font-size: 17px;
  letter-spacing: -.03em;
}
.hero-preview-caption > span {
  color: #b0b5b2;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.work-index {
  padding: clamp(80px, 8vw, 125px) 0 clamp(95px, 10vw, 155px);
  color: var(--ink);
  background: var(--light);
}
.work-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}
.section-kicker {
  display: block;
  margin-bottom: 22px;
  color: #58604f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
}
.work-intro h2,
.section-title h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 5.7vw, 82px);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.work-intro > p {
  max-width: 500px;
  margin: 0 0 6px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}
.catalog-controls {
  position: sticky;
  z-index: 30;
  top: 72px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--light-line);
  border-radius: 18px;
  background: rgba(241,240,233,.91);
  box-shadow: 0 8px 30px rgba(34,37,34,.05);
  backdrop-filter: blur(18px);
}
.type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-line);
}
.type-tab {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 8px 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #626762;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.type-tab:hover { color: var(--ink); border-color: var(--light-line); }
.type-tab-label { font-size: 11px; font-weight: 750; }
.type-tab-count {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(23,25,24,.08);
  color: #757a76;
  font-size: 9px;
  font-weight: 800;
}
.type-tab.is-active { color: var(--ink); background: var(--acid); }
.type-tab.is-active .type-tab-count { background: rgba(23,25,24,.16); color: var(--ink); }

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.filter-row { display: flex; flex-wrap: wrap; gap: 5px; }
.filter-chip {
  min-height: 39px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #626762;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.filter-chip:hover { color: var(--ink); border-color: var(--light-line); }
.filter-chip.is-active { color: var(--ink); background: var(--acid); }
.search-field {
  display: flex;
  align-items: center;
  gap: 9px;
  width: min(310px, 27vw);
  min-width: 245px;
  padding: 0 14px;
  border: 1px solid var(--light-line);
  border-radius: 999px;
  background: var(--paper);
}
.search-field:focus-within { border-color: rgba(23,25,24,.45); }
.search-field svg {
  flex: 0 0 16px;
  width: 16px;
  fill: none;
  stroke: #777d78;
  stroke-width: 1.7;
}
.search-field input {
  width: 100%;
  height: 39px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 10px;
}
.search-field input::placeholder { color: #8b908b; }
.catalog-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 25px 2px 22px;
  color: #7b807c;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.catalog-meta > span:nth-child(2) { justify-self: center; }
.catalog-meta b { color: var(--ink); font-size: 10px; }
.catalog-meta button {
  justify-self: end;
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #3d482d;
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 4vw, 64px) 22px;
}
.project-card {
  display: block;
  min-width: 0;
  color: var(--ink);
}
.project-preview {
  overflow: hidden;
  border: 1px solid var(--light-line);
  border-radius: 15px;
  background: #dfe0da;
  box-shadow: 0 5px 18px rgba(30,33,30,.04);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s ease;
}
.project-card:hover .project-preview {
  border-color: rgba(23,25,24,.35);
  box-shadow: 0 18px 45px rgba(30,33,30,.13);
  transform: translateY(-7px);
}
.project-browser-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  height: 31px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(23,25,24,.12);
  color: #747a75;
  background: #ecece6;
  font-size: 7px;
  letter-spacing: .05em;
}
.project-browser-bar .browser-dots i { background: #a4a8a3; }
.project-browser-bar b {
  color: #555b56;
  font-size: 7px;
  letter-spacing: .11em;
}
.project-chat-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  height: 31px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(23,25,24,.12);
  background: #ecece6;
}
.chat-avatar {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--acid);
}
.chat-avatar svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chat-name {
  overflow: hidden;
  color: #555b56;
  font-size: 8px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-chat-bar b {
  color: #555b56;
  font-size: 7px;
  letter-spacing: .11em;
}
.project-frame-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  height: 31px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(23,25,24,.12);
  background: #ecece6;
}
.frame-tag {
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--acid);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
}
.project-frame-bar > span:not(.frame-tag) {
  overflow: hidden;
  color: #555b56;
  font-size: 8px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-frame-bar b {
  color: #555b56;
  font-size: 7px;
  letter-spacing: .11em;
}
.project-stage {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 10px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.25), transparent 42%),
    #d8dad4;
}
.project-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(23,25,24,.1);
  border-radius: 3px;
  transition: transform .65s var(--ease);
}
.project-card:hover .project-stage img { transform: scale(1.015); }
.project-info { padding-top: 16px; }
.project-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.project-line h3 {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.27;
  letter-spacing: -.035em;
}
.project-arrow {
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--light-line);
  border-radius: 50%;
  font-size: 12px;
  transition: color .25s ease, background .25s ease, transform .35s var(--ease);
}
.project-card:hover .project-arrow {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  transform: rotate(45deg);
}
.project-info > p {
  display: -webkit-box;
  min-height: 42px;
  margin: 8px 0 13px;
  overflow: hidden;
  color: #6d726e;
  font-size: 11px;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--light-line);
}
.project-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.project-tags span,
.project-status {
  padding: 5px 7px;
  border: 1px solid var(--light-line);
  border-radius: 999px;
  color: #666b67;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.project-status.is-live {
  color: #324710;
  border-color: rgba(63,89,17,.28);
  background: rgba(186,255,79,.34);
}
.project-id {
  color: #818681;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .12em;
}
.empty-state {
  padding: 90px 20px;
  border: 1px dashed var(--light-line);
  border-radius: 15px;
  text-align: center;
}
.empty-state strong { font-size: 23px; }
.empty-state p { margin: 8px 0 0; color: var(--ink-muted); }

.type-empty {
  display: grid;
  grid-template-columns: minmax(220px, .5fr) 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px;
  border: 1px dashed var(--light-line);
  border-radius: 18px;
}
.type-empty-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: -.02em;
}
.type-empty-copy p {
  max-width: 420px;
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.65;
}
.type-empty-link {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(23,25,24,.35);
  font-size: 11px;
  font-weight: 750;
}
.type-empty-link:hover { color: #3d482d; border-color: #3d482d; }

.type-empty--mockups .type-empty-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 22px;
  border: 1px dashed rgba(23,25,24,.28);
  border-radius: 10px;
  background-color: #eeede6;
  background-image:
    linear-gradient(rgba(23,25,24,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,25,24,.06) 1px, transparent 1px);
  background-size: 16px 16px;
}
.type-empty-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--acid);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}
.type-empty-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  fill: none;
  stroke: rgba(23,25,24,.3);
  stroke-width: 1.2;
}

.type-empty--parsers .type-empty-visual {
  overflow: hidden;
  border-radius: 10px;
  background: var(--dark);
}
.type-empty-terminal-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 30px;
  padding: 0 12px;
  border-bottom: 1px solid var(--dark-line);
  color: #7f8783;
  font-size: 8px;
}
.type-empty-terminal-bar .browser-dots i { background: #4d5450; }
.type-empty-terminal-body {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: #9fe870;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
}
.type-empty-cursor::after {
  display: inline-block;
  width: 6px;
  height: 12px;
  margin-left: 6px;
  background: #9fe870;
  vertical-align: middle;
  animation: typeEmptyBlink 1.1s steps(1) infinite;
  content: "";
}
@keyframes typeEmptyBlink { 50% { opacity: 0; } }

.services {
  padding-top: clamp(95px, 10vw, 155px);
  padding-bottom: clamp(95px, 10vw, 155px);
}
.section-title {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  align-items: start;
  margin-bottom: 60px;
}
.section-title .section-kicker { margin-top: 12px; }
.services .section-kicker,
.about .section-kicker { color: var(--acid); }
.section-title h2 { font-size: clamp(42px, 5vw, 72px); }
.capability-list { border-top: 1px solid var(--dark-line); }
.capability-list article {
  display: grid;
  grid-template-columns: 70px 1.05fr 1.15fr .8fr;
  align-items: center;
  gap: 30px;
  min-height: 150px;
  border-bottom: 1px solid var(--dark-line);
}
.capability-list article > span {
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}
.capability-list h3 {
  margin: 0;
  font-size: clamp(21px, 2.2vw, 30px);
  letter-spacing: -.04em;
}
.capability-list p {
  margin: 0;
  color: #989f9b;
  font-size: 12px;
  line-height: 1.7;
}
.capability-list b {
  justify-self: end;
  color: #c4c8c5;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  padding-top: clamp(90px, 9vw, 135px);
  padding-bottom: clamp(90px, 9vw, 135px);
  border-top: 1px solid var(--dark-line);
}
.about h2 { font-size: clamp(40px, 5vw, 72px); }
.about-side {
  align-self: end;
  padding-bottom: 6px;
}
.about-side > p {
  margin: 0 0 30px;
  color: #a9afab;
  font-size: 15px;
  line-height: 1.75;
}
.skill-line {
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
  color: #767d79;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.8;
  text-transform: uppercase;
}

.testimonial {
  padding-top: clamp(90px, 9vw, 135px);
  padding-bottom: clamp(90px, 9vw, 135px);
  border-top: 1px solid var(--dark-line);
}
.testimonial-quote { margin: 0; max-width: 780px; }
.testimonial-quote p {
  position: relative;
  margin: 0 0 26px;
  padding-left: 40px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.5;
  letter-spacing: -.01em;
  font-weight: 560;
}
.testimonial-quote p::before {
  position: absolute;
  top: -14px;
  left: 0;
  color: var(--acid);
  font-size: 48px;
  font-weight: 800;
  content: "\201C";
}
.testimonial-quote footer {
  padding-left: 40px;
  color: #9aa09c;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
}
.testimonial-quote footer span { margin: 0 6px; color: var(--dark-line); }

.contact {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  padding-top: clamp(70px, 7vw, 105px);
  padding-bottom: clamp(70px, 7vw, 105px);
  color: var(--ink);
  background: var(--acid);
}
.contact::before {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  left: -100vw;
  background: var(--acid);
  content: "";
}
.contact::after {
  position: absolute;
  top: 0;
  right: -100vw;
  bottom: 0;
  left: 100%;
  background: var(--acid);
  content: "";
}
.contact { position: relative; }
.contact .section-kicker { color: #4d5d31; }
.contact h2 { font-size: clamp(45px, 6vw, 86px); }
.contact h2 em { color: rgba(23,25,24,.45); font-style: normal; }
.contact-side { align-self: end; padding-bottom: 7px; }
.contact-side p {
  max-width: 510px;
  margin: 0 0 28px;
  color: rgba(23,25,24,.68);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-top: 30px;
  padding-bottom: 38px;
  color: #777e7a;
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.site-footer .brand { color: var(--white); }
.site-footer .brand-mark { width: 29px; height: 29px; font-size: 11px; }
.site-footer > a:last-child { padding-bottom: 3px; border-bottom: 1px solid #555c58; }
.noscript {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  max-width: 420px;
  padding: 15px 19px;
  border: 1px solid var(--dark-line);
  border-radius: 12px;
  color: var(--white);
  background: var(--dark-soft);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); gap: 45px; min-height: 650px; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-list article { grid-template-columns: 50px .9fr 1.1fr; }
  .capability-list b { display: none; }
}

@media (max-width: 820px) {
  :root { --side: 22px; }
  html { scroll-padding-top: 68px; }
  .site-header { padding: 10px var(--side); }
  body.menu-open .site-header {
    height: 100dvh;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    background: var(--dark);
    border-bottom-color: transparent;
    backdrop-filter: none;
  }
  .header-inner { min-height: 46px; }
  body.menu-open .header-inner { align-items: start; }
  .brand { position: relative; z-index: 4; }
  .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 4;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--dark-line);
    border-radius: 50%;
    color: #fff;
    background: var(--dark);
  }
  .menu-toggle > span:not(.sr-only) {
    position: absolute;
    left: 12px;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: .3s ease;
  }
  .menu-toggle > span:first-child { top: 17px; }
  .menu-toggle > span:nth-child(2) { top: 23px; }
  .menu-toggle[aria-expanded="true"] > span:first-child { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 20px; transform: rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 96px var(--side) max(24px, env(safe-area-inset-bottom));
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(circle at 100% 32%, rgba(186,255,79,.1), transparent 38%),
      var(--dark);
    transform: translateY(-12px);
    transition: visibility .3s ease, opacity .3s ease, transform .3s ease;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    width: 100%;
    padding: 18px 0;
    color: var(--white);
    border-bottom: 1px solid var(--dark-line);
    font-size: clamp(27px, 8vw, 42px);
    line-height: 1.05;
    letter-spacing: -.045em;
  }
  .main-nav a::before {
    color: var(--acid);
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: .12em;
  }
  .main-nav a:nth-child(1)::before { content: "01"; }
  .main-nav a:nth-child(2)::before { content: "02"; }
  .main-nav a:nth-child(3)::before { content: "03"; }
  .main-nav a::after { display: none; }
  .main-nav .nav-mobile-contact {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding: 16px 18px;
    color: var(--ink);
    background: var(--acid);
    border: 0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 115px;
    padding-bottom: 55px;
  }
  .hero h1 { font-size: clamp(47px, 10vw, 70px); }
  .hero-preview { width: min(100%, 680px); }
  .work-intro { grid-template-columns: 1fr; gap: 25px; }
  .catalog-controls { top: 65px; padding: 9px; }
  .type-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 9px;
    scrollbar-width: none;
  }
  .type-tabs::-webkit-scrollbar { display: none; }
  .type-tab { flex: 0 0 auto; }
  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-chip { flex: 0 0 auto; }
  .search-field { width: 100%; }
  .type-empty { grid-template-columns: 1fr; gap: 24px; padding: 30px 22px; }
  .catalog-meta { grid-template-columns: 1fr auto; }
  .catalog-meta > span:nth-child(2) { display: none; }
  .section-title { grid-template-columns: 1fr; gap: 10px; }
  .section-title .section-kicker { margin-top: 0; }
  .capability-list article { grid-template-columns: 40px 1fr; gap: 18px; padding: 25px 0; }
  .capability-list article p { grid-column: 2; }
  .about,
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .about-side,
  .contact-side { max-width: 620px; }
}

@media (max-width: 600px) {
  :root { --side: 17px; }
  .brand-name { font-size: 9px; }
  .hero { gap: 34px; padding-top: 100px; padding-bottom: 42px; }
  .availability { margin-bottom: 22px; font-size: 8px; }
  .hero h1 { font-size: clamp(42px, 12.5vw, 60px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .hero-facts { justify-content: space-between; gap: 18px; }
  .hero-facts div + div::before { left: -9px; }
  .hero-facts dt { font-size: 18px; }
  .hero-facts dd { max-width: 90px; font-size: 7px; }
  .browser-bar { height: 33px; }
  .hero-preview-stage { padding: 8px; }
  .hero-preview-caption { padding: 13px; }
  .work-index { padding-top: 70px; }
  .work-intro h2,
  .section-title h2,
  .about h2 { font-size: clamp(38px, 11.5vw, 54px); }
  .work-intro > p { font-size: 13px; }
  .project-grid { grid-template-columns: 1fr; gap: 42px; }
  .project-stage { padding: 7px; }
  .project-line h3 { font-size: 19px; }
  .project-info > p { min-height: 0; }
  .capability-list article { grid-template-columns: 32px 1fr; }
  .contact h2 { font-size: clamp(43px, 13vw, 62px); }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

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