:root {
  --paper: #F6F8FC;
  --ink: #11182A;
  --ink-soft: #526078;
  --accent: #4F63E9;
  --accent-text: #3548C6;
  --accent-bright: #7080FF;
  --accent-soft: rgba(79, 99, 233, .10);
  --rule: #DDE3EF;
  --field-rule: #77839A;
  --dark: #0B1020;
  --dark-soft: #131B31;
  --dark-rule: #2A3551;
  --teal: #176F7B;
  --teal-bright: #62C3CD;
  --teal-soft: rgba(23, 111, 123, .10);
  --inverse-soft: #AAB5CB;
  --white: #FFFFFF;
  --max: 1120px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
main[id],
section[id] {
  scroll-margin-top: 92px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.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;
}
.mobile-copy { display: none; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 248, 252, .92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(16px);
}
.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-symbol {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, .10);
}
.brand-logo {
  width: 196px;
  height: auto;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand-wordmark strong {
  font-weight: 850;
}
.brand-wordmark span {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover { color: var(--ink); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 120ms ease-out, opacity 120ms ease-out;
}
.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  transition: background 120ms ease-out, border-color 120ms ease-out, transform 120ms ease-out;
}
.btn:hover { transform: translateY(-1px); border-color: var(--accent); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn.is-disabled { opacity: .4; pointer-events: none; }
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn.primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.btn.secondary {
  border-color: rgba(79, 99, 233, .22);
  background: rgba(79, 99, 233, .07);
}

.hero { padding: 88px 0 72px; background: radial-gradient(circle at 78% 12%, rgba(79,99,233,.12), transparent 30%); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 460px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-copy,
.hero-artifact,
.card,
.service-card {
  min-width: 0;
  max-width: 100%;
}
.hero-copy h1,
.hero-copy p,
.section-head h2,
.section-head p {
  overflow-wrap: break-word;
}
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, .10);
}
.eyebrow, .kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
}
.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}
.actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.micro, .contact-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.hero-artifact,
.hero-system {
  width: 100%;
  justify-self: center;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, .08);
}
.hero-system {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background:
    radial-gradient(circle at 18% 16%, rgba(79, 99, 233, .16), transparent 28%),
    linear-gradient(180deg, #FFFFFF, #F6EFE4);
}
.hero-system::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(26, 26, 26, .06);
  border-radius: 12px;
  pointer-events: none;
}
.system-top,
.scope-list,
.signal-grid,
.system-note {
  position: relative;
  z-index: 1;
}
.system-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.system-top span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.system-top strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(79, 99, 233, .26);
  border-radius: 999px;
  background: rgba(79, 99, 233, .10);
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.scope-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 14px;
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: rgba(250, 247, 240, .72);
}
.scope-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--white);
}
.scope-list article > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(31, 111, 107, .10);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}
.scope-list b,
.scope-list p {
  display: block;
}
.scope-list p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}
.signal-grid div,
.radar-card,
.task-stack p,
.system-note {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
}
.signal-grid div {
  padding: 14px;
}
.signal-grid span,
.signal-grid small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
}
.signal-grid span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.signal-grid b {
  display: block;
  margin: 4px 0 2px;
  font-size: 28px;
  line-height: 1;
}
.system-note {
  padding: 16px;
}
.system-note p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
.system-bottom {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 12px;
}
.radar-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.radar-card b,
.radar-card span {
  display: block;
}
.radar-card span {
  max-width: 220px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}
.radar-card ul {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}
.radar-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.25;
}
.radar-card li i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  flex: 0 0 auto;
}
.radar-card li strong {
  color: var(--ink-soft);
  font-weight: 750;
}
.task-stack {
  display: grid;
  gap: 8px;
}
.task-stack p {
  margin: 0;
  padding: 11px 12px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}
.task-stack strong {
  display: block;
  color: var(--accent-text);
}
.artifact-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 13px;
}
.artifact-head strong { color: var(--ink); }
.flow {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  gap: 8px;
  align-items: center;
  margin: 20px 0;
}
.flow div {
  min-height: 80px;
  padding: 12px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--paper);
}
.flow b, .flow span { display: block; }
.flow span { color: var(--ink-soft); font-size: 13px; line-height: 1.4; }
.flow i {
  display: block;
  height: 1px;
  background: var(--rule);
}
.matrix { display: grid; gap: 8px; }
.matrix-card {
  padding: 12px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--paper);
}
.matrix-card.high { border-color: rgba(79, 99, 233, .6); background: rgba(79, 99, 233, .08); }
.matrix-card span, .matrix-card small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
}
.matrix-card b { display: block; margin: 2px 0; }

