@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("../fonts/SyneVariable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --font-primary: "Inter", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Syne", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --text-display: 55px;
  --text-h2: 48px;
  --text-h3: 28px;
  --text-manifesto: 36px;
  --text-body: 17px;
  --text-body-sm: 15px;
  --text-eyebrow: 11px;
  --text-nav: 13px;
  --text-figure: 40px;
  --text-legal: 12px;

  --color-text-primary: #ffffff;
  --color-text-secondary: #aaaaaa;
  --color-text-muted: #666666;
  --color-text-subtle: #555555;
  --color-text-dark: #0a0a0a;
  --color-text-dark-body: #3a3a3a;
  --color-text-manifesto: #1a1a1a;
  --color-bg-dark: #0a0a0a;
  --color-bg-light: #f5f5f7;
  --color-surface: #ffffff;
  --color-surface-dark: #151515;
  --color-surface-deep: #111111;
  --color-accent: #0057ff;
  --color-accent-hover: #0041cc;
  --color-accent-soft: #a9ccff;
  --color-accent-pale: #d8e8ff;
  --color-rule: #222222;
  --color-rule-light: #e5e5e5;

  --space-section: 72px;
  --space-section-mobile: 44px;
  --max-width-content: 1200px;
  --max-width-editorial: 800px;
  --max-width-manifesto: 680px;
  --radius: 8px;
  --nav-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: var(--text-body);
  line-height: 1.47;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-160%);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text-dark);
  font-size: var(--text-body-sm);
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
}

.nav-wrap {
  width: min(100% - 40px, var(--max-width-content));
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.brand-lockup {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-primary);
  text-decoration: none;
}

.site-header .brand svg,
.site-header .brand img {
  display: none;
}

.brand-code {
  color: var(--color-text-primary);
  font-size: var(--text-nav);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-name {
  color: #999999;
  font-size: var(--text-nav);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.brand>span:not(.brand-code):not(.brand-name) {
  color: #999999;
  font-size: var(--text-nav);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: var(--color-text-secondary);
  font-size: var(--text-nav);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: var(--color-text-primary);
  color: var(--color-text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  color: var(--color-text-primary);
  font-size: var(--text-nav);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  transition: border-color 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.nav-toggle,
.chat-toggle {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: var(--text-nav);
  font-weight: 500;
}

.nav-toggle {
  display: none;
}

.button,
button.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--color-accent);
  color: var(--color-text-primary);
  font-size: var(--text-body-sm);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
button.button:hover {
  background: var(--color-accent-hover);
}

.button:disabled,
button.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.button.secondary {
  background: transparent;
  border-color: var(--color-rule-light);
  color: var(--color-text-dark);
}

.button.secondary:hover {
  background: var(--color-text-dark);
  border-color: var(--color-text-dark);
  color: var(--color-text-primary);
}

.dark .button.secondary,
.band .button.secondary,
.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--color-text-primary);
}

.dark .button.secondary:hover,
.band .button.secondary:hover,
.hero .button.secondary:hover {
  background: var(--color-text-primary);
  border-color: var(--color-text-primary);
  color: var(--color-text-dark);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-text-primary);
  font-size: var(--text-body-sm);
  font-weight: 500;
}

.text-link:hover {
  color: var(--color-accent);
}

.hero .text-link:hover,
.dark .text-link:hover,
.band .text-link:hover {
  color: var(--color-accent-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 0 52px;
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
}

.hero.compact {
  min-height: 100svh;
  padding-bottom: 36px;
}

.hero.compact .hero-inner {
  order: 1;
}

.hero.compact .hero-media {
  order: 2;
}

.hero-inner,
.section-inner,
.site-footer-inner {
  width: min(100% - 48px, var(--max-width-content));
  margin: 0 auto;
}

.hero-inner {
  text-align: center;
}

.audit-hero .hero-inner {
  width: min(100% - 48px, var(--max-width-editorial));
}

.hero-media {
  width: min(100% - 48px, 980px);
  margin: 30px auto 0;
}

.hero-media img,
.section-photo img,
.panel-media img,
.service-option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  max-height: 34svh;
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: var(--text-display);
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  max-width: 760px;
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.08;
}

h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.14;
}

p {
  margin: 0;
}

.lede {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--color-text-secondary);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.section-actions {
  justify-content: flex-start;
}

.trust-bar {
  margin-top: 24px;
  color: var(--color-text-muted);
  font-size: var(--text-body-sm);
  font-weight: 500;
}

