:root {
  color-scheme: light;
  --stone-50: #f7f4ed;
  --stone-100: #eee8dc;
  --stone-200: #ded5c7;
  --stone-25: #fffdfa;
  --ink: #181817;
  --ink-soft: #2b2d2d;
  --muted: #656a67;
  --graphite: #111719;
  --graphite-2: #172023;
  --graphite-3: #202b2e;
  --blue: #078fd8;
  --cyan: #18aee8;
  --cyan-soft: #96e8ee;
  --signal-muted: #6d938c;
  --slate-green: #6d938c;
  --slate-green-dark: #3f6966;
  --amber: #c99b4b;
  --border: rgba(24, 24, 23, 0.14);
  --border-strong: rgba(24, 24, 23, 0.24);
  --dark-border: rgba(197, 225, 225, 0.18);
  --shadow: 0 22px 70px rgba(18, 23, 24, 0.14);
  --shell: min(1320px, calc(100vw - 72px));
  --section-heading-size: clamp(2.15rem, 3.9vw, 3.35rem);
  --radius: 8px;
  --header-height: 76px;
  font-family:
    Manrope, Avenir Next, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(24, 24, 23, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--stone-50);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(34, 199, 220, 0.55);
  outline-offset: 4px;
}

img,
svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--graphite);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 237, 0.88);
  border-bottom: 1px solid rgba(24, 24, 23, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  transition: color 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  color: var(--slate-green-dark);
}

.brand-mark {
  width: 38px;
  height: 46px;
}

.mark-ridge,
.mark-tower,
.mark-arc {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-ridge,
.mark-tower {
  stroke: var(--cyan);
  transition: stroke 180ms ease;
}

.mark-ridge {
  stroke-width: 2.5;
}

.mark-tower {
  stroke-width: 2.05;
  opacity: 0.95;
}

.mark-arc-1 {
  stroke: rgba(24, 24, 23, 0.52);
  stroke-width: 1.55;
  opacity: 0.62;
  transition:
    opacity 180ms ease,
    stroke 180ms ease;
}

.mark-arc-2 {
  stroke: var(--signal-muted);
  stroke-width: 1.3;
  opacity: 0.5;
  transition:
    opacity 180ms ease,
    stroke 180ms ease;
}

.mark-arc-3 {
  stroke: var(--signal-muted);
  stroke-width: 1.1;
  opacity: 0.3;
  transition:
    opacity 180ms ease,
    stroke 180ms ease;
}

.brand:hover .mark-ridge,
.brand:hover .mark-tower,
.brand:focus-visible .mark-ridge,
.brand:focus-visible .mark-tower {
  stroke: var(--blue);
}

.brand:hover .mark-arc,
.brand:focus-visible .mark-arc {
  opacity: 0.72;
  stroke: var(--cyan);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--ink);
  letter-spacing: 0;
  transition: color 180ms ease;
}

.brand:hover .wordmark,
.brand:focus-visible .wordmark {
  color: var(--slate-green-dark);
}