section { padding: 72px 0; }
.proof-strip {
  padding: 0 0 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.proof-grid article {
  min-height: 152px;
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, .54);
}
.proof-grid span,
.case-summary span,
.case-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}
.proof-grid p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.band { background: var(--paper); border-block: 1px solid var(--rule); }
.dark-band {
  background: var(--dark);
  color: var(--paper);
}
.dark-band p { color: var(--paper); }
.dark-band .kicker { color: #96A3FF; }
.section-head { max-width: 820px; margin-bottom: 32px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 18px; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.signal-list, .deliverables, .trust-cards { display: grid; gap: 12px; }
.card, .service-card, details, .trust-cards article {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, .45);
  padding: 20px;
}
.card p, .service-card p, .service-card li, details p { color: var(--ink-soft); }

.method-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.entry-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, .5);
}
.entry-card.featured {
  border-color: rgba(79, 99, 233, .6);
  background: rgba(79, 99, 233, .08);
}
.entry-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.entry-card p {
  color: var(--ink-soft);
}
.entry-card strong {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.45;
}
.method-map article {
  min-height: 196px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--paper);
  padding: 20px;
}
.method-map span, .route {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.method-map p { color: var(--ink-soft); }

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card.featured {
  border-color: rgba(79, 99, 233, .55);
  background: rgba(79, 99, 233, .08);
}
.service-card h2, .case-card h2, .process-grid h2 { margin-bottom: 10px; font-size: 22px; line-height: 1.25; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-grid .card { min-height: 220px; }
.optional { color: var(--ink-soft); font-weight: 600; }
[aria-current="page"]:not(.btn) { color: var(--ink); text-decoration: underline; text-underline-offset: 6px; }
.service-card ul, .check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.service-card li, .check-list li {
  position: relative;
  padding-left: 22px;
}
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-card li::before, .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}
.check-list.muted li::before { background: var(--accent); }
.deliverable-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 48px;
  align-items: start;
}
.example-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 48px;
  align-items: start;
}
.map-preview {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(26, 26, 26, .08);
}
.preview-row,
.preview-lanes article,
.opportunity-table > div {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(250, 247, 240, .72);
}
.preview-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
}
.preview-head span,
.preview-lanes span,
.opportunity-table span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.preview-head em {
  justify-self: end;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(79, 99, 233, .12);
  color: var(--accent-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.case-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.case-summary article {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(79, 99, 233, .26);
  border-radius: 12px;
  background: rgba(79, 99, 233, .08);
}
.case-summary b {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}
.preview-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.preview-lanes article {
  min-height: 142px;
  padding: 16px;
}
.preview-lanes b,
.preview-lanes small {
  display: block;
}
.preview-lanes b {
  margin: 10px 0 6px;
  line-height: 1.3;
}
.preview-lanes small {
  color: var(--ink-soft);
  font-size: 12px;
}
.opportunity-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.opportunity-table caption {
  position: absolute;
  left: -9999px;
}
.opportunity-table th,
.opportunity-table td {
  padding: 12px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(250, 247, 240, .72);
  text-align: left;
  font-size: 14px;
}
.opportunity-table th:first-child,
.opportunity-table td:first-child {
  border-left: 1px solid var(--rule);
  border-radius: 12px 0 0 12px;
}
.opportunity-table th:last-child,
.opportunity-table td:last-child {
  border-right: 1px solid var(--rule);
  border-radius: 0 12px 12px 0;
}
.opportunity-table thead th {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.case-card {
  min-height: 236px;
}
.case-card span {
  margin-bottom: 12px;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.resource-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, .5);
  transition: border-color 120ms ease-out, transform 120ms ease-out, background 120ms ease-out;
}
.resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 99, 233, .6);
  background: var(--white);
}
.featured-resource {
  border-color: rgba(79, 99, 233, .6);
  background: rgba(79, 99, 233, .08);
}
.resource-card span {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.resource-card p { color: var(--ink-soft); }
.legal a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-page {
  padding: 64px 0 88px;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: start;
}
.legal-content {
  max-width: 820px;
}
.legal-content h1 {
  font-size: clamp(38px, 5vw, 60px);
}
.legal-content h2 {
  margin-top: 40px;
  font-size: 28px;
}
.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 17px;
}
.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}
.legal-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, .5);
}
.legal-aside a {
  color: var(--ink-soft);
  font-weight: 800;
}
.legal-aside a:hover { color: var(--ink); }
.seo-page .hero {
  padding-bottom: 32px;
}
.seo-page .lead {
  max-width: 760px;
}
.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}
.seo-content {
  display: grid;
  gap: 24px;
}
.seo-content article {
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, .5);
}
.seo-content h2 {
  font-size: 30px;
}
.seo-content p,
.seo-content li {
  color: var(--ink-soft);
}
.number-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}
.seo-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--white);
}
.seo-aside p {
  color: var(--ink-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 48px;
  align-items: start;
}
.trust-cards article {
  background: rgba(250, 247, 240, .06);
  border-color: rgba(250, 247, 240, .16);
}
.trust-cards article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border: 1px solid rgba(250, 247, 240, .18);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 900;
}
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.fit-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}
.faq-list { display: grid; gap: 12px; }
summary {
  cursor: pointer;
  font-weight: 800;
}
details p { margin: 12px 0 0; }
.decision-band {
  padding-top: 24px;
}
.decision-box {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 32px;
  align-items: start;
  border: 1px solid rgba(79, 99, 233, .34);
  border-radius: 16px;
  background: rgba(79, 99, 233, .08);
  padding: 32px;
}
.decision-box p {
  color: var(--ink-soft);
}
.decision-list {
  display: grid;
  gap: 12px;
}
.decision-list article {
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, .64);
}
.decision-list span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.decision-list strong {
  display: block;
  line-height: 1.35;
}
.cta-section { padding-top: 24px; }
.cta {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 32px;
  align-items: start;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
  padding: 32px;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.required-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--field-rule);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 10px 12px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 112px;
}
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.privacy-check {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--ink-soft) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}
.privacy-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a,
.contact-note a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
footer {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-meta,
.legal { font-size: 13px; }
.footer-meta a,
.legal a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.mobile-sticky-cta {
  display: none;
}
.mobile-sticky-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-sticky-cta[hidden] { display: none !important; }

/* Motion system */
.nav {
  --scroll-progress: 0;
  transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #7B8BFF, var(--teal));
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  transition: transform 80ms linear;
}
.nav.is-scrolled {
  background: rgba(246, 248, 252, .97);
  border-color: rgba(119, 131, 154, .34);
  box-shadow: 0 14px 40px rgba(17, 24, 42, .08);
}

.home-page .hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.home-page .hero::before,
.home-page .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}
.home-page .hero::before {
  width: clamp(280px, 42vw, 620px);
  aspect-ratio: 1;
  right: -14%;
  top: -42%;
  border: 1px solid rgba(79, 99, 233, .22);
  background: radial-gradient(circle at 35% 35%, rgba(112, 128, 255, .18), rgba(79, 99, 233, .04) 52%, transparent 70%);
  animation: lumus-orbit 14s ease-in-out infinite alternate;
}
.home-page .hero::after {
  width: clamp(180px, 24vw, 360px);
  aspect-ratio: 1;
  left: -9%;
  bottom: -42%;
  background: radial-gradient(circle, rgba(23, 111, 123, .11), transparent 68%);
  animation: lumus-orbit 11s 1.2s ease-in-out infinite alternate-reverse;
}
.home-page .hero-copy > * {
  animation: lumus-rise .86s cubic-bezier(.16, 1, .3, 1) both;
}
.home-page .hero-copy > *:nth-child(1) { animation-delay: 40ms; }
.home-page .hero-copy > *:nth-child(2) { animation-delay: 120ms; }
.home-page .hero-copy > *:nth-child(3) { animation-delay: 200ms; }
.home-page .hero-copy > *:nth-child(4) { animation-delay: 300ms; }
.home-page .hero-copy > *:nth-child(5) { animation-delay: 400ms; }
.home-page .hero-copy > *:nth-child(6) { animation-delay: 480ms; }
.home-page .hero.is-offscreen::before,
.home-page .hero.is-offscreen::after {
  animation-play-state: paused;
}

