:root {
  --ink: #14211f;
  --ink-strong: #071513;
  --moss: #42564f;
  --muted: #66706d;
  --line: #ded9cd;
  --surface: #fffdf8;
  --paper: #f7f4ee;
  --clay: #b4634d;
  --sun: #e1b85f;
  --teal: #0d7772;
  --teal-dark: #075653;
  --gold: #b58b2e;
  --plum: #5c2438;
  --focus: #ffbf47;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 70px rgba(20, 33, 31, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--moss);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--teal-dark); text-underline-offset: .22em; }
a:hover { color: var(--ink-strong); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--focus);
  color: #0b0c0c;
  padding: .75rem 1rem;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-muted { background: var(--paper); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .9);
  border-bottom: 1px solid rgba(222, 217, 205, .85);
  backdrop-filter: blur(18px);
}
.header-layout {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(20, 33, 31, .15);
  border-radius: 50%;
  background: #fff;
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 900;
}
.brand-mobile { display: none; }
.primary-nav { display: flex; align-items: center; gap: clamp(.7rem, 1.4vw, 1.15rem); }
.primary-nav a {
  color: var(--moss);
  font-size: .9rem;
  font-weight: 760;
  text-decoration: none;
}
.primary-nav a:hover { color: var(--ink-strong); }
.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: .48rem .82rem;
  color: var(--ink) !important;
}
.nav-cta:hover { background: var(--ink); color: #fff !important; }
.nav-toggle {
  display: none;
  align-items: center;
  gap: .55rem;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: .55rem .8rem;
  font: inherit;
  font-weight: 800;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  content: "";
}
.nav-toggle__bars::before { transform: translateY(-6px); }
.nav-toggle__bars::after { transform: translateY(4px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.9rem, 5vw, 5.2rem) 0 1.25rem;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .96), rgba(255, 253, 248, .72)),
    linear-gradient(135deg, #fff5df, #eaf5f1 52%, #fffdf8);
}
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 33, 31, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 31, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(21rem, .72fr);
  grid-template-areas: "copy visual";
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}
.hero-copy { grid-area: copy; max-width: 46rem; }
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--clay);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.08; letter-spacing: 0; }
h1 {
  max-width: 14.3ch;
  font-size: clamp(2.75rem, 4.55vw, 4.65rem);
  line-height: 1.02;
}
h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.7vw, 4rem);
}
h3 { font-size: clamp(1.08rem, 1.35vw, 1.42rem); }
.hero-subtitle {
  max-width: 39.5rem;
  margin: 1.3rem 0 0;
  color: var(--moss);
  font-size: clamp(1.08rem, 1.42vw, 1.24rem);
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.8rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .78rem 1.08rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}
.button-primary { background: linear-gradient(135deg, var(--ink), var(--plum)); color: #fff; }
.button-primary:hover { background: var(--teal-dark); color: #fff; }
.button-secondary { border-color: rgba(20, 33, 31, .3); color: var(--ink); background: rgba(255, 255, 255, .55); }
.button-secondary:hover { border-color: var(--ink); color: var(--ink); }
.button-large { min-height: 3.35rem; padding-inline: 1.25rem; }
.hero-visual {
  grid-area: visual;
  position: relative;
  justify-self: end;
  align-self: start;
  width: min(100%, 26rem);
  margin-top: clamp(1.1rem, 2.4vw, 2.15rem);
  aspect-ratio: .98;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #d9e4df;
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-visual {
  isolation: isolate;
  transform: rotate(1.25deg);
}
.portrait-visual::before {
  position: absolute;
  inset: .7rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: calc(var(--radius-lg) - .55rem);
  pointer-events: none;
  content: "";
}
.portrait-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(transparent, rgba(7, 21, 19, .42));
  pointer-events: none;
  content: "";
}
.portrait-visual img {
  filter: saturate(1.04) contrast(1.02);
  object-position: 50% 38%;
}
.availability-card {
  position: absolute;
  right: .85rem;
  bottom: .85rem;
  z-index: 2;
  max-width: 15rem;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(14px);
  padding: .85rem;
  color: var(--ink);
}
.availability-card span {
  display: block;
  margin-bottom: .28rem;
  color: var(--clay);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.availability-card strong { display: block; font-size: .92rem; line-height: 1.25; }
.proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}
.proof-strip div {
  min-height: 6.8rem;
  background: rgba(255, 253, 248, .92);
  padding: 1.1rem;
}
.proof-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.1;
}
.proof-strip span {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-weight: 650;
}

.intro-layout,
.ai-layout,
.credentials-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: start;
}
.prose p,
.section-heading p,
.process-heading p,
.process-step p,
.timeline-content p,
.credential-grid p,
.contact-layout p,
.policy-note p,
.ai-copy p,
.ai-node p { color: var(--muted); }
.lead-prose p {
  margin: 0;
  font-size: 1.1rem;
}
.lead-prose p + p { margin-top: 1rem; }
.section-heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}
.section-heading p {
  max-width: 44rem;
  margin: 1rem 0 0;
  font-size: 1.06rem;
}
.experience-heading {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(22rem, .56fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: none;
  align-items: center;
}
.experience-arc-card {
  position: relative;
  min-height: 15rem;
  border: 1px solid rgba(222, 217, 205, .95);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .95), rgba(234, 245, 241, .72)),
    radial-gradient(circle at 72% 18%, rgba(13, 119, 114, .1), transparent 12rem);
  box-shadow: 0 18px 52px rgba(20, 33, 31, .08);
  overflow: hidden;
}
.experience-arc-card::before {
  position: absolute;
  inset: .85rem;
  border: 1px solid rgba(20, 33, 31, .08);
  border-radius: calc(var(--radius-lg) - .55rem);
  content: "";
}
.experience-arc-card svg {
  position: absolute;
  inset: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
}
.arc-grid {
  fill: none;
  stroke: rgba(20, 33, 31, .06);
  stroke-width: 1;
}
.arc-path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: .72;
}
.arc-dot {
  stroke: var(--surface);
  stroke-width: 5;
}
.dot-base { fill: var(--teal); }
.dot-direction { fill: var(--sun); }
.dot-product { fill: var(--plum); }
.arc-label {
  position: absolute;
  z-index: 1;
  min-width: 8.4rem;
  border: 1px solid rgba(20, 33, 31, .1);
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  padding: .58rem .72rem;
  box-shadow: 0 12px 28px rgba(20, 33, 31, .08);
}
.arc-label span {
  display: block;
  color: var(--clay);
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}
.arc-label strong {
  display: block;
  margin-top: .22rem;
  color: var(--ink);
  font-size: .82rem;
  line-height: 1.1;
}
.arc-label-base {
  left: 1.35rem;
  bottom: 1.25rem;
}
.arc-label-direction {
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}
.arc-label-product {
  right: 1.25rem;
  top: 1.2rem;
}
.value-map-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(28rem, 1fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: center;
}
.value-map-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.connection-map {
  position: relative;
  min-height: 31rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(234, 245, 241, .72)),
    linear-gradient(90deg, rgba(20, 33, 31, .04) 1px, transparent 1px),
    linear-gradient(rgba(20, 33, 31, .04) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.connection-map::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(20, 33, 31, .08);
  border-radius: calc(var(--radius-lg) - .5rem);
  content: "";
}
.map-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .28rem;
  width: 10.6rem;
  height: 10.6rem;
  padding: 1.15rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 60px rgba(20, 33, 31, .18);
}
.map-core span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.map-core strong {
  display: block;
  max-width: 8rem;
  font-size: 1.22rem;
  line-height: 1.05;
}
.map-core em {
  display: block;
  max-width: 7.2rem;
  color: rgba(255, 255, 255, .62);
  font-size: .7rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
}
.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 9.5rem;
  min-height: 3.25rem;
  border: 1px solid rgba(20, 33, 31, .12);
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  color: var(--ink);
  padding: .55rem 1rem;
  font-size: clamp(.86rem, 1vw, .98rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 14px 36px rgba(20, 33, 31, .08);
}
.node-users { top: 2.25rem; left: 3rem; }
.node-tech { top: 3.1rem; right: 2.5rem; }
.node-service { left: 2.4rem; bottom: 4.8rem; }
.node-risk { right: 3.1rem; bottom: 4.2rem; }
.node-data { top: 12rem; left: 1.2rem; background: rgba(234, 245, 241, .95); }
.node-business { top: 12.5rem; right: 1.2rem; background: rgba(255, 245, 223, .95); }
.map-paths {
  position: absolute;
  inset: 1rem;
  z-index: 1;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  pointer-events: none;
}
.map-paths path {
  fill: none;
  stroke-width: .55;
  stroke-linecap: round;
  stroke-dasharray: 1.4 1.2;
  opacity: .58;
}
.path-users,
.path-risk { stroke: rgba(92, 36, 56, .75); }
.path-tech,
.path-service { stroke: rgba(225, 184, 95, .9); }
.path-data,
.path-business { stroke: rgba(13, 119, 114, .72); }
.map-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.map-notes article {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.map-notes span {
  color: var(--clay);
  font-weight: 950;
}
.map-notes h3 {
  max-width: 18rem;
  margin-top: .6rem;
}

.practice-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .92), rgba(247, 244, 238, .96)),
    radial-gradient(circle at 18% 22%, rgba(225, 184, 95, .24), transparent 26rem);
}
.process-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(18rem, .78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}
.process-heading p:last-child {
  max-width: 38rem;
  margin: clamp(1.7rem, 3vw, 2.35rem) 0 0;
  font-size: 1.08rem;
}
.process-showcase {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(22rem, 1.02fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
}
.process-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.process-map::before {
  display: none;
}
.process-step {
  position: relative;
  z-index: 1;
  min-height: 10.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(255, 253, 248, .72)),
    var(--surface);
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(20, 33, 31, .06);
}
.process-step::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: .28rem;
  background: var(--plum);
  content: "";
}
.process-step:nth-child(2)::before { background: var(--clay); }
.process-step:nth-child(3)::before { background: var(--sun); }
.process-step:nth-child(4)::before { background: var(--teal); }
.process-step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  border: 1px solid rgba(20, 33, 31, .14);
  border-radius: 999px;
  background: rgba(20, 33, 31, .96);
  color: var(--surface);
  font-size: .72rem;
  font-weight: 950;
  box-shadow: 0 .75rem 1.4rem rgba(20, 33, 31, .12);
}
.process-step span::after {
  display: none;
}
.process-step h3 {
  margin-top: .85rem;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}
