:root {
  --paper: #e8ebe7;
  --white: #fff;
  --ink: #202a25;
  --muted: #616963;
  --line: #ccd4ca;
  --green: #3b6249;
  --forest: #202f27;
  --lime: #d8efa1;
  --sans: "Manrope", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}
svg {
  flex-shrink: 0;
}
button svg,
.text-link svg,
.button svg {
  width: 1.25rem;
  height: 1.25rem;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #739042;
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--forest);
}
.container {
  width: min(100% - 2.5rem, 78rem);
  margin-inline: auto;
}
.sr-only,
.contact-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 1rem;
  z-index: 100;
  background: var(--lime);
  padding: 0.75rem 1.25rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(232, 235, 231, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 0.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.035em;
  min-height: 2.75rem;
}
.brand-symbol {
  background: var(--forest);
  color: var(--lime);
  border-radius: 0.75rem;
}
.brand svg {
  width: 2.75rem;
  height: 2.75rem;
}
.brand-caption {
  display: block;
  font-size: 0.69rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  font-weight: 500;
  margin-top: 0.25rem;
}
.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.nav-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.5rem;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-contact {
  border-bottom: 1px solid var(--ink);
}
.nav-contact svg {
  width: 1.1rem;
  height: 1.1rem;
}
.menu-toggle {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  color: var(--ink);
  font-size: 0.875rem;
}
.menu-glyph {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-glyph i {
  display: block;
  height: 1px;
  width: 1rem;
  background: currentColor;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] .menu-glyph i:first-child {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-glyph i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
.menu-toggle:not([hidden]) + .nav-links {
  display: none;
}
.menu-toggle:not([hidden]) + .nav-links.is-open {
  display: flex;
}
.hero {
  display: grid;
  gap: 3rem;
  padding-block: 3.5rem 2.5rem;
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.6;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--green);
  font-size: 0.66rem;
}
.small-line {
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}
h1 {
  font-size: clamp(2.85rem, 7vw, 5.3rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1.075;
}
h1 span {
  color: var(--green);
}
.hero-description {
  margin-top: 1.5rem;
  max-width: 30rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.65rem;
  margin-top: 2rem;
}
.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  padding: 0.8rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 650;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-dark {
  background: var(--forest);
  color: white;
}
.button-dark:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.button-lime {
  background: var(--lime);
  color: var(--forest);
}
.button-lime:hover {
  background: #e6f6bf;
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.875rem;
  font-weight: 650;
  min-height: 2.75rem;
}
.text-link svg {
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.hero-note {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.75rem;
}
.note-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--green);
}
.system-visual {
  position: relative;
  min-height: 26rem;
  padding: 1.5rem;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--forest);
  color: white;
  isolation: isolate;
}
.visual-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c6d3be;
}
.visual-heading .eyebrow {
  font-size: 0.61rem;
}
.visual-mark {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--lime);
}
.system-orbit {
  position: absolute;
  z-index: -1;
  width: 27rem;
  height: 27rem;
  border: 1px solid #445443;
  border-radius: 50%;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
  opacity: 0.55;
}
.orbit-b {
  width: 36rem;
  height: 36rem;
  border-style: dashed;
  opacity: 0.35;
}
.stack-layer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.15rem 0.9rem;
  min-height: 6rem;
  border-radius: 0.7rem;
  border: 1px solid #68806a;
  box-shadow: 0 15px 24px #0c1b1633;
}
.stack-layer > div {
  flex: 1;
}
.stack-layer strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.layer-number {
  font-family: var(--mono);
  font-size: 0.65rem;
  opacity: 0.65;
  align-self: flex-start;
  margin-top: 0.1rem;
}
.layer-overline {
  display: block;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}