.integration-marquee {
  position: relative;
  overflow: hidden;
  padding: 72px 0 76px;
  background:
    radial-gradient(circle at 14% 30%, rgba(79, 99, 233, .19), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(23, 111, 123, .16), transparent 26%),
    var(--dark);
  color: var(--white);
}
.integration-marquee .kicker { color: #96A3FF; }
.marquee-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}
.marquee-heading h2 {
  max-width: 880px;
  margin-bottom: 12px;
  color: var(--white);
}
.marquee-heading > div > p:last-child {
  max-width: 720px;
  color: #B8C2D8;
  font-size: 17px;
}
.marquee-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #F4F6FF;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.motion-enabled .marquee-toggle { display: inline-flex; }
.marquee-toggle:hover {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .12);
}
.marquee-toggle:focus-visible {
  outline: 3px solid #AAB4FF;
  outline-offset: 4px;
}
.marquee-window {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: 100%;
}
.motion-enabled .marquee-track {
  width: max-content;
  will-change: transform;
  animation: lumus-marquee 32s linear infinite;
}
.marquee-window:hover .marquee-track { animation-play-state: paused; }
.integration-marquee.is-paused .marquee-track,
.integration-marquee.is-user-paused .marquee-track,
.page-hidden .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  flex: 0 0 auto;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0 14px 0 0;
  list-style: none;
}
.marquee-group[aria-hidden="true"] { display: none; }
.motion-enabled .marquee-group {
  width: auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.motion-enabled .marquee-group[aria-hidden="true"] { display: flex; }
.marquee-group li {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: #F4F6FF;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 760;
  letter-spacing: -.02em;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(.985);
  transition:
    opacity .85s var(--reveal-delay, 0ms) cubic-bezier(.16, 1, .3, 1),
    transform .85s var(--reveal-delay, 0ms) cubic-bezier(.16, 1, .3, 1);
}
.motion-reveal.reveal-left { transform: translate3d(-64px, 0, 0) scale(.985); }
.motion-reveal.reveal-right { transform: translate3d(64px, 0, 0) scale(.985); }
.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.method-viewport {
  position: relative;
  width: 100%;
}
.method-meter { display: none; }

@media (hover: hover) and (pointer: fine) {
  .card,
  .service-card,
  .entry-card,
  .resource-card,
  details,
  .proof-grid article,
  .trust-cards article {
    transition: transform .38s cubic-bezier(.16, 1, .3, 1), box-shadow .38s ease, border-color .38s ease, background-color .38s ease;
  }
  .card:hover,
  .service-card:hover,
  .entry-card:hover,
  .resource-card:hover,
  details:hover,
  .proof-grid article:hover,
  .trust-cards article:hover {
    transform: translateY(-7px);
    border-color: rgba(79, 99, 233, .42);
    box-shadow: 0 22px 58px rgba(17, 24, 42, .11);
    background-color: rgba(255, 255, 255, .82);
  }
  .btn { transition-duration: .28s; }
  .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(79, 99, 233, .2); }
}

@media (min-width: 1025px) and (min-height: 720px) {
  .motion-enabled .method-scroll {
    position: relative;
    min-height: 270vh;
    padding: 0;
    overflow: clip;
  }
  .motion-enabled .method-sticky {
    position: sticky;
    top: 76px;
    display: flex;
    min-height: calc(100vh - 76px);
    flex-direction: column;
    justify-content: center;
    padding: 48px 0 54px;
  }
  .motion-enabled .method-sticky .section-head {
    max-width: 760px;
    margin: 0 0 18px;
    text-align: left;
  }
  .motion-enabled .method-viewport {
    overflow: hidden;
    margin-inline: -2px;
    padding: 18px 2px 30px;
  }
  .motion-enabled .method-map {
    display: flex;
    width: max-content;
    gap: 18px;
    will-change: transform;
  }
  .motion-enabled .method-map article {
    position: relative;
    flex: 0 0 clamp(300px, 30vw, 370px);
    min-height: 280px;
    padding: 28px;
    overflow: hidden;
    border-color: rgba(119, 131, 154, .34);
    background:
      linear-gradient(145deg, rgba(255,255,255,.92), rgba(238,242,251,.82));
    box-shadow: 0 18px 50px rgba(17, 24, 42, .08);
  }
  .motion-enabled .method-map article::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -58px;
    width: 150px;
    aspect-ratio: 1;
    border: 1px solid rgba(79, 99, 233, .16);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 99, 233, .08), transparent 68%);
  }
  .motion-enabled .method-map article span {
    font-size: 14px;
  }
  .motion-enabled .method-map article h3 {
    max-width: 260px;
    margin-top: 18px;
    font-size: 29px;
    letter-spacing: -.025em;
  }
  .motion-enabled .method-map article p {
    max-width: 285px;
    margin-top: 18px;
    font-size: 16px;
  }
  .motion-enabled .method-map article {
    transform: scale(.94);
    transition: transform .42s cubic-bezier(.16, 1, .3, 1), border-color .42s ease, box-shadow .42s ease;
  }
  .motion-enabled .method-map article.is-current {
    transform: scale(1);
    border-color: rgba(79, 99, 233, .64);
    box-shadow: 0 24px 64px rgba(17, 24, 42, .14);
  }
  .motion-enabled .method-meter {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .motion-enabled .method-meter-line {
    position: relative;
    display: block;
    width: min(360px, 42vw);
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(119, 131, 154, .22);
  }
  .motion-enabled .method-meter-line i {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    transform: scaleX(var(--method-progress, 0));
    transform-origin: left center;
  }
}