.process-step strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.55rem;
  margin-top: .35rem;
  border: 1px solid rgba(20, 33, 31, .1);
  border-radius: 999px;
  background: rgba(247, 244, 238, .86);
  color: var(--plum);
  padding: .24rem .55rem;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}
.process-step:nth-child(2) strong { color: var(--clay); }
.process-step:nth-child(3) strong { color: var(--gold); }
.process-step:nth-child(4) strong { color: var(--teal); }
.process-step p {
  margin: .65rem 0 0;
  font-size: .95rem;
  line-height: 1.42;
}
.process-step:nth-child(n) { transform: none; }
.workbench {
  position: relative;
  min-height: 25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .88), rgba(234, 245, 241, .78)),
    linear-gradient(90deg, rgba(20, 33, 31, .04) 1px, transparent 1px),
    linear-gradient(rgba(20, 33, 31, .04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.workbench::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(20, 33, 31, .08);
  border-radius: calc(var(--radius-lg) - .5rem);
  content: "";
}
.workbench-label {
  position: absolute;
  left: 2rem;
  top: 1.6rem;
  z-index: 2;
}
.workbench-label span {
  display: block;
  color: var(--clay);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.workbench-label strong {
  display: block;
  max-width: 13rem;
  margin-top: .25rem;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.15;
}
.workbench-panel {
  position: absolute;
  border: 1px solid rgba(20, 33, 31, .11);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, .88);
  padding: .9rem;
  box-shadow: 0 14px 38px rgba(20, 33, 31, .1);
}
.workbench-panel span {
  display: block;
  color: var(--clay);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
}
.panel-roadmap {
  top: 5.8rem;
  left: 2rem;
  width: 55%;
}
.panel-backlog {
  top: 7.7rem;
  right: 2rem;
  width: 45%;
}
.panel-risk {
  left: 2.4rem;
  bottom: 3.2rem;
  width: 40%;
}
.panel-release {
  right: 2rem;
  bottom: 2rem;
  width: 52%;
}
.mini-bars {
  display: grid;
  gap: .55rem;
  margin-top: 1rem;
}
.mini-bars i {
  display: block;
  height: .85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(13, 119, 114, .15));
}
.mini-bars i:nth-child(2) { width: 72%; background: linear-gradient(90deg, var(--sun), rgba(225, 184, 95, .15)); }
.mini-bars i:nth-child(3) { width: 52%; background: linear-gradient(90deg, var(--clay), rgba(180, 99, 77, .15)); }
.panel-backlog ul {
  display: grid;
  gap: .55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.panel-backlog li {
  height: .75rem;
  border-radius: 999px;
  background: rgba(20, 33, 31, .14);
}
.panel-backlog li:nth-child(2) { width: 82%; }
.panel-backlog li:nth-child(3) { width: 62%; }
.panel-risk strong {
  display: block;
  margin-top: .75rem;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}
.mini-dots {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}
.mini-dots i {
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  background: var(--teal);
}
.mini-dots i:nth-child(2) { background: var(--sun); }
.mini-dots i:nth-child(3) { background: var(--clay); }
.mini-dots i:nth-child(4) { background: var(--ink); }

.ai-band {
  background: var(--ink);
  color: #f6f1e8;
}
.ai-band h2,
.ai-band .eyebrow { color: #f6f1e8; }
.ai-copy p { color: #d7dfdb; font-size: 1.12rem; margin: 0; }
.ai-trust-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 22% 18%, rgba(13, 119, 114, .36), transparent 14rem),
    radial-gradient(circle at 78% 76%, rgba(225, 184, 95, .22), transparent 13rem),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: auto, auto, 38px 38px, 38px 38px;
  overflow: hidden;
  padding: 2rem;
}
.ai-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(22rem, 62%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(143, 216, 208, .18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(143, 216, 208, .16), transparent 54%),
    conic-gradient(from 90deg, rgba(143, 216, 208, .08), rgba(225, 184, 95, .26), rgba(180, 99, 77, .16), rgba(143, 216, 208, .08));
  opacity: .78;
}
.ai-orbit::before,
.ai-orbit::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}
.ai-orbit::after {
  inset: 39%;
  background: rgba(7, 21, 19, .64);
}
.ai-trust-flow::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: calc(var(--radius-lg) - .5rem);
  content: "";
}
.ai-trust-flow::after {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 49%;
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 216, 208, .18), rgba(143, 216, 208, .9), rgba(225, 184, 95, .8), rgba(143, 216, 208, .18));
  content: "";
}
.ai-node {
  position: relative;
  z-index: 2;
  min-height: 10.4rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, .08);
  backdrop-filter: blur(16px);
  padding: 1rem;
  color: #f6f1e8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
}
.ai-node span {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(143, 216, 208, .16);
  color: #8fd8d0;
  font-size: .78rem;
  font-weight: 950;
}
.ai-node strong {
  display: block;
  margin-top: .85rem;
  font-size: 1.02rem;
}
.ai-node p {
  margin: .45rem 0 0;
  color: #c9d8d5;
  font-size: .92rem;
  line-height: 1.35;
}
.node-source { background: rgba(24, 80, 75, .58); }
.node-answer { background: rgba(37, 49, 46, .72); }
.node-human { background: rgba(79, 79, 54, .52); }
.ai-release-gate {
  position: relative;
  grid-column: 1 / -1;
  justify-self: center;
  z-index: 3;
  width: min(25rem, calc(100% - 2rem));
  border: 1px solid rgba(225, 184, 95, .42);
  border-radius: 999px;
  background: rgba(7, 21, 19, .82);
  padding: .85rem 1rem;
  color: #f6f1e8;
  text-align: center;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
}
.ai-release-gate span {
  display: block;
  color: var(--sun);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}