.layer-detail {
  display: block;
  font-size: 0.65rem;
  opacity: 0.75;
}
.stack-layer > svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: currentColor;
  stroke-width: 1.3;
}
.layer-ai {
  margin-top: 2rem;
  background: #d8efa1;
  color: #273627;
  transform: rotate(-4deg);
  z-index: 3;
  border-color: #e0efbe;
}
.layer-product {
  margin-top: 0.2rem;
  background: #aabd98;
  color: #263625;
  transform: rotate(2deg);
  z-index: 2;
}
.layer-cloud {
  margin-top: 0.2rem;
  background: #415b42;
  color: #f2f4e8;
  transform: rotate(-2deg);
  z-index: 1;
}
.system-visual figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.55rem;
  margin-top: 2rem;
  color: #c8d1c2;
}
.system-visual figcaption > span:last-child {
  margin-left: auto;
  font-size: 1rem;
}
.visual-dot {
  width: 0.3rem;
  height: 0.3rem;
  background: var(--lime);
  border-radius: 50%;
}
.proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
  gap: 1rem;
}
.proof-strip > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.proof-strip strong {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  min-width: 2.2rem;
  line-height: 1.2;
}
.proof-strip span {
  font-size: 0.75rem;
  color: var(--muted);
}
.proof-strip > a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  min-height: 2.75rem;
}
.proof-strip svg {
  width: 1rem;
  height: 1rem;
}
.section {
  padding-block: 4.5rem;
}
#products.directory {
  isolation: isolate;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  box-shadow: 0 24px 56px -32px rgba(32, 47, 39, 0.28);
  padding-inline: 1.15rem;
  padding-block: 2.25rem 2.5rem;
  margin-block: 1.5rem 2rem;
}
.section-heading {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.25rem;
}
.section-heading .eyebrow {
  margin-bottom: 1rem;
  color: var(--green);
}
.section-number {
  color: var(--muted);
  margin-right: 0.7rem;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.2;
}
.section-heading > p {
  color: var(--muted);
  max-width: 23rem;
  font-size: 0.9rem;
  line-height: 1.85;
}
.featured-grid {
  display: grid;
  gap: 1.5rem;
}
.feature-card {
  display: block;
  min-width: 0;
  background: var(--white);
  border: 1px solid #c0cbbd;
  border-radius: 1rem;
  box-shadow: 0 8px 20px -14px rgba(32, 47, 39, 0.22);
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  a.feature-card:hover {
    border-color: #8a9e80;
    box-shadow: 0 14px 28px -18px rgba(32, 47, 39, 0.32);
    transform: translateY(-2px);
  }
}
.feature-art {
  position: relative;
  min-height: 18rem;
  border-radius: 0;
  border-bottom: 1px solid #c0cbbd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.sage {
  background: #e1e9da;
}
.blue {
  background: #e0e8ec;
}
.sand {
  background: #eae5dc;
}
.feature-category {
  position: absolute;
  left: 1.4rem;
  top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}