@keyframes lumus-rise {
  from { opacity: 0; transform: translate3d(0, 34px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes lumus-orbit {
  from { transform: translate3d(-12px, -8px, 0) scale(.96); }
  to { transform: translate3d(24px, 18px, 0) scale(1.06); }
}
@keyframes lumus-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 1024px) {
  .hero-grid, .split, .deliverable-grid, .example-grid, .trust-grid, .seo-layout, .legal-layout {
    grid-template-columns: 1fr;
  }
  .scenario-grid, .method-map, .resource-grid, .entry-grid, .proof-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-aside, .legal-aside { position: static; }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }
  main[id],
  section[id] {
    scroll-margin-top: 80px;
  }
  .nav-inner { min-height: 68px; }
  .brand-symbol { width: 34px; height: 34px; }
  .brand-logo { width: 156px; }
  .brand-wordmark { font-size: 16px; }
  .brand-wordmark span { font-size: 13px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 68px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--rule);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(26, 26, 26, .12);
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px 8px; }
  .nav-links .btn { width: 100%; }
  .hero { padding: 40px 0 44px; }
  .marquee-heading {
    display: grid;
    align-items: start;
    gap: 20px;
  }
  .marquee-toggle { justify-self: start; }
  .motion-reveal.reveal-left,
  .motion-reveal.reveal-right {
    transform: translate3d(0, 32px, 0) scale(.985);
  }
  .motion-reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
  .hero-grid { gap: 24px; }
  h1 { font-size: 30px; line-height: 1.12; }
  h2 { font-size: 28px; line-height: 1.14; }
  .lead { font-size: 18px; }
  .actions, .cta-actions, .inline-actions, .form-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; }
  .services, .scenario-grid, .method-map, .resource-grid, .entry-grid, .proof-grid, .process-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow i { height: 16px; width: 1px; margin: 0 auto; }
  .eyebrow {
    line-height: 1.4;
    overflow-wrap: anywhere;
  }
  .desktop-copy { display: none; }
  .mobile-copy { display: inline; }
  .artifact-head {
    display: grid;
    gap: 4px;
  }
  .hero-system {
    min-height: 0;
    padding: 14px;
  }
  .system-top {
    display: grid;
    gap: 10px;
  }
  .status-chip {
    width: max-content;
    max-width: 100%;
    white-space: normal;
  }
  .scope-list {
    gap: 8px;
    padding: 12px;
  }
  .scope-list article { padding: 10px; }
  .scope-list p { font-size: 12px; }
  .signal-grid small {
    display: none;
  }
  .signal-grid {
    grid-template-columns: 1fr;
  }
  .radar-card {
    min-height: 136px;
  }
  .method-map, .entry-grid, .services, .scenario-grid, .resource-grid, .fit, .cta, .proof-grid, .case-summary, .decision-box {
    grid-template-columns: 1fr;
  }
  .preview-head,
  .preview-lanes {
    grid-template-columns: 1fr;
  }
  .opportunity-table,
  .opportunity-table thead,
  .opportunity-table tbody,
  .opportunity-table tr,
  .opportunity-table th,
  .opportunity-table td {
    display: block;
  }
  .opportunity-table thead {
    position: absolute;
    left: -9999px;
  }
  .opportunity-table tr {
    margin-bottom: 8px;
    padding: 12px;
    border: 1px solid var(--rule);
    border-radius: 12px;
    background: rgba(250, 247, 240, .72);
  }
  .opportunity-table th,
  .opportunity-table td,
  .opportunity-table th:first-child,
  .opportunity-table td:first-child,
  .opportunity-table th:last-child,
  .opportunity-table td:last-child {
    padding: 4px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .opportunity-table td::before {
    content: attr(data-label) ": ";
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .preview-head em {
    justify-self: start;
  }
  .map-preview {
    padding: 16px;
  }
  section { padding: 56px 0; }
  .cta { padding: 24px; }
  .home-page {
    padding-bottom: 72px;
  }
  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 16px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(26, 26, 26, .18);
    font-weight: 900;
  }
}

@media (max-width: 360px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  h1 { font-size: 27px; }
  .lead { font-size: 16px; }
  .btn,
  .mobile-sticky-cta {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    animation-duration: .01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .motion-reveal,
  .motion-reveal.reveal-left,
  .motion-reveal.reveal-right {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .marquee-window {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .marquee-track { width: 100%; }
  .marquee-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
  }
  .marquee-group[aria-hidden="true"] { display: none; }
  .marquee-toggle { display: none; }
}

@media print {
  .motion-reveal,
  .motion-reveal.reveal-left,
  .motion-reveal.reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .method-scroll {
    min-height: auto !important;
    overflow: visible !important;
  }
  .method-sticky {
    position: static !important;
    min-height: auto !important;
  }
  .method-viewport { overflow: visible !important; }
  .method-map {
    display: grid !important;
    width: auto !important;
    transform: none !important;
  }
  .method-map article { transform: none !important; }
  .method-meter,
  .marquee-toggle,
  .marquee-group[aria-hidden="true"] { display: none !important; }
  .marquee-window {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .marquee-track {
    width: 100%;
    animation: none !important;
  }
  .marquee-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Home: focused commercial narrative */
.home-page .hero {
  display: flex;
  min-height: min(820px, calc(100svh - 76px));
  align-items: center;
  padding: clamp(88px, 10vw, 132px) 0;
  background:
    linear-gradient(115deg, rgba(246, 248, 252, .96), rgba(246, 248, 252, .76)),
    radial-gradient(circle at 82% 20%, rgba(79, 99, 233, .2), transparent 34%);
}
.hero-stage {
  position: relative;
}
.hero-stage .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}
.home-page .hero-stage h1 {
  max-width: 1080px;
  margin-bottom: 28px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.045em;
}
.home-page .hero-stage .lead {
  max-width: 790px;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}
.home-page .hero-stage .btn {
  min-height: 50px;
  padding-inline: 22px;
}
.home-page .hero-stage .micro {
  margin-top: 18px;
}

.home-page .integration-marquee {
  padding: 58px 0 54px;
}
.home-page .marquee-heading {
  margin-bottom: 28px;
}
.home-page .marquee-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 50px);
}
.motion-enabled.home-page .marquee-track {
  animation-duration: 76s;
}
.home-page .marquee-group {
  gap: 16px;
  padding-right: 16px;
}
.home-page .marquee-group li.tool-card {
  gap: 13px;
  min-width: 210px;
  min-height: 74px;
  padding: 10px 20px 10px 11px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .075);
  font-size: 18px;
  font-weight: 790;
}
.tool-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(17, 20, 24, .08);
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
}
.tool-mark img {
  display: block;
  width: 30px;
  height: 30px;
}
.platform-note {
  margin-top: 24px;
  color: #909CB3;
  font-size: 12px;
  line-height: 1.5;
}

.compact-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.outcome-list {
  border-top: 1px solid var(--rule);
}
.outcome-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.15fr) minmax(220px, .75fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .35s cubic-bezier(.16, 1, .3, 1), border-color .35s ease;
}
.outcome-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(79, 99, 233, .25);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}
.outcome-list h3 {
  margin-bottom: 7px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -.025em;
}
.outcome-list p {
  margin: 0;
  color: var(--ink-soft);
}
.outcome-list strong {
  color: var(--teal);
  font-size: 15px;
  line-height: 1.5;
}

.services-short {
  grid-template-columns: repeat(3, 1fr);
}
.services-short .service-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(241, 244, 251, .72));
}
.services-short .service-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -62px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(79, 99, 233, .13);
  border-radius: 50%;
}
.services-short .service-card h3 {
  max-width: 280px;
  margin: 24px 0 14px;
  font-size: clamp(23px, 2.3vw, 29px);
  letter-spacing: -.025em;
}
.services-short .service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}
.section-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.section-link-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.section-link-row .text-link {
  flex: 0 0 auto;
  margin-top: 0;
}