.wm-main {
  color: currentColor;
  font-family: Syne, Avenir Next, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wm-ai {
  color: var(--blue);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 520;
}

.nav-menu > a:not(.button) {
  position: relative;
  color: rgba(24, 24, 23, 0.72);
  transition: color 160ms ease;
}

.nav-menu > a:not(.button)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-menu > a:not(.button):hover {
  color: var(--ink);
}

.nav-menu > a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-size: 0.92rem;
  font-weight: 580;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.button:hover .button-icon {
  transform: translateX(2px);
}

.button-primary {
  background: linear-gradient(180deg, #0aa2ee, #0687cf);
  color: white;
  border-color: rgba(6, 135, 207, 0.72);
  box-shadow: 0 14px 34px rgba(6, 135, 207, 0.24);
}

.button-primary:hover {
  background: linear-gradient(180deg, #12acef, #057abe);
  box-shadow: 0 16px 38px rgba(6, 135, 207, 0.28);
}

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

.button-secondary:hover {
  border-color: rgba(34, 199, 220, 0.58);
  background: rgba(255, 255, 255, 0.56);
}

.button-small {
  min-height: 40px;
  padding: 11px 14px;
  font-size: 0.84rem;
}

.reveal-ready .reveal-item {
  opacity: 0;
  transition: opacity 420ms ease;
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
}

.button-on-dark {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-on-dark:hover {
  border-color: rgba(150, 232, 238, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  display: flex;
  align-items: center;
  padding: 52px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(600px, 1.08fr);
  gap: clamp(38px, 4.8vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.overline,
.section-label,
.blueprint-kicker,
.blueprint-ref,
.lane-label {
  margin: 0;
  color: var(--slate-green-dark);
  font-size: 0.76rem;
  font-weight: 560;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.overline,
.section-label {
  margin-bottom: 12px;
}

.blueprint-kicker,
.blueprint-ref,
.lane-label {
  margin-bottom: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 4.72vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
  color: #111827;
  max-width: 620px;
}

.accent-dot {
  color: var(--blue);
}

.hero-subhead {
  max-width: 580px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 520;
}

.tagline span {
  width: 4px;
  height: 34px;
  background: var(--blue);
  content: "";
}

.credibility-list {
  display: grid;
  grid-template-columns: 0.92fr 1.2fr 0.92fr;
  gap: 0;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 450;
}

.credibility-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid var(--border-strong);
}

.credibility-list li:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.credibility-list svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credibility-list span {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ink-soft);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blueprint {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 222, 219, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(151, 232, 238, 0.055) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(151, 232, 238, 0.045) 1px, transparent 1px) 0 0 / 22px 22px,
    var(--graphite);
  box-shadow: var(--shadow);
  color: white;
  padding: clamp(22px, 3vw, 30px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.blueprint:hover,
.blueprint:focus-within {
  border-color: rgba(150, 232, 238, 0.34);
  box-shadow: 0 24px 76px rgba(18, 23, 24, 0.18);
}

.blueprint::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.04), transparent),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.018) 5px 6px);
  content: "";
}

.blueprint > * {
  position: relative;
}

.blueprint-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(236, 244, 242, 0.22);
}

.blueprint-ref {
  color: rgba(236, 244, 242, 0.55);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.04em;
}

.workflow-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, 1.1vw, 16px);
  padding: 22px 0 14px;
  margin: 0;
  list-style: none;
  border-bottom: 0;
}

.workflow-path::before {
  display: none;
}

.workflow-step {
  position: relative;
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(150, 232, 238, 0.36);
  border-radius: 6px;
  padding: 13px 12px;
  color: rgba(236, 244, 242, 0.84);
  font-size: 0.72rem;
  font-weight: 520;
  line-height: 1.25;
  text-align: left;
  background: rgba(9, 13, 14, 0.55);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.workflow-step:hover {
  transform: translateY(-2px);
  background: rgba(13, 20, 22, 0.72);
}

.workflow-step::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 16px;
  height: 1px;
  background: rgba(236, 244, 242, 0.7);
  content: "";
}

.workflow-step:not(:last-child)::before {
  position: absolute;
  top: calc(50% - 4px);
  right: -15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(236, 244, 242, 0.7);
  border-right: 1px solid rgba(236, 244, 242, 0.7);
  content: "";
  transform: rotate(45deg);
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-step svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-step strong {
  color: white;
  font-size: 0.75rem;
  font-weight: 570;
}

.workflow-step > span:last-child {
  color: rgba(236, 244, 242, 0.68);
}

.step-number {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.7rem;
}

.route-complete {
  border-color: rgba(109, 147, 140, 0.7);
  color: #9ec5bd;
}

.route-review {
  border-color: rgba(201, 155, 75, 0.92);
  color: var(--amber);
}

.route-active {
  border-color: rgba(34, 199, 220, 0.95);
  color: var(--cyan);
}

.route-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
  padding: 0 6% 26px;
}