.product-ui {
  width: min(100% - 48px, 920px);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  background: #101010;
  text-align: left;
}

.browser-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid var(--color-rule);
  color: var(--color-text-muted);
  font-size: var(--text-legal);
}

.browser-dot-row {
  display: flex;
  gap: 6px;
}

.browser-dot-row span {
  width: 8px;
  height: 8px;
  border-radius: var(--radius);
  background: #333333;
}

.ui-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1px;
  background: var(--color-rule);
}

.schema-window,
.agent-window {
  min-height: 220px;
  padding: 22px;
  background: var(--color-bg-dark);
}

.schema-window pre {
  margin: 0;
  white-space: pre-wrap;
  color: #d8d8d8;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
}

.agent-window {
  display: grid;
  align-content: center;
  gap: 10px;
}

.agent-line {
  padding: 12px 14px;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
}

.agent-line strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-primary);
  font-weight: 600;
}

.section {
  padding: var(--space-section) 0;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section.dark,
.band {
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
}

.section.tight {
  padding: 72px 0;
}

.manifesto {
  background: var(--color-bg-light);
}

.shift-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.shift-copy {
  max-width: 600px;
}

.shift-copy h2 {
  max-width: 560px;
  color: var(--color-text-manifesto);
}

.manifesto-note {
  max-width: 560px;
  margin-top: 20px;
  color: var(--color-text-dark-body);
  font-size: var(--text-body);
  line-height: 1.55;
}

.shift-visual {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
}

.shift-query {
  max-width: 620px;
}

.shift-query span,
.shift-side span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.shift-query strong {
  display: block;
  max-width: 580px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.12;
}

.shift-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.shift-side {
  min-height: 176px;
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  background: #0d0d0d;
}

.shift-side p {
  margin-top: 12px;
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
  line-height: 1.45;
}

.shift-side strong {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.12;
}

.shift-side.muted {
  opacity: 0.7;
}

.shift-side.active {
  border-color: rgba(169, 204, 255, 0.72);
  background: #111111;
}

.shift-side.active strong {
  font-size: 30px;
}

.shift-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  background: transparent;
}

.shift-proof span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  background: #0d0d0d;
  color: var(--color-text-secondary);
  font-size: var(--text-legal);
  font-weight: 600;
}

.section-lede {
  max-width: 680px;
  margin-top: 22px;
  color: var(--color-text-dark-body);
  font-size: var(--text-body);
  line-height: 1.55;
}

.dark .section-lede,
.band .section-lede,
.dark p,
.band p,
.dark li,
.band li {
  color: var(--color-text-secondary);
}

.scene-header {
  max-width: var(--max-width-editorial);
  margin: 0 auto 38px;
  text-align: center;
}

.scene-header h2 {
  margin: 0 auto;
}

.scene-header .section-lede {
  margin-right: auto;
  margin-left: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.problem-layout h2 {
  font-size: var(--text-h2);
}

.problem-intro {
  display: grid;
  align-content: center;
  gap: 28px;
}

.problem-vector {
  max-width: 440px;
  color: #6f6f6f;
}

.problem-vector svg {
  width: 100%;
  height: auto;
}

.inline-photo,
.proof-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-surface-deep);
}

.inline-photo {
  width: 100%;
  margin-top: 18px;
}

.inline-photo img,
.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-photo img {
  aspect-ratio: 16 / 8;
}

.vector-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.vector-labels span {
  color: var(--color-text-muted);
  font-size: var(--text-legal);
  font-weight: 600;
}

.pain-lines {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-rule);
}

.pain-line {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-rule);
}

.pain-mark {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 10px;
  color: var(--color-accent-soft);
  font-size: var(--text-legal);
  font-weight: 700;
}

.pain-line h3 {
  max-width: 600px;
  color: var(--color-text-primary);
  font-size: 30px;
}

.pain-line p {
  max-width: 600px;
  margin-top: 12px;
  color: var(--color-text-secondary);
  font-size: var(--text-body);
}

.method-timeline {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--color-rule);
}

.method-system {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 28px;
  background: transparent;
}

.method-system div {
  min-height: 82px;
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  background: var(--color-bg-dark);
}

.method-system div::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--color-accent-soft);
  border-right: 2px solid var(--color-accent-soft);
  border-radius: 2px;
  opacity: 0.72;
}

.method-system span {
  color: var(--color-accent-soft);
  font-size: var(--text-legal);
  font-weight: 700;
}

