:root {
  --paper: #f6f5ef;
  --paper-2: #ecece5;
  --ink: #10120f;
  --muted: #696d65;
  --acid: #d5ff39;
  --orange: #ff6542;
  --line: rgba(16, 18, 15, 0.17);
  --line-dark: rgba(246, 245, 239, 0.18);
  --mono: var(--font-logo-mono, "Courier New"), ui-monospace, monospace;
  --sans: var(--font-manrope, Arial), Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ink); background: var(--acid); }
.site-shell { width: min(1380px, calc(100% - 96px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 245, 239, 0.92);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 36px; }
.brand-logo { display: inline-flex; align-items: baseline; letter-spacing: -0.055em; font-size: 23px; font-weight: 750; white-space: nowrap; }
.brand-logo b { margin-left: 2px; padding: 1px 5px 2px; color: #10120f !important; background: var(--acid); font-family: var(--mono); font-size: .8em; letter-spacing: -0.08em; }
.brand-logo i { color: var(--orange); font-family: var(--mono); font-size: .63em; font-style: normal; letter-spacing: -.06em; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { color: #353832; font-size: 14px; font-weight: 650; }
.main-nav a:hover { color: #000; }
.services-trigger { padding: 0; color: #353832; border: 0; background: none; cursor: pointer; font-size: 14px; font-weight: 650; }
.services-trigger span { margin-left: 4px; font-size: 13px; }
.services-mega { position: absolute; top: 100%; right: 0; left: 0; display: none; color: var(--paper); border-top: 1px solid var(--line-dark); background: var(--ink); box-shadow: 0 24px 40px rgba(0,0,0,.16); }
.services-mega.is-open { display: block; }
.services-mega-inner { display: grid; grid-template-columns: .52fr 1.48fr; gap: 5vw; padding-top: 32px; padding-bottom: 32px; }
.mega-intro { display: flex; flex-direction: column; align-items: flex-start; }
.mega-intro > span { color: var(--acid); font: 700 9px var(--mono); letter-spacing: .08em; }
.mega-intro > b { margin-top: 16px; font-size: 24px; line-height: 1.15; letter-spacing: -.04em; }
.mega-intro > a { margin-top: auto; padding-bottom: 4px; color: #aeb2a9; border-bottom: 1px solid #73786e; font-size: 11px; }
.mega-links { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.mega-links > a { display: grid; grid-template-columns: 25px 1fr; gap: 9px; min-height: 68px; align-items: center; padding: 10px 13px; color: var(--paper); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.mega-links > a:hover, .mega-links > a.is-current { color: var(--ink); background: var(--acid); }
.mega-links span { color: #83887e; font: 700 9px var(--mono); }
.mega-links b { font-size: 11px; line-height: 1.3; font-weight: 650; }
.header-cta { display: inline-flex; gap: 28px; align-items: center; min-height: 42px; padding: 0 18px; border: 1px solid var(--ink); font-size: 13px; font-weight: 750; }
.header-cta:hover { background: var(--ink); color: var(--paper); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 12px; border: 1px solid var(--ink); background: transparent; }
.nav-toggle span { display: block; height: 1px; margin: 5px 0; background: currentColor; }

.home-hero {
  position: relative;
  isolation: isolate;
  padding: 84px 0 72px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.home-hero::before,
.scope-section::before,
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .4;
  background-image: linear-gradient(rgba(16,18,15,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16,18,15,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.blueprint-word { position: absolute; z-index: -1; color: rgba(16,18,15,.035); font: 700 clamp(72px, 10vw, 168px)/1 var(--mono); letter-spacing: .08em; white-space: nowrap; }
.word-one { top: 10px; left: -40px; }
.word-two { right: -60px; bottom: 6px; }
.hero-layout { display: grid; grid-template-columns: minmax(0, .98fr) minmax(480px, .88fr); align-items: center; gap: clamp(52px, 6vw, 100px); }
.hero-content { position: relative; z-index: 2; }
.overline, .section-index, .breadcrumbs {
  font: 700 11px/1.4 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.overline { display: inline-flex; align-items: center; gap: 10px; }
.overline i { width: 8px; height: 8px; background: var(--orange); }
.overline.acid { color: var(--acid); }
.home-hero h1, .service-hero h1 {
  max-width: 800px;
  margin: 28px 0 30px;
  font-size: clamp(55px, 6.1vw, 92px);
  line-height: .96;
  letter-spacing: -.072em;
  font-weight: 650;
}
.home-hero h1 span { display: inline-block; color: var(--ink); position: relative; }
.home-hero h1 span::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 6px; background: var(--acid); }
.hero-lead { max-width: 690px; margin: 0; color: #4e524c; font-size: clamp(19px, 1.6vw, 25px); line-height: 1.45; letter-spacing: -.025em; }
.hero-lead strong { color: var(--ink); font-weight: 700; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.btn { display: inline-flex; justify-content: space-between; align-items: center; gap: 34px; min-height: 56px; padding: 0 22px; border: 1px solid var(--ink); font-size: 14px; font-weight: 750; transition: .2s ease; }
.btn-acid { color: var(--ink); background: var(--acid); }
.btn-acid:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-quiet { border-color: var(--line); background: rgba(246,245,239,.65); }
.btn-quiet:hover { border-color: var(--ink); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 760px; margin-top: 52px; border-top: 1px solid var(--line); }
.hero-facts > div { min-width: 0; padding: 20px 22px 0 0; }
.hero-facts > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-facts b { display: block; font-size: 17px; letter-spacing: -.02em; }
.hero-facts span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.35; }

.workshop-graphic { min-width: 0; color: #e8e9e3; border: 1px solid #1f231e; background: var(--ink); box-shadow: 16px 16px 0 rgba(16,18,15,.11); }
.graphic-head, .graphic-foot { display: flex; justify-content: space-between; align-items: center; height: 54px; padding: 0 20px; font: 700 10px/1 var(--mono); letter-spacing: .05em; }
.graphic-head { border-bottom: 1px solid var(--line-dark); }
.graphic-head b { color: var(--acid); }
.workshop-graphic svg { display: block; width: 100%; height: auto; }
.wg-grid { fill: url(#wg-grid); stroke: rgba(246,245,239,.07); stroke-width: 1; }
#wg-grid path { fill: none; stroke: rgba(246,245,239,.065); stroke-width: 1; }
.wg-lines path { fill: none; stroke: rgba(246,245,239,.25); stroke-width: 1.5; stroke-dasharray: 7 8; }
.wg-engine path, .wg-engine circle { fill: rgba(213,255,57,.018); stroke: rgba(213,255,57,.55); stroke-width: 1.5; }
.wg-engine circle:nth-of-type(2), .wg-engine circle:nth-of-type(3) { stroke: rgba(246,245,239,.25); }
.wg-nodes rect { fill: #151813; stroke: rgba(246,245,239,.28); }
.wg-nodes text { fill: #e8e9e3; font: 700 10px var(--mono); letter-spacing: .04em; }
.wg-nodes text + text { fill: #848a80; font-size: 8px; }
.wg-core circle { fill: var(--acid); filter: drop-shadow(0 0 20px rgba(213,255,57,.28)); }
.wg-core text { fill: var(--ink); text-anchor: middle; font: 800 27px var(--sans); letter-spacing: -.05em; }
.wg-core text + text { font: 700 9px var(--mono); letter-spacing: .04em; }
.wg-gauge { fill: none; stroke: rgba(246,245,239,.25); stroke-width: 10; }
.wg-needle { stroke: var(--orange); stroke-width: 2; }
.wg-acid { fill: var(--acid); }
.graphic-foot { height: 46px; border-top: 1px solid var(--line-dark); color: #979c92; }

.intro-section, .scope-section, .process-section, .faq-section, .service-intro, .service-scope { position: relative; padding: 112px 0; }
.intro-grid, .service-two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr); gap: 10vw; align-items: start; }
.section-index { display: block; width: max-content; padding-bottom: 9px; border-bottom: 2px solid currentColor; }
.section-index.light { color: var(--paper); }
.intro-section h2, .section-head h2, .proof-copy h2, .ai-section h2, .faq-section h2, .contact-section h2, .footer-lead h2, .service-intro h2, .service-detail h2, .related-section h2 {
  margin: 28px 0 0;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 620;
}
.intro-section h2 span { color: var(--muted); }
.intro-copy { padding-top: 34px; }
.intro-copy p, .section-head > p, .service-intro p { color: var(--muted); font-size: 19px; line-height: 1.62; letter-spacing: -.015em; }
.intro-copy p:first-child { color: var(--ink); font-size: 24px; line-height: 1.48; }

.services-section, .related-section { padding: 112px 0; color: var(--paper); background: var(--ink); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .55fr); align-items: end; gap: 8vw; margin-bottom: 58px; }
.section-head > p { margin: 0 0 5px; }
.services-section .section-head > p, .related-section .section-head > p { color: #aaaea5; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-card { min-height: 360px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: background .2s ease, color .2s ease; }
.service-card:hover { color: var(--ink); background: var(--acid); }
.service-card-top { display: flex; justify-content: space-between; align-items: baseline; color: #858a80; font: 700 10px/1.3 var(--mono); letter-spacing: .08em; }
.service-card:hover .service-card-top { color: #4f5545; }
.service-card h3 { max-width: 340px; margin: 56px 0 18px; font-size: 29px; line-height: 1.13; letter-spacing: -.045em; font-weight: 620; }
.service-card p { max-width: 400px; margin: 0; color: #aeb2a9; font-size: 15px; line-height: 1.6; }
.service-card:hover p { color: #33362f; }
.service-card-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 28px; font: 700 11px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.service-card-bottom b { font-size: 20px; }

.scope-section { isolation: isolate; overflow: hidden; }
.scope-head > p { color: var(--muted); }
.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.scope-grid article { min-height: 370px; padding: 26px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: rgba(246,245,239,.88); }
.scope-grid article > span { color: var(--muted); font: 700 10px/1 var(--mono); letter-spacing: .08em; }
.scope-grid h3 { margin: 38px 0 28px; font-size: 27px; letter-spacing: -.04em; }
.scope-grid ul { list-style: none; margin: 0; padding: 0; color: #555950; font-size: 15px; }
.scope-grid li { position: relative; padding: 9px 0 9px 17px; border-top: 1px solid var(--line); }
.scope-grid li::before { content: ""; position: absolute; left: 0; top: 16px; width: 5px; height: 5px; background: var(--orange); }
.scope-note { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 12px 20px; padding: 28px 32px; color: var(--paper); background: var(--ink); }
.scope-note b { color: var(--acid); font: 700 13px var(--mono); letter-spacing: .07em; }
.scope-note span { font-size: 28px; font-weight: 650; letter-spacing: -.04em; }
.scope-note p { justify-self: end; max-width: 570px; margin: 0; color: #aeb2a9; font-size: 14px; }

.proof-section { padding: 112px 0 0; color: var(--paper); background: var(--ink); }
.proof-grid { display: grid; grid-template-columns: minmax(300px, .7fr) 1.3fr; min-height: 450px; border: 1px solid var(--line-dark); }
.proof-copy { display: flex; flex-direction: column; justify-content: center; padding: 44px; border-right: 1px solid var(--line-dark); }
.proof-copy h2 em { color: var(--acid); font-style: normal; }
.proof-copy p { max-width: 500px; color: #adb1a8; font-size: 17px; }
.proof-chart { position: relative; min-height: 410px; padding: 40px; overflow: hidden; }
.proof-chart-head { display: flex; justify-content: space-between; color: #969b91; font: 700 10px var(--mono); letter-spacing: .06em; }
.proof-chart-head b { color: var(--acid); }
.proof-chart svg { position: absolute; inset: 72px 38px 54px; width: calc(100% - 76px); height: calc(100% - 126px); overflow: visible; }
.proof-grid-lines path { fill: none; stroke: rgba(246,245,239,.1); stroke-width: 1; vector-effect: non-scaling-stroke; }
.proof-area { fill: url(#proof-area); }
.proof-line { fill: none; stroke: var(--acid); stroke-width: 3; vector-effect: non-scaling-stroke; }
.proof-points circle { fill: var(--ink); stroke: var(--acid); stroke-width: 2.5; vector-effect: non-scaling-stroke; }
.proof-points circle.end { fill: var(--acid); filter: drop-shadow(0 0 10px rgba(213,255,57,.45)); }
.proof-start, .proof-end { position: absolute; display: flex; flex-direction: column; }
.proof-start { left: 46px; bottom: 66px; }
.proof-end { right: 38px; top: 76px; align-items: flex-end; padding: 10px 12px; color: var(--ink); background: var(--acid); }
.proof-start b, .proof-end b { font-size: 22px; line-height: 1; letter-spacing: -.04em; }
.proof-start span, .proof-end span { margin-top: 5px; color: #969b91; font: 700 8px var(--mono); letter-spacing: .05em; }
.proof-end span { color: #41491f; }
.proof-axis-labels { position: absolute; right: 39px; bottom: 24px; left: 39px; display: flex; justify-content: space-between; color: #777d73; font: 700 8px var(--mono); letter-spacing: .05em; }
.proof-facts { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 0; border-right: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.proof-facts > div { min-height: 140px; padding: 28px; border-right: 1px solid var(--line-dark); }
.proof-facts > div:last-child { border-right: 0; }
.proof-facts b, .proof-facts span { display: block; }
.proof-facts b { color: var(--acid); font-size: 24px; letter-spacing: -.04em; }
.proof-facts span { margin-top: 8px; color: #969b91; font-size: 12px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.process-grid article { min-height: 250px; padding: 25px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-grid article > span { color: var(--orange); font: 700 11px var(--mono); }
.process-grid h3 { margin: 58px 0 12px; font-size: 25px; letter-spacing: -.04em; }
.process-grid p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.workshop-statement { display: grid; grid-template-columns: 1.5fr .7fr; gap: 9vw; padding: 58px; color: var(--paper); background: var(--ink); }
.workshop-statement > div > span { color: var(--acid); font: 700 10px var(--mono); letter-spacing: .08em; }
.workshop-statement h3 { margin: 24px 0 0; font-size: clamp(31px, 3vw, 48px); line-height: 1.14; letter-spacing: -.05em; font-weight: 500; }
.workshop-statement h3 b { color: var(--acid); font-weight: 650; }
.workshop-statement ul { list-style: none; margin: 0; padding: 24px 0 0; color: #a9ada5; font-size: 13px; }
.workshop-statement li { padding: 12px 0; border-top: 1px solid var(--line-dark); }

.ai-section { padding: 112px 0; border-top: 1px solid var(--line); }
.ai-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: center; }
.ai-section h2 { max-width: 620px; }
.ai-section p { max-width: 620px; color: var(--muted); font-size: 19px; }
.inline-link { display: inline-flex; gap: 40px; margin-top: 15px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); font-size: 14px; font-weight: 750; }
.ai-console { color: var(--paper); border: 1px solid var(--ink); background: var(--ink); }
.console-head { display: flex; justify-content: space-between; padding: 19px 22px; border-bottom: 1px solid var(--line-dark); font: 700 10px var(--mono); }
.console-head b { color: var(--acid); }
.console-query { display: flex; gap: 16px; min-height: 124px; align-items: center; padding: 24px; }
.console-query span { color: var(--orange); font: 700 25px var(--mono); }
.console-query p { margin: 0; color: var(--paper); font-size: 22px; line-height: 1.3; }
.console-results { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line-dark); }
.console-results div { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; padding: 22px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.console-results span { color: #73796f; font: 700 9px var(--mono); }
.console-results b { color: var(--acid); font: 700 11px var(--mono); }
.console-results em { grid-column: 2; color: #a3a89f; font-size: 12px; font-style: normal; }

.faq-section { border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10vw; }
.faq-layout > div:first-child > p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { display: grid; grid-template-columns: 42px 1fr auto; gap: 16px; align-items: center; min-height: 90px; cursor: pointer; list-style: none; font-size: 20px; font-weight: 650; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--muted); font: 700 10px var(--mono); }
.faq-list summary b { font-size: 26px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details p { max-width: 780px; margin: -5px 55px 30px 58px; color: var(--muted); font-size: 16px; }

.contact-section { padding: 112px 0; background: var(--acid); }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; align-items: start; gap: 9vw; }
.contact-section h2 span { color: #4f5b1c; }
.contact-section > .contact-grid > div > p { max-width: 600px; font-size: 18px; }
.contact-form { padding: 34px; border: 1px solid var(--ink); background: var(--paper); box-shadow: 12px 12px 0 var(--ink); }
.contact-form label { display: block; margin: 20px 0 8px; font: 700 10px var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.contact-form label:first-child { margin-top: 0; }
.form-row { display: flex; align-items: center; border-bottom: 1px solid var(--ink); }
.form-row span { color: var(--muted); font-size: 17px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 0; color: var(--ink); border: 0; border-bottom: 1px solid var(--ink); outline: 0; background: transparent; }
.form-row input { padding-left: 2px; border: 0; }
.contact-form textarea { resize: vertical; }
.contact-form button { display: flex; justify-content: space-between; width: 100%; margin-top: 28px; padding: 18px; color: var(--paper); border: 0; background: var(--ink); cursor: pointer; font-weight: 750; }
.contact-form button:hover { color: var(--ink); background: var(--orange); }
.contact-form small { display: block; margin-top: 12px; color: var(--muted); font-size: 11px; }

.site-footer { padding: 92px 0 28px; color: var(--paper); background: var(--ink); }
.footer-lead { display: flex; justify-content: space-between; align-items: end; gap: 50px; padding-bottom: 70px; border-bottom: 1px solid var(--line-dark); }
.footer-lead h2 { font-size: clamp(45px, 5.2vw, 78px); }
.footer-mail { display: flex; gap: 45px; padding-bottom: 10px; border-bottom: 2px solid var(--acid); font-size: clamp(17px, 1.6vw, 25px); }
.footer-map { display: grid; grid-template-columns: 1.2fr 1fr 1fr .8fr; gap: 5vw; padding: 58px 0; }
.footer-map > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-map p, .footer-map a, .footer-map span { margin: 0; color: #c4c8bf; font-size: 13px; line-height: 1.6; }
.footer-map p { max-width: 270px; margin-top: 10px; }
.footer-map b { margin-bottom: 10px; color: var(--paper); font: 700 11px var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.footer-map a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line-dark); color: #a6aba1; font: 700 10px var(--mono); letter-spacing: .1em; }

/* service pages */
.service-hero { position: relative; isolation: isolate; overflow: hidden; padding: 46px 0 92px; border-bottom: 1px solid var(--line); }
.service-watermark { position: absolute; z-index: -1; right: -1vw; bottom: -1vw; color: rgba(16,18,15,.035); font: 700 clamp(95px, 14vw, 230px)/.8 var(--mono); letter-spacing: -.06em; white-space: nowrap; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); text-transform: none; letter-spacing: .02em; }
.breadcrumbs b { color: var(--ink); }
.service-hero-grid { display: grid; grid-template-columns: 1.15fr .55fr; gap: 10vw; align-items: end; margin-top: 72px; }
.service-hero h1 { max-width: 920px; margin-top: 25px; font-size: clamp(54px, 6.8vw, 100px); }
.service-hero-grid > div:first-child > p { max-width: 790px; margin: 0 0 30px; color: var(--muted); font-size: 21px; }
.service-spec { padding: 27px; color: var(--paper); border: 1px solid var(--ink); background: var(--ink); }
.service-spec > span { color: var(--acid); font: 700 10px var(--mono); letter-spacing: .08em; }
.service-spec ul { list-style: none; margin: 24px 0; padding: 0; }
.service-spec li { padding: 11px 0; border-top: 1px solid var(--line-dark); font-size: 14px; }
.service-spec small { color: #959b90; font-size: 11px; line-height: 1.5; }
.service-intro .large-copy { margin-top: 0; color: var(--ink); font-size: clamp(25px, 2.5vw, 38px); line-height: 1.35; letter-spacing: -.04em; }
.service-detail { padding: 112px 0; color: var(--paper); background: var(--ink); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9vw; }
.problem-list, .outcome-list { margin-top: 54px; border-top: 1px solid var(--line-dark); }
.problem-list > div, .outcome-list > div { display: grid; grid-template-columns: 40px 1fr; gap: 15px; min-height: 86px; align-items: center; border-bottom: 1px solid var(--line-dark); }
.problem-list span { color: #777d73; font: 700 10px var(--mono); }
.outcome-list span { color: var(--acid); font-weight: 800; }
.problem-list p, .outcome-list p { margin: 0; font-size: 17px; }
.service-scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.service-scope-grid article { min-height: 230px; padding: 25px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.service-scope-grid article > span { color: var(--orange); font: 700 10px var(--mono); }
.service-scope-grid h3 { margin: 46px 0 13px; font-size: 22px; line-height: 1.25; letter-spacing: -.035em; }
.service-scope-grid p { color: var(--muted); font-size: 13px; }
.mini-process { padding: 72px 0; background: var(--paper-2); }
.mini-process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 42px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.mini-process-grid > div { min-height: 190px; padding: 22px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.mini-process-grid span { color: var(--orange); font: 700 10px var(--mono); }
.mini-process-grid b { display: block; margin: 38px 0 9px; font-size: 19px; }
.mini-process-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.related-grid a { display: flex; flex-direction: column; min-height: 330px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: .2s ease; }
.related-grid a:hover { color: var(--ink); background: var(--acid); }
.related-grid span { color: #848a80; font: 700 10px var(--mono); }
.related-grid h3 { margin: 54px 0 14px; font-size: 25px; line-height: 1.2; letter-spacing: -.04em; }
.related-grid p { margin: 0; color: #aeb2a9; font-size: 14px; }
.related-grid a:hover p { color: #3d4039; }
.related-grid b { margin-top: auto; font-size: 12px; }

/* dedicated service experience */
.service-nav { position: sticky; top: 78px; z-index: 35; color: var(--paper); border-bottom: 1px solid var(--line-dark); background: #171a16; }
.service-nav-inner { display: flex; align-items: stretch; min-height: 56px; }
.service-nav-home { display: inline-flex; flex: 0 0 auto; gap: 10px; align-items: center; padding-right: 24px; border-right: 1px solid var(--line-dark); color: var(--acid); font: 700 10px var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.service-nav-scroll { display: flex; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.service-nav-scroll::-webkit-scrollbar { display: none; }
.service-nav-scroll a { display: flex; flex: 0 0 auto; gap: 8px; align-items: center; padding: 0 17px; border-right: 1px solid var(--line-dark); color: #9da198; }
.service-nav-scroll a:hover, .service-nav-scroll a.is-current { color: var(--ink); background: var(--acid); }
.service-nav-scroll span { font: 700 9px var(--mono); }
.service-nav-scroll b { font: 700 9px var(--mono); letter-spacing: .04em; }

.service-detail-hero { position: relative; isolation: isolate; overflow: hidden; padding: 42px 0 0; color: var(--paper); background: var(--ink); }
.service-detail-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .5; background-image: linear-gradient(rgba(246,245,239,.045) 1px,transparent 1px), linear-gradient(90deg,rgba(246,245,239,.045) 1px,transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom,#000,transparent 90%); }
.service-hero-number { position: absolute; z-index: -1; right: -1vw; top: -4vw; color: rgba(246,245,239,.035); font: 700 clamp(230px,31vw,520px)/.8 var(--mono); letter-spacing: -.12em; }
.service-breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; color: #81867c; font: 700 9px var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.service-breadcrumbs a:hover { color: var(--acid); }
.service-breadcrumbs b { color: var(--paper); }
.service-detail-hero-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 9vw; align-items: end; min-height: 570px; padding: 70px 0 64px; }
.service-page-label { display: inline-block; padding: 7px 10px; color: #10120f; background: var(--acid); font: 700 10px var(--mono); letter-spacing: .07em; }
.service-title-block h1 { max-width: 990px; margin: 30px 0; font-size: clamp(58px,7.2vw,108px); line-height: .91; letter-spacing: -.072em; font-weight: 620; }
.service-title-block > p { max-width: 800px; margin: 0; color: #b5b9b0; font-size: clamp(19px,1.65vw,25px); line-height: 1.48; letter-spacing: -.025em; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; margin-top: 36px; }
.service-back-link { color: #aeb2a9; border-bottom: 1px solid #70766c; font-size: 12px; font-weight: 700; }
.service-back-link:hover { color: var(--acid); border-color: var(--acid); }
.service-hero-aside { border-top: 1px solid var(--line-dark); }
.service-hero-aside > div { padding: 21px 0; border-bottom: 1px solid var(--line-dark); }
.service-hero-aside span, .service-hero-aside b { display: block; }
.service-hero-aside span { color: #757b71; font: 700 9px var(--mono); letter-spacing: .07em; }
.service-hero-aside b { margin-top: 8px; font-size: 15px; line-height: 1.4; }
.service-local-nav { display: grid; grid-template-columns: 1.2fr repeat(6,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-local-nav > * { display: flex; min-height: 62px; align-items: center; padding: 0 15px; border-right: 1px solid var(--line-dark); font: 700 9px var(--mono); letter-spacing: .05em; }
.service-local-nav > span { color: var(--acid); }
.service-local-nav > a { color: #9ba097; }
.service-local-nav > a:hover { color: var(--ink); background: var(--acid); }

.service-overview { padding: 118px 0; }
.service-overview-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; }
.service-overview h2, .service-section-heading h2, .service-results h2, .service-faq h2, .all-services-heading h2 { margin: 28px 0 0; font-size: clamp(42px,4.7vw,72px); line-height: 1.02; letter-spacing: -.06em; font-weight: 620; }
.service-overview h2 span { color: var(--muted); }
.service-editorial-lead { margin: 0; color: var(--ink); font-size: clamp(24px,2.25vw,35px); line-height: 1.42; letter-spacing: -.035em; }
.service-editorial > p:not(.service-editorial-lead) { margin-top: 27px; color: var(--muted); font-size: 17px; }
.service-principle { margin-top: 44px; padding: 26px; border: 1px solid var(--ink); box-shadow: 7px 7px 0 var(--acid); }
.service-principle span { display: block; color: var(--orange); font: 700 9px var(--mono); letter-spacing: .08em; }
.service-principle b { display: block; margin-top: 12px; font-size: 18px; line-height: 1.45; }

.service-problems { padding: 112px 0; color: var(--paper); background: var(--ink); }
.service-section-heading { display: grid; grid-template-columns: 1.25fr .55fr; gap: 9vw; align-items: end; margin-bottom: 56px; }
.service-section-heading > p { margin: 0 0 5px; color: #a8ada4; font-size: 16px; }
.service-section-heading.on-light > p { color: var(--muted); }
.service-problem-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-problem-grid article { min-height: 300px; padding: 25px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.service-problem-grid article > span { color: var(--orange); font: 700 10px var(--mono); }
.service-problem-grid h3 { margin: 68px 0 20px; font-size: 23px; line-height: 1.25; letter-spacing: -.035em; }
.service-problem-grid p { margin: 0; color: #969b91; font-size: 13px; }

.service-work { position: relative; padding: 112px 0; overflow: hidden; }
.service-work::before { content: "SCOPE / IMPLEMENT / VERIFY"; position: absolute; right: -25px; top: 0; color: rgba(16,18,15,.035); font: 700 clamp(50px,7vw,110px) var(--mono); letter-spacing: .05em; white-space: nowrap; }
.service-work-list { position: relative; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.service-work-list article { display: grid; grid-template-columns: 50px 1fr auto; grid-template-rows: auto auto; column-gap: 20px; min-height: 170px; padding: 26px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.service-work-list article > span { grid-row: 1 / 3; color: var(--orange); font: 700 10px var(--mono); }
.service-work-list h3 { margin: 0; font-size: 23px; line-height: 1.25; letter-spacing: -.035em; }
.service-work-list p { max-width: 470px; margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.service-work-list i { grid-row: 1 / 3; font-style: normal; font-size: 24px; }

.service-results { padding: 112px 0 0; background: var(--paper-2); }
.service-results-grid { display: grid; grid-template-columns: .85fr 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.service-results-grid > div { min-height: 430px; padding: 30px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.service-results-intro p { margin-top: 27px; color: var(--muted); font-size: 15px; }
.service-result-column > span { display: block; margin-bottom: 50px; color: var(--muted); font: 700 9px var(--mono); letter-spacing: .08em; }
.service-result-column > div { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; padding: 17px 0; border-top: 1px solid var(--line); }
.service-result-column i { color: var(--orange); font-style: normal; font-weight: 800; }
.service-result-column b { font-size: 16px; line-height: 1.35; }
.service-result-column.deliverables { color: var(--paper); background: var(--ink); }
.service-result-column.deliverables > span { color: var(--acid); }
.service-result-column.deliverables > div { border-color: var(--line-dark); }
.service-result-column.deliverables i { color: var(--acid); }
.service-metrics { display: grid; grid-template-columns: 1.3fr repeat(4,1fr); border-right: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.service-metrics > div { min-height: 145px; padding: 22px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.service-metrics > div:first-child { background: var(--acid); }
.service-metrics span { display: block; color: var(--muted); font: 700 9px var(--mono); letter-spacing: .06em; }
.service-metrics > div:first-child span { color: #4a5518; }
.service-metrics b { display: block; margin-top: 25px; font-size: 15px; line-height: 1.35; }

.service-process { padding: 112px 0; }
.service-process-track { border-top: 1px solid var(--ink); }
.service-process-track article { display: grid; grid-template-columns: 100px 1fr; min-height: 130px; align-items: center; border-bottom: 1px solid var(--ink); transition: .2s ease; }
.service-process-track article:hover { padding-left: 18px; background: var(--acid); }
.service-process-track article > span { color: var(--orange); font: 700 11px var(--mono); }
.service-process-track article > div { display: grid; grid-template-columns: .55fr 1fr; gap: 6vw; align-items: center; }
.service-process-track h3 { margin: 0; font-size: 27px; letter-spacing: -.04em; }
.service-process-track p { max-width: 690px; margin: 0; color: var(--muted); font-size: 14px; }

.service-faq { padding: 112px 0; color: var(--paper); background: var(--ink); }
.service-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; }
.service-faq-grid > div:first-child > p { max-width: 420px; color: #9ba097; }
.service-faq-list { border-top: 1px solid var(--line-dark); }
.service-faq-list details { border-bottom: 1px solid var(--line-dark); }
.service-faq-list summary { display: grid; grid-template-columns: 38px 1fr auto; gap: 16px; min-height: 94px; align-items: center; cursor: pointer; list-style: none; font-size: 19px; font-weight: 650; }
.service-faq-list summary::-webkit-details-marker { display: none; }
.service-faq-list summary span { color: #747a70; font: 700 9px var(--mono); }
.service-faq-list summary b { color: var(--acid); font-size: 25px; font-weight: 400; transition: transform .2s ease; }
.service-faq-list details[open] summary b { transform: rotate(45deg); }
.service-faq-list details p { margin: -4px 42px 28px 54px; color: #aeb2a9; font-size: 16px; }

.all-services-section { padding: 112px 0; }
.all-services-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 50px; }
.all-services-heading > a { padding-bottom: 7px; border-bottom: 2px solid var(--ink); font-size: 12px; font-weight: 750; }
.all-services-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.all-services-grid > a { display: grid; grid-template-columns: 48px 1fr auto; gap: 18px; min-height: 132px; align-items: center; padding: 22px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.all-services-grid > a:hover { background: var(--acid); }
.all-services-grid > a > span { color: var(--orange); font: 700 10px var(--mono); }
.all-services-grid > a > div > b { color: var(--muted); font: 700 9px var(--mono); letter-spacing: .07em; }
.all-services-grid h3 { margin: 7px 0 0; font-size: 20px; line-height: 1.2; letter-spacing: -.035em; }
.all-services-grid i { font-size: 22px; font-style: normal; }
.all-services-home { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: center; min-height: 100px; padding: 22px; color: var(--paper); background: var(--ink); }
.all-services-home > span { color: var(--acid); font-size: 24px; }
.all-services-home b { color: var(--acid); font: 700 10px var(--mono); letter-spacing: .07em; }
.all-services-home p { margin: 5px 0 0; color: #a8ada4; font-size: 13px; }

@media (max-width: 1120px) {
  .site-shell { width: min(100% - 56px, 1240px); }
  .hero-layout { grid-template-columns: 1fr .86fr; gap: 42px; }
  .home-hero h1 { font-size: clamp(51px, 6.7vw, 76px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: .75fr 1.25fr; }
  .proof-copy, .proof-chart { padding: 36px; }
  .footer-map { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-map > div:last-child { grid-column: 2; }
  .services-mega-inner { grid-template-columns: .42fr 1.58fr; gap: 3vw; }
  .service-detail-hero-grid { grid-template-columns: 1.2fr .58fr; gap: 5vw; }
  .service-local-nav { grid-template-columns: 1.1fr repeat(6,1fr); }
  .service-problem-grid { grid-template-columns: repeat(2,1fr); }
  .service-results-grid { grid-template-columns: 1fr 1fr; }
  .service-results-intro { grid-column: 1 / -1; min-height: 300px !important; }
  .service-metrics { grid-template-columns: repeat(2,1fr); }
  .service-metrics > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-header { position: relative; }
  .header-inner { min-height: 72px; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .main-nav { display: none; position: absolute; z-index: 5; top: 72px; right: 0; left: 0; max-height: calc(100vh - 72px); margin: 0; padding: 12px 28px 28px; overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--ink); background: var(--paper); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .services-trigger { padding: 17px 0; border-bottom: 1px solid var(--line); text-align: left; font-size: 16px; }
  .services-mega { position: static; margin: 0 -28px; box-shadow: none; }
  .services-mega-inner { width: 100%; grid-template-columns: 1fr; padding: 24px 28px 28px; }
  .mega-intro { display: none; }
  .mega-links { grid-template-columns: repeat(2,1fr); }
  .main-nav .mega-links > a { min-height: 68px; padding: 10px 12px; color: var(--paper); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: 12px; }
  .main-nav .mega-links > a.is-current { color: var(--ink); }
  .home-hero { padding-top: 64px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-content { max-width: 780px; }
  .workshop-graphic { width: min(100%, 740px); }
  .intro-grid, .section-head, .ai-grid, .faq-layout, .contact-grid, .service-two-col, .service-hero-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 46px; }
  .section-head { align-items: start; }
  .section-head > p { max-width: 700px; }
  .scope-note { grid-template-columns: auto 1fr; }
  .scope-note p { grid-column: 1 / -1; justify-self: start; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-copy { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .proof-chart { min-height: 390px; }
  .process-grid, .proof-facts, .mini-process-grid { grid-template-columns: repeat(2,1fr); }
  .workshop-statement { grid-template-columns: 1fr; gap: 20px; }
  .footer-lead { align-items: flex-start; flex-direction: column; }
  .footer-map { grid-template-columns: repeat(2,1fr); }
  .footer-map > div:last-child { grid-column: auto; }
  .service-hero-grid { margin-top: 54px; }
  .service-spec { max-width: 620px; }
  .service-scope-grid, .related-grid { grid-template-columns: repeat(2,1fr); }
  .service-nav { top: 0; }
  .service-detail-hero-grid, .service-overview-grid, .service-section-heading, .service-faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .service-detail-hero-grid { min-height: 0; padding-top: 58px; }
  .service-hero-aside { display: grid; grid-template-columns: repeat(3,1fr); }
  .service-hero-aside > div { padding: 20px; border-right: 1px solid var(--line-dark); }
  .service-local-nav { display: flex; overflow-x: auto; scrollbar-width: none; }
  .service-local-nav > * { flex: 0 0 auto; min-height: 58px; }
  .service-overview { padding: 90px 0; }
  .service-work, .service-problems, .service-results, .service-process, .service-faq, .all-services-section { padding-top: 90px; padding-bottom: 90px; }
  .service-results-grid { grid-template-columns: 1fr; }
  .service-results-intro { grid-column: auto; }
  .service-process-track article > div { grid-template-columns: .55fr 1fr; }
}

@media (max-width: 650px) {
  body { font-size: 16px; }
  .site-shell { width: calc(100% - 40px); }
  .brand-logo { font-size: 21px; }
  .home-hero { padding: 48px 0 54px; }
  .blueprint-word { font-size: 70px; }
  .home-hero h1, .service-hero h1 { margin: 22px 0 26px; font-size: clamp(45px, 14vw, 66px); line-height: .96; }
  .hero-lead { font-size: 18px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 54px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > div { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .hero-facts > div + div { padding-left: 0; border-left: 0; }
  .hero-facts b { font-size: 18px; }
  .hero-facts span { font-size: 13px; }
  .workshop-graphic { box-shadow: 8px 8px 0 rgba(16,18,15,.11); }
  .graphic-head { height: 48px; padding: 0 12px; font-size: 8px; }
  .graphic-foot { padding: 0 12px; font-size: 8px; }
  .intro-section, .scope-section, .process-section, .faq-section, .service-intro, .service-scope { padding: 76px 0; }
  .services-section, .related-section, .service-detail { padding: 76px 0; }
  .intro-section h2, .section-head h2, .proof-copy h2, .ai-section h2, .faq-section h2, .contact-section h2, .footer-lead h2, .service-intro h2, .service-detail h2, .related-section h2 { font-size: clamp(37px, 10.5vw, 52px); }
  .intro-copy { padding-top: 0; }
  .intro-copy p, .section-head > p, .service-intro p, .ai-section p { font-size: 17px; }
  .intro-copy p:first-child { font-size: 21px; }
  .section-head { margin-bottom: 38px; }
  .services-grid, .scope-grid, .service-scope-grid, .related-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 23px; }
  .service-card h3 { margin-top: 42px; font-size: 27px; }
  .scope-grid article { min-height: 320px; }
  .scope-note { grid-template-columns: 1fr; padding: 25px; }
  .scope-note p { grid-column: auto; font-size: 14px; }
  .proof-section { padding-top: 76px; }
  .proof-copy { padding: 28px; }
  .proof-chart { min-height: 340px; padding: 24px; }
  .proof-chart svg { inset: 72px 20px 57px; width: calc(100% - 40px); height: calc(100% - 129px); }
  .proof-start { left: 24px; bottom: 64px; }
  .proof-end { right: 20px; top: 66px; padding: 8px 10px; }
  .proof-start b, .proof-end b { font-size: 19px; }
  .proof-axis-labels { right: 22px; bottom: 21px; left: 22px; font-size: 7px; }
  .proof-facts, .process-grid, .mini-process-grid { grid-template-columns: 1fr; }
  .proof-facts > div { min-height: 105px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .process-grid article { min-height: 220px; }
  .workshop-statement { padding: 30px 25px; }
  .workshop-statement h3 { font-size: 30px; }
  .ai-section { padding: 76px 0; }
  .console-query p { font-size: 18px; }
  .console-results { grid-template-columns: 1fr; }
  .faq-list summary { grid-template-columns: 30px 1fr auto; min-height: 84px; gap: 10px; font-size: 17px; }
  .faq-list details p { margin: 0 38px 24px 40px; font-size: 16px; }
  .contact-section { padding: 76px 0; }
  .contact-form { padding: 25px; box-shadow: 7px 7px 0 var(--ink); }
  .site-footer { padding-top: 70px; }
  .footer-lead { padding-bottom: 50px; }
  .footer-mail { gap: 20px; font-size: 17px; }
  .footer-map { grid-template-columns: 1fr; gap: 38px; }
  .footer-map p, .footer-map a, .footer-map span { font-size: 13px; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .service-hero { padding: 32px 0 70px; }
  .service-hero-grid { margin-top: 42px; }
  .service-hero-grid > div:first-child > p { font-size: 18px; }
  .service-spec { padding: 23px; }
  .service-intro .large-copy { font-size: 24px; }
  .problem-list p, .outcome-list p { font-size: 16px; }
  .service-scope-grid article { min-height: 210px; }
  .related-grid a { min-height: 295px; }
  .services-mega-inner { padding-right: 20px; padding-left: 20px; }
  .mega-links { grid-template-columns: 1fr; }
  .main-nav .mega-links > a { min-height: 58px; }
  .service-nav-inner { width: 100%; }
  .service-nav-home { width: 48px; padding: 0; justify-content: center; font-size: 0; }
  .service-nav-home span { font-size: 17px; }
  .service-nav-scroll a { padding: 0 14px; }
  .service-nav-scroll b { font-size: 9px; }
  .service-detail-hero { padding-top: 28px; }
  .service-hero-number { top: 35px; font-size: 220px; }
  .service-breadcrumbs { line-height: 1.8; }
  .service-detail-hero-grid { padding: 44px 0 46px; gap: 35px; }
  .service-title-block h1 { margin: 24px 0; font-size: clamp(46px,14vw,66px); line-height: .94; }
  .service-title-block > p { font-size: 18px; }
  .service-hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .service-back-link { align-self: flex-start; font-size: 13px; }
  .service-hero-aside { grid-template-columns: 1fr; }
  .service-hero-aside > div { padding: 17px 0; border-right: 0; }
  .service-local-nav > * { padding: 0 14px; font-size: 9px; }
  .service-overview, .service-problems, .service-work, .service-results, .service-process, .service-faq, .all-services-section { padding-top: 74px; padding-bottom: 74px; }
  .service-overview h2, .service-section-heading h2, .service-results h2, .service-faq h2, .all-services-heading h2 { font-size: clamp(38px,11vw,54px); }
  .service-editorial-lead { font-size: 23px; }
  .service-principle { padding: 22px; }
  .service-problem-grid { grid-template-columns: 1fr; }
  .service-problem-grid article { min-height: 250px; }
  .service-problem-grid h3 { margin-top: 50px; font-size: 22px; }
  .service-work-list { grid-template-columns: 1fr; }
  .service-work-list article { grid-template-columns: 37px 1fr auto; min-height: 165px; padding: 22px; column-gap: 12px; }
  .service-work-list h3 { font-size: 20px; }
  .service-results-grid > div { min-height: 360px; padding: 24px; }
  .service-results-intro { min-height: 300px !important; }
  .service-metrics { grid-template-columns: 1fr; }
  .service-metrics > div:first-child { grid-column: auto; }
  .service-metrics > div { min-height: 118px; }
  .service-process-track article { grid-template-columns: 48px 1fr; min-height: 165px; }
  .service-process-track article > div { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .service-process-track h3 { font-size: 23px; }
  .service-process-track p { padding-right: 10px; font-size: 14px; }
  .service-faq-list summary { grid-template-columns: 28px 1fr auto; min-height: 88px; gap: 10px; font-size: 17px; }
  .service-faq-list details p { margin: 0 36px 24px 38px; font-size: 16px; }
  .all-services-heading { align-items: flex-start; flex-direction: column; }
  .all-services-grid { grid-template-columns: 1fr; }
  .all-services-grid > a { grid-template-columns: 35px 1fr auto; min-height: 120px; padding: 18px; gap: 12px; }
  .all-services-grid h3 { font-size: 18px; }
  .all-services-home { grid-template-columns: 35px 1fr; padding: 18px; }
}

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

/* credibility and conversion upgrade */
.header-inner { gap: 24px; }
.main-nav { gap: 22px; }
.mobile-contact-bar { display: none; }
.hero-facts { grid-template-columns: repeat(4,1fr); max-width: 860px; }

.problems-section { padding: 112px 0; background: var(--paper-2); }
.problems-head { align-items: end; }
.home-problems-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.home-problems-grid article { min-height: 250px; padding: 26px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: rgba(246,245,239,.48); }
.home-problems-grid article > span { color: var(--orange); font: 700 10px var(--mono); }
.home-problems-grid h3 { margin: 52px 0 15px; font-size: 25px; line-height: 1.15; letter-spacing: -.04em; }
.home-problems-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.proof-section { padding: 112px 0; }
.proof-title-row { display: grid; grid-template-columns: 1.2fr .55fr; gap: 9vw; align-items: end; margin-bottom: 54px; }
.proof-title-row h2, .fit-intro h2, .founders-heading h2, .case-context h2, .case-chart-section h2, .case-conclusion h2 { margin: 28px 0 0; font-size: clamp(40px,4.5vw,68px); line-height: 1.02; letter-spacing: -.06em; font-weight: 620; }
.proof-title-row h2 span, .founders-heading h2 span { color: #9ca198; }
.proof-title-row > p { margin: 0; color: #adb1a8; font-size: 17px; }
.proof-title-row a { color: var(--acid); border-bottom: 1px solid currentColor; }
.proof-grid { grid-template-columns: minmax(300px,.72fr) 1.28fr; min-height: 520px; }
.proof-client { color: var(--acid); font: 700 9px var(--mono); letter-spacing: .08em; }
.proof-period { margin-top: 24px; padding-top: 19px; border-top: 1px solid var(--line-dark); }
.proof-period > span, .proof-period > b, .proof-period > small { display: block; }
.proof-period > span { color: #7e8479; font: 700 8px var(--mono); letter-spacing: .08em; }
.proof-period > b { margin-top: 6px; font-size: 14px; }
.proof-period > small { margin-top: 5px; color: #8f958a; font-size: 10px; line-height: 1.45; }
.case-link { display: flex; justify-content: space-between; gap: 30px; margin-top: 28px; padding: 15px 0; color: var(--paper); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: 13px; font-weight: 750; }
.case-link:hover { color: var(--acid); }
.case-area { fill: url(#case-proof-area); }
.case-actions { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--line-dark); }
.case-actions > div { min-height: 138px; padding: 23px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.case-actions > div:first-child { grid-column: span 2; color: var(--ink); background: var(--acid); }
.case-actions span { color: #7f857a; font: 700 8px var(--mono); letter-spacing: .07em; }
.case-actions > div:first-child span { color: #4b561d; }
.case-actions b { display: block; margin-top: 25px; font-size: 24px; letter-spacing: -.04em; }
.case-actions p { margin: 25px 0 0; color: #b0b4ab; font-size: 12px; line-height: 1.45; }

.fit-section { padding: 112px 0; background: var(--paper-2); }
.fit-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; align-items: start; }
.fit-intro p { max-width: 560px; color: var(--muted); font-size: 17px; }
.fit-signals { border-top: 1px solid var(--ink); }
.fit-signals > div { display: grid; grid-template-columns: 48px 1fr; min-height: 82px; align-items: center; border-bottom: 1px solid var(--ink); }
.fit-signals span { color: var(--orange); font: 700 10px var(--mono); }
.fit-signals b { font-size: 17px; line-height: 1.35; font-weight: 650; }
.platform-row { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 66px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.platform-row > div { min-height: 245px; padding: 25px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); }
.platform-row span { color: var(--muted); font: 700 9px var(--mono); letter-spacing: .07em; }
.platform-row b { display: block; margin-top: 45px; font-size: 25px; letter-spacing: -.04em; }
.platform-row p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.platform-row .platform-cta { color: var(--paper); background: var(--ink); }
.platform-cta span { color: var(--acid); }
.platform-cta b { margin-top: 27px; font-size: 19px; line-height: 1.35; }
.platform-cta a { display: inline-block; margin-top: 28px; padding-bottom: 5px; color: var(--acid); border-bottom: 1px solid var(--acid); font-size: 12px; font-weight: 750; }

.founders-section { padding: 112px 0; color: var(--paper); background: var(--ink); }
.founders-heading { display: grid; grid-template-columns: 1.3fr .6fr; gap: 8vw; align-items: end; }
.founders-heading > p { margin: 0; color: #c1c4bd; font-size: 17px; line-height: 1.72; }
.founder-grid { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 58px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.founder-grid article { display: grid; grid-template-columns: 170px 1fr; min-height: 380px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.founder-mark { display: flex; align-items: flex-end; padding: 24px; color: var(--ink); background: var(--acid); font: 700 54px/.8 var(--mono); letter-spacing: -.1em; }
.founder-copy { display: flex; flex-direction: column; padding: 30px; }
.founder-copy > span { color: var(--acid); font: 700 10px/1.5 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.founder-copy h3 { margin: 80px 0 18px; font-size: 31px; letter-spacing: -.045em; }
.founder-copy p { margin: 0; color: #c1c4bd; font-size: 16px; line-height: 1.68; }
.founders-note { display: grid; grid-template-columns: .42fr 1.58fr; gap: 5vw; align-items: center; min-height: 110px; padding: 25px; color: var(--ink); background: var(--paper); }
.founders-note span { color: var(--orange); font: 700 10px/1.45 var(--mono); letter-spacing: .07em; }
.founders-note b { max-width: 980px; font-size: 18px; line-height: 1.5; }

.contact-two-col { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.contact-two-col label small { color: var(--muted); font-size: 8px; }
.contact-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-consent { display: grid !important; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin-top: 18px !important; font-family: var(--sans) !important; font-size: 11px !important; line-height: 1.45 !important; letter-spacing: 0 !important; text-transform: none !important; }
.contact-consent input { width: 16px; height: 16px; margin: 1px 0 0; padding: 0; border: 0; accent-color: var(--ink); }
.contact-form button:disabled { cursor: wait; opacity: .72; }
.form-status { min-height: 20px; margin-top: 12px; font-size: 12px; line-height: 1.5; }
.form-status.success { color: #324012; }
.form-status.error { color: #a32514; }
.form-status a { border-bottom: 1px solid currentColor; }
.contact-steps { list-style: none; max-width: 620px; margin: 38px 0 0; padding: 0; border-top: 1px solid rgba(16,18,15,.35); }
.contact-steps li { display: grid; grid-template-columns: 42px 1fr; min-height: 54px; align-items: center; border-bottom: 1px solid rgba(16,18,15,.35); font-size: 13px; font-weight: 650; }
.contact-steps span { font: 700 9px var(--mono); }
.contact-direct { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 12px 28px; max-width: 620px; margin-top: 32px; padding-bottom: 13px; border-bottom: 1px solid rgba(16,18,15,.45); }
.contact-direct > span { font: 700 10px/1.4 var(--mono); letter-spacing: .07em; }
.contact-direct a { display: flex; align-items: center; gap: 32px; font-size: clamp(24px,2.2vw,34px); font-weight: 700; letter-spacing: -.045em; }
.contact-direct a:hover { color: var(--orange); }
.contact-direct b { font-size: 15px; }

.case-hero { position: relative; isolation: isolate; overflow: hidden; padding: 44px 0 0; color: var(--paper); background: var(--ink); }
.case-watermark { position: absolute; z-index: -1; right: -2vw; top: 90px; color: rgba(246,245,239,.035); font: 700 clamp(110px,18vw,290px)/.8 var(--mono); letter-spacing: -.11em; white-space: nowrap; }
.case-hero-grid { display: grid; grid-template-columns: 1.25fr .5fr; gap: 9vw; min-height: 660px; align-items: center; padding: 76px 0 68px; }
.case-hero h1 { max-width: 960px; margin: 30px 0; font-size: clamp(55px,7vw,103px); line-height: .92; letter-spacing: -.073em; font-weight: 620; }
.case-hero h1 em { color: var(--acid); font-style: normal; }
.case-hero-grid > div > p { max-width: 790px; margin: 0; color: #b2b7ad; font-size: clamp(19px,1.6vw,24px); line-height: 1.5; }
.case-external { color: #adb2a8; border-bottom: 1px solid #73796f; font-size: 12px; font-weight: 750; }
.case-external:hover { color: var(--acid); border-color: var(--acid); }
.case-key-data { border-top: 1px solid var(--line-dark); }
.case-key-data > div { padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.case-key-data span, .case-key-data b { display: block; }
.case-key-data span { color: #777d73; font: 700 9px var(--mono); letter-spacing: .07em; }
.case-key-data b { margin-top: 7px; font-size: 16px; }
.case-context, .case-actions-section { padding: 112px 0; }
.case-context-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; }
.case-context h2 span { color: var(--muted); }
.case-lead { margin-top: 0; color: var(--ink); font-size: clamp(24px,2.3vw,35px); line-height: 1.4; letter-spacing: -.035em; }
.case-context-grid > div:last-child > p:not(.case-lead) { color: var(--muted); font-size: 17px; }
.case-chart-section { padding: 112px 0; color: var(--paper); background: var(--ink); }
.case-chart-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 6vw; align-items: center; }
.case-chart-grid > div:first-child > p { color: #aeb2a9; font-size: 16px; }
.case-chart-grid .proof-chart { min-height: 440px; border: 1px solid var(--line-dark); }
.case-action-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.case-action-grid article { min-height: 285px; padding: 26px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.case-action-grid article > span { color: var(--orange); font: 700 10px var(--mono); }
.case-action-grid h3 { margin: 58px 0 17px; font-size: 24px; letter-spacing: -.04em; }
.case-action-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.case-conclusion { padding: 112px 0; color: var(--paper); background: var(--ink); }
.case-conclusion-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.case-conclusion h2 em { color: var(--acid); font-style: normal; }
.case-conclusion-grid > div:last-child > p { color: #afb4aa; font-size: 18px; }

@media (max-width:1120px) {
  .main-nav { gap: 15px; }
  .main-nav a, .services-trigger { font-size: 12px; }
  .header-cta { padding: 0 13px; gap: 16px; }
  .home-problems-grid, .case-action-grid { grid-template-columns: repeat(2,1fr); }
  .platform-row { grid-template-columns: repeat(2,1fr); }
  .founder-grid article { grid-template-columns: 130px 1fr; }
}

@media (max-width:900px) {
  .main-nav a, .services-trigger { font-size: 16px; }
  .proof-title-row, .fit-layout, .founders-heading, .case-hero-grid, .case-context-grid, .case-chart-grid, .case-conclusion-grid { grid-template-columns: 1fr; gap: 46px; }
  .proof-grid { grid-template-columns: 1fr; }
  .case-actions { grid-template-columns: repeat(2,1fr); }
  .case-actions > div:first-child { grid-column: span 2; }
  .founder-grid { grid-template-columns: 1fr; }
  .case-hero-grid { min-height: 0; padding-top: 58px; }
  .case-key-data { display: grid; grid-template-columns: repeat(2,1fr); }
  .case-key-data > div { padding: 20px; border-right: 1px solid var(--line-dark); }
}

@media (max-width:650px) {
  body { padding-bottom: 58px; }
  .mobile-contact-bar { position: fixed; z-index: 70; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; align-items: center; min-height: 58px; padding: 0 20px; color: var(--ink); border-top: 1px solid var(--ink); background: var(--acid); font-size: 14px; font-weight: 800; }
  .hero-facts { grid-template-columns: 1fr; }
  .problems-section, .fit-section, .founders-section, .case-context, .case-chart-section, .case-actions-section, .case-conclusion { padding: 76px 0; }
  .proof-title-row h2, .fit-intro h2, .founders-heading h2, .case-context h2, .case-chart-section h2, .case-conclusion h2 { font-size: clamp(37px,10.5vw,52px); }
  .home-problems-grid, .case-action-grid { grid-template-columns: 1fr; }
  .home-problems-grid article { min-height: 225px; padding: 23px; }
  .home-problems-grid h3 { margin-top: 42px; }
  .proof-section { padding-top: 76px; }
  .proof-title-row { margin-bottom: 38px; }
  .case-actions { grid-template-columns: 1fr; }
  .case-actions > div:first-child { grid-column: auto; }
  .case-actions > div { min-height: 118px; }
  .platform-row { grid-template-columns: 1fr; margin-top: 48px; }
  .platform-row > div { min-height: 220px; }
  .founder-grid article { grid-template-columns: 92px 1fr; min-height: 360px; }
  .founder-mark { padding: 18px 12px; font-size: 38px; }
  .founder-copy { padding: 23px 20px; }
  .founder-copy h3 { margin-top: 54px; font-size: 27px; }
  .founders-note { grid-template-columns: 1fr; gap: 13px; }
  .contact-two-col { grid-template-columns: 1fr; gap: 0; }
  .case-hero { padding-top: 30px; }
  .case-hero-grid { padding: 46px 0 48px; gap: 36px; }
  .case-hero h1 { font-size: clamp(45px,13.5vw,64px); }
  .case-hero-grid > div > p { font-size: 18px; }
  .case-key-data { grid-template-columns: 1fr; }
  .case-key-data > div { padding: 17px 0; border-right: 0; }
  .case-chart-grid .proof-chart { min-height: 340px; }
  .case-action-grid article { min-height: 245px; padding: 23px; }
  .case-action-grid h3 { margin-top: 48px; }
}