.ai-release-gate strong {
  display: block;
  margin-top: .2rem;
  font-size: .94rem;
}

.timeline {
  display: grid;
  position: relative;
  border-top: 1px solid var(--line);
}
.timeline::before {
  position: absolute;
  top: 2.3rem;
  bottom: 2.3rem;
  left: 19.25rem;
  width: 2px;
  background: linear-gradient(var(--plum), var(--clay), var(--sun), var(--teal));
  content: "";
}
.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: 16rem 4rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 1.7rem 0;
}
.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--surface);
  color: var(--plum);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 0 0 .45rem var(--surface), 0 1rem 2rem rgba(20, 33, 31, .08);
}
.timeline-card:nth-child(2) .timeline-marker { color: var(--sun); }
.timeline-card:nth-child(3) .timeline-marker { color: var(--teal); }
.timeline-meta span {
  display: block;
  color: var(--clay);
  font-weight: 900;
}
.timeline-meta strong {
  display: block;
  margin-top: .35rem;
  color: var(--ink);
}
.timeline-content p { margin: .65rem 0 0; }
.timeline-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  border: 1px solid #c7d9d7;
  border-radius: 999px;
  background: #edf7f6;
  color: #073f3b;
  padding: .25rem .65rem;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.timeline-chip + h3 { margin-top: .7rem; }