.method-system strong {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.1;
}

.method-step {
  display: grid;
  grid-template-columns: 54px 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-rule);
}

.method-step .step-number {
  color: var(--color-text-muted);
  font-size: var(--text-body-sm);
  font-weight: 600;
}

.method-step>span:not(.step-number) {
  color: var(--color-text-muted);
  font-size: var(--text-body-sm);
  font-weight: 600;
}

.method-step>span:not(.step-number)+div {
  grid-column: 2 / -1;
}

.step-icon {
  width: 46px;
  height: 46px;
  color: var(--color-accent-soft);
}

.method-step h3 {
  color: var(--color-text-primary);
}

.method-step p {
  max-width: 680px;
  margin-top: 12px;
  color: var(--color-text-secondary);
  font-size: var(--text-body);
}

.outcome-list {
  border-top: 1px solid var(--color-rule);
}

.outcome-line {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-rule);
}

.outcome-line strong {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-figure);
  font-weight: 700;
  line-height: 1.12;
}

.outcome-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  color: var(--color-accent-soft);
  font-size: var(--text-body-sm);
  font-weight: 700;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
  gap: 64px;
  align-items: center;
}

.proof-quote {
  max-width: var(--max-width-editorial);
}

.proof-quote blockquote {
  margin: 0;
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.1;
}

.proof-quote figcaption {
  margin-top: 24px;
  color: var(--color-text-dark-body);
  font-size: var(--text-body-sm);
}

.proof-vector {
  color: #b8b8b8;
}

.proof-vector svg {
  width: 100%;
  height: auto;
}

.proof-photo {
  grid-column: 1 / -1;
}

.proof-photo img {
  aspect-ratio: 16 / 5;
}

.proof-label-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.proof-label-grid span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-rule-light);
  border-radius: var(--radius);
  color: var(--color-text-dark-body);
  font-size: var(--text-legal);
  font-weight: 600;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--color-rule-light);
}

.proof-layout .metric-row {
  grid-column: 1 / -1;
}

.metric {
  padding: 22px;
  background: var(--color-bg-light);
}

.metric strong {
  display: block;
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-size: var(--text-figure);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--color-text-dark-body);
  font-size: var(--text-body-sm);
}

.service-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--color-rule);
}

.service-path-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: auto;
  padding: 28px;
  background: var(--color-bg-dark);
}

.service-path-card.featured {
  background: var(--color-surface-dark);
}

.service-path-card .tag {
  justify-self: start;
}

.service-path-vector {
  width: 100%;
  height: 46px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.42fr;
  gap: 8px;
  align-items: center;
}

.service-path-vector span {
  height: 10px;
  border-radius: var(--radius);
  background: #333333;
}

.service-path-vector.foundation {
  grid-template-columns: 1fr 1fr 0.76fr;
}

.service-path-vector.workforce {
  grid-template-columns: 1fr 1fr 1fr;
}

.service-path-vector.foundation span,
.service-path-vector.workforce span:last-child {
  background: var(--color-accent-soft);
}

.value-frame {
  min-height: 0;
  color: var(--color-text-secondary);
  font-size: var(--text-body);
  line-height: 1.45;
}

.bullet-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: inherit;
  font-size: var(--text-body-sm);
  line-height: 1.45;
}

.bullet-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: var(--radius);
  background: var(--color-accent);
}

.dark .bullet-list li::before,
.dark .check-list li::before,
.band .bullet-list li::before,
.band .check-list li::before {
  background: var(--color-accent-soft);
}

.bullet-list li+li,
.check-list li+li {
  margin-top: 12px;
}

.audit-final {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.audit-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.audit-final h2 {
  max-width: 680px;
}

.audit-final .section-lede {
  max-width: 520px;
  font-size: 21px;
}

.audit-vector {
  max-width: 420px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.audit-vector span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-rule-light);
  border-radius: var(--radius);
  color: var(--color-text-dark-body);
  font-size: var(--text-legal);
  font-weight: 700;
}

.page-vector {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 28px auto 0;
}

.page-vector span {
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 204, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-accent-pale);
  font-size: var(--text-legal);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel,
.service-option,
.proof-box,
.faq details,
.lead-form {
  border: 0;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.dark .panel,
.dark .service-option,
.dark .proof-box,
.dark .faq details,
.dark .lead-form,
.band .panel,
.band .service-option,
.band .proof-box,
.band .faq details,
.band .lead-form {
  background: var(--color-surface-dark);
}

.panel,
.proof-box {
  padding: 22px;
}

.panel h3,
.proof-box h3,
.service-option h3 {
  margin-bottom: 12px;
}

.panel h3::before,
.proof-box h3::before,
.service-option h3::before {
  content: "";
  width: 28px;
  height: 2px;
  display: block;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--color-accent);
}

