:root {
  color-scheme: dark;
  --black: #0c1116;
  --panel: #121a21;
  --panel-2: #18232c;
  --cyan: #26ade4;
  --lime: #80c653;
  --amber: #e5a84b;
  --text: #e8eef2;
  --muted: #98a8b3;
  --line: #293641;
  --white: #ffffff;
  --max: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.45;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--cyan);
  color: var(--black);
  transform: translateY(-150%);
}

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 0%, rgba(38,173,228,.24), transparent 34%),
    linear-gradient(145deg, rgba(38,173,228,.09), transparent 48%),
    var(--black);
  background-attachment: fixed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  width: 100%;
  border-bottom: 1px solid rgba(232,238,242,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
    rgba(12,17,22,.58);
  backdrop-filter: blur(34px) saturate(1.55);
  -webkit-backdrop-filter: blur(34px) saturate(1.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(255,255,255,.035),
    0 14px 44px rgba(0,0,0,.22);
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
}

.brand img {
  display: block;
  width: auto;
  height: 46px;
  filter: drop-shadow(0 0 18px rgba(38,173,228,.18));
}

.primary-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a,
.site-footer a {
  text-underline-offset: 4px;
  transition: color 160ms ease-out, text-decoration-color 160ms ease-out, border-color 160ms ease-out, transform 160ms ease-out;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--cyan);
}

.header-cta,
.button,
.button-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 17px;
  border-radius: 3px;
  border: 1px solid var(--cyan);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease-out, border-color 160ms ease-out, background-color 160ms ease-out, box-shadow 160ms ease-out;
}

.header-cta,
.button {
  background: linear-gradient(135deg, var(--cyan), #71d9e8);
  color: var(--black);
}

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

.header-cta:hover,
.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(38,173,228,.16);
}

.header-cta:active,
.button:active,
.button-secondary:active {
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 28px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 510px;
  gap: 54px;
  align-items: center;
}

.hero-centered {
  min-height: 68vh;
  padding-top: 108px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-centered .status {
  justify-content: center;
}

.hero-centered h1,
.hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered h1 {
  max-width: 1040px;
  font-size: clamp(56px, 9vw, 116px);
  letter-spacing: -.058em;
  line-height: .9;
}

.hero-centered .lead {
  max-width: 820px;
  font-size: clamp(20px, 2vw, 25px);
}

.hero-centered .actions {
  justify-content: center;
}

.status,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  color: var(--lime);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  margin: 0 0 20px;
}

.status:before,
.section-kicker:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: .92;
  letter-spacing: -.035em;
  max-width: 830px;
}

.lead {
  margin: 26px 0 0;
  max-width: 670px;
  color: var(--muted);
  font-size: 21px;
}

.lead strong {
  color: var(--text);
}

.actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-orbit {
  position: relative;
}

.brand-mark {
  position: absolute;
  width: 170px;
  height: auto;
  right: -34px;
  top: -78px;
  opacity: .16;
  filter: drop-shadow(0 0 30px rgba(38,173,228,.28));
  pointer-events: none;
}

.dashboard,
.panel,
.service-card,
.problem-head,
.problem-grid article,
.offer-card,
.contact-card,
.pipe {
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.028)),
    rgba(18,26,33,.54);
  border: 1px solid rgba(232,238,242,.13);
  border-radius: 8px;
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.115),
    0 18px 54px rgba(0,0,0,.18);
}