.home-page .method-map {
  grid-template-columns: repeat(4, 1fr);
}
.method-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 4px;
}
.method-footer > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.home-page .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.footer-links {
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 18px 0;
  border-block: 1px solid var(--rule);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}
.footer-links a:hover {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .outcome-list article:hover {
    padding-left: 10px;
    border-color: rgba(79, 99, 233, .45);
  }
}

@media (min-width: 1025px) and (min-height: 720px) {
  .motion-enabled .method-scroll {
    min-height: 190vh;
  }
  .motion-enabled .method-map article {
    min-height: 250px;
  }
  .motion-enabled .method-footer .method-meter {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .home-page .hero {
    min-height: auto;
    padding: 88px 0;
  }
  .home-page .hero-stage h1 {
    max-width: 900px;
    font-size: clamp(48px, 8vw, 72px);
  }
  .outcome-list article {
    grid-template-columns: 48px 1fr;
  }
  .outcome-list strong {
    grid-column: 2;
  }
  .services-short {
    grid-template-columns: 1fr;
  }
  .home-page .method-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-short .service-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .home-page .hero {
    padding: 56px 0 64px;
  }
  .home-page .hero-stage h1 {
    font-size: clamp(38px, 11.8vw, 52px);
    line-height: 1.01;
    letter-spacing: -.04em;
  }
  .home-page .hero-stage .lead {
    font-size: 18px;
    line-height: 1.55;
  }
  .home-page .integration-marquee {
    padding: 48px 0;
  }
  .home-page .marquee-group li.tool-card {
    min-width: 174px;
    min-height: 66px;
    padding: 9px 15px 9px 9px;
    font-size: 16px;
  }
  .tool-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .tool-mark img {
    width: 27px;
    height: 27px;
  }
  .platform-note {
    margin-top: 20px;
  }
  .compact-head {
    margin-bottom: 28px;
  }
  .outcome-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .outcome-list article > span {
    width: 36px;
    height: 36px;
  }
  .outcome-list strong {
    grid-column: 1 / -1;
    padding-left: 56px;
  }
  .services-short .service-card {
    padding: 24px;
  }
  .home-page .method-map {
    grid-template-columns: 1fr;
  }
  .section-link-row,
  .method-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .method-footer > p {
    line-height: 1.6;
  }
  .home-page .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .marquee-group {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 210px));
  }
  .home-page .marquee-group[aria-hidden="true"] {
    display: none;
  }
  .home-page .marquee-group li.tool-card {
    min-width: 0;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .home-page .marquee-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media print {
  .home-page .hero {
    min-height: auto;
  }
}

/* Brand v6 and process-led direction */
.brand-logo {
  width: 184px;
  height: auto;
  aspect-ratio: 40 / 9;
}
.footer-logo {
  width: 190px;
  height: auto;
  aspect-ratio: 40 / 9;
}
.brand-symbol {
  box-shadow: 0 10px 26px rgba(17, 24, 42, .14);
}
.brand-wordmark {
  gap: 5px;
  letter-spacing: -.035em;
}
.brand-wordmark strong {
  font-weight: 850;
}
.brand-wordmark span {
  letter-spacing: -.02em;
}
h1,
h2 {
  letter-spacing: -.04em;
}
h3 {
  letter-spacing: -.02em;
}

.home-page .hero {
  min-height: auto;
  padding: clamp(76px, 8vw, 108px) 0 72px;
  background:
    radial-gradient(circle at 86% 14%, rgba(79, 99, 233, .16), transparent 34%),
    linear-gradient(180deg, #FBFCFF 0%, var(--paper) 100%);
}
.home-page .hero::before {
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background-image:
    linear-gradient(rgba(79, 99, 233, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 99, 233, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 48%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 48%, #000 100%);
  animation: none;
  filter: none;
}
.home-page .hero::after {
  width: clamp(240px, 34vw, 520px);
  right: -10%;
  left: auto;
  top: 6%;
  bottom: auto;
  background: radial-gradient(circle, rgba(23, 111, 123, .09), transparent 68%);
  animation: none;
  filter: none;
}
.hero-stage .hero-copy {
  max-width: 990px;
}
.home-page .hero-stage h1 {
  max-width: 990px;
  margin-bottom: 26px;
  font-size: clamp(52px, 7.2vw, 86px);
  line-height: .98;
}
.home-page .hero-stage .lead {
  max-width: 800px;
}

.hero-flow {
  position: relative;
  margin: clamp(48px, 6vw, 72px) 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(119, 131, 154, .32);
}
.hero-flow figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.hero-flow figcaption span,
.flow-result span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-flow figcaption strong {
  max-width: 620px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.35;
  text-align: right;
}
.flow-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-rail li {
  position: relative;
  min-height: 126px;
  padding: 22px 18px 18px 38px;
  border: 1px solid rgba(119, 131, 154, .30);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 38px rgba(17, 24, 42, .07);
}
.flow-rail li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 100%;
  top: 38px;
  width: 23px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transform-origin: left center;
}
.flow-port {
  position: absolute;
  left: 17px;
  top: 27px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.flow-rail small,
.flow-rail strong,
.flow-rail p {
  display: block;
}
.flow-rail small {
  margin-bottom: 12px;
  color: var(--accent-text);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.flow-rail strong {
  font-size: 17px;
  line-height: 1.3;
}
.flow-rail p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}
.flow-result {
  display: grid;
  grid-template-columns: auto auto minmax(240px, 1fr);
  gap: 14px 22px;
  align-items: center;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--white);
}
.flow-result span {
  color: var(--teal-bright);
}
.flow-result strong {
  font-size: 14px;
}
.flow-result small {
  justify-self: end;
  color: var(--inverse-soft);
  font-size: 11px;
  line-height: 1.45;
  text-align: right;
}
.hero-flow.is-primed .flow-rail li {
  opacity: .38;
  transform: translate3d(0, 10px, 0);
}
.hero-flow.is-primed .flow-rail li::after {
  transform: scaleX(0);
}
.hero-flow.is-primed .flow-port {
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(79, 99, 233, .08);
}
.hero-flow.is-running .flow-rail li {
  animation: lumus-flow-node .7s cubic-bezier(.16, 1, .3, 1) both;
}
.hero-flow.is-running .flow-rail li::after {
  animation: lumus-flow-line .5s cubic-bezier(.16, 1, .3, 1) both;
}
.hero-flow.is-running .flow-port {
  animation: lumus-flow-port .5s ease-out both;
}
.hero-flow.is-running .flow-rail li:nth-child(1),
.hero-flow.is-running .flow-rail li:nth-child(1)::after,
.hero-flow.is-running .flow-rail li:nth-child(1) .flow-port { animation-delay: 120ms; }
.hero-flow.is-running .flow-rail li:nth-child(2),
.hero-flow.is-running .flow-rail li:nth-child(2)::after,
.hero-flow.is-running .flow-rail li:nth-child(2) .flow-port { animation-delay: 620ms; }
.hero-flow.is-running .flow-rail li:nth-child(3),
.hero-flow.is-running .flow-rail li:nth-child(3)::after,
.hero-flow.is-running .flow-rail li:nth-child(3) .flow-port { animation-delay: 1120ms; }
.hero-flow.is-running .flow-rail li:nth-child(4),
.hero-flow.is-running .flow-rail li:nth-child(4) .flow-port { animation-delay: 1620ms; }

.process-showcase {
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.process-showcase .compact-head {
  max-width: 850px;
}
.process-explorer {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 22px 62px rgba(17, 24, 42, .08);
}
.no-js .process-explorer {
  grid-template-columns: 1fr;
}
.no-js .process-tabs {
  display: none;
}
.no-js .process-panels {
  display: grid;
}
.no-js .process-panel {
  border-bottom: 1px solid var(--rule);
}
.no-js .process-panel:last-child {
  border-bottom: 0;
}
.js .process-panel:not(.is-active) {
  display: none;
}
.process-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
  background: #F1F4FA;
}
.process-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.process-tabs button:last-child {
  border-bottom: 0;
}
.process-tabs button span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(79, 99, 233, .24);
  border-radius: 50%;
  color: var(--accent-text);
  font-size: 10px;
}
.process-tabs button[aria-selected="true"] {
  background: var(--dark);
  color: var(--white);
}
.process-tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-bright), var(--teal-bright));
}
.process-tabs button[aria-selected="true"] span {
  border-color: rgba(255,255,255,.30);
  color: var(--teal-bright);
}
.process-tabs button:focus-visible {
  z-index: 1;
  outline: 3px solid var(--accent);
  outline-offset: -5px;
}
.process-panels {
  min-width: 0;
  background:
    linear-gradient(rgba(79, 99, 233, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 99, 233, .035) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}
.process-panel {
  display: grid;
  grid-template-columns: minmax(230px, .74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  min-height: 410px;
  padding: clamp(28px, 5vw, 50px);
}
.process-panel[hidden] {
  display: none;
}
.process-panel.is-entering {
  animation: lumus-panel-in .5s cubic-bezier(.16, 1, .3, 1) both;
}
.process-brief > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.process-brief h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}
.process-brief p {
  color: var(--ink-soft);
  font-size: 15px;
}
.process-brief > strong {
  display: block;
  margin-top: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--teal);
  color: var(--teal);
  font-size: 14px;
  line-height: 1.5;
}
.process-pipeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-pipeline li {
  position: relative;
  min-height: 128px;
  padding: 22px 18px 16px;
  border: 1px solid rgba(119, 131, 154, .30);
  border-radius: 14px;
  background: rgba(246, 248, 252, .92);
}
.process-pipeline li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 18px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.process-pipeline small,
.process-pipeline b,
.process-pipeline span {
  display: block;
}
.process-pipeline small {
  color: var(--accent-text);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.process-pipeline b {
  margin: 11px 0 5px;
  font-size: 15px;
  line-height: 1.3;
}
.process-pipeline span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.capability-section {
  background: var(--paper);
}
.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: clamp(44px, 7vw, 82px);
  align-items: center;
}
.capability-copy h2 {
  max-width: 620px;
}
.capability-lead {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 18px;
}
.capability-stages {
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}
.capability-stages article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.capability-stages article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(79, 99, 233, .26);
  border-radius: 50%;
  color: var(--accent-text);
  font-size: 10px;
  font-weight: 850;
}
.capability-stages h3 {
  margin-bottom: 6px;
  font-size: 20px;
}
.capability-stages p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.deliverable-window {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--dark-rule);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 99, 233, .22), transparent 34%),
    var(--dark);
  color: var(--white);
  box-shadow: 0 28px 72px rgba(11, 16, 32, .22);
}
.deliverable-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.deliverable-head,
.deliverable-window ol,
.deliverable-window > p {
  position: relative;
  z-index: 1;
}
.deliverable-head {
  display: grid;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.deliverable-head span {
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.deliverable-head strong {
  font-size: 22px;
  line-height: 1.25;
}
.deliverable-window ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.deliverable-window li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.deliverable-window li > span {
  color: var(--accent-bright);
  font-size: 10px;
  font-weight: 850;
}
.deliverable-window li strong,
.deliverable-window li small {
  display: block;
}
.deliverable-window li strong {
  font-size: 15px;
}
.deliverable-window li small {
  margin-top: 3px;
  color: var(--inverse-soft);
  font-size: 11px;
  line-height: 1.4;
}
.deliverable-window li i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(98, 195, 205, .42);
  border-radius: 50%;
  color: var(--teal-bright);
  font-size: 11px;
  font-style: normal;
}
.deliverable-window li i::before {
  content: "✓";
}
.deliverable-window > p {
  margin: 18px 0 0;
  color: var(--inverse-soft);
  font-size: 11px;
  line-height: 1.5;
}

footer {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  border-top-color: var(--dark-rule);
  background: var(--dark);
  color: var(--inverse-soft);
}
footer::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(112, 128, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 99, 233, .10), transparent 68%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
}
.footer-brand .brand-wordmark {
  color: var(--white);
}
.footer-brand .brand-wordmark span {
  color: var(--inverse-soft);
}
.footer-links {
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.footer-meta a,
.legal a,
footer a:hover {
  color: var(--white);
}

@keyframes lumus-flow-node {
  from { opacity: .38; transform: translate3d(0, 10px, 0); border-color: rgba(119, 131, 154, .22); }
  to { opacity: 1; transform: translate3d(0, 0, 0); border-color: rgba(79, 99, 233, .34); }
}
@keyframes lumus-flow-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes lumus-flow-line-y {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes lumus-flow-port {
  0% { background: var(--paper); box-shadow: 0 0 0 4px rgba(79, 99, 233, .08); }
  65% { background: var(--accent); box-shadow: 0 0 0 8px rgba(79, 99, 233, .10); }
  100% { background: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
}
@keyframes lumus-panel-in {
  from { opacity: 0; transform: translate3d(18px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 1024px) {
  .flow-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-rail li:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .flow-rail li:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }
  .flow-rail li:nth-child(2)::after {
    display: block;
    left: 17px;
    top: 100%;
    width: 2px;
    height: 22px;
    background: linear-gradient(180deg, var(--accent), var(--teal));
    transform-origin: top center;
  }
  .hero-flow.is-running .flow-rail li:nth-child(2)::after {
    animation-name: lumus-flow-line-y;
  }
  .flow-rail li:nth-child(3)::after {
    left: auto;
    right: 100%;
    background: linear-gradient(270deg, var(--accent), var(--teal));
    transform-origin: right center;
  }
  .flow-rail li:nth-child(4)::after {
    display: none;
  }
  .process-explorer {
    grid-template-columns: 1fr;
  }
  .process-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .process-tabs button {
    grid-template-columns: 30px 1fr;
    border-right: 1px solid var(--rule);
    border-bottom: 0;
  }
  .process-tabs button:last-child {
    border-right: 0;
  }
  .process-tabs button[aria-selected="true"]::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
  }
  .capability-layout {
    grid-template-columns: 1fr;
  }
  .deliverable-window {
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .home-page .hero {
    padding: 58px 0 54px;
  }
  .home-page .hero-stage h1 {
    font-size: clamp(40px, 11.5vw, 52px);
  }
  .hero-flow {
    margin-top: 42px;
    padding-top: 22px;
  }
  .hero-flow figcaption {
    display: grid;
    gap: 7px;
  }
  .hero-flow figcaption strong {
    text-align: left;
  }
  .flow-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .flow-rail li {
    min-height: 116px;
    padding: 17px 12px 15px 36px;
  }
  .flow-rail li:not(:last-child)::after {
    width: 15px;
  }
  .flow-rail li:nth-child(2)::after {
    left: 15px;
    width: 2px;
    height: 14px;
  }
  .flow-rail li:nth-child(3)::after {
    right: 100%;
    width: 15px;
  }
  .flow-port {
    left: 15px;
    top: 22px;
  }
  .flow-result {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px;
  }
  .flow-result small {
    justify-self: start;
    text-align: left;
  }
  .process-tabs button {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 7px;
    min-height: 86px;
    padding: 12px 8px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
  }
  .process-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 24px;
  }
  .process-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-pipeline li {
    min-height: 0;
    padding: 18px;
  }
  .capability-layout {
    gap: 42px;
  }
  .deliverable-window {
    padding: 22px;
    border-radius: 18px;
  }
  .footer-logo {
    width: 174px;
  }
  footer {
    padding: 46px 0 104px;
  }
}

@media (max-width: 420px) {
  .process-tabs button {
    min-width: 0;
    font-size: 11px;
  }
}

@media (max-width: 340px) {
  .process-pipeline {
    grid-template-columns: 1fr;
  }
  .flow-rail {
    grid-template-columns: 1fr;
  }
  .flow-rail li:nth-child(3),
  .flow-rail li:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .flow-rail li {
    min-height: 0;
    padding-left: 42px;
  }
  .flow-rail li:nth-child(2)::after,
  .flow-rail li:nth-child(4)::after,
  .flow-rail li:not(:last-child)::after {
    display: block;
    left: 24px;
    right: auto;
    top: 100%;
    width: 2px;
    height: 15px;
    background: linear-gradient(180deg, var(--accent), var(--teal));
    transform-origin: top center;
  }
  .flow-rail li:last-child::after {
    display: none;
  }
  .hero-flow.is-running .flow-rail li:not(:last-child)::after {
    animation-name: lumus-flow-line-y;
  }
  .flow-port {
    left: 20px;
  }
}

@media (max-width: 320px) and (prefers-reduced-motion: reduce) {
  .home-page .marquee-group {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-flow.is-primed .flow-rail li,
  .hero-flow.is-running .flow-rail li {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .hero-flow.is-primed .flow-rail li::after,
  .hero-flow.is-running .flow-rail li::after {
    transform: none;
    animation: none !important;
  }
  .hero-flow.is-primed .flow-port,
  .hero-flow.is-running .flow-port {
    background: var(--teal);
    box-shadow: 0 0 0 4px var(--teal-soft);
    animation: none !important;
  }
  .process-panel.is-entering {
    animation: none !important;
  }
}

/* Editorial system for core interior pages */
:is(.services-page, .solutions-page, .methodology-page, .about-page, .contact-page) > main > .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 104px) 0 74px;
  background:
    radial-gradient(circle at 88% 12%, rgba(79, 99, 233, .15), transparent 34%),
    linear-gradient(180deg, #FBFCFF, var(--paper));
}
:is(.services-page, .solutions-page, .methodology-page, .about-page, .contact-page) > main > .hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 99, 233, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 99, 233, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 68%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 68%, #000 100%);
}
:is(.services-page, .solutions-page, .methodology-page, .about-page, .contact-page) > main > .hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: .99;
}
:is(.services-page, .solutions-page, .methodology-page, .about-page, .contact-page) > main > .hero .lead {
  max-width: 790px;
}

.services-page .services {
  display: block;
  border-top: 1px solid var(--rule);
}
.services-page .service-card,
.services-page .service-card.featured {
  display: grid;
  grid-template-columns: 142px minmax(250px, .78fr) minmax(300px, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 10px clamp(28px, 5vw, 64px);
  min-height: 0;
  padding: 34px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
}
.services-page .service-card .route {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: start;
  margin: 0;
  color: var(--teal);
  font-size: 11px;
}
.services-page .service-card h2 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
}
.services-page .service-card > p {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin: 4px 0 0;
  font-size: 15px;
}
.services-page .service-card ul {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
}
.services-page .service-card .text-link {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: start;
}

.solutions-page .scenario-grid {
  display: block;
  border-top: 1px solid var(--rule);
}
.solutions-page .case-card {
  display: grid;
  grid-template-columns: 142px minmax(280px, .82fr) minmax(0, 1fr);
  gap: 28px clamp(28px, 5vw, 64px);
  align-items: start;
  min-height: 0;
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
}
.solutions-page .case-card > span {
  grid-column: 1;
  margin: 5px 0 0;
  color: var(--teal);
  font-size: 11px;
}
.solutions-page .scenario-copy {
  grid-column: 2;
}
.solutions-page .scenario-copy h2 {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 30px);
  line-height: 1.15;
}
.solutions-page .scenario-copy p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.scenario-flow {
  position: relative;
  display: grid;
  grid-column: 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 21px 16px 16px;
  border: 1px solid rgba(119, 131, 154, .28);
  border-radius: 14px;
  background:
    linear-gradient(rgba(79, 99, 233, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 99, 233, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  list-style: none;
}
.scenario-flow::before {
  content: "";
  position: absolute;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  top: 25px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  opacity: .5;
}
.scenario-flow li {
  position: relative;
  z-index: 1;
  padding-top: 18px;
}
.scenario-flow li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.scenario-flow small,
.scenario-flow strong {
  display: block;
}
.scenario-flow small {
  color: var(--accent-text);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scenario-flow strong {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.35;
}

.methodology-page .process-grid {
  display: block;
  max-width: 1020px;
  border-top: 1px solid var(--rule);
}
.methodology-page .process-grid .card {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(250px, .7fr) minmax(0, 1fr);
  gap: 26px 38px;
  align-items: start;
  min-height: 0;
  padding: 29px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
}
.methodology-page .process-grid .card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 68px;
  bottom: -1px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--teal));
  opacity: .34;
}
.methodology-page .process-grid .route {
  display: grid;
  grid-column: 1;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(79, 99, 233, .30);
  border-radius: 50%;
  background: var(--paper);
  color: var(--accent-text);
}
.methodology-page .process-grid h3 {
  grid-column: 2;
  margin: 7px 0 0;
  font-size: clamp(23px, 2.5vw, 30px);
}
.methodology-page .process-grid p {
  grid-column: 3;
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.about-page .trust-grid {
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
  gap: clamp(46px, 7vw, 88px);
}
.about-page .trust-cards {
  border-top: 1px solid var(--rule);
}
.about-page .trust-cards article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 4px 18px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
}
.about-page .trust-cards article > span {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  margin: 0;
  border-color: rgba(79, 99, 233, .28);
  border-radius: 50%;
  color: var(--accent-text);
}
.about-page .trust-cards h3 {
  margin: 0;
  font-size: 21px;
}
.about-page .trust-cards p {
  margin: 2px 0 0;
}
.about-page .band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  border-color: var(--dark-rule);
  background: var(--dark);
  color: var(--white);
}
.about-page .band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(112, 128, 255, .20);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 99, 233, .12), transparent 68%);
}
.about-page .band .section-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 0;
}
.about-page .band .kicker {
  color: var(--teal-bright);
}
.about-page .band p {
  color: var(--inverse-soft);
}
.about-page .band .btn {
  margin-top: 12px;
}