.dark .panel h3::before,
.dark .proof-box h3::before,
.dark .service-option h3::before,
.band .panel h3::before,
.band .proof-box h3::before,
.band .service-option h3::before {
  background: var(--color-accent-soft);
}

.panel p,
.service-option p,
.proof-box p,
li {
  color: var(--color-text-dark-body);
  font-size: var(--text-body-sm);
  line-height: 1.5;
}

.dark .panel p,
.dark .service-option p,
.dark .proof-box p,
.band .panel p,
.band .service-option p,
.band .proof-box p {
  color: var(--color-text-secondary);
}

.wide-callout {
  margin-top: 36px;
  padding: 0;
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.18;
}

.dark .wide-callout,
.band .wide-callout {
  color: var(--color-text-primary);
}

.section-photo,
.panel-media,
.service-option-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-bg-dark);
}

.section-photo {
  margin-top: 24px;
}

.section-photo img {
  aspect-ratio: 16 / 7;
}

.panel-media {
  margin: -22px -22px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.panel-media img {
  aspect-ratio: 16 / 10;
}

.service-option-media {
  margin-bottom: 24px;
}

.service-option-media img {
  aspect-ratio: 16 / 5;
}

.steps {
  display: grid;
  gap: 1px;
  background: var(--color-rule-light);
}

.band .steps,
.dark .steps {
  background: var(--color-rule);
}

.step {
  padding: 28px;
  background: var(--color-surface);
}

.band .step,
.dark .step {
  background: var(--color-bg-dark);
}

.step p {
  margin-top: 10px;
  font-size: var(--text-body-sm);
}

.flow-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-rule-light);
}

.flow-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-rule-light);
}

.flow-list span {
  display: block;
  max-width: 520px;
  margin-top: 6px;
  color: var(--color-text-dark-body);
  font-size: var(--text-body-sm);
  line-height: 1.45;
}

.flow-list strong,
.check-list strong,
.step strong,
.panel strong,
.service-option strong {
  color: inherit;
  font-weight: 600;
}

.service-option-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  background: transparent;
}

.band .service-option-list,
.dark .service-option-list {
  background: transparent;
}

.service-option {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
}

.service-option:first-child {
  border-radius: var(--radius);
}

.service-option:last-child {
  border-radius: var(--radius);
}

.service-option.featured {
  background: var(--color-surface);
}

.band .service-option.featured,
.dark .service-option.featured {
  background: var(--color-surface-dark);
}

.tag {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 5px;
  background: rgba(0, 87, 255, 0.1);
  color: var(--color-accent);
  font-size: var(--text-legal);
  font-weight: 700;
  line-height: 1;
}

.dark .tag,
.band .tag {
  background: rgba(169, 204, 255, 0.1);
  color: var(--color-accent-pale);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}

.comparison th,
.comparison td {
  padding: 20px;
  border-bottom: 1px solid var(--color-rule-light);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--color-text-dark);
  font-size: var(--text-body-sm);
  font-weight: 700;
}

.comparison td {
  color: var(--color-text-dark-body);
  font-size: var(--text-body-sm);
}

.band .comparison th,
.dark .comparison th {
  color: var(--color-text-primary);
}

.band .comparison td,
.dark .comparison td {
  border-bottom-color: var(--color-rule);
  color: var(--color-text-secondary);
}

.faq {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--color-rule-light);
}

.band .faq,
.dark .faq {
  background: var(--color-rule);
}

.faq details {
  padding: 0;
  border-radius: 0;
}

.faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  color: var(--color-text-dark);
  font-size: var(--text-body);
  font-weight: 600;
  cursor: pointer;
}

.band .faq summary,
.dark .faq summary {
  color: var(--color-text-primary);
}

.faq details p {
  padding: 0 24px 24px;
  color: var(--color-text-dark-body);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 0;
  background: var(--color-surface);
}

.form-heading {
  margin-bottom: 2px;
}

.form-heading h2 {
  font-size: 30px;
  line-height: 1.08;
}

.form-heading .eyebrow {
  margin-bottom: 10px;
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2px 0 6px;
  padding: 0;
  list-style: none;
}