.dashboard {
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 30px 90px rgba(0,0,0,.32);
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.dash-body {
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.metric-row:last-child {
  border-bottom: 0;
}

.metric-row strong {
  display: block;
  font-size: 16px;
}

.metric-row span,
.pipe,
.muted {
  color: var(--muted);
}

.metric {
  font-family: "IBM Plex Mono", monospace;
  color: var(--lime);
  font-weight: 700;
}

.metric,
.pipe,
.proof-strip strong {
  font-variant-numeric: tabular-nums;
}

.pipeline {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pipe {
  min-height: 86px;
  padding: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.pipe b {
  display: block;
  color: var(--text);
  margin-top: 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
}

.proof-strip,
.problem-section,
.content-grid,
.section,
.cta-band,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.proof-strip {
  padding-top: 8px;
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-strip div {
  border: 1px solid rgba(232,238,242,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.026)),
    rgba(18,26,33,.48);
  border-radius: 8px;
  padding: 18px;
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.105),
    0 16px 44px rgba(0,0,0,.14);
}

.proof-strip strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
}

.problem-section {
  padding-top: 78px;
  padding-bottom: 82px;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.problem-head {
  padding: 0;
  min-height: 0;
  position: sticky;
  top: 116px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.problem-head .section-kicker {
  color: var(--amber);
}

.problem-head h2,
.section h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.025em;
}

.problem-sequence {
  display: grid;
  border-top: 1px solid var(--line);
}

.problem-sequence article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  opacity: .62;
}

.problem-sequence article.is-active,
.problem-sequence article:hover {
  opacity: 1;
}

.problem-sequence span {
  color: var(--cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}

.problem-sequence strong {
  display: block;
  color: var(--text);
  font-size: clamp(25px, 3vw, 42px);
  letter-spacing: -.035em;
  line-height: 1.06;
}

.problem-sequence p {
  grid-column: 2;
  max-width: 620px;
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.problem-grid article {
  position: relative;
  min-height: 112px;
  padding: 18px 18px 18px 42px;
}

.problem-grid article:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(38,173,228,.6);
}

.problem-grid article:first-child {
  grid-column: span 2;
  min-height: 96px;
  background: rgba(38,173,228,.1);
  border-color: rgba(38,173,228,.34);
}

.problem-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.content-grid {
  padding-top: 16px;
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 22px;
}

.panel,
.service-card,
.offer-card,
.contact-card {
  padding: 22px;
}

.panel h2,
.panel h3 {
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.panel p,
.service-card p,
.offer-card p,
.contact-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.claris-badges {
  margin: 18px 0 22px;
  padding: 30px;
  display: grid;
  gap: 30px;
  justify-items: start;
  background: #0c1116;
  border: 1px solid rgba(232,238,242,.12);
  border-radius: 8px;
}

.claris-badges img {
  display: block;
  max-width: min(100%, 360px);
  height: auto;
}

.claris-badges img:nth-child(2) {
  max-width: min(100%, 320px);
}

.service-list,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-card,
.offer-card {
  min-height: 180px;
}

.service-card small,
.offer-card small {
  color: var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.service-card h3,
.offer-card h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.05;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.offer-card-link {
  display: grid;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease-out, border-color 160ms ease-out, background-color 160ms ease-out, box-shadow 160ms ease-out;
}

.offer-card-link:hover,
.offer-card-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(38,173,228,.58);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.035)),
    rgba(38,173,228,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 18px 54px rgba(38,173,228,.10);
}

.offer-card-link span {
  align-self: end;
  display: inline-flex;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.service-card a:hover,
.offer-card-link:hover span,
.list a:hover,
.site-footer a:hover {
  color: #71d9e8;
}

.service-card a:visited,
.list a:visited,
.site-footer a:visited {
  color: #8fb8c8;
}

.list a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-item {
  border: 1px solid rgba(232,238,242,.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.024)),
    rgba(18,26,33,.48);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.095);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  max-width: 760px;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
  scroll-margin-top: 96px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-header p {
  color: var(--muted);
  font-size: 19px;
}

.services-minimal .section-header,
.engagements-section .section-header {
  max-width: 900px;
}

.services-minimal .section-header h2 {
  max-width: 880px;
}

.service-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.service-path-card {
  position: relative;
  min-height: 276px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 22px;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(232,238,242,.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.028)),
    rgba(18,26,33,.54);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.115),
    0 18px 54px rgba(0,0,0,.18);
  transition: transform 160ms ease-out, border-color 160ms ease-out, background-color 160ms ease-out, box-shadow 160ms ease-out;
}

.service-path-card:nth-child(1),
.service-path-card:nth-child(2),
.service-path-card:nth-child(3) {
  grid-column: span 2;
}

.service-path-card:nth-child(n+4) {
  grid-column: span 2;
  min-height: 238px;
}

.service-path.is-five .service-path-card:nth-child(1),
.service-path.is-five .service-path-card:nth-child(2) {
  grid-column: span 3;
}

.service-path.is-five .service-path-card:nth-child(n+3) {
  grid-column: span 2;
  min-height: 238px;
}

.service-path-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(38,173,228,.16), transparent 38%),
    radial-gradient(circle at 84% 16%, rgba(128,198,83,.13), transparent 28%);
  opacity: 0;
  transition: opacity 160ms ease-out;
}

.service-path-card:hover,
.service-path-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(38,173,228,.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 22px 62px rgba(38,173,228,.12);
}