.route-line span {
  position: relative;
  height: 26px;
  border-bottom: 1px dashed rgba(24, 174, 232, 0.72);
}

.route-line span::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.route-line .review-dot::before {
  background: var(--amber);
}

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

.artifact-panel {
  min-height: 210px;
  border: 1px solid var(--dark-border);
  border-radius: 7px;
  background: rgba(9, 13, 14, 0.7);
  padding: 16px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.artifact-panel:hover,
.artifact-panel:focus-within {
  transform: translateY(-2px);
  border-color: rgba(150, 232, 238, 0.28);
  background: rgba(12, 18, 20, 0.82);
}

.artifact-main {
  grid-row: auto;
  min-height: 210px;
}

.artifact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(236, 244, 242, 0.58);
}

.artifact-heading p,
.artifact-panel h3,
.artifact-panel p,
.deliverables ul {
  margin: 0;
}

.artifact-heading p {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artifact-panel h3 {
  margin-bottom: 10px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.16;
}

.artifact-panel p,
.deliverables li {
  color: rgba(236, 244, 242, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
}

.metadata-tag {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid rgba(236, 244, 242, 0.28);
  border-radius: 4px;
  padding: 5px 9px;
  color: rgba(236, 244, 242, 0.78);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metadata-review {
  color: var(--amber);
}

.metadata-approved {
  color: #9ec5bd;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 5px;
  border: 1px solid currentColor;
  padding: 3px 7px;
  font-size: 0.64rem;
  font-weight: 560;
  line-height: 1;
  white-space: nowrap;
}

.status-review {
  color: var(--amber);
}

.status-approved {
  color: #9ec5bd;
}

.status-routing {
  color: var(--cyan-soft);
}

.deliverables ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.deliverables li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.deliverables li::before {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 3px;
  background: rgba(24, 174, 232, 0.1);
  color: var(--cyan);
  content: "✓";
  font-size: 0.72rem;
  line-height: 1;
}

.enterprise-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    linear-gradient(rgba(151, 232, 238, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(151, 232, 238, 0.032) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--graphite);
  color: white;
  border-bottom: 1px solid rgba(236, 244, 242, 0.1);
}

.enterprise-hero-grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.7fr) minmax(560px, 0.92fr);
  gap: clamp(54px, 7vw, 118px);
  align-items: center;
}

.enterprise-copy {
  max-width: 690px;
}

.enterprise-hero .overline {
  color: var(--cyan-soft);
}

.enterprise-hero h1 {
  color: white;
}

.enterprise-hero .hero-subhead {
  color: rgba(236, 244, 242, 0.82);
}

.enterprise-hero .tagline {
  color: white;
}

.enterprise-hero .tagline span {
  background: var(--cyan);
}

.enterprise-hero .button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(236, 244, 242, 0.26);
}

.enterprise-hero .button-secondary:hover,
.enterprise-hero .button-secondary:focus-visible {
  border-color: rgba(150, 232, 238, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.enterprise-artifact {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(24, 24, 23, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--stone-25);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: clamp(22px, 3vw, 32px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.enterprise-artifact:hover,
.enterprise-artifact:focus-within {
  transform: translateY(-3px);
  border-color: rgba(150, 232, 238, 0.68);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
}

.enterprise-artifact::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), transparent 42%),
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(24, 24, 23, 0.018) 6px 7px);
  content: "";
}

.enterprise-artifact > * {
  position: relative;
}

.enterprise-artifact-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.enterprise-artifact-title {
  margin: 0;
  color: var(--slate-green-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.enterprise-artifact-head > span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.readiness-brief {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.brief-row {
  display: grid;
  grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr);
  gap: 12px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition:
    background-color 180ms ease,
    padding-inline 180ms ease;
}

.brief-row:hover {
  padding-inline: 10px;
  background: rgba(24, 174, 232, 0.035);
}

.brief-row span {
  grid-row: 1 / 3;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brief-row strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 540;
  line-height: 1.35;
}

.brief-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.brief-row.approved span {
  color: #9ec5bd;
}

.brief-row.review span {
  color: var(--amber);
}

.artifact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--border);
}