.contact-page .cta-section {
  padding: 32px 0 96px;
}
.contact-page .cta {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 26px 72px rgba(17, 24, 42, .11);
}
.contact-page .cta > div {
  position: relative;
  padding: 40px;
  border: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 99, 233, .22), transparent 38%),
    var(--dark);
  color: var(--white);
}
.contact-page .cta > div::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -114px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(112, 128, 255, .18);
  border-radius: 50%;
  pointer-events: none;
}
.contact-page .cta > div h2 {
  color: var(--white);
}
.contact-page .cta > div .check-list li,
.contact-page .cta > div .contact-note {
  color: var(--inverse-soft);
}
.contact-page .cta > div .check-list li::before {
  background: var(--teal-bright);
}
.contact-page .cta > div .contact-note a {
  color: var(--white);
}
.contact-page .contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
  padding: 40px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}
.contact-page .contact-form > .required-note,
.contact-page .contact-form > .hidden-field,
.contact-page .contact-form > label:nth-of-type(n + 5),
.contact-page .contact-form > button {
  grid-column: 1 / -1;
}
.contact-page .contact-form input,
.contact-page .contact-form select {
  min-height: 48px;
}
.contact-page .contact-form textarea {
  min-height: 140px;
}
.contact-page .contact-form input[type="checkbox"] {
  min-height: 0;
  accent-color: var(--accent);
}

