:root {
  color-scheme: light;
  --green: #438a1f;
  --green-dark: #2f6f1f;
  --ink: #1f241f;
  --muted: #62665f;
  --stone: #756f63;
  --stone-soft: #9a9488;
  --line: #dfe4da;
  --surface: #f7f8f4;
  --surface-strong: #eef3e8;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(31, 36, 31, 0.12);
  --font-base:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Sreda", "Roboto Slab", Georgia, "Times New Roman", serif;
  font-family: var(--font-base);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.schema-details {
  display: none;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 228, 218, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(300px, 54vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  min-height: min(780px, calc(100vh - 82px));
  padding: clamp(42px, 5vw, 76px) clamp(20px, 5vw, 72px) clamp(56px, 8vw, 96px);
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.98), rgba(247, 248, 244, 0.76) 62%, rgba(247, 248, 244, 0.5)),
    linear-gradient(135deg, rgba(67, 138, 31, 0.06), rgba(117, 111, 99, 0.05)),
    linear-gradient(180deg, var(--white), var(--surface));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(67, 138, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 138, 31, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 36%, #000 100%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__network {
  position: absolute;
  inset: 68px 48px auto auto;
  z-index: 0;
  width: min(44vw, 590px);
  height: 390px;
  opacity: 0.42;
  pointer-events: none;
}

.network-node,
.network-path,
.network-diamond,
.network-lane {
  position: absolute;
  display: block;
}

.network-node {
  width: 13px;
  height: 13px;
  background: var(--green);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(67, 138, 31, 0.12);
}

.network-node--one {
  top: 12%;
  left: 18%;
}

.network-node--three {
  top: 18%;
  right: 16%;
}

.network-node--five {
  bottom: 12%;
  left: 30%;
}

.network-path {
  height: 2px;
  background: linear-gradient(90deg, rgba(67, 138, 31, 0), rgba(67, 138, 31, 0.55), rgba(117, 111, 99, 0));
  transform-origin: left center;
}

.network-path--one {
  top: 20%;
  left: 20%;
  width: 62%;
  transform: rotate(7deg);
}

.network-path--three {
  bottom: 24%;
  left: 30%;
  width: 52%;
  transform: rotate(19deg);
}

.network-diamond {
  width: 58px;
  height: 58px;
  border: 4px solid rgba(67, 138, 31, 0.48);
  border-radius: 8px;
  transform: rotate(45deg);
}

.network-diamond--one {
  top: 26%;
  left: 34%;
}

.network-diamond--two {
  right: 18%;
  bottom: 24%;
  border-color: rgba(117, 111, 99, 0.28);
}

.network-lane {
  height: 3px;
  background: linear-gradient(90deg, rgba(117, 111, 99, 0), rgba(117, 111, 99, 0.44), rgba(67, 138, 31, 0));
  transform-origin: left center;
}

.network-lane--one {
  top: 38%;
  left: 22%;
  width: 56%;
  transform: rotate(-13deg);
}

.network-lane--two {
  top: 57%;
  left: 18%;
  width: 64%;
  transform: rotate(11deg);
}

.hero__content {
  min-width: 0;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.32rem, 5.25vw, 4.35rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(1.72rem, 3.05vw, 2.85rem);
  font-weight: 740;
}

h3 {
  font-size: 1.06rem;
  font-weight: 740;
}

.hero__lead {
  max-width: 740px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-strip a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 32px 8px 12px;
  color: #2f352d;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 740;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.proof-strip a::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(67, 138, 31, 0.12);
}

.proof-strip a::after {
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid var(--stone);
  border-right: 2px solid var(--stone);
  transform: rotate(45deg);
}

.proof-strip a:hover,
.proof-strip a:focus-visible {
  background: var(--white);
  border-color: rgba(67, 138, 31, 0.46);
  box-shadow: 0 10px 24px rgba(31, 36, 31, 0.08);
  outline: 0;
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #245817;
  border-color: #245817;
}

.button--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero__panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  margin-top: 104px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__panel div {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 6px 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero__panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-divider {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  left: clamp(20px, 5vw, 72px);
  z-index: 2;
  height: 24px;
  overflow: hidden;
}

.hero-divider::before {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 34px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--stone));
  clip-path: polygon(0 64%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.28;
}

.metric {
  grid-column: 2;
  font-family: var(--font-heading);
  color: var(--stone);
  font-size: clamp(1.65rem, 3.2vw, 2.05rem);
  font-weight: 760;
  line-height: 1;
}

.metric-label {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-icon,
.card-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background:
    linear-gradient(135deg, rgba(67, 138, 31, 0.06), rgba(255, 255, 255, 0.96)),
    var(--white);
  border: 1px solid rgba(67, 138, 31, 0.34);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(31, 36, 31, 0.07);
  overflow: hidden;
}

.panel-icon::before,
.card-icon::before {
  position: absolute;
  width: 28px;
  height: 28px;
  content: "";
  border: 1.4px solid rgba(67, 138, 31, 0.18);
  border-radius: 5px;
  transform: rotate(45deg);
}

.panel-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  margin-top: 4px;
}