.form-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.form-steps li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 50%;
  width: 100%;
  height: 1px;
  background: var(--color-rule-light);
}

.form-steps span {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-text-primary);
  font-size: 11px;
}

.form-steps li:not(:first-child) span {
  background: var(--color-bg-light);
  color: var(--color-text-dark-body);
}

.form-steps strong {
  font-weight: 600;
}

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

.band .lead-form,
.dark .lead-form {
  background: var(--color-surface-dark);
}

.band .form-steps li:not(:first-child)::before,
.dark .form-steps li:not(:first-child)::before {
  background: rgba(255, 255, 255, 0.16);
}

.band .form-steps li:not(:first-child) span,
.dark .form-steps li:not(:first-child) span {
  background: #171717;
  color: var(--color-text-secondary);
}

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

.field label {
  color: var(--color-text-dark-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  padding: 10px 12px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  background: #eeeeef;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
  outline: 0;
}

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

.band .field input,
.band .field select,
.band .field textarea,
.dark .field input,
.dark .field select,
.dark .field textarea {
  border-color: transparent;
  background: #101010;
  color: var(--color-text-primary);
}

.band .field input:focus,
.band .field select:focus,
.band .field textarea:focus,
.dark .field input:focus,
.dark .field select:focus,
.dark .field textarea:focus {
  border-color: var(--color-accent-soft);
  background: #0c0c0c;
  box-shadow: 0 0 0 3px rgba(169, 204, 255, 0.12);
}

.band .field label,
.dark .field label {
  color: var(--color-text-secondary);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-muted);
}

.lead-form .button {
  justify-self: start;
  min-height: 38px;
  padding: 9px 18px;
}

.form-status {
  min-height: 18px;
  color: var(--color-text-dark-body);
  font-size: 14px;
  font-weight: 600;
}

.band .form-status,
.dark .form-status {
  color: var(--color-accent-pale);
}

.site-footer {
  padding: 64px 0 48px;
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-rule);
}

.site-footer .brand {
  align-items: center;
  min-height: 44px;
}

.site-footer .brand img,
.site-footer .brand svg {
  width: 38px;
  height: 38px;
  display: block;
}

.site-footer .brand span {
  color: var(--color-text-primary);
  font-size: var(--text-body-sm);
  font-weight: 600;
}

.footer-meta {
  max-width: 520px;
  margin-top: 18px;
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
}

.footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: var(--color-text-muted);
  font-size: var(--text-legal);
}

.chat-shell {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.chat-toggle {
  width: auto;
  padding: 0 18px;
  background: var(--color-accent);
  color: var(--color-text-primary);
  font-size: var(--text-body-sm);
  font-weight: 600;
}

.chat-toggle:hover {
  background: var(--color-accent-hover);
}

.chat-window {
  width: min(390px, calc(100vw - 36px));
  max-height: min(620px, calc(100svh - 112px));
  display: none;
  overflow: hidden;
  border: 1px solid var(--color-rule-light);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.chat-window[data-open="true"] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.chat-header {
  padding: 18px;
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
}

.chat-header strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}

.chat-header span {
  display: block;
  margin-top: 6px;
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
}

.chat-messages {
  display: grid;
  gap: 8px;
  padding: 16px;
  overflow-y: auto;
}

.message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--color-bg-light);
  color: var(--color-text-dark-body);
  font-size: var(--text-body-sm);
  line-height: 1.45;
}

.message.user {
  justify-self: end;
  background: var(--color-accent);
  color: var(--color-text-primary);
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.quick-replies button {
  min-height: 36px;
  border: 1px solid var(--color-rule-light);
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-text-dark);
  cursor: pointer;
  font-size: var(--text-body-sm);
}

.quick-replies button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--color-bg-light);
}

.chat-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chat-form input {
  min-width: 0;
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text-dark);
  padding: 10px 12px;
}

.chat-form button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: var(--text-body-sm);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 1024px) {
  .section:not(.site-footer) {
    min-height: calc(100svh - var(--nav-height));
    display: grid;
    align-items: center;
  }
}

@media (max-height: 850px) and (min-width: 1024px) {
  .lede {
    margin-top: 16px;
    font-size: 18px;
  }

  .product-ui {
    margin-top: 24px;
  }

  .schema-window,
  .agent-window {
    min-height: 170px;
    padding: 18px;
  }

  .schema-window pre,
  .agent-line {
    font-size: 12px;
  }

  .hero-media img {
    max-height: 28svh;
  }
}