:is(.services-page, .solutions-page, .methodology-page) .decision-box {
  align-items: center;
  padding: 42px;
  border-color: var(--dark-rule);
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 99, 233, .22), transparent 34%),
    var(--dark);
  color: var(--white);
}
:is(.services-page, .solutions-page, .methodology-page) .decision-box .kicker {
  color: var(--teal-bright);
}
:is(.services-page, .solutions-page, .methodology-page) .decision-box p {
  color: var(--inverse-soft);
}

@media (hover: hover) and (pointer: fine) {
  .services-page .service-card:hover,
  .solutions-page .case-card:hover,
  .methodology-page .process-grid .card:hover,
  .about-page .trust-cards article:hover {
    transform: none;
    border-color: rgba(79, 99, 233, .45);
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 1024px) {
  .services-page .service-card,
  .services-page .service-card.featured {
    grid-template-columns: 116px minmax(0, 1fr);
  }
  .services-page .service-card .route {
    grid-column: 1;
    grid-row: 1 / span 5;
  }
  .services-page .service-card h2,
  .services-page .service-card > p,
  .services-page .service-card ul,
  .services-page .service-card .text-link {
    grid-column: 2;
    grid-row: auto;
  }
  .solutions-page .case-card {
    grid-template-columns: 116px minmax(0, 1fr);
  }
  .solutions-page .scenario-flow {
    grid-column: 2;
  }
  .about-page .trust-grid,
  .contact-page .cta {
    grid-template-columns: 1fr;
  }
  .contact-page .cta > div {
    position: static;
  }
}

@media (max-width: 767px) {
  :is(.services-page, .solutions-page, .methodology-page, .about-page, .contact-page) > main > .hero {
    padding: 52px 0 56px;
  }
  :is(.services-page, .solutions-page, .methodology-page, .about-page, .contact-page) > main > .hero h1 {
    font-size: clamp(38px, 10.8vw, 50px);
  }
  .services-page .service-card,
  .services-page .service-card.featured,
  .solutions-page .case-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }
  .services-page .service-card .route,
  .services-page .service-card h2,
  .services-page .service-card > p,
  .services-page .service-card ul,
  .services-page .service-card .text-link,
  .solutions-page .case-card > span,
  .solutions-page .scenario-copy,
  .solutions-page .scenario-flow {
    grid-column: 1;
    grid-row: auto;
  }
  .services-page .service-card ul {
    margin-top: 12px;
  }
  .methodology-page .process-grid .card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px 18px;
  }
  .methodology-page .process-grid h3,
  .methodology-page .process-grid p {
    grid-column: 2;
  }
  .methodology-page .process-grid p {
    margin-top: 0;
  }
  .methodology-page .process-grid .card:not(:last-child)::after {
    left: 21px;
  }
  .about-page .trust-cards article {
    grid-template-columns: 46px minmax(0, 1fr);
  }
  .about-page .band {
    padding: 66px 0;
  }
  .contact-page .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .contact-page .contact-form > * {
    grid-column: 1;
  }
  .contact-page .cta > div {
    padding: 28px 22px;
  }
  .contact-page .cta {
    border-radius: 18px;
  }
  :is(.services-page, .solutions-page, .methodology-page) .decision-box {
    padding: 28px;
  }
}