.feature-art img {
  width: 7rem;
  height: 7rem;
  border-radius: 1.7rem;
  box-shadow: 0 18px 30px -10px #242e3055;
  transition: transform 0.35s;
}
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover .feature-art img {
    transform: translateY(-5px) rotate(-4deg);
  }
}
.art-orbit {
  border: 1px solid #ffffff85;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  width: 14rem;
  height: 14rem;
  transform: rotate(-25deg);
}
.orbit-two {
  width: 20rem;
  height: 20rem;
}
.feature-open {
  position: absolute;
  right: 1.2rem;
  top: 1.1rem;
}
.feature-open svg {
  width: 1.1rem;
  height: 1.1rem;
}
.art-wordmark {
  position: absolute;
  bottom: 1.1rem;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.feature-copy {
  padding: 1.35rem 1.25rem 1.25rem;
}
.feature-copy .eyebrow {
  color: var(--muted);
  font-size: 0.6rem;
}
.feature-copy h3 {
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  margin-top: 0.45rem;
  line-height: 1.4;
}
.feature-copy p {
  color: var(--muted);
  margin-top: 0.65rem;
  font-size: 0.875rem;
}
.feature-copy .text-link {
  margin-top: 0.85rem;
  font-size: 0.8rem;
}
.expertise-section {
  padding-block: 4.5rem 2rem;
  background: #e0e5dc;
  border-block: 1px solid var(--line);
}
.expertise-grid {
  display: grid;
  border-top: 1px solid #cdd4c6;
}
.expertise-card {
  padding-block: 1.8rem;
  border-bottom: 1px solid #cdd4c6;
}
.expertise-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  color: var(--green);
}
.expertise-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  stroke-width: 1.4;
}
.expertise-card h3 {
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  font-weight: 650;
  margin-bottom: 0.8rem;
}
.expertise-card > p {
  color: var(--muted);
  font-size: 0.875rem;
}
.capability-list {
  list-style: none;
  margin: 1.5rem 0 1.7rem;
  padding: 0;
  color: #40503f;
  font-size: 0.78rem;
  line-height: 2.2;
}
.capability-list li::before {
  content: "+";
  margin-right: 0.75rem;
  color: var(--green);
}
.expertise-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 650;
  min-height: 2.75rem;
  border-top: 1px solid #cdd4c6;
  padding-top: 0.75rem;
}
.expertise-proof span {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.75rem;
}
.expertise-proof svg {
  width: 0.95rem;
  height: 0.95rem;
  margin-left: auto;
}
.expertise-proof:hover {
  color: var(--green);
}
.expertise-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.65rem;
}
.small-cross {
  font-size: 1.4rem;
  color: var(--green);
}
.expertise-bottom p {
  font-size: 0.8rem;
}
.expertise-bottom .text-link {
  font-size: 0.8rem;
}
.directory-controls {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.filter-button {
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: transparent;
  transition:
    background 0.15s,
    color 0.15s;
}
.filter-button:hover {
  background: #e9ede4;
}
.filter-button[aria-pressed="true"] {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}
.filter-button > span {
  margin-left: 0.4rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  opacity: 0.7;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  padding-inline: 0.9rem;
}
.search-field:focus-within {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.search-field svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted);
}
.search-field input {
  min-width: 0;
  width: 100%;
  padding-block: 0.65rem;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}
.directory-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--muted);
  padding-block: 0.6rem 1.2rem;
}
.product-list {
  display: grid;
  gap: 0.85rem;
}
.directory-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid #c0cbbd;
  border-radius: 0.65rem;
  box-shadow: 0 8px 20px -14px rgba(32, 47, 39, 0.22);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  a.directory-item:not(.is-paused):hover {
    border-color: #8a9e80;
    box-shadow: 0 14px 28px -18px rgba(32, 47, 39, 0.32);
    transform: translateY(-2px);
  }
}
.directory-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.directory-top img,
.product-monogram {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
}
.product-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #e7ecdf;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.8rem;
}
.product-platform {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--muted);
}
.directory-arrow,
.paused-label {
  margin-left: auto;
}
.directory-arrow svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted);
}
.directory-item h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.directory-item p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--muted);
  margin-block: 0.45rem 1rem;
}
.product-domain {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--green);
  overflow-wrap: anywhere;
}
.product-domain svg {
  width: 0.7rem;
  height: 0.7rem;
}
.is-paused {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
  transform: none;
}
a.directory-item.is-paused:hover {
  transform: none;
  box-shadow: none;
}
.paused-label {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.1rem 0.5rem;
  font-size: 0.6rem;
  color: var(--muted);
}
.is-paused .product-domain {
  color: var(--muted);
}
.product-empty {
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 0.75rem;
  padding: 3.5rem 1rem;
}
.product-empty h3 {
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}
.product-empty p {
  margin-block: 0.5rem 1.5rem;
  color: var(--muted);
}
.contact-section {
  background: var(--forest);
  color: #f5f6ef;
  padding-block: 4.5rem;
}
.contact-layout {
  display: grid;
  gap: 3rem;
}
.contact-copy .eyebrow {
  color: #c1cbbb;
  margin-bottom: 1.5rem;
}
.contact-copy .section-number {
  color: #b6c5b0;
}
.contact-copy h2 {
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  font-weight: 500;
  line-height: 1.12;
}
.contact-copy h2 > span {
  color: var(--lime);
}
.contact-copy > p:not(.eyebrow) {
  color: #bbc6b8;
  font-size: 0.9rem;
  max-width: 22rem;
  margin-top: 1.5rem;
  line-height: 1.9;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.contact-avatar {
  background: #364a37;
  border: 1px solid #577053;
  border-radius: 0.7rem;
  color: var(--lime);
}
.contact-avatar svg {
  width: 2.8rem;
  height: 2.8rem;
}
.contact-person strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}
.contact-person div span {
  color: #bbc6b8;
  font-size: 0.7rem;
}
.contact-copy > p.contact-direct {
  font-size: 0.75rem;
  margin-top: 1rem;
}
.contact-form {
  position: relative;
  min-width: 0;
  background: #2a3b2f;
  border: 1px solid #465642;
  border-radius: 0.9rem;
  padding: 1.5rem;
}
.form-heading {
  margin-bottom: 1.75rem;
}
.form-heading h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.form-heading p {
  color: #bbc6b8;
  font-size: 0.8rem;
  margin-top: 0.4rem;
}
.form-row {
  display: grid;
  gap: 1.25rem;
}
.contact-field {
  margin-bottom: 1.25rem;
}
.form-row .contact-field {
  margin-bottom: 0;
}
.form-row {
  margin-bottom: 1.25rem;
}
.contact-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  border: 1px solid #53614d;
  background: #233027;
  color: white;
  border-radius: 0.4rem;
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 3rem;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aebaa7;
  opacity: 1;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}