.panel-icon svg,
.card-icon svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  overflow: visible;
}

.panel-icon path,
.panel-icon circle,
.panel-icon rect,
.card-icon path,
.card-icon circle,
.card-icon rect {
  vector-effect: non-scaling-stroke;
}

.panel-icon-stone,
.card-icon-stone,
.card-icon-white {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-icon-stone,
.card-icon-stone {
  stroke: var(--stone);
  stroke-width: 3;
}

.panel-icon-node,
.card-icon-node {
  fill: var(--green);
  stroke: var(--white);
  stroke-width: 1.4;
}

.panel-icon--flag {
  background: var(--white);
  border-color: rgba(117, 111, 99, 0.32);
}

.panel-icon--flag::before {
  display: none;
}

.panel-icon-flag-blue {
  fill: #012169;
  stroke: none;
}

.panel-icon-flag-white,
.panel-icon-flag-red {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.panel-icon-flag-white {
  stroke: var(--white);
  stroke-width: 5.2;
}

.panel-icon-flag-red {
  stroke: #c8102e;
  stroke-width: 2.3;
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-color: rgba(67, 138, 31, 0.38);
}

.card-icon::before {
  width: 30px;
  height: 30px;
  border-color: rgba(67, 138, 31, 0.2);
}

.card-icon svg {
  width: 40px;
  height: 40px;
}

.card-icon-accent-fill {
  fill: var(--green);
}

.card-icon-white {
  stroke: var(--white);
  stroke-width: 3;
}

.card-icon--dark {
  background:
    linear-gradient(135deg, rgba(67, 138, 31, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(100, 168, 66, 0.46);
  box-shadow: none;
}

.card-icon--dark::before {
  border-color: rgba(100, 168, 66, 0.16);
}

.card-icon--dark .card-icon-stone {
  stroke: var(--stone-soft);
}

.card-icon-node-dark {
  fill: #64a842;
  stroke: #22251f;
  stroke-width: 1.4;
}

.section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 72px);
}

.section--compact {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(48px, 7vw, 84px);
}

.section--muted {
  background: var(--surface);
}

.section--approach {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 243, 232, 0.74)),
    var(--white);
}

.section--dark {
  color: var(--white);
  background: #22251f;
}

.section--dark .eyebrow,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.section__intro {
  min-width: 0;
  max-width: 850px;
  margin-bottom: 42px;
}

.section__intro--compact {
  margin-bottom: 0;
}