@media (max-width: 1023px) {
  :root {
    --text-display: 48px;
    --text-h2: 40px;
    --text-manifesto: 30px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-wrap {
    position: relative;
    z-index: 140;
  }

  body.nav-open .site-header {
    background: #0a0a0a;
    backdrop-filter: blur(18px);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    min-height: 100svh;
    padding: calc(var(--nav-height) + 60px) 32px 112px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(18px);
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .nav-links a {
    width: min(100%, 420px);
    min-height: 54px;
    justify-content: center;
    border-bottom: 0;
    color: var(--color-text-primary);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    text-align: center;
  }

  .nav-links a+a {
    border-top: 1px solid var(--color-rule);
  }

  .nav-actions {
    display: none;
  }

  body.nav-open .nav-actions {
    position: fixed;
    left: 32px;
    right: 32px;
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 150;
    display: flex;
  }

  body.nav-open .nav-cta {
    width: min(100%, 420px);
    min-height: 44px;
    margin: 0 auto;
    border-color: transparent;
    background: var(--color-accent);
    color: var(--color-text-primary);
  }

  .split,
  .shift-layout,
  .problem-layout,
  .proof-layout,
  .audit-final-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ui-grid {
    grid-template-columns: 1fr;
  }

  .service-option {
    grid-template-columns: 1fr;
  }

  .grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-path-grid,
  .service-option-list,
  .method-system,
  .metric-row,
  .grid.three,
  .grid.four {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .service-path-grid>*,
  .service-option-list>*,
  .method-system>*,
  .metric-row>*,
  .grid.three>*,
  .grid.four>* {
    scroll-snap-align: start;
  }

  .service-path-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --text-display: 34px;
    --text-h2: 30px;
    --text-h3: 22px;
    --text-manifesto: 26px;
    --text-figure: 30px;
  }

  .nav-wrap,
  .hero-inner,
  .section-inner,
  .site-footer-inner {
    width: min(100% - 24px, var(--max-width-content));
  }

  .brand-name {
    display: none;
  }

  .nav-links {
    padding: calc(var(--nav-height) + 44px) 24px 104px;
  }

  .nav-links a {
    min-height: 50px;
    font-size: 28px;
  }

  body.nav-open .nav-actions {
    left: 24px;
    right: 24px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 44px;
  }

  .hero.compact {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero-media {
    width: min(100% - 24px, 980px);
    margin-top: 22px;
  }

  .hero-media img {
    max-height: 24svh;
  }

  h1 {
    max-width: 11ch;
  }

  .lede {
    margin-top: 18px;
    font-size: var(--text-body);
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  button.button,
  .text-link {
    width: 100%;
  }

  .product-ui {
    width: min(100% - 24px, 920px);
    margin-top: 24px;
  }

  .audit-hero .schema-window {
    display: none;
  }

  .schema-window,
  .agent-window {
    min-height: auto;
    padding: 16px;
  }

  .agent-window {
    gap: 8px;
  }

  .agent-line {
    padding: 10px 12px;
  }

  .page-vector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 20px;
  }

  .page-vector span {
    min-height: 36px;
    padding: 0 8px;
    text-align: center;
  }

  .inline-photo,
  .proof-photo {
    width: 100%;
  }

  .inline-photo img,
  .proof-photo img {
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: var(--space-section-mobile) 0;
  }

  .grid.two {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .grid.two>* {
    scroll-snap-align: start;
  }

  .method-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .step-icon {
    display: none;
  }

  .shift-visual {
    padding: 18px;
  }

  .shift-comparison {
    grid-template-columns: 1fr;
  }

  .shift-query strong,
  .shift-side.active strong,
  .shift-side strong {
    font-size: 22px;
  }

  .shift-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-line h3 {
    font-size: 24px;
  }

  .outcome-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .outcome-mark {
    width: auto;
    height: 42px;
    justify-content: start;
    padding: 0 14px;
  }

  .audit-vector {
    grid-template-columns: 1fr;
  }

  .lead-form {
    gap: 12px;
  }

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

  .form-steps {
    margin-bottom: 2px;
  }

  .form-steps strong {
    font-size: 10px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 42px;
  }

  .service-path-card,
  .service-option,
  .panel,
  .proof-box,
  .lead-form {
    padding: 20px;
  }

  .panel-media {
    margin: -20px -20px 16px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .chat-shell {
    right: 10px;
    bottom: 10px;
  }
}