.credentials-layout {
  align-items: center;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
}
.credentials-layout h2 {
  max-width: 10.5ch;
  font-size: clamp(2.45rem, 4.7vw, 4.45rem);
}
.credentials-intro {
  max-width: 31rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
}
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.credential-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  min-height: 10.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(13, 119, 114, .06), rgba(225, 184, 95, .04) 45%, transparent 72%),
    var(--surface);
  padding: 1.2rem;
  box-shadow: 0 1.2rem 3rem rgba(20, 33, 31, .05);
}
.credential-grid article::after {
  position: absolute;
  inset: auto 1.2rem 1.05rem auto;
  width: 2.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--sun), var(--plum));
  opacity: .55;
  content: "";
}
.credential-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(13, 119, 114, .22);
  border-radius: 50%;
  background: #edf7f6;
  color: var(--teal-dark);
}
.credential-mark svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.credential-kicker {
  display: block;
  margin-bottom: .45rem;
  color: var(--plum);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.credential-grid h3 { font-size: clamp(1.1rem, 1.5vw, 1.45rem); }
.credential-grid p { margin: .6rem 0 0; }
.contact-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 35%, rgba(13, 119, 114, .08), transparent 30rem),
    #fff;
}
.contact-layout {
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, .88fr);
}
.contact-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 4.6vw, 4.45rem);
}
.contact-layout p { max-width: 44rem; margin: 1rem 0 0; font-size: 1.06rem; }
.contact-fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}
.contact-fit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  border: 1px solid rgba(20, 33, 31, .16);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: .45rem .8rem;
  font-size: .88rem;
  font-weight: 850;
}
.contact-action {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(13, 119, 114, .08), rgba(225, 184, 95, .08)),
    var(--surface);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.contact-action::before {
  display: block;
  width: 3rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--sun), var(--plum));
  content: "";
}
.contact-action p {
  margin: 1rem 0 1.2rem;
  color: var(--ink);
  font-weight: 850;
}
.contact-action .button {
  width: auto;
  min-width: 13rem;
}
.policy-band { background: var(--paper); padding: 2rem 0; }
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.policy-note {
  border-left: 3px solid var(--plum);
  padding-left: 1rem;
}
.policy-note h2 { font-size: 1rem; }
.policy-note p { max-width: 42rem; margin: .4rem 0 0; font-size: .95rem; }
.site-footer {
  background: var(--ink);
  color: #e8ede9;
  padding: 1.5rem 0;
}
.footer-layout {
  font-size: .94rem;
}
.footer-layout p { margin: 0; }