.section__intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid,
.industry-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.industry-grid article {
  position: relative;
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  padding-top: 112px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.feature-card:hover {
  border-color: rgba(67, 138, 31, 0.42);
  box-shadow: 0 18px 42px rgba(31, 36, 31, 0.1);
  transform: translateY(-2px);
}

.feature-icon-badge {
  position: absolute;
  top: 28px;
  left: 34px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background:
    linear-gradient(135deg, rgba(67, 138, 31, 0.08), rgba(255, 255, 255, 0.92)),
    var(--white);
  border: 1.4px solid rgba(67, 138, 31, 0.32);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(31, 36, 31, 0.08);
  transform: rotate(45deg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  overflow: visible;
  transform: rotate(-45deg);
}

.feature-icon path,
.feature-icon circle {
  vector-effect: non-scaling-stroke;
}

.icon-stone {
  fill: none;
  stroke: var(--stone);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.6;
}

.icon-node {
  fill: var(--green);
  stroke: var(--white);
  stroke-width: 1.4;
}

.feature-card p,
.industry-grid p,
.service-item p,
.contact-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-item span {
  color: var(--green-dark);
  font-weight: 820;
}

.industry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.section--ai-context {
  color: var(--white);
  background: #22251f;
}

.ai-context {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(67, 138, 31, 0.28), rgba(255, 255, 255, 0)),
    #22251f;
}

.ai-context .eyebrow,
.ai-context h2,
.ai-context h3 {
  color: var(--white);
}

.ai-context__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ai-context__grid article {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.ai-context__grid article > span:not(.ai-context-icon) {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.ai-context-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(67, 138, 31, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(67, 138, 31, 0.48);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(45deg);
}

.ai-context-icon svg {
  width: 42px;
  height: 42px;
  overflow: visible;
  transform: rotate(-45deg);
}

.ai-context-icon path,
.ai-context-icon circle {
  vector-effect: non-scaling-stroke;
}

.ai-icon-stone {
  fill: none;
  stroke: var(--stone-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.ai-icon-node {
  fill: #64a842;
  stroke: #22251f;
  stroke-width: 1.4;
}

.ai-context p,
.ai-context__grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section--models {
  background: var(--white);
}

.section--challenges {
  background:
    linear-gradient(180deg, var(--white), rgba(247, 248, 244, 0.86)),
    var(--surface);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.challenge-grid article,
.model-grid article {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.challenge-grid article {
  background: var(--white);
  box-shadow: 0 14px 34px rgba(31, 36, 31, 0.06);
}

.challenge-grid article > span:not(.card-icon),
.model-grid article > span:not(.card-icon) {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.challenge-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.approach-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31, 36, 31, 0.06);
}

.approach-grid article > span:not(.card-icon) {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.approach-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.engagement-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(67, 138, 31, 0.28), rgba(255, 255, 255, 0)),
    #22251f;
  border-radius: 8px;
}

.section--audience {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(48px, 7vw, 84px);
  background: var(--surface);
}

.audience-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 760;
}

.engagement-band .eyebrow,
.engagement-band h2 {
  color: var(--white);
}

.engagement-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.engagement-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.engagement-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
  background: linear-gradient(180deg, var(--white), var(--surface-strong));
}

.contact-copy {
  min-width: 0;
  max-width: 620px;
}

.contact-copy a {
  color: var(--green-dark);
  font-weight: 760;
}

.problem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.problem-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 740;
}

.contact-form {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdd5c7;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green-dark);
  outline: 3px solid rgba(67, 138, 31, 0.18);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 680;
}

.form-status a {
  color: var(--green-dark);
  font-weight: 760;
}

.privacy-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy-note a {
  color: var(--green-dark);
  font-weight: 760;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status[data-state="success"] {
  color: var(--green-dark);
}

.form-status[data-state="error"] {
  color: #9b2c2c;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #191c17;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.legal-page h1 {
  font-size: clamp(2.05rem, 5vw, 3.75rem);
}

.legal-page h2 {
  margin-top: 44px;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a {
  color: var(--green-dark);
  font-weight: 760;
}

.legal-page a.button--primary {
  color: var(--white);
}

.not-found-page .button {
  margin-top: 24px;
}

@media (max-width: 1020px) {
  .hero,
  .split,
  .ai-context,
  .contact-section,
  .audience-band,
  .engagement-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__network {
    inset: 48px 12px auto auto;
    width: 76vw;
    opacity: 0.36;
  }

  .hero__panel {
    margin-top: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-context__grid,
  .challenge-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  [id] {
    scroll-margin-top: 18px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .brand {
    width: min(260px, 82vw);
  }

  .hero {
    padding-top: 42px;
  }

  .hero__network {
    display: none;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-strip a {
    width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .feature-grid,
  .approach-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .industry-grid article {
    min-height: 0;
  }

  .feature-card {
    padding-top: 104px;
  }

  .feature-icon-badge {
    left: 32px;
  }

  .service-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .network-node {
    animation: node-pulse 4s ease-in-out infinite;
  }

  .network-node--three {
    animation-delay: 1s;
  }

  .network-node--five {
    animation-delay: 2s;
  }

  @keyframes node-pulse {
    0%,
    100% {
      box-shadow: 0 0 0 8px rgba(67, 138, 31, 0.12);
    }

    50% {
      box-shadow: 0 0 0 14px rgba(67, 138, 31, 0.04);
    }
  }
}