.contact-field [aria-invalid="true"] {
  border-color: #f1aca0;
}
.contact-field textarea {
  resize: vertical;
  min-height: 9rem;
}
.contact-form .button {
  width: 100%;
  justify-content: space-between;
}
.contact-status {
  font-size: 0.8rem;
  color: #d2dcc9;
  line-height: 1.7;
  margin-top: 0.65rem;
  min-height: 1.5rem;
}
.contact-status.is-ok {
  color: var(--lime);
}
.contact-status.is-err {
  color: #ffc2b6;
}
.contact-note {
  font-size: 0.75rem;
  color: #b9c3b2;
  line-height: 1.8;
  margin-top: 0.5rem;
}
.contact-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer {
  padding-block: 1.75rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.footer-top .brand svg {
  width: 2rem;
  height: 2rem;
}
.footer-top p {
  color: var(--muted);
  font-size: 0.75rem;
}
.footer-top .text-link {
  font-size: 0.75rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  color: var(--muted);
  font-size: 0.65rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) {
  .container {
    width: min(100% - 4rem, 78rem);
  }
  .hero {
    padding-top: 4.5rem;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
  }
  .system-visual {
    min-height: 31.5rem;
    padding: 2.25rem;
    max-width: 38rem;
    width: 100%;
  }
  .stack-layer {
    padding: 1.4rem 1.2rem;
    gap: 1rem;
    min-height: 7rem;
  }
  .stack-layer strong {
    font-size: 1.1rem;
  }
  .layer-overline {
    font-size: 0.56rem;
  }
  .layer-detail {
    font-size: 0.75rem;
  }
  .stack-layer > svg {
    width: 2rem;
    height: 2rem;
  }
  .layer-ai {
    margin-top: 2.75rem;
  }
  .system-visual figcaption {
    margin-top: 2.5rem;
    font-size: 0.65rem;
  }
  .visual-heading .eyebrow {
    font-size: 0.68rem;
  }
  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
    padding-block: 1.8rem;
  }
  .proof-strip > div {
    gap: 0.8rem;
  }
  .proof-strip > a {
    grid-column: 1 / -1;
  }
  .proof-strip span {
    max-width: 8rem;
  }
  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-form {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .menu-toggle:not([hidden]) {
    display: none;
  }
  .nav-wrap {
    min-height: 6rem;
    flex-wrap: nowrap;
  }
  .nav-links,
  .menu-toggle:not([hidden]) + .nav-links {
    display: flex;
    width: auto;
    gap: 1.5rem;
  }
  .nav-contact {
    margin-left: 0.5rem;
  }
  .section-heading {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
    gap: 3rem;
  }
  .section-heading > p {
    justify-self: end;
  }
  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }
  .feature-art {
    min-height: 16rem;
  }
  .feature-category {
    left: 1rem;
    font-size: 0.53rem;
  }
  .feature-open {
    right: 0.85rem;
  }
  .feature-art img {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.2rem;
  }
  .art-wordmark {
    font-size: 0.65rem;
  }
  .expertise-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid #cdd4c6;
  }
  .expertise-card {
    display: flex;
    flex-direction: column;
    border-bottom: 0;
    padding: 2rem 1.4rem;
    border-right: 1px solid #cdd4c6;
  }
  .expertise-card:first-child {
    padding-left: 0;
  }
  .expertise-card:last-child {
    padding-right: 0;
    border-right: 0;
  }
  .expertise-proof {
    margin-top: auto;
  }
  .expertise-bottom .text-link {
    margin-left: auto;
  }
  .section {
    padding-block: 5.5rem;
  }
  #products.directory {
    padding: 2.5rem 1.5rem 2.75rem;
    border-radius: 1.5rem;
    margin-block: 2rem 2.5rem;
  }
  .expertise-section {
    padding-top: 5.5rem;
  }
  .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
  .contact-section {
    padding-block: 5.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .nav-links {
    gap: 2.4rem;
  }
  .nav-contact {
    margin-left: 1.5rem;
  }
  .hero {
    grid-template-columns: 1.22fr 1fr;
    gap: 3.5rem;
    padding-block: 5rem 4rem;
  }
  .hero-eyebrow {
    font-size: 0.66rem;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .system-visual {
    padding: 1.7rem;
    margin-top: 1rem;
  }
  .stack-layer {
    padding-inline: 1rem;
    gap: 0.7rem;
  }
  .stack-layer strong {
    font-size: 1rem;
  }
  .system-visual figcaption {
    font-size: 0.57rem;
  }
  .proof-strip {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
  }
  .proof-strip > a {
    grid-column: auto;
  }
  .proof-strip strong {
    font-size: 2.25rem;
  }
  .feature-art {
    min-height: 19rem;
  }
  .feature-art img {
    width: 7rem;
    height: 7rem;
    border-radius: 1.65rem;
  }
  .art-wordmark {
    font-size: 0.8rem;
  }
  .feature-category {
    font-size: 0.61rem;
    left: 1.4rem;
  }
  .feature-copy h3 {
    font-size: 1.25rem;
  }
  .expertise-card {
    padding: 2.5rem;
  }
  .directory-controls {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
  .search-field {
    width: 15rem;
  }
  .search-field input {
    font-size: 0.8rem;
  }
  .product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .directory-item {
    padding: 1.5rem;
  }
  .contact-layout {
    gap: 6rem;
  }
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-form {
    padding: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .hero {
    gap: 5rem;
    padding-block: 5.5rem 4.5rem;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
  }
  .system-visual {
    min-height: 33.5rem;
    padding: 2rem;
  }
  .stack-layer {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }
  .stack-layer strong {
    font-size: 1.12rem;
  }
  .layer-ai {
    margin-top: 3.5rem;
  }
  .system-visual figcaption {
    font-size: 0.65rem;
    margin-top: 3rem;
  }
  .feature-art {
    min-height: 20rem;
  }
  .feature-copy h3 {
    font-size: 1.4rem;
  }
  .directory-item {
    min-height: 15.5rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .system-visual {
    animation: arrive 0.7s both;
  }
  .system-visual {
    animation-delay: 0.12s;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  a.directory-item:hover,
  a.feature-card:hover {
    transform: none;
  }
  .feature-card:hover .feature-art img {
    transform: none;
  }
}