.artifact-footer span {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 8px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.enterprise-messy {
  background: #fbfaf6;
  color: var(--ink);
  border-top: 1px solid var(--border);
}

.enterprise-messy .section-label {
  color: var(--slate-green-dark);
}

.enterprise-messy h2 {
  color: var(--ink);
}

.enterprise-messy .split-heading > p {
  color: var(--muted);
}

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

.messy-grid article {
  min-height: 0;
  border-top: 1px solid var(--border);
  padding: 26px 0 0;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.messy-grid article:hover,
.messy-grid article:focus-within {
  transform: translateY(-3px);
}

.messy-grid article > p:first-child {
  margin-bottom: 28px;
  color: var(--slate-green-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 540;
  letter-spacing: 0.08em;
}

.messy-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.32rem;
  font-weight: 510;
  line-height: 1.22;
}

.messy-grid p:not(:first-child) {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.enterprise-section {
  background: #fbfaf6;
  border-top: 1px solid var(--border);
}

.enterprise-operating-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(560px, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.enterprise-operating-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.enterprise-operating-copy h2,
.enterprise-review-grid h2,
.enterprise-fit h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--section-heading-size);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}

.enterprise-operating-copy p:not(.section-label) {
  color: var(--muted);
  line-height: 1.62;
}

.enterprise-deliverables {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.enterprise-deliverables article {
  display: grid;
  grid-template-columns: 54px minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.enterprise-deliverables span,
.enterprise-review-list span {
  color: var(--slate-green-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 540;
}

.enterprise-deliverables h3,
.enterprise-review-list h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 510;
  line-height: 1.25;
}

.enterprise-deliverables p,
.enterprise-review-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.enterprise-path {
  background: var(--stone-50);
}

.enterprise-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(560px, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.enterprise-review-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.enterprise-review-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.enterprise-fit {
  background:
    linear-gradient(90deg, rgba(24, 24, 23, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    #fbfaf6;
  border-top: 1px solid var(--border);
}

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

.fit-columns article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--stone-50);
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.fit-columns article:hover,
.fit-columns article:focus-within {
  transform: translateY(-3px);
  border-color: rgba(63, 105, 102, 0.34);
  background: var(--stone-25);
  box-shadow: 0 18px 48px rgba(24, 24, 23, 0.08);
}

.fit-columns .not-fit:hover,
.fit-columns .not-fit:focus-within {
  border-color: rgba(201, 155, 75, 0.36);
}

.fit-columns h3 {
  margin-bottom: 22px;
  font-size: 1.35rem;
  font-weight: 520;
}

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

.fit-columns li {
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  color: var(--ink-soft);
  font-weight: 430;
  line-height: 1.48;
}

.fit-columns li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  border: 1px solid var(--slate-green);
  background: rgba(109, 147, 140, 0.16);
  content: "";
}

.not-fit li::before {
  border-color: rgba(201, 155, 75, 0.72);
  background: rgba(201, 155, 75, 0.1);
}

.enterprise-close {
  background:
    linear-gradient(90deg, rgba(24, 24, 23, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--stone-25);
  border-top: 1px solid var(--border);
}

.enterprise-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 0.82fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.enterprise-close h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--section-heading-size);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}

.enterprise-close-copy {
  display: grid;
  gap: 24px;
}

.enterprise-close-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.section-heading.split-heading {
  max-width: none;
}

.split-heading p:last-child {
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.lane-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: #e5f2f8;
  color: var(--blue);
}

.lane-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lane-index {
  display: inline;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--slate-green-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.mini-artifact {
  margin: 20px 0 18px;
}

.flow-stack {
  display: grid;
  gap: 8px;
  margin-left: auto;
  max-width: 178px;
}

.flow-stack div,
.governance-map div {
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.42);
  padding: 8px 10px;
}

.flow-stack strong,
.flow-stack span {
  display: block;
}

.flow-stack strong,
.governance-map div {
  font-size: 0.74rem;
  font-weight: 520;
}

.flow-stack span {
  color: var(--muted);
  font-size: 0.66rem;
}

.intake-preview {
  display: grid;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
}

.intake-preview p {
  margin: 0;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.intake-preview label {
  font-size: 0.76rem;
  font-weight: 520;
}

.intake-preview label span,
.intake-preview > span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.intake-preview > span {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 7px;
  background: var(--stone-25);
}

.intake-preview button {
  border: 0;
  border-radius: 4px;
  padding: 7px;
  background: var(--blue);
  color: white;
  font-weight: 560;
}

.governance-map {
  display: grid;
  gap: 8px;
  max-width: 168px;
  margin-left: auto;
  text-align: center;
}

.governance-map div {
  position: relative;
  color: var(--ink-soft);
}

.governance-map div:not(:last-child)::after {
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 1px;
  height: 9px;
  background: var(--slate-green);
  content: "";
}

.services {
  background: #fbfaf6;
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.delivery-copy h2,
.pricing-heading h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--section-heading-size);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}

.split-heading h2 {
  max-width: 760px;
}

.section-heading p:last-child:not(.section-label),
.delivery-copy > p:not(.section-label),
.pricing-heading p:not(.section-label) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.service-lane {
  display: grid;
  min-height: 390px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--stone-50);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.service-lane:hover,
.service-lane:focus-within {
  transform: translateY(-3px);
  border-color: rgba(34, 199, 220, 0.34);
  box-shadow: 0 22px 58px rgba(24, 24, 23, 0.09);
}

.primary-lane,
.quiet-lane {
  grid-template-columns: minmax(0, 1fr) minmax(142px, 0.46fr);
  grid-template-rows: auto auto 1fr auto;
  column-gap: 22px;
  align-items: start;
}

.service-lane > p,
.service-lane .feature-list {
  grid-column: 1;
}

.service-lane .lane-top,
.service-lane .text-link {
  grid-column: 1 / -1;
}

.service-lane .mini-artifact {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  margin: 0;
}

.primary-lane {
  box-shadow: 0 18px 60px rgba(24, 24, 23, 0.07);
}

.quiet-lane {
  background: #f3efe6;
  color: rgba(24, 24, 23, 0.86);
}

.lane-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.lane-index {
  display: inline-block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--slate-green-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 540;
  letter-spacing: 0.08em;
}

.quiet-lane .lane-index {
  color: var(--slate-green-dark);
}

.service-lane h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.08;
  font-weight: 520;
}

.service-lane > p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: 14px 0 20px;
  border-top: 1px solid var(--border);
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 430;
}

.feature-list li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  border: 1px solid var(--slate-green);
  background: rgba(109, 147, 140, 0.16);
  content: "";
}

.text-link {
  margin-top: auto;
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(34, 199, 220, 0.7);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease,
    text-underline-offset 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
  text-underline-offset: 8px;
}

.proof-strip {
  background: var(--graphite);
  color: white;
}

.proof-strip-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.proof-strip p {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 520;
}

.tennessee-mark {
  width: 178px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.proof-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-strip li {
  border: 1px solid rgba(236, 244, 242, 0.18);
  border-radius: 6px;
  padding: 8px 10px;
  color: rgba(236, 244, 242, 0.76);
  font-size: 0.86rem;
  font-weight: 480;
}

.delivery {
  background: var(--stone-50);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.delivery-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.example-block {
  margin-top: 34px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.example-block h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 500;
}

.example-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 430;
}

.example-block li {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.example-block li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 0.64em;
  border: 1px solid var(--slate-green-dark);
  content: "";
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.process-list span {
  color: var(--slate-green-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 540;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 510;
}

.process-list p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.use-cases {
  background: #fbfaf6;
  border-top: 1px solid var(--border);
}

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

.case-card {
  min-height: 232px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--stone-50);
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(63, 105, 102, 0.34);
  background: var(--stone-25);
  box-shadow: 0 18px 48px rgba(24, 24, 23, 0.08);
}

.case-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--slate-green-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 540;
  letter-spacing: 0.08em;
}

.case-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  font-weight: 510;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.working-examples {
  background:
    linear-gradient(rgba(151, 232, 238, 0.04) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(90deg, rgba(151, 232, 238, 0.032) 1px, transparent 1px) 0 0 / 30px 30px,
    var(--graphite);
  color: white;
  border-top: 1px solid rgba(236, 244, 242, 0.1);
}

.working-examples .section-label {
  color: var(--cyan-soft);
}

.working-examples h2 {
  color: white;
}

.working-examples .section-heading > p,
.working-examples .split-heading > p {
  color: rgba(236, 244, 242, 0.76);
}

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

.example-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid rgba(236, 244, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 12, 13, 0.58);
  padding: 22px;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.example-card:hover,
.example-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(150, 232, 238, 0.34);
  background: rgba(10, 17, 18, 0.78);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
}

.example-kicker {
  margin: 0 0 14px;
  color: var(--cyan-soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 540;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-card h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 1.26rem;
  font-weight: 540;
  line-height: 1.2;
}

.example-card p:not(.example-kicker) {
  margin: 0;
  color: rgba(236, 244, 242, 0.74);
  font-size: 0.94rem;
  line-height: 1.58;
}

.example-card ul {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: auto 0 22px;
  border-top: 1px solid rgba(236, 244, 242, 0.14);
  list-style: none;
}

.example-card li {
  display: flex;
  gap: 9px;
  color: rgba(236, 244, 242, 0.78);
  font-size: 0.88rem;
  line-height: 1.42;
}

.example-card li::before {
  color: var(--cyan-soft);
  content: "□";
  font-size: 0.78rem;
  line-height: 1.5;
}

.text-link-dark {
  color: white;
  text-decoration-color: rgba(150, 232, 238, 0.52);
}

.text-link-dark:hover,
.text-link-dark:focus-visible {
  color: var(--cyan-soft);
  text-decoration-color: currentColor;
}

.example-disclaimer {
  max-width: 860px;
  margin: 26px 0 0;
  color: rgba(236, 244, 242, 0.58);
  font-size: 0.88rem;
  line-height: 1.65;
}

.pricing {
  background: #fbfaf6;
  border-top: 1px solid var(--border);
}

.pricing-heading {
  max-width: 760px;
}

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

.price-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--stone-50);
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(34, 199, 220, 0.34);
  background: var(--stone-25);
  box-shadow: 0 18px 46px rgba(24, 24, 23, 0.08);
}

.featured-price {
  min-height: 442px;
  transform: translateY(-10px);
  border-color: rgba(150, 232, 238, 0.34);
  background:
    linear-gradient(rgba(151, 232, 238, 0.055) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(151, 232, 238, 0.045) 1px, transparent 1px) 0 0 / 22px 22px,
    var(--graphite-2);
  color: white;
  box-shadow: 0 18px 52px rgba(17, 23, 25, 0.14);
}

.featured-price:hover,
.featured-price:focus-within {
  transform: translateY(-14px);
  border-color: rgba(150, 232, 238, 0.5);
  background:
    linear-gradient(rgba(151, 232, 238, 0.062) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(151, 232, 238, 0.052) 1px, transparent 1px) 0 0 / 22px 22px,
    var(--graphite-2);
  box-shadow: 0 22px 62px rgba(17, 23, 25, 0.17);
}

.price-tag {
  margin: 0 0 14px;
  color: var(--slate-green-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 540;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-price .price-tag {
  color: var(--cyan-soft);
}

.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-weight: 540;
}

.price {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 2.25rem;
  font-weight: 620;
  line-height: 1;
}

.featured-price .price {
  color: var(--cyan);
}

.price span {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 450;
}

.featured-price .price span {
  color: rgba(236, 244, 242, 0.72);
}

.price-card > p:not(.price-tag):not(.price) {
  color: var(--muted);
  line-height: 1.62;
}

.featured-price > p:not(.price-tag):not(.price) {
  color: rgba(236, 244, 242, 0.76);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: auto 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.featured-price ul {
  border-top-color: rgba(236, 244, 242, 0.18);
}

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.45;
}

.featured-price li {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 420;
}

.price-card li::before {
  color: var(--slate-green-dark);
  content: "✓";
  font-weight: 650;
}

.featured-price li::before {
  color: var(--cyan-soft);
}

.final-cta {
  background:
    linear-gradient(rgba(151, 232, 238, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(151, 232, 238, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--graphite);
  color: white;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
}

.final-cta-copy {
  max-width: 760px;
}

.final-cta .section-label,
.final-cta .section-heading {
  color: var(--cyan-soft);
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  color: rgba(236, 244, 242, 0.82);
}

.final-cta-copy > p:not(.section-label) {
  font-size: 1.05rem;
  line-height: 1.65;
}

.final-cta .button-primary {
  background: white;
  color: var(--graphite);
  border-color: white;
  box-shadow: none;
}

.final-cta .button-primary:hover,
.final-cta .button-primary:focus-visible {
  border-color: var(--cyan-soft);
  background: var(--cyan-soft);
  color: #071012;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 26px 0 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(236, 244, 242, 0.16);
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(236, 244, 242, 0.76);
}

.contact-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cyan-soft);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list a {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(24, 174, 232, 0.58);
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease,
    text-underline-offset 160ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--cyan-soft);
  text-decoration-color: currentColor;
  text-underline-offset: 6px;
}

.audit-panel {
  border: 1px solid rgba(236, 244, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 12, 13, 0.72);
  padding: 24px;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.audit-panel:hover,
.audit-panel:focus-within {
  transform: translateY(-3px);
  border-color: rgba(150, 232, 238, 0.3);
  background: rgba(9, 15, 16, 0.82);
}

.audit-panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(236, 244, 242, 0.14);
}

.audit-panel-header p,
.audit-panel-header span {
  margin: 0;
}

.audit-panel-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 620;
}

.audit-panel-header span {
  color: rgba(150, 232, 238, 0.72);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-panel form,
.audit-panel label {
  display: grid;
}

.audit-panel form {
  gap: 16px;
}

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

.audit-panel label {
  gap: 7px;
  color: rgba(236, 244, 242, 0.62);
  font-size: 0.78rem;
  transition: color 160ms ease;
}

.audit-panel label:focus-within {
  color: rgba(150, 232, 238, 0.92);
}

.audit-panel input,
.audit-panel textarea {
  width: 100%;
  border: 1px solid rgba(236, 244, 242, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  font: inherit;
  font-size: 0.95rem;
  padding: 11px 12px;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.audit-panel textarea {
  min-height: 132px;
  resize: vertical;
}

.audit-panel input:focus,
.audit-panel textarea:focus {
  border-color: rgba(24, 174, 232, 0.8);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(24, 174, 232, 0.12);
  outline: none;
}

.audit-panel .button {
  width: 100%;
}

.form-status {
  margin: -2px 0 0;
  color: rgba(236, 244, 242, 0.6);
  font-size: 0.86rem;
}

.site-footer {
  background:
    linear-gradient(rgba(151, 232, 238, 0.035) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(151, 232, 238, 0.025) 1px, transparent 1px) 0 0 / 32px 32px,
    #080c0d;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand-block {
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.footer-brand .wordmark {
  color: white;
}

.footer-brand .mark-ridge,
.footer-brand .mark-tower {
  stroke: var(--cyan);
}

.footer-brand .mark-arc-1 {
  stroke: #ecf0f6;
  opacity: 0.62;
}

.footer-brand .mark-arc-2 {
  stroke: var(--signal-muted);
  opacity: 0.5;
}

.footer-brand .mark-arc-3 {
  stroke: var(--signal-muted);
  opacity: 0.3;
}

.footer-brand .wm-ai {
  color: var(--cyan-soft);
}

.footer-brand-block p {
  margin: 0;
  color: rgba(236, 244, 242, 0.62);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: rgba(236, 244, 242, 0.68);
  font-size: 0.88rem;
}

.footer-links a {
  position: relative;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--cyan-soft);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 1080px) {
  .hero-grid,
  .delivery-grid,
  .enterprise-hero-grid,
  .enterprise-operating-grid,
  .enterprise-review-grid,
  .enterprise-close-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .blueprint {
    max-width: 860px;
  }

  .service-lanes {
    grid-template-columns: 1fr;
  }

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

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

  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .primary-lane,
  .quiet-lane {
    grid-template-columns: 1fr;
  }

  .service-lane .mini-artifact {
    grid-column: 1;
    grid-row: auto;
    margin: 20px 0 18px;
  }

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

  .enterprise-artifact {
    max-width: 820px;
  }

  .featured-price {
    min-height: auto;
    transform: none;
  }

  .featured-price:hover,
  .featured-price:focus-within {
    transform: translateY(-5px);
  }

  .service-lane {
    min-height: auto;
  }

  .flow-stack,
  .governance-map {
    margin-left: 0;
  }

  .delivery-copy {
    position: static;
  }

  .enterprise-operating-copy {
    position: static;
  }

  .messy-grid,
  .fit-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100vw - 28px, 720px);
  }

  body.nav-open .site-header {
    background: var(--stone-50);
  }

  .site-header {
    backdrop-filter: none;
  }

  .section {
    padding: 76px 0;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 60;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px 14px 32px;
    background: var(--stone-50);
    border-top: 1px solid var(--border);
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .nav-menu.is-open {
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition:
      transform 180ms ease,
      visibility 0s;
  }

  .nav-menu > a {
    min-height: 54px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-menu .button {
    width: 100%;
    margin-top: 20px;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(3.05rem, 13vw, 4.65rem);
  }

  .enterprise-hero {
    padding-top: 52px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .workflow-path {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 22px;
  }

  .workflow-path::before {
    display: none;
  }

  .workflow-step {
    display: grid;
    grid-template-columns: 38px 38px 1fr;
    align-items: center;
    gap: 12px;
    min-height: auto;
    text-align: left;
    font-size: 0.82rem;
  }

  .workflow-step::before,
  .workflow-step::after,
  .route-line {
    display: none;
  }

  .workflow-step strong,
  .workflow-step > span:last-child {
    grid-column: 3;
  }

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

  .artifact-main {
    grid-row: auto;
    min-height: auto;
    justify-content: flex-start;
  }

  .artifact-panel {
    min-height: auto;
  }

  .proof-strip-inner,
  .footer-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 28px;
  }

  .proof-strip ul {
    justify-content: flex-start;
  }

  .proof-strip p {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

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

  .example-card {
    min-height: auto;
  }

  .brief-row,
  .enterprise-deliverables article,
  .enterprise-review-list li {
    grid-template-columns: 1fr;
  }

  .messy-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 31px;
    height: 38px;
  }

  .wm-main {
    font-size: 1rem;
  }

  .wm-ai {
    font-size: 0.64rem;
  }

  .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .credibility-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .credibility-list li {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .blueprint {
    padding: 18px;
  }

  .route-line {
    display: none;
  }

  .blueprint-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .artifact-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .example-block ul {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal-item {
    opacity: 1;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