.service-path-card:hover:before,
.service-path-card:focus-visible:before {
  opacity: 1;
}

.service-path-number,
.service-path-title,
.service-path-copy,
.service-path-action {
  position: relative;
  z-index: 1;
}

.service-path-number {
  color: var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.service-path-title {
  max-width: 420px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.service-path-copy {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.service-path-action {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.service-path-card:hover .service-path-action {
  color: #71d9e8;
}

.related-path {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.related-path .related-path-card,
.related-path .related-path-card:nth-child(1),
.related-path .related-path-card:nth-child(2),
.related-path .related-path-card:nth-child(3),
.related-path .related-path-card:nth-child(n+4) {
  grid-column: auto;
  min-height: 176px;
  grid-template-rows: auto 1fr auto;
}

.related-path .service-path-title {
  font-size: 25px;
  line-height: 1.08;
}

.related-path .service-path-action {
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .service-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-path-card,
  .service-path-card:nth-child(1),
  .service-path-card:nth-child(2),
  .service-path-card:nth-child(3),
  .service-path-card:nth-child(n+4),
  .service-path.is-five .service-path-card:nth-child(1),
  .service-path.is-five .service-path-card:nth-child(2),
  .service-path.is-five .service-path-card:nth-child(n+3) {
    grid-column: auto;
    min-height: 250px;
  }

  .service-path-title {
    font-size: 30px;
  }

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

  .related-path .service-path-title {
    font-size: 24px;
  }
}

@media (max-width: 680px) {
  .service-path {
    grid-template-columns: 1fr;
  }

  .service-path-card,
  .service-path-card:nth-child(n+4) {
    min-height: 0;
  }

  .service-path-title {
    font-size: 26px;
  }

  .related-path {
    grid-template-columns: 1fr;
  }

  .related-path .related-path-card,
  .related-path .related-path-card:nth-child(n+4) {
    min-height: 148px;
  }
}

.service-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-row a {
  min-height: 168px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
    rgba(12,17,22,.56);
  color: var(--text);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: -.025em;
  text-decoration: none;
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  transition: background-color 160ms ease-out, color 160ms ease-out, box-shadow 160ms ease-out;
}

.service-row a:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.035)),
    rgba(38,173,228,.10);
  color: #dff7ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.engagements-section .offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.engagements-section .offer-card {
  min-height: 240px;
}

.engagements-section .offer-card h3 {
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
}

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

.proof-section {
  padding-top: 28px;
  padding-bottom: 54px;
}

.proof-section .proof-strip {
  padding: 0;
}

.cta-band {
  margin-top: 20px;
  margin-bottom: 60px;
  padding-top: 34px;
  padding-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band p {
  max-width: 660px;
  color: var(--muted);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 28px 46px;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}

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

.list li {
  border: 1px solid rgba(232,238,242,.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.024)),
    rgba(18,26,33,.48);
  padding: 16px;
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.095);
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 28px 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-alert {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255,255,255,.055);
}

.form-alert strong {
  display: block;
}

.form-alert ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.form-alert-success {
  border-color: rgba(128,198,83,.45);
  background: rgba(128,198,83,.10);
}

.form-alert-error {
  border-color: rgba(237,124,93,.52);
  background: rgba(237,124,93,.10);
}

.field {
  display: grid;
  gap: 6px;
}

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

.field label {
  color: var(--text);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  padding: 11px 12px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(38,173,228,.62);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 38px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr 220px 240px;
  gap: 34px;
}

.footer-mark {
  width: 54px;
  opacity: .7;
}

.footer-title {
  margin-top: 12px;
  color: var(--text) !important;
  font-weight: 800;
}

.footer-claris-badges {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer-claris-badges a {
  display: block;
  width: 210px;
  max-width: 210px;
}

.footer-claris-badges img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 15px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

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

@media (max-width: 960px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 0;
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .content-grid,
  .problem-section,
  .split,
  .contact-grid,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .service-list,
  .service-row,
  .offer-grid,
  .pipeline,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .engagements-section .offer-grid {
    grid-template-columns: 1fr;
  }

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

  .problem-grid article:first-child {
    grid-column: auto;
  }

  .problem-section {
    gap: 34px;
  }

  .problem-head {
    position: static;
  }

  .problem-sequence article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .problem-sequence p {
    grid-column: 2;
  }

  .brand-mark {
    right: 0;
  }
}

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