@media (max-width: 1120px) {
  .primary-nav {
    position: absolute;
    top: calc(100% + .5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: .55rem;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: .85rem; }
  .nav-cta { border-radius: var(--radius-sm); }
  .nav-toggle { display: inline-flex; }
  .hero-layout,
  .intro-layout,
  .ai-layout,
  .credentials-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .hero-layout {
    grid-template-areas:
      "copy"
      "visual";
    gap: 2rem;
  }
  .hero-copy { max-width: 62rem; }
  h1, h2 { max-width: 100%; }
  .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.6rem, 6.2vw, 4.25rem);
  }
  .hero-visual {
    justify-self: start;
    width: min(100%, 24rem);
    min-height: 24rem;
    margin-top: 0;
  }
  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-map-layout { grid-template-columns: 1fr; }
  .process-heading,
  .process-showcase { grid-template-columns: 1fr; }
  .experience-heading { grid-template-columns: 1fr; }
  .experience-arc-card {
    width: min(100%, 34rem);
    min-height: 13.5rem;
  }
  .process-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-map::before { display: none; }
  .process-step:nth-child(n) { transform: none; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 1.15rem, var(--container)); }
  body { font-size: .95rem; }
  .header-layout { min-height: 3.25rem; gap: .45rem; }
  .brand { min-width: 0; gap: .42rem; font-size: .8rem; }
  .brand span:last-child {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand-desktop { display: none; }
  .brand-mobile { display: inline; }
  .brand-mark { flex: 0 0 auto; width: 1.55rem; height: 1.55rem; font-size: .58rem; }
  .nav-toggle {
    min-height: 2.05rem;
    gap: .45rem;
    padding: .34rem .5rem;
    font-size: .8rem;
  }
  .primary-nav {
    top: calc(100% + .35rem);
    left: .65rem;
    right: .65rem;
    gap: .18rem;
    border-radius: 14px;
    padding: .35rem;
    background: var(--surface);
    box-shadow: 0 14px 36px rgba(20, 33, 31, .13);
  }
  .primary-nav a {
    min-height: 2.38rem;
    border-radius: 10px;
    padding: .52rem .72rem;
    color: var(--moss);
    font-size: .88rem;
    font-weight: 720;
  }
  .primary-nav a:hover {
    background: var(--paper);
  }
  .primary-nav .nav-cta {
    min-height: 2.45rem;
    border: 1px solid rgba(20, 33, 31, .16);
    border-radius: 10px;
    background: rgba(234, 245, 241, .75);
    color: var(--teal-dark) !important;
    font-weight: 780;
  }
  .section { padding: 2.2rem 0; scroll-margin-top: 3.65rem; }
  #top { scroll-margin-top: 0; }
  .hero { padding: .8rem 0 .95rem; }
  .hero::before { background-size: 56px 56px; opacity: .62; }
  .eyebrow { margin-bottom: .48rem; font-size: .6rem; line-height: 1.35; letter-spacing: .07em; }
  h1 { font-size: clamp(1.58rem, 6.25vw, 1.86rem); line-height: 1.05; }
  h2 { font-size: clamp(1.26rem, 5.35vw, 1.56rem); line-height: 1.1; }
  h3 { font-size: 1.02rem; }
  .hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .7rem .75rem;
    min-height: 0;
    border: 1px solid rgba(222, 217, 205, .9);
    border-radius: 18px;
    background: rgba(255, 253, 248, .82);
    padding: .9rem;
    box-shadow: 0 18px 46px rgba(20, 33, 31, .08);
  }
  .hero-copy {
    display: contents;
    max-width: none;
    padding-right: 0;
  }
  .hero-copy .eyebrow {
    grid-column: 2;
    align-self: center;
    margin: 0;
    padding-right: 0;
  }
  .hero-copy h1,
  .hero-copy .hero-subtitle,
  .hero-copy .hero-actions {
    grid-column: 1 / -1;
  }
  .hero-subtitle {
    margin-top: .58rem;
    padding-right: 0;
    font-size: .85rem;
    line-height: 1.38;
  }
  .hero-subtitle-extra { display: none; }
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
    margin-top: .78rem;
  }
  .button { width: 100%; min-height: 2.25rem; padding: .5rem .58rem; font-size: .78rem; }
  .hero-visual,
  .hero-visual img { min-height: 0; }
  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 1;
    grid-row: 1;
    width: 3.8rem;
    height: 3.8rem;
    margin: 0;
    aspect-ratio: 1;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: none;
    box-shadow: 0 12px 26px rgba(20, 33, 31, .14);
  }
  .portrait-visual { transform: none; }
  .portrait-visual::before,
  .portrait-visual::after,
  .availability-card { display: none; }
  .portrait-visual img { object-position: 50% 23%; }
  .proof-strip,
  .process-map,
  .map-notes,
  .credential-grid,
  .policy-grid { grid-template-columns: 1fr; }
  .proof-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin-top: .7rem;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .proof-strip div {
    min-height: 4.15rem;
    border: 1px solid rgba(222, 217, 205, .95);
    border-radius: 14px;
    background: rgba(255, 253, 248, .9);
    padding: .78rem .78rem .72rem;
    box-shadow: 0 10px 26px rgba(20, 33, 31, .06);
  }
  .proof-strip strong { font-size: .8rem; line-height: 1.05; }
  .proof-strip span { margin-top: .2rem; font-size: .6rem; line-height: 1.22; }
  .intro-layout,
  .value-map-layout,
  .process-heading,
  .process-showcase,
  .ai-layout,
  .credentials-layout,
  .contact-layout { gap: 1.05rem; }
  .lead-prose p,
  .value-map-copy p:not(.eyebrow),
  .process-heading p:last-child,
  .ai-copy p,
  .section-heading p,
  .credentials-intro,
  .contact-layout p {
    font-size: .84rem;
    line-height: 1.45;
  }
  .lead-prose p + p { margin-top: .75rem; }
  .connection-map {
    min-height: 22rem;
    border-radius: 16px;
    background-size: auto, 34px 34px, 34px 34px;
  }
  .connection-map::before { inset: .55rem; border-radius: 12px; }
  .map-core { width: 6.55rem; height: 6.55rem; padding: .65rem; }
  .map-core span { font-size: .58rem; }
  .map-core strong { max-width: 5.7rem; font-size: .86rem; }
  .map-core em { max-width: 5.3rem; font-size: .55rem; }
  .map-node { min-width: 6.9rem; min-height: 2.35rem; font-size: .62rem; padding-inline: .44rem; }
  .node-users { top: 1.15rem; left: .55rem; }
  .node-tech { top: 2rem; right: .55rem; }
  .node-data { top: 8.9rem; left: .45rem; }
  .node-business { top: 9.7rem; right: .45rem; }
  .node-service { left: .55rem; bottom: 3.1rem; }
  .node-risk { right: .55rem; bottom: 2.35rem; }
  .process-map { grid-template-columns: 1fr; }
  .process-map::before { display: none; }
  .process-step {
    min-height: auto;
    padding: .9rem .9rem .95rem;
    border-radius: 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: .75rem;
    align-items: start;
  }
  .process-step h3 { margin-top: 0; font-size: 1.3rem; line-height: 1.03; }
  .process-step span {
    grid-row: 1 / 4;
    width: 2.35rem;
    height: 2.35rem;
    font-size: .68rem;
  }
  .process-step strong { width: fit-content; margin-top: .32rem; font-size: .56rem; }
  .process-step p { margin-top: .5rem; font-size: .86rem; line-height: 1.38; }
  .process-step span::after { display: none; }
  .workbench { min-height: 18rem; border-radius: 16px; }
  .workbench-label { left: .85rem; top: .85rem; }
  .workbench-label strong { font-size: .92rem; }
  .workbench-panel { border-radius: 10px; padding: .55rem; }
  .workbench-panel span { font-size: .55rem; }
  .ai-trust-flow {
    grid-template-columns: 1fr;
    padding: .75rem;
    border-radius: 16px;
  }
  .ai-orbit {
    width: 12.5rem;
    top: 47%;
  }
  .ai-trust-flow::after {
    top: 12%;
    bottom: 12%;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(143, 216, 208, .18), rgba(143, 216, 208, .9), rgba(225, 184, 95, .8), rgba(143, 216, 208, .18));
  }
  .ai-node {
    margin: .55rem;
    padding: .8rem;
    border-radius: 12px;
  }
  .ai-node span { width: 2rem; height: 2rem; font-size: .72rem; }
  .ai-node strong { margin-top: .7rem; font-size: .96rem; }
  .ai-node p { margin-top: .38rem; font-size: .82rem; line-height: 1.32; }
  .node-source { margin-top: .8rem; }
  .node-answer,
  .node-human { margin-left: 1.9rem; }
  .node-check { margin-right: 1.9rem; }
  .ai-release-gate {
    margin: .65rem;
    width: auto;
    padding: .75rem;
    border-radius: 999px;
  }
  .ai-release-gate span { font-size: .58rem; }
  .ai-release-gate strong { font-size: .84rem; line-height: 1.28; }
  .panel-roadmap { top: 4.8rem; left: .75rem; width: 70%; }
  .panel-backlog { top: 9.2rem; right: .75rem; width: 58%; }
  .panel-risk { left: .75rem; bottom: 1.8rem; width: 42%; }
  .panel-release { right: .75rem; bottom: .9rem; width: 58%; }
  #experience .section-heading {
    margin-bottom: 1rem;
  }
  #experience .experience-heading {
    display: block;
  }
  .experience-arc-card {
    display: none;
  }
  #experience .section-heading h2 {
    max-width: 12.5ch;
    font-size: clamp(1.62rem, 6.7vw, 2.05rem);
  }
  .timeline {
    margin-top: 1.05rem;
    gap: .75rem;
    border-top: 0;
  }
  .timeline::before { display: none; }
  .timeline-card {
    grid-template-columns: auto 1fr;
    gap: .75rem;
    align-items: start;
    border: 1px solid rgba(222, 217, 205, .9);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(234, 245, 241, .38)),
      var(--surface);
    padding: .9rem;
    box-shadow: 0 14px 34px rgba(20, 33, 31, .08);
  }
  .timeline-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 16px 0 0 16px;
    background: var(--plum);
    content: "";
  }
  .timeline-card:nth-child(2)::before { background: var(--sun); }
  .timeline-card:nth-child(3)::before { background: var(--teal); }
  .timeline-meta {
    display: contents;
  }
  .timeline-meta span {
    grid-column: 2;
    color: var(--clay);
    font-size: .76rem;
    letter-spacing: .02em;
  }
  .timeline-meta strong {
    grid-column: 2;
    margin-top: -.38rem;
    color: var(--ink);
    font-size: .9rem;
    line-height: 1.2;
  }
  .timeline-marker {
    grid-column: 1;
    grid-row: 1 / 5;
    width: 2.35rem;
    height: 2.35rem;
    border-width: 1px;
    background: #fff;
    font-size: .52rem;
    box-shadow: none;
  }
  .timeline-chip,
  .credential-kicker,
  .contact-fit-list span { font-size: .62rem; }
  .timeline-content {
    grid-column: 2;
    display: grid;
    gap: .45rem;
    min-width: 0;
  }
  .timeline-chip {
    min-height: 1.55rem;
    width: fit-content;
    padding: .18rem .5rem;
    font-size: .56rem;
  }
  .timeline-chip + h3 { margin-top: 0; }
  .timeline-content h3 {
    font-size: 1.08rem;
    line-height: 1.1;
  }
  .timeline-content p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.38;
  }
  .credentials-layout h2,
  .contact-copy h2 { font-size: clamp(1.55rem, 6.4vw, 2rem); }
  .credential-grid { gap: .7rem; }
  .credential-grid article { min-height: auto; grid-template-columns: auto 1fr; gap: .75rem; padding: .85rem; border-radius: 14px; }
  .credential-mark { width: 2.7rem; height: 2.7rem; }
  .credential-mark svg { width: 1.2rem; height: 1.2rem; }
  .credential-grid h3 { font-size: 1rem; }
  .credential-grid p { margin-top: .35rem; font-size: .84rem; line-height: 1.35; }
  .contact-fit-list { gap: .4rem; margin-top: .8rem; }
  .contact-fit-list span { min-height: 1.85rem; padding: .35rem .55rem; }
  .contact-action { padding: .9rem; border-radius: 14px; }
  .contact-action .button { min-width: 0; width: 100%; }
  .policy-band { padding: 1.2rem 0; }
  .policy-note p { font-size: .82rem; line-height: 1.4; }
  .footer-layout { align-items: flex-start; flex-direction: column; }
}

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