@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/assets/fonts/roboto-mono-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/assets/fonts/roboto-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f3f0e8;
  --paper-2: #ebe6da;
  --paper-3: #dcd4c2;
  --white: #fffdf7;
  --ink: #11120f;
  --ink-2: #1b1c18;
  --surface-default: var(--paper);
  --surface-raised: var(--white);
  --surface-muted: var(--paper-2);
  --surface-inverse: #10110e;
  --surface-inverse-raised: #1b1c17;
  --surface-form: #25251f;
  --text-primary: var(--ink);
  --muted: #63645e;
  --text-secondary: #53544f;
  --text-inverse-muted: #a8aaa3;
  --line: rgba(17, 18, 15, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --signal: #d6b85c;
  --signal-hover: #c3a146;
  --signal-display: #806319;
  --signal-ink: #705814;
  --signal-soft: #dccfa5;
  --signal-focus: #a88328;
  --status-success: #8fb39a;
  --status-success-soft: #dce9df;
  --status-error: #ff9c83;
  --font: "Manrope", "Segoe UI", Arial, sans-serif;
  --mono: "Roboto Mono", Consolas, monospace;
  --page: 1440px;
  --copy: 70ch;
  --pad: clamp(20px, 3.25vw, 52px);
  --section: clamp(84px, 10vw, 156px);
  --space-block: clamp(38px, 5vw, 76px);
  --space-component: clamp(20px, 2.5vw, 36px);
  --radius: 14px;
  --radius-sm: 4px;
  --shadow-float: 0 24px 70px rgba(17, 18, 15, .14);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --motion-enter-duration: .52s;
  --motion-enter-distance: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
body.menu-open .cookie-banner { visibility: hidden; pointer-events: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
a[href], button, summary { touch-action: manipulation; }
::selection { background: var(--signal); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--signal-focus); outline-offset: 4px; }

.container { width: min(100%, var(--page)); margin-inline: auto; padding-inline: var(--pad); }
.section-pad { padding-block: var(--section); }
.section-dark { background: var(--surface-inverse); color: var(--white); }
.section-ink { background: var(--ink-2); color: var(--white); }
.section-rule { border-top: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 84px;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { height: 70px; border-color: var(--line); background: var(--paper); }
.header-inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; width: max-content; }
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.06em;
}
.brand-mark span, .brand-name span { color: var(--signal); }
.brand-name { font-weight: 800; letter-spacing: -.055em; font-size: 20px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.5vw, 42px); }
.desktop-nav a { min-height: 44px; position: relative; display: inline-flex; align-items: center; color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta { min-height: 44px; display: inline-flex; align-items: center; color: var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--ink); padding-top: 4px; }
.header-cta span { color: var(--signal); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; padding: 0; place-items: center; }
.menu-toggle span { position: absolute; width: 17px; height: 1.5px; background: var(--ink); transition: transform .25s ease; }
.menu-toggle span:first-child { transform: translateY(-3px); }
.menu-toggle span:last-child { transform: translateY(3px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100dvh - 84px);
  background: var(--paper);
  padding: 28px var(--pad) calc(56px + env(safe-area-inset-bottom));
  overflow: auto;
  flex-direction: column;
}
.mobile-nav:not([hidden]) { display: flex; }
.mobile-nav a { display: flex; align-items: center; min-height: 58px; border-bottom: 1px solid var(--line); font-size: clamp(24px, 7vw, 38px); font-weight: 600; letter-spacing: -.04em; text-decoration: none; }
.mobile-nav a:last-child { margin-top: 24px; justify-content: center; background: var(--signal); border: 0; font-size: 16px; font-weight: 800; }

/* Compact header used on legal documents. */
.site-header > .container:not(.header-inner) { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-header > .container:not(.header-inner) .brand { font-size: 20px; font-weight: 800; letter-spacing: -.05em; }
.site-header > .container:not(.header-inner) nav a { color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: none; }
.site-header > .container:not(.header-inner) nav a:hover { color: var(--ink); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--signal); color: var(--ink); }
.button-primary:hover { background: var(--signal-hover); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--signal-soft); }
.button-small { min-height: 44px; padding: 10px 14px; font-size: 12px; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 14px; width: fit-content; max-width: 100%; overflow-wrap: anywhere; font-size: 14px; font-weight: 800; text-underline-offset: 6px; }
.text-link span { color: var(--signal); }

.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow > span { width: 8px; height: 8px; background: var(--signal); border-radius: 50%; }
.hero { padding-top: clamp(72px, 8.5vw, 126px); padding-bottom: clamp(88px, 8vw, 126px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.13fr) minmax(390px, .87fr); align-items: center; gap: clamp(52px, 8vw, 124px); }
.hero-copy { min-width: 0; }
.hero h1 { max-width: 880px; margin: 0; font-size: clamp(54px, 6.7vw, 110px); line-height: .98; font-weight: 600; letter-spacing: -.052em; text-wrap: balance; }
.hero h1 em { display: block; color: var(--signal-display); font-style: normal; }
.hero-lead { max-width: 700px; margin: 34px 0 0; color: #40413d; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.hero-proof { list-style: none; padding: 0; margin: clamp(52px, 6vw, 86px) 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-proof li { padding: 18px 16px 0 0; display: flex; flex-direction: column; gap: 3px; }
.hero-proof strong { font-size: 13px; }
.hero-proof span { color: var(--muted); font-size: 12px; }

.hero-system { min-height: 600px; display: flex; flex-direction: column; background: var(--ink); color: var(--white); border-radius: var(--radius); padding: clamp(20px, 2.5vw, 34px); box-shadow: 18px 22px 0 var(--signal-soft); transform: none; }
.system-topline { display: flex; justify-content: space-between; gap: 14px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; color: var(--text-inverse-muted); }
.system-status { display: flex; align-items: center; gap: 7px; color: var(--white); }
.system-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--status-success); box-shadow: 0 0 0 4px rgba(143, 179, 154, .12); }
.system-core { flex: 1; min-height: 245px; position: relative; display: flex; align-items: flex-end; padding: 38px 0 26px; border-bottom: 1px solid var(--line-light); overflow: hidden; }
.system-slash { position: absolute; right: 1%; top: -42%; color: var(--signal); font-size: 340px; line-height: 1; font-weight: 500; opacity: .9; }
.system-core p { position: relative; z-index: 1; margin: 0; font-size: clamp(24px, 2.15vw, 35px); line-height: 1.15; letter-spacing: -.045em; }
.system-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; }
.system-steps li { min-height: 104px; padding: 18px 16px 15px 0; display: grid; grid-template-columns: 28px 1fr; align-content: center; border-bottom: 1px solid var(--line-light); }
.system-steps li:nth-child(odd) { border-right: 1px solid var(--line-light); }
.system-steps li:nth-child(even) { padding-left: 18px; }
.system-steps span { grid-row: 1 / 3; font-family: var(--mono); color: var(--signal); font-size: 10px; }
.system-steps strong { font-size: 13px; }
.system-steps small { color: #8b8d86; font-size: 11px; }
.system-caption { padding-top: 18px; color: #9d9f98; font-size: 11px; line-height: 1.5; }

.capability-line { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.capability-track { min-width: max-content; min-height: 72px; display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 46px); padding-inline: var(--pad); font-family: var(--mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.capability-track i { width: 5px; height: 5px; background: var(--signal); transform: rotate(45deg); }

.problem-router {
  padding-block: clamp(56px, 7vw, 104px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.problem-router-grid {
  display: grid;
  grid-template-columns: minmax(260px, .66fr) minmax(0, 1.34fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
}
.problem-router-copy {
  position: sticky;
  top: 112px;
}
.problem-router-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.048em;
  font-weight: 600;
}
.problem-router-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.problem-router-list a {
  min-height: 216px;
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: background .25s ease, transform .35s var(--ease);
}
.problem-router-list a:nth-child(even) { border-right: 0; }
.problem-router-list a:hover {
  background: var(--surface-raised);
  transform: translateY(-3px);
}
.problem-router-list span {
  color: var(--signal-ink);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .06em;
}
.problem-router-list strong {
  max-width: 390px;
  margin-top: auto;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.13;
  letter-spacing: -.035em;
}
.problem-router-list small {
  max-width: 420px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section-heading { margin-bottom: clamp(54px, 7vw, 102px); display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 64px; }
.section-heading h2, .studio-copy h2, .faq-heading h2, .brief-copy h2, .inner-hero h1 { margin: 0; font-size: clamp(44px, 5.6vw, 84px); line-height: 1; letter-spacing: -.048em; font-weight: 600; text-wrap: balance; }
.section-heading > p { max-width: 520px; margin: 0 0 7px auto; color: var(--muted); font-size: 16px; }
.section-heading.inverse > p { color: #aaaDA6; }

.featured-case { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); border-top: 1px solid var(--line-light); }
.case-visual { min-height: 480px; position: relative; display: grid; place-items: center; overflow: hidden; background: #070b12; text-decoration: none; }
.case-visual::after, .project-media::after { content: ""; position: absolute; inset: 0; border: 1px solid transparent; transition: border-color .3s ease; pointer-events: none; }
.case-visual:hover::after, .project-media:hover::after { border-color: var(--signal); }
.case-visual img { width: 86%; object-fit: contain; transition: transform .7s var(--ease); }
.case-visual:hover img, .project-media:hover img { transform: scale(1.025); }
.case-number { position: absolute; top: 20px; right: 20px; padding: 8px 10px; background: var(--signal); color: var(--ink); font-family: var(--mono); font-size: 10px; }
.case-status-chip {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  min-height: 32px;
  max-width: calc(100% - 116px);
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(7,10,14,.84);
  color: #f4f1e9;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  pointer-events: none;
}
.case-status-chip::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; }
.case-status-chip--verified::before { background: var(--status-success); box-shadow: 0 0 0 4px rgba(143,179,154,.14); }
.case-status-chip--progress::before { background: var(--signal); box-shadow: 0 0 0 4px rgba(214,184,92,.14); }
.case-yastreb-preview > .case-status-chip { top: 50px; }
.case-copy { padding: clamp(32px, 4vw, 62px); display: flex; flex-direction: column; align-items: flex-start; background: var(--surface-inverse-raised); border-left: 1px solid var(--line-light); }
.case-meta { width: 100%; display: flex; justify-content: space-between; gap: 20px; color: #8f918a; font-family: var(--mono); font-size: 9px; line-height: 1.4; letter-spacing: .05em; text-transform: uppercase; }
.case-copy h3, .project-copy h3 { margin: auto 0 18px; font-size: clamp(34px, 3.3vw, 54px); line-height: 1; letter-spacing: -.06em; }
.case-copy p, .project-copy p { margin: 0; color: var(--text-inverse-muted); font-size: 14px; }
.tag-list { list-style: none; padding: 0; margin: 24px 0 38px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list li { padding: 7px 10px; border: 1px solid var(--line-light); border-radius: 100px; color: #c9cac5; font-family: var(--mono); font-size: 9px; }
.case-link { margin-top: auto; display: inline-flex; gap: 12px; color: var(--white); font-size: 13px; font-weight: 800; text-underline-offset: 6px; }
.case-link span { color: var(--signal); }
.case-grid { margin-top: clamp(46px, 5vw, 78px); display: grid; grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr); gap: clamp(22px, 3vw, 46px); }
.project-card { border-top: 1px solid var(--line-light); }
.project-media { position: relative; display: block; aspect-ratio: 1.3 / 1; overflow: hidden; background: #d8d5cd; text-decoration: none; }
.project-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.project-yastreb .project-media > img { object-position: top left; }
.project-copy { min-height: 290px; padding: 28px 0 4px; display: flex; flex-direction: column; align-items: flex-start; }
.project-copy h3 { margin-top: 52px; }
.project-copy p { max-width: 560px; }
.project-copy .case-link { margin-top: 28px; }
.industrial-preview { padding: clamp(16px, 2vw, 28px); background: #c8d1c6; color: #172019; }
.industrial-head { height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-inline: 12px; background: #182119; color: #f8f7ef; font-family: var(--mono); font-size: 7px; }
.industrial-head i { flex: 1; height: 1px; background: rgba(255,255,255,.15); }
.industrial-body { height: calc(100% - 36px); display: grid; grid-template-columns: 54px 1fr; background: #edf0e9; }
.industrial-body aside { padding-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 18px; background: #222c23; }
.industrial-body aside b { width: 28px; height: 28px; display: grid; place-items: center; background: var(--signal); color: #172019; font-size: 9px; }
.industrial-body aside span { width: 15px; height: 2px; background: rgba(255,255,255,.2); }
.industrial-main { padding: clamp(17px, 2vw, 30px); overflow: hidden; }
.industrial-title { display: flex; justify-content: space-between; gap: 15px; }
.industrial-title span { font-size: clamp(15px, 1.5vw, 22px); font-weight: 800; }
.industrial-title small { font-family: var(--mono); font-size: 7px; color: #6f7b70; }
.industrial-metrics { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.industrial-metrics span { padding: 10px; background: #fff; }
.industrial-metrics b, .industrial-metrics small { display: block; }
.industrial-metrics b { font-size: clamp(14px, 1.5vw, 22px); }
.industrial-metrics small { color: #6f7b70; font-size: 7px; }
.industrial-chart { height: 74px; margin-top: 10px; padding: 12px; display: flex; align-items: end; gap: 5px; background: #dfe5dd; }
.industrial-chart i { flex: 1; min-width: 5px; background: #495d4c; }
.industrial-chart i:nth-child(1) { height: 25%; }.industrial-chart i:nth-child(2) { height: 42%; }.industrial-chart i:nth-child(3) { height: 36%; }.industrial-chart i:nth-child(4) { height: 65%; }.industrial-chart i:nth-child(5) { height: 52%; }.industrial-chart i:nth-child(6) { height: 78%; }.industrial-chart i:nth-child(7) { height: 64%; }.industrial-chart i:nth-child(8) { height: 92%; background: var(--signal); }
.industrial-rows { margin-top: 8px; }
.industrial-rows span { min-height: 25px; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid #d5dad3; font-family: var(--mono); font-size: 6px; }
.industrial-rows i { height: 3px; background: #d3d8d1; }
.industrial-rows small { color: #677168; }
.work-footer { margin-top: clamp(64px, 8vw, 112px); padding-top: 32px; border-top: 1px solid var(--line-light); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.work-footer p { max-width: 560px; margin: 0; color: var(--text-inverse-muted); }

.service-list { border-top: 1px solid var(--line); }
.service-row { min-height: 142px; display: grid; grid-template-columns: 70px minmax(250px, .8fr) minmax(260px, 1fr) 40px; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .25s ease; }
.service-row:hover { background: var(--white); }
.service-index { font-family: var(--mono); font-size: 10px; color: var(--signal-ink); }
.service-title { font-size: clamp(22px, 2.2vw, 34px); line-height: 1.1; letter-spacing: -.04em; font-weight: 700; }
.service-desc { max-width: 640px; color: var(--muted); font-size: 14px; line-height: 1.58; }
.service-desc b { color: var(--ink); font-weight: 800; }
.service-arrow { justify-self: end; color: var(--signal-ink); font-size: 22px; }
.service-note { margin-top: clamp(48px, 6vw, 86px); display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 30px; padding: clamp(26px, 4vw, 52px); background: var(--ink); color: var(--white); }
.note-mark { font-size: 76px; line-height: 1; color: var(--signal); }
.service-note p { max-width: 760px; margin: 0; color: var(--text-inverse-muted); }
.service-note strong { color: var(--white); }
.service-note .text-link { color: var(--white); }

.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-light); }
.process-list li { min-height: 154px; display: grid; grid-template-columns: 70px 1.4fr 120px .8fr; align-items: center; gap: 28px; border-bottom: 1px solid var(--line-light); }
.process-number { font-family: var(--mono); font-size: 10px; color: var(--signal); }
.process-list h3 { margin: 0 0 7px; font-size: clamp(23px, 2vw, 30px); letter-spacing: -.04em; }
.process-list p { margin: 0; color: var(--text-inverse-muted); font-size: 13px; }
.process-list > li > strong { font-family: var(--mono); color: #74766f; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.process-output { color: var(--white) !important; }
.principles-grid { margin-top: clamp(70px, 8vw, 120px); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.principles-grid > div { min-height: 290px; padding: 26px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.principles-grid span { font-family: var(--mono); font-size: 9px; color: var(--signal); }
.principles-grid h3 { margin: 82px 0 14px; font-size: 20px; letter-spacing: -.04em; }
.principles-grid p { margin: 0; color: #9fa19a; font-size: 13px; }

.studio-grid { display: grid; grid-template-columns: minmax(350px, .78fr) minmax(0, 1.22fr); gap: clamp(54px, 9vw, 150px); align-items: start; }
.founder-photo { position: relative; max-width: 610px; }
.founder-photo::before { content: ""; position: absolute; inset: 16px -16px -16px 16px; background: var(--signal-soft); }
.founder-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: .72 / 1; object-fit: cover; object-position: 50% 20%; filter: saturate(.72) contrast(1.06); }
.photo-caption { position: relative; z-index: 2; margin: -82px 18px 0; min-height: 64px; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 18px; background: var(--white); }
.photo-caption span { font-size: 13px; font-weight: 800; }
.photo-caption small { color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.studio-copy { padding-top: 18px; }
.studio-copy blockquote { max-width: 820px; margin: clamp(44px, 5vw, 76px) 0 32px; font-size: clamp(24px, 2.5vw, 38px); line-height: 1.28; letter-spacing: -.03em; font-weight: 500; }
.studio-copy > p:not(.eyebrow) { max-width: 700px; color: var(--muted); }
.studio-facts { margin: 48px 0 38px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.studio-facts div { min-height: 116px; padding: 18px 18px 0 0; display: flex; flex-direction: column; gap: 5px; }
.studio-facts strong { font-size: 14px; }
.studio-facts span { color: var(--muted); font-size: 11px; }

.budget { background: var(--paper-2); }
.budget-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.budget-card { min-height: 330px; padding: clamp(24px, 2.5vw, 36px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.budget-card > span { font-family: var(--mono); color: var(--muted); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.budget-card strong { margin: 70px 0 18px; font-size: clamp(25px, 2.25vw, 36px); line-height: 1; letter-spacing: -.05em; }
.budget-card p { margin: 0; color: var(--muted); font-size: 13px; }
.budget-card small { margin-top: auto; padding-top: 28px; font-family: var(--mono); font-size: 9px; }
.budget-card.featured { background: var(--ink); color: var(--white); }
.budget-card.featured p, .budget-card.featured > span { color: var(--text-inverse-muted); }
.budget-card.featured strong { color: var(--signal); }
.budget-disclaimer { max-width: 900px; margin: 24px 0 0; color: var(--muted); font-size: 11px; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 160px); align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading > p:not(.eyebrow) { max-width: 430px; margin: 28px 0; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 24px; list-style: none; cursor: pointer; font-size: clamp(18px, 1.6vw, 24px); letter-spacing: -.025em; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 24px; height: 24px; flex: 0 0 24px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 4px; right: 4px; top: 11px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details > p { max-width: 730px; margin: -10px 48px 32px 0; color: var(--muted); }

.brief { background: var(--ink); color: var(--white); }
.brief-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr); gap: clamp(62px, 9vw, 148px); }
.brief-copy > p:not(.eyebrow) { max-width: 560px; margin: 30px 0; color: var(--text-inverse-muted); }
.direct-contacts { margin-top: 56px; display: grid; border-top: 1px solid var(--line-light); }
.direct-contacts a { min-height: 66px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-bottom: 1px solid var(--line-light); text-decoration: none; }
.direct-contacts span { color: #83857e; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.direct-contacts strong { font-size: 13px; }
.lead-form { padding: clamp(26px, 4vw, 54px); background: var(--surface-form); }
.form-row.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { position: relative; margin-bottom: 24px; }
.field label { display: block; margin-bottom: 9px; color: #c7c9c2; font-size: 11px; font-weight: 600; }
.field label span { color: #777971; font-weight: 400; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid #5e6059; border-radius: 0; background: transparent; color: var(--white); padding: 11px 0 13px; outline: 0; }
.field textarea { min-height: 130px; resize: vertical; }
.field select { color-scheme: dark; }
.field input::placeholder, .field textarea::placeholder { color: #a0a29b; opacity: 1; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--signal); box-shadow: 0 1px 0 var(--signal); }
.field [aria-invalid="true"] { border-color: var(--status-error); }
.field-error { display: block; min-height: 16px; padding-top: 5px; color: var(--status-error); font-size: 10px; }
.field-hidden { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; }
.consent { display: flex; align-items: flex-start; gap: 12px; color: var(--text-inverse-muted); font-size: 11px; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 0; flex: 0 0 auto; accent-color: var(--signal); }
.consent a { color: var(--white); text-underline-offset: 3px; }
.form-submit-row { margin-top: 30px; display: flex; align-items: center; gap: 24px; }
.form-submit-row p { max-width: 190px; margin: 0; color: #898b84; font-size: 10px; }
.lead-form.is-sending .button { opacity: .6; pointer-events: none; }
.form-status { margin-top: 18px; font-size: 12px; }
.form-status.pending { padding: 15px; border: 1px solid rgba(214,184,92,.42); color: var(--white); }
.form-status.success { padding: 15px; background: var(--status-success-soft); color: var(--ink); }
.form-status.error { padding: 15px; border: 1px solid var(--status-error); color: #ffd3c8; }

.site-footer { padding-top: 70px; background: #090a08; color: var(--white); }
.brand-footer { color: var(--white); }
.brand-footer .brand-mark { background: var(--white); color: var(--ink); }
.footer-top { padding-bottom: 64px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; border-bottom: 1px solid var(--line-light); }
.footer-top > p { color: #8f918a; font-size: 14px; }
.footer-project-link { color: var(--signal); font-size: clamp(22px, 2vw, 30px); font-weight: 700; text-underline-offset: 9px; }
.footer-links { padding-block: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; border-bottom: 1px solid var(--line-light); }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links span { margin-bottom: 12px; color: #8f918a; font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.footer-links a, .footer-links p { margin: 0; color: #b9bbb4; font-size: 12px; line-height: 1.65; text-decoration: none; }
.footer-links a:hover { color: var(--signal); }
.footer-bottom { min-height: 80px; display: grid; grid-template-columns: 1fr 2fr auto; align-items: center; gap: 24px; color: #8f918a; font-family: var(--mono); font-size: 9px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { min-height: 44px; display: inline-flex; align-items: center; color: #9a9c95; }

.cookie-banner { position: fixed; z-index: 1200; right: 18px; bottom: max(18px, env(safe-area-inset-bottom)); width: min(470px, calc(100% - 36px)); max-height: calc(100dvh - max(36px, calc(env(safe-area-inset-bottom) + 18px))); padding: 18px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; overflow-y: auto; overscroll-behavior: contain; background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 18px 60px rgba(0,0,0,.2); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 11px; }
.cookie-banner > div { display: flex; align-items: center; gap: 10px; }
.cookie-decline { border: 0; background: transparent; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }

/* Interior pages */
.inner-main { min-height: 70vh; }
.inner-hero { padding: clamp(78px, 9vw, 142px) 0 clamp(60px, 7vw, 110px); border-bottom: 1px solid var(--line); }
.inner-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; }
.inner-hero .lede { max-width: 600px; margin: 0 0 8px auto; color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); }
.breadcrumb { margin-bottom: 26px; display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.breadcrumb a { text-underline-offset: 3px; }
.page-section { padding-block: clamp(64px, 8vw, 118px); }
.content-grid { display: grid; grid-template-columns: minmax(210px, .35fr) minmax(0, 1.65fr); gap: clamp(40px, 8vw, 130px); }
.content-aside { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.content-body { max-width: 960px; }
.content-body h2 { margin: 0 0 28px; font-size: clamp(34px, 4vw, 60px); line-height: 1.05; letter-spacing: -.05em; }
.content-body h3 { margin: 46px 0 16px; font-size: clamp(22px, 2vw, 30px); letter-spacing: -.035em; }
.content-body p, .content-body li { color: var(--muted); }
.content-body ul, .content-body ol { padding-left: 20px; }
.content-body li + li { margin-top: 10px; }
.page-cta { padding: clamp(42px, 6vw, 80px); background: var(--signal); color: var(--ink); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.page-cta h2 { margin: 0; font-size: clamp(34px, 4vw, 64px); line-height: 1; letter-spacing: -.055em; }
.page-cta p { max-width: 620px; margin: 18px 0 0; }
.page-cta .button { background: var(--ink); color: var(--white); }

.listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 54px); }
.listing-card { display: flex; flex-direction: column; color: inherit; text-decoration: none; border-top: 1px solid var(--line); }
.listing-card-media { position: relative; aspect-ratio: 1.35 / 1; overflow: hidden; background: var(--paper-2); }
.listing-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.listing-card:hover .listing-card-media img { transform: scale(1.03); }
.listing-card-copy { padding: 24px 0 40px; }
.listing-card-copy h2, .listing-card-copy h3 { margin: 26px 0 12px; font-size: clamp(28px, 3vw, 46px); line-height: 1; letter-spacing: -.05em; }
.listing-card-copy p { max-width: 600px; color: var(--muted); }
.listing-card-action { min-height: 44px; margin-top: 20px; display: inline-flex; align-items: center; gap: 9px; color: var(--signal-ink); font-family: var(--mono); font-size: 10px; line-height: 1.4; letter-spacing: .04em; text-transform: uppercase; }
.listing-card-action i { color: var(--signal-ink); font-style: normal; transition: transform .25s var(--ease); }
.listing-card:hover .listing-card-action i { transform: translate(3px,-3px); }

.case-hero-media { margin-top: 54px; aspect-ratio: 16 / 8.5; overflow: hidden; background: var(--ink); }
.case-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.case-facts { margin-top: 38px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.case-facts div { padding: 17px 20px 0 0; }
.case-facts span, .case-facts strong { display: block; }
.case-facts span { color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.case-facts strong { margin-top: 5px; font-size: 13px; }
.case-gallery { display: grid; gap: 24px; }
.case-gallery img { width: 100%; background: var(--paper-2); }

.insights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.insight-card { min-height: 330px; padding: clamp(24px, 3vw, 42px); display: flex; flex-direction: column; border: 1px solid var(--line); text-decoration: none; transition: background .25s ease, transform .25s var(--ease); }
.insight-card:hover { background: var(--white); transform: translateY(-4px); }
.insight-card .article-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.insight-card h2, .insight-card h3 { margin: auto 0 16px; font-size: clamp(27px, 2.6vw, 40px); line-height: 1.08; letter-spacing: -.045em; }
.insight-card p { margin: 0; color: var(--muted); font-size: 13px; }
.article-layout { display: grid; grid-template-columns: minmax(180px, .35fr) minmax(0, 1.3fr) minmax(160px, .35fr); gap: clamp(30px, 6vw, 90px); align-items: start; }
.article-aside { position: sticky; top: 110px; color: var(--muted); font-family: var(--mono); font-size: 9px; }
.article-aside a { display: block; margin-top: 14px; }
.article-content { max-width: 780px; }
.article-content p, .article-content li { color: #4d4e49; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.75; }
.article-content h2 { margin: 70px 0 24px; font-size: clamp(30px, 3.2vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.article-content h3 { margin: 46px 0 18px; font-size: clamp(23px, 2.1vw, 31px); letter-spacing: -.03em; }
.article-content ul, .article-content ol { padding-left: 24px; }
.article-content blockquote { margin: 46px 0; padding: 28px 0 28px 32px; border-left: 4px solid var(--signal); font-size: clamp(21px, 2vw, 28px); letter-spacing: -.025em; }
.article-content table { width: 100%; border-collapse: collapse; font-size: 13px; }
.article-content th, .article-content td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-content th { background: var(--paper-2); }

.legal-page { min-height: 70vh; }
.legal-page > .container > header { max-width: 900px; margin: 0 auto; padding-top: clamp(64px, 8vw, 116px); }
.legal-page > .container > header > p:first-child { margin: 0 0 20px; font-family: var(--mono); color: var(--muted); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.legal-page > .container > header h1 { margin: 0 0 22px; font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.06em; }
.legal-page > .container > header > p:last-child { margin: 0; color: var(--muted); }
.legal-content { max-width: 900px; margin: 0 auto; padding: clamp(70px, 9vw, 130px) var(--pad); }
.legal-content h1 { margin: 0 0 20px; font-size: clamp(40px, 5vw, 74px); line-height: 1; letter-spacing: -.06em; }
.legal-content > p:first-of-type { margin-bottom: 54px; color: var(--muted); }
.legal-content h2 { margin: 48px 0 18px; font-size: clamp(24px, 2.5vw, 34px); letter-spacing: -.035em; }
.legal-content p, .legal-content li { color: #4e4f4a; }
.legal-content a { text-underline-offset: 4px; }

/* Design system 2.0: editorial precision, shared states and interior-page rhythm. */
.site-header {
  --scroll-progress: 0;
  background: var(--paper);
  backdrop-filter: none;
}
.site-header.is-scrolled { background: var(--paper); box-shadow: 0 10px 32px rgba(17, 18, 15, .045); }
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--signal);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  will-change: transform;
  pointer-events: none;
}
.brand-mark { box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.desktop-nav a[aria-current] { color: var(--ink); }
.desktop-nav a[aria-current]::after { background: var(--signal); transform: scaleX(1); }
.mobile-nav a[aria-current] { color: var(--signal-ink); }
.header-cta { transition: color .2s ease, border-color .2s ease; }
.header-cta:hover { color: var(--signal-ink); border-color: var(--signal); }

.button {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 rgba(17,18,15,0);
}
.button > span { transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17,18,15,.12); }
.button:hover > span { transform: translate(2px, -2px); }
.button:active { transform: translateY(0); box-shadow: none; }
.button:disabled { cursor: wait; transform: none; box-shadow: none; }
.button-primary:hover { background: var(--ink); color: var(--white); }
.button-light:hover { background: var(--signal); color: var(--ink); }
.text-link, .case-link { text-decoration-thickness: 1px; transition: color .2s ease; }
.text-link:hover { color: var(--signal-ink); }
.case-link:hover, .section-dark .text-link:hover, .section-ink .text-link:hover, .brief .text-link:hover, .service-note .text-link:hover { color: var(--signal); }

.hero { position: relative; isolation: isolate; }
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(to right, rgba(17,18,15,.045) 1px, transparent 1px), linear-gradient(to bottom, rgba(17,18,15,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 78%);
  pointer-events: none;
}
.hero h1 { letter-spacing: -.052em; font-weight: 600; }
.hero h1 em { position: relative; }
.hero-proof li + li { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-system {
  position: relative;
  transform: none;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 18px 22px 0 var(--signal-soft);
}
.hero-system::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.045);
  pointer-events: none;
}
.system-slash { opacity: .82; }

.section-dark, .section-ink { position: relative; isolation: isolate; overflow: clip; }
.section-dark::before, .section-ink::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.section-dark > *, .section-ink > * { position: relative; z-index: 1; }
.section-heading { position: relative; }
.section-heading h2 { max-width: 980px; }
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--space-block) * -.48);
  height: 1px;
  background: currentColor;
  opacity: .09;
}

.featured-case { border-right: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.case-visual, .project-media { isolation: isolate; }
.case-visual::after, .project-media::after { border-width: 2px; }
.project-card { transition: transform .4s var(--ease); }
.project-card:hover { transform: translateY(-5px); }
.project-copy h3 { transition: color .2s ease; }
.project-card:hover .project-copy h3 { color: var(--signal); }

.service-row {
  position: relative;
  padding-inline: 0;
  transition: background .25s ease, color .25s ease;
}
.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  background: var(--signal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s var(--ease);
}
.service-row:hover { padding-inline: 0; background: var(--surface-raised); }
.service-row:hover::before { transform: scaleY(1); }
.service-title { transition: transform .3s var(--ease), color .2s ease; }
.service-row:hover .service-title { color: var(--signal-ink); transform: translateX(8px); }
.service-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .3s var(--ease), background .2s ease, color .2s ease;
}
.service-row:hover .service-arrow { transform: rotate(45deg); background: var(--ink); color: var(--white); }
.process-list li { transition: background .25s ease; }
.process-list li:hover { background: rgba(255,255,255,.025); }
.process-list li:hover .process-number { color: var(--white); }
.principles-grid { margin-top: var(--space-block); }
.principles-grid > div { transition: background .25s ease; }
.principles-grid > div:hover { background: rgba(255,255,255,.035); }
.content-body > .principles-grid { margin-top: var(--space-block); }
.budget-card { transition: background .25s ease, transform .35s var(--ease); }
.budget-card:not(.featured):hover { background: var(--surface-raised); transform: translateY(-4px); }

.faq-list summary { position: relative; padding-right: 42px; transition: color .2s ease; }
.faq-list summary > span { display: none; }
.faq-list summary::before, .faq-list summary::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .25s var(--ease), color .2s ease;
}
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list summary:hover { color: var(--signal-ink); }
.faq-list details[open] summary { color: var(--signal-ink); }
.faq-list details > p { margin-top: 0; }

.lead-form { border: 1px solid var(--line-light); box-shadow: var(--shadow-float); }
.field input, .field textarea, .field select { transition: border-color .2s ease, background .2s ease; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: #868880; }
.field input:focus, .field textarea:focus, .field select:focus { background: rgba(255,255,255,.035); }
.consent input { flex-basis: 20px; width: 20px; height: 20px; }

.site-footer { position: relative; overflow: hidden; }
.site-footer::before {
  content: "MAXGROUP/";
  width: min(100%, var(--page));
  margin-inline: auto;
  padding: 0 var(--pad) clamp(44px, 6vw, 82px);
  display: block;
  color: #f3f1e9;
  font-size: clamp(76px, 13.5vw, 204px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.085em;
  white-space: nowrap;
  border-bottom: 1px solid var(--line-light);
}
.footer-top { padding-top: clamp(40px, 5vw, 66px); }
.footer-project-link { transition: color .2s ease; }
.footer-project-link:hover { color: var(--white); }

.cookie-banner {
  padding: 38px 20px 20px;
  border-top: 3px solid var(--signal);
  box-shadow: var(--shadow-float);
}
.cookie-banner::before {
  content: "АНАЛИТИКА / ПО ВЫБОРУ";
  position: absolute;
  top: 12px;
  left: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.inner-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper) 68%, var(--paper-2) 100%);
}
.inner-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(to right, rgba(17,18,15,.045) 1px, transparent 1px), linear-gradient(to bottom, rgba(17,18,15,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 88%);
}
.inner-hero .page-code {
  position: absolute;
  z-index: 0;
  right: clamp(16px, 3vw, 52px);
  bottom: -0.17em;
  color: rgba(17,18,15,.045);
  font-family: var(--mono);
  font-size: clamp(110px, 19vw, 290px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.1em;
  white-space: nowrap;
  pointer-events: none;
}
.inner-hero-grid { position: relative; z-index: 1; min-height: clamp(300px, 30vw, 445px); }
.inner-hero-grid > .lede { padding-left: clamp(22px, 3vw, 44px); border-left: 3px solid var(--signal); }
.breadcrumb { position: relative; z-index: 2; }
.breadcrumb [aria-current="page"] { color: var(--ink); }

.content-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-top: 14px;
  border-top: 2px solid var(--signal);
  line-height: 1.55;
}
.content-body { max-width: 980px; }
.content-body > p { max-width: var(--copy); font-size: clamp(16px, 1.25vw, 18px); line-height: 1.68; }
.content-body > p + p { margin-top: 1.35em; }
.content-body h2 { max-width: 900px; margin-bottom: var(--space-component); letter-spacing: -.045em; }
.content-body h3 { max-width: 760px; margin-top: var(--space-block); }
.content-body > ul {
  max-width: var(--copy);
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.content-body > ul > li {
  position: relative;
  margin: 0;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
}
.content-body > ul > li::before {
  content: "+";
  position: absolute;
  left: 2px;
  color: var(--signal-ink);
  font-family: var(--mono);
  font-size: 12px;
}

.listing-grid { counter-reset: listing; }
.listing-grid > .listing-card { counter-increment: listing; }
.listing-grid > article.listing-card {
  position: relative;
  min-height: 320px;
  padding: 10px clamp(22px, 3vw, 38px);
  background: var(--surface-raised);
  border: 1px solid var(--line);
}
.listing-grid > article.listing-card::after {
  content: "0" counter(listing);
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--paper-3);
  font-family: var(--mono);
  font-size: clamp(50px, 6vw, 84px);
  line-height: 1;
}
.listing-grid > article.listing-card .listing-card-copy { position: relative; z-index: 1; margin-top: auto; }
.listing-card[href] .listing-card-copy { position: relative; padding-right: 48px; }
.listing-card[href] .listing-card-copy::after {
  content: "↗";
  position: absolute;
  top: 20px;
  right: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--signal-ink);
  transition: transform .3s var(--ease), background .2s ease, color .2s ease;
}
.listing-card[href]:hover .listing-card-copy::after { transform: rotate(45deg); background: var(--ink); color: var(--white); }
.listing-card[href]:hover .listing-card-copy h2, .listing-card[href]:hover .listing-card-copy h3 { color: var(--signal-ink); }
.listing-card-copy h2, .listing-card-copy h3 { transition: color .2s ease; }

.case-hero-media:not(.industrial-preview) { padding: 10px; background: var(--surface-inverse); }
.case-hero-media:not(.industrial-preview) img { border: 1px solid var(--line-light); }
.case-facts { border-bottom: 1px solid var(--line); }
.case-facts div { min-height: 88px; transition: background .2s ease; }
.case-facts div > * { transition: transform .2s var(--ease); }
.case-facts div:hover { background: var(--surface-raised); }
.case-facts div:hover > * { transform: translateX(8px); }

.insights-grid { counter-reset: insight; }
.insight-card { counter-increment: insight; position: relative; overflow: hidden; }
.insight-card::after {
  content: "0" counter(insight) " ↗";
  position: absolute;
  right: 20px;
  top: 18px;
  color: var(--signal-ink);
  font-family: var(--mono);
  font-size: 9px;
}
.insight-card:hover h2, .insight-card:hover h3 { color: var(--signal-ink); }

.page-cta { position: relative; isolation: isolate; overflow: hidden; }
.page-cta::after {
  content: "/";
  position: absolute;
  z-index: -1;
  right: 5%;
  top: -66%;
  color: rgba(17,18,15,.09);
  font-size: clamp(230px, 30vw, 460px);
  font-weight: 500;
  line-height: 1;
  transform: rotate(5deg);
}
.page-cta > * { position: relative; z-index: 1; }

.article-content { max-width: 760px; }
.article-content > p:first-of-type { font-size: clamp(18px, 1.5vw, 21px); color: var(--text-secondary); }
.article-content blockquote { background: var(--surface-raised); padding-right: 26px; }
.article-content :where(a):not(.button) { text-decoration-color: var(--signal); text-decoration-thickness: 1px; text-underline-offset: 4px; }

/* SEO growth: industry solutions, expert profile and decision tools */
.industry-map,
.tool-shell,
.expert-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.industry-map-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.industry-map-grid > article { min-width: 0; padding: clamp(26px, 3vw, 48px); border-right: 1px solid var(--line); }
.industry-map-grid > article:last-child { border-right: 0; }
.industry-map-grid span,
.tool-kicker,
.tool-result-label,
.expert-proof dt {
  color: var(--signal-ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.industry-map-grid h2,
.industry-map-grid h3 { margin: 22px 0 12px; font-size: clamp(24px, 2.3vw, 36px); line-height: 1.08; letter-spacing: -.04em; }
.industry-map-grid p { margin: 0; color: var(--text-secondary); }
.industry-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 48px; border: 1px solid var(--line); }
.industry-flow > div { min-width: 0; padding: clamp(22px, 2.6vw, 38px); border-right: 1px solid var(--line); }
.industry-flow > div:last-child { border-right: 0; }
.industry-flow span { color: var(--signal-ink); font-family: var(--mono); font-size: 10px; }
.industry-flow strong { display: block; margin: 18px 0 10px; font-size: 18px; line-height: 1.25; }
.industry-flow p { margin: 0; color: var(--text-secondary); font-size: 14px; }

.tool-shell { background: var(--surface-inverse); color: var(--white); }
.tool-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); min-height: 640px; }
.tool-form { padding: clamp(34px, 5vw, 76px); border-right: 1px solid var(--line-light); }
.tool-form fieldset { margin: 0; padding: 0; border: 0; }
.tool-form legend { margin-bottom: 32px; font-size: clamp(28px, 3vw, 44px); line-height: 1.08; letter-spacing: -.04em; }
.tool-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.tool-field { min-width: 0; }
.tool-field label { display: block; margin-bottom: 9px; color: var(--text-inverse-muted); font-size: 13px; line-height: 1.4; }
.tool-field input,
.tool-field select {
  width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid var(--line-light); border-radius: var(--radius-sm);
  background: var(--surface-form); color: var(--white); font-variant-numeric: tabular-nums;
}
.tool-field input[type="range"] { min-height: 44px; padding: 0; accent-color: var(--signal); }
.tool-field small { display: block; margin-top: 7px; color: var(--text-inverse-muted); font-size: 11px; }
.tool-result { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 76px); background: var(--surface-inverse-raised); }
.tool-result .tool-result-label { color: var(--signal); }
.tool-result h2 { margin: 20px 0 14px; font-size: clamp(32px, 4vw, 58px); line-height: 1; letter-spacing: -.055em; }
.tool-result > p { color: var(--text-inverse-muted); }
.tool-metrics { display: grid; gap: 1px; margin: 34px 0; background: var(--line-light); border: 1px solid var(--line-light); }
.tool-metric { padding: 20px; background: var(--surface-inverse); }
.tool-metric span { display: block; color: var(--text-inverse-muted); font-size: 12px; }
.tool-metric strong { display: block; margin-top: 8px; color: var(--signal); font-size: clamp(24px, 3vw, 38px); line-height: 1; font-variant-numeric: tabular-nums; }
.tool-result .button { align-self: flex-start; }
.tool-disclaimer { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-light); color: var(--text-inverse-muted); font-size: 11px; line-height: 1.6; }
.tool-selector-fields { display: grid; gap: 22px; }
.tool-selector-fields .tool-field select { min-height: 58px; }
.tool-recommendation-list { margin: 28px 0; padding: 0; list-style: none; }
.tool-recommendation-list li { position: relative; padding: 12px 0 12px 24px; border-bottom: 1px solid var(--line-light); color: var(--text-inverse-muted); }
.tool-recommendation-list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 8px; height: 8px; background: var(--signal); border-radius: 50%; }

.expert-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(42px, 8vw, 120px); align-items: start; }
.expert-portrait { position: sticky; top: 104px; }
.expert-portrait img { width: 100%; max-height: 760px; object-fit: cover; border-radius: var(--radius); }
.expert-portrait figcaption { display: flex; justify-content: space-between; gap: 20px; margin-top: 14px; color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.expert-copy > p { max-width: var(--copy); color: var(--text-secondary); font-size: clamp(17px, 1.4vw, 20px); }
.expert-proof dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; }
.expert-proof div { padding: clamp(26px, 3.2vw, 48px); border-right: 1px solid var(--line); }
.expert-proof div:last-child { border-right: 0; }
.expert-proof dd { margin: 12px 0 0; font-size: clamp(18px, 2vw, 28px); line-height: 1.15; letter-spacing: -.03em; }

@media (max-width: 980px) {
  .industry-map-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-map-grid > article:nth-child(2) { border-right: 0; }
  .industry-map-grid > article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .industry-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-flow > div:nth-child(2) { border-right: 0; }
  .industry-flow > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .tool-layout { grid-template-columns: 1fr; }
  .tool-form { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .expert-grid { grid-template-columns: 1fr; }
  .expert-portrait { position: static; max-width: 560px; }
}

@media (max-width: 600px) {
  .industry-map-grid,
  .industry-flow,
  .tool-fields,
  .expert-proof dl { grid-template-columns: 1fr; }
  .industry-map-grid > article,
  .industry-map-grid > article:nth-child(2),
  .industry-flow > div,
  .industry-flow > div:nth-child(2),
  .expert-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .industry-map-grid > article:last-child,
  .industry-flow > div:last-child,
  .expert-proof div:last-child { border-bottom: 0; }
  .tool-form,
  .tool-result { padding: 34px 20px; }
  .tool-result .button { width: 100%; }
  .expert-portrait figcaption { flex-direction: column; gap: 4px; }
}

/* Design system 3.0: project-specific storytelling and stronger proof surfaces. */
.hero-system { min-height: 560px; }
.system-status { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.system-status::before { content: ""; width: 6px; height: 6px; background: var(--signal); }
.system-status i { display: none; animation: none; }
.system-slash { top: -34%; font-size: 300px; opacity: .42; }
.system-topline, .case-meta { font-size: 10px; }
.tag-list li, .breadcrumb, .article-aside { font-size: 10px; }
.service-index, .process-number { font-size: 11px; }
.process-list > li > strong, .principles-grid span, .footer-links span, .footer-bottom { font-size: 10px; }
.case-facts span { font-size: 9px; }

.antimax-console {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #080b12;
  color: #eef0f5;
  border: 1px solid #222837;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}
.case-visual .antimax-console { width: 88%; height: 80%; min-height: 340px; }
.antimax-top {
  min-height: 38px;
  padding-inline: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111621;
  border-bottom: 1px solid #282e3c;
  color: #8e95a6;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .06em;
}
.antimax-top i, .antimax-foot i { flex: 1; height: 1px; background: #2b3241; }
.antimax-shell { min-height: 0; flex: 1; display: grid; grid-template-columns: 54px 1fr; }
.antimax-rail { padding-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 18px; background: #0d111a; border-right: 1px solid #272d3a; }
.antimax-rail b { width: 30px; height: 30px; display: grid; place-items: center; background: var(--signal); color: var(--ink); font-size: 13px; }
.antimax-rail i { width: 17px; height: 3px; background: #303747; }
.antimax-rail i:nth-of-type(2) { background: var(--signal); }
.antimax-workspace { min-width: 0; padding: clamp(14px, 2vw, 26px); display: grid; grid-template-rows: auto 1fr auto; gap: clamp(12px, 1.5vw, 22px); }
.antimax-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.antimax-title div { display: flex; flex-direction: column; }
.antimax-title small, .antimax-title > span { color: #737b8d; font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.antimax-title strong { margin-top: 4px; font-size: clamp(18px, 2vw, 28px); letter-spacing: -.04em; }
.antimax-panels { min-height: 0; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(150px, .85fr); border: 1px solid #282e3c; }
.antimax-layers { display: flex; flex-direction: column; }
.antimax-layers > span { position: relative; min-height: 64px; padding: 13px 44px 12px 14px; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid #282e3c; }
.antimax-layers > span:last-child { border-bottom: 0; }
.antimax-layers > span.is-active { background: #141a26; box-shadow: inset 3px 0 0 var(--signal); }
.antimax-layers b { font-size: 11px; }
.antimax-layers small { margin-top: 3px; color: #7f8798; font-size: 9px; }
.antimax-layers em { position: absolute; right: 14px; top: 50%; color: #5d6576; font-family: var(--mono); font-size: 8px; font-style: normal; transform: translateY(-50%); }
.antimax-boundaries { padding: 13px; display: flex; flex-direction: column; gap: 8px; background: #0d1119; border-left: 1px solid #282e3c; }
.antimax-boundaries > small { margin-bottom: 3px; color: #767e8f; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.antimax-boundaries > span { min-height: 32px; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 8px; border-bottom: 1px solid #252b37; }
.antimax-boundaries i { color: var(--signal); font-family: var(--mono); font-size: 7px; font-style: normal; }
.antimax-boundaries b { font-size: 9px; font-weight: 500; }
.antimax-foot { display: flex; align-items: center; gap: 10px; color: #687083; font-family: var(--mono); font-size: 7px; letter-spacing: .05em; }
.antimax-hero .antimax-console { height: 100%; }

.yastreb-screen { width: 100%; height: 100%; min-height: 0; display: grid; grid-template-rows: 34px minmax(0, 1fr) 38px; overflow: hidden; background: var(--white); }
.yastreb-screen-top, .yastreb-screen-bottom { position: relative; z-index: 2; display: flex; align-items: center; font-family: var(--mono); font-size: 8px; letter-spacing: .06em; }
.yastreb-screen-top { padding-inline: 14px; gap: 12px; background: var(--ink); color: #a9aba4; }
.yastreb-screen-top i { flex: 1; height: 1px; background: #363833; }
.yastreb-screen-bottom { justify-content: space-between; gap: 14px; padding-inline: 16px; background: var(--signal); color: var(--ink); font-weight: 500; }
.yastreb-screen picture { width: 100%; height: 100%; min-height: 0; display: block; }
.yastreb-screen img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: top left; transition: transform .7s var(--ease); }
.project-media:hover .yastreb-screen img, .listing-card:hover .yastreb-screen img { transform: scale(1.025); }
.yastreb-hero .yastreb-screen { height: 100%; }

.case-blueprint-section { padding-block: clamp(58px, 8vw, 116px); background: var(--paper-2); border-bottom: 1px solid var(--line); }
.case-blueprint {
  --bp-bg: var(--surface-inverse);
  --bp-ink: var(--white);
  --bp-muted: var(--text-inverse-muted);
  --bp-line: var(--line-light);
  --bp-accent: var(--signal);
  padding: clamp(28px, 4.5vw, 66px);
  background: var(--bp-bg);
  color: var(--bp-ink);
  border: 1px solid var(--bp-line);
}
.blueprint-maxbeton .case-blueprint { --bp-bg: #dbe3d9; --bp-ink: #172019; --bp-muted: #59665b; --bp-line: rgba(23,32,25,.2); }
.blueprint-yastreb .case-blueprint { --bp-bg: #e7ddd0; --bp-ink: #1b1712; --bp-muted: #675d52; --bp-line: rgba(27,23,18,.2); }
.blueprint-topline { padding-bottom: 18px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--bp-line); color: var(--bp-muted); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; }
.blueprint-heading { padding-block: clamp(38px, 5vw, 72px); display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(36px, 7vw, 110px); }
.blueprint-heading h2 { margin: 0; font-size: clamp(42px, 5.3vw, 78px); line-height: 1; letter-spacing: -.05em; font-weight: 600; }
.blueprint-heading > p { max-width: 540px; margin: 0 0 5px auto; color: var(--bp-muted); font-size: 15px; }
.blueprint-heading .eyebrow { color: var(--bp-ink); }
.blueprint-flow { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--bp-line); border-left: 1px solid var(--bp-line); }
.blueprint-flow.is-five { grid-template-columns: repeat(5, 1fr); }
.blueprint-flow li { position: relative; min-height: 210px; padding: clamp(20px, 2.3vw, 32px); display: flex; flex-direction: column; border-right: 1px solid var(--bp-line); border-bottom: 1px solid var(--bp-line); }
.blueprint-flow li > span { color: var(--bp-accent); font-family: var(--mono); font-size: 10px; }
.blueprint-flow li > strong { margin-top: auto; font-size: clamp(18px, 1.8vw, 26px); line-height: 1.05; letter-spacing: -.035em; }
.blueprint-flow li > small { margin-top: 8px; color: var(--bp-muted); font-size: 11px; }
.blueprint-flow li:not(:last-child)::after { content: "→"; position: absolute; z-index: 1; right: -12px; top: 30px; width: 24px; height: 24px; display: grid; place-items: center; background: var(--bp-bg); color: var(--bp-accent); font-family: var(--mono); font-size: 10px; }
.blueprint-footer { padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: var(--bp-muted); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; }

.case-next { padding-block: clamp(34px, 5vw, 70px); background: var(--paper); border-top: 1px solid var(--line); }
.case-next a { position: relative; min-height: 168px; padding: clamp(24px, 3vw, 42px); display: grid; grid-template-columns: .7fr 1.25fr .75fr 52px; align-items: center; gap: clamp(20px, 4vw, 60px); overflow: hidden; background: var(--surface-raised); border: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.case-next a::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--signal); transform: scaleY(0); transform-origin: bottom; transition: transform .3s var(--ease); }
.case-next a:hover::before { transform: scaleY(1); }
.case-next-kicker, .case-next-meta { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.case-next strong { font-size: clamp(34px, 4.8vw, 70px); line-height: .95; letter-spacing: -.055em; transition: color .2s ease; }
.case-next i { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--signal-ink); font-style: normal; transition: transform .3s var(--ease), background .2s ease, color .2s ease; }
.case-next a:hover strong { color: var(--signal-ink); }
.case-next a:hover i { transform: rotate(45deg); background: var(--ink); color: var(--white); }

.work-index-grid > .listing-card:nth-child(-n+2) > :first-child { height: clamp(410px, 38vw, 520px); min-height: 0; aspect-ratio: auto; }
.work-index-grid > .listing-card:nth-child(3) { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); border-bottom: 1px solid var(--line); }
.work-index-grid > .listing-card:nth-child(3) .listing-card-media { min-height: 520px; aspect-ratio: auto; }
.work-index-grid > .listing-card:nth-child(3) .listing-card-copy { padding: clamp(34px, 5vw, 74px); display: flex; flex-direction: column; justify-content: flex-end; border-left: 1px solid var(--line); }

.service-choice { margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.service-choice > div { padding: 16px 18px 0 0; }
.service-choice > div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.service-choice dt { color: var(--signal-ink); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.service-choice dd { margin: 7px 0 0; color: var(--text-secondary); font-size: 12px; line-height: 1.55; }

/* Design system 4.0: brass signal, founder-led proof and paid-traffic surfaces. */
.brand-mark span { color: var(--signal); }
.brand-name span { color: var(--signal-display); }
.brand-footer .brand-name span { color: var(--signal); }
.brand-footer .brand-mark span { color: var(--signal-display); }
.site-header::after, .desktop-nav a[aria-current]::after { background: var(--signal-focus); }
.header-cta span, .text-link span { color: var(--signal-display); }
.section-dark .text-link span, .section-ink .text-link span, .brief .text-link span { color: var(--signal); }
.hero { padding-top: clamp(54px, 6vw, 88px); }
.hero h1 { font-size: clamp(50px, 5.7vw, 94px); }
.hero-lead { margin-top: 28px; }
.hero-actions { margin-top: 30px; }
.hero-action-note { margin: 15px 0 0; color: var(--muted); font-family: var(--mono); font-size: 10px; line-height: 1.5; letter-spacing: .025em; }
.hero-system { border-color: rgba(214,184,92,.36); box-shadow: 7px 8px 0 rgba(214,184,92,.25); }
.hero-system::after { border-color: rgba(214,184,92,.08); }
.system-slash { opacity: .58; }

.capability-track { justify-content: flex-start; }
.capability-track strong { color: var(--signal-ink); font-size: 10px; font-weight: 500; }
.capability-track a { padding-block: 6px; color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.capability-track a:hover { color: var(--signal-ink); border-color: var(--signal); }

.trust-ledger { background: var(--surface-default); border-bottom: 1px solid var(--line); }
.trust-ledger-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(56px, 8vw, 132px); align-items: start; }
.trust-ledger-heading { position: sticky; top: 110px; }
.trust-ledger-heading h2 { max-width: 620px; margin: 0; font-size: clamp(45px, 5vw, 76px); line-height: .98; letter-spacing: -.052em; font-weight: 600; }
.trust-ledger-heading > p:last-child { max-width: 530px; margin: 28px 0 0; color: var(--muted); font-size: 15px; }
.trust-ledger-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.trust-ledger-list li { min-height: 164px; padding: 30px 0; display: grid; grid-template-columns: 112px 1fr; gap: 28px; border-bottom: 1px solid var(--line); }
.trust-ledger-list > li > span { color: var(--signal-ink); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; }
.trust-ledger-list h3 { margin: 0 0 10px; font-size: clamp(22px, 2vw, 30px); line-height: 1.1; letter-spacing: -.04em; }
.trust-ledger-list p { max-width: 620px; margin: 0; color: var(--muted); font-size: 14px; }
.services-index-grid > .service-audit-card { grid-column: 1 / -1; }
.services-index-grid > .service-audit-card .listing-card-copy { min-height: 360px; }

.brief-response { list-style: none; padding: 0; margin: 34px 0; border-top: 1px solid var(--line-light); }
.brief-response li { min-height: 72px; padding: 14px 0; display: grid; grid-template-columns: 38px 1fr; align-items: center; border-bottom: 1px solid var(--line-light); }
.brief-response > li > span { color: var(--signal); font-family: var(--mono); font-size: 9px; }
.brief-response p { margin: 0; display: flex; flex-direction: column; }
.brief-response strong { font-size: 13px; }
.brief-response small { margin-top: 3px; color: var(--text-inverse-muted); font-size: 11px; }

.service-intent { background: var(--surface-inverse); color: var(--white); border-bottom: 1px solid var(--line-light); }
.service-intent-grid { min-height: 152px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; align-items: stretch; }
.service-intent-item { padding: 28px clamp(18px, 2.5vw, 38px) 28px 0; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line-light); }
.service-intent-item + .service-intent-item { padding-left: clamp(18px, 2.5vw, 38px); }
.service-intent-item span { color: var(--signal); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.service-intent-item strong { margin-top: 9px; font-size: 14px; line-height: 1.4; }
.service-intent-grid > .button { align-self: center; margin-left: clamp(22px, 3vw, 48px); white-space: nowrap; }

.service-proof { padding: 0 0 clamp(64px, 8vw, 118px); }
.service-proof-card { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); border: 1px solid var(--line); background: var(--surface-raised); }
.service-proof-copy { padding: clamp(32px, 5vw, 68px); }
.service-proof-copy h2 { max-width: 820px; margin: 0; font-size: clamp(34px, 4.1vw, 60px); line-height: 1; letter-spacing: -.052em; }
.service-proof-copy > p:last-child { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 14px; }
.service-proof-meta { padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; align-items: flex-start; background: var(--surface-inverse); color: var(--white); border-left: 1px solid var(--line-light); }
.service-proof-meta > span { color: var(--signal); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.service-proof-meta strong { margin-top: 24px; font-size: clamp(30px, 3.2vw, 46px); line-height: 1; letter-spacing: -.045em; }
.service-proof-meta small { max-width: 320px; margin-top: 14px; color: var(--text-inverse-muted); font-size: 11px; line-height: 1.55; }
.service-proof-meta .text-link { margin-top: auto; padding-top: 34px; color: var(--white); }
.service-proof-meta .text-link span { color: var(--signal); }

.service-lead-panel { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(480px, 1.22fr); background: var(--surface-inverse); color: var(--white); border: 1px solid var(--line-light); }
.service-lead-copy { padding: clamp(34px, 5vw, 72px); display: flex; flex-direction: column; align-items: flex-start; }
.service-lead-copy .eyebrow { color: var(--white); }
.service-lead-copy h2 { margin: 0; font-size: clamp(38px, 4.5vw, 68px); line-height: .98; letter-spacing: -.052em; font-weight: 600; }
.service-lead-copy > p:not(.eyebrow) { margin: 24px 0; color: var(--text-inverse-muted); font-size: 15px; }
.service-lead-copy small { margin-top: auto; color: var(--signal); font-family: var(--mono); font-size: 10px; line-height: 1.5; }
.service-lead-panel .lead-form { border: 0; border-left: 1px solid var(--line-light); box-shadow: none; }
.service-lead-panel .form-row { margin-bottom: 18px; }
.service-lead-panel .field textarea { min-height: 104px; }

.page-cta { background: var(--surface-inverse); color: var(--white); border: 1px solid var(--line-light); }
.page-cta p { color: var(--text-inverse-muted); }
.page-cta .button { background: var(--signal); color: var(--ink); }
.page-cta .button:hover { background: var(--signal-hover); color: var(--ink); }
.page-cta::after { color: rgba(214,184,92,.09); }

.blueprint-maxbeton .case-blueprint, .blueprint-yastreb .case-blueprint { --bp-accent: var(--signal-ink); }
.button:hover, .project-card:hover, .budget-card:not(.featured):hover { transform: none; box-shadow: none; }
.project-card:hover .project-copy h3 { color: var(--signal); }

.thanks-next { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.thanks-next strong { display: block; margin-bottom: 7px; font-size: 14px; }
.thanks-next p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.response-hero { min-height: 72vh; display: grid; align-items: center; }
.cookie-settings { margin-top: 4px; padding: 0; border: 0; background: none; color: var(--text-inverse-muted); font: inherit; font-size: 12px; text-align: left; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.cookie-settings:hover { color: var(--signal); }

[data-reveal] { opacity: 1; transform: none; }
.motion-ready [data-reveal].reveal-animated { transition: opacity var(--motion-enter-duration) var(--ease), transform var(--motion-enter-duration) var(--ease); }
.motion-ready [data-reveal].reveal-animated:not(.is-visible) { opacity: 0; transform: translateY(var(--motion-enter-distance)); }
[data-reveal].is-visible { opacity: 1; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr .74fr; gap: 50px; }
  .hero-system { min-height: 510px; }
  .featured-case { grid-template-columns: 1.15fr .85fr; }
  .service-row { grid-template-columns: 50px minmax(220px, .7fr) 1fr 30px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .budget-grid { grid-template-columns: 1fr 1fr; }
  .brief-grid { grid-template-columns: .8fr 1.2fr; gap: 54px; }
  .blueprint-flow, .blueprint-flow.is-five { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --section: 92px; }
  .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 760px; }
  .hero-system { min-height: 470px; margin-right: 18px; }
  .section-heading, .inner-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .inner-hero-grid { min-height: 340px; align-content: end; }
  .section-heading > p, .inner-hero .lede { margin-left: 0; }
  .inner-hero-grid > .lede { max-width: 720px; padding-left: 22px; }
  .featured-case { grid-template-columns: 1fr; }
  .case-copy { min-height: 390px; border-left: 0; border-top: 1px solid var(--line-light); }
  .case-grid { grid-template-columns: 1fr; }
  .project-media { aspect-ratio: 1.45 / 1; }
  .service-row { grid-template-columns: 48px 1fr 28px; padding-block: 28px; }
  .service-desc { grid-column: 2 / 3; }
  .service-arrow { grid-column: 3; grid-row: 1 / 3; }
  .service-note { grid-template-columns: 50px 1fr; }
  .service-note .text-link { grid-column: 2; }
  .process-list li { padding-block: 26px; grid-template-columns: 48px 1fr; }
  .process-list > li > strong, .process-output { grid-column: 2; }
  .process-list > li > strong { margin-top: 14px; }
  .studio-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 620px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .brief-grid { grid-template-columns: 1fr; }
  .direct-contacts { max-width: 620px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; padding-block: 22px; }
  .footer-bottom p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
  .content-grid { grid-template-columns: minmax(0, 1fr); }
  .content-grid > * { min-width: 0; }
  .article-layout { grid-template-columns: minmax(0, 1fr); }
  .article-layout > * { min-width: 0; }
  .content-aside, .article-aside { position: static; }
  .content-aside { width: max-content; min-width: 130px; }
  .case-facts { grid-template-columns: 1fr 1fr; }
  .article-aside:last-child { display: none; }
  .blueprint-heading { grid-template-columns: 1fr; align-items: start; }
  .blueprint-heading > p { margin-left: 0; }
  .case-next a { grid-template-columns: 1fr 52px; gap: 12px 24px; }
  .case-next-kicker, .case-next strong, .case-next-meta { grid-column: 1; }
  .case-next i { grid-column: 2; grid-row: 1 / 4; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; --section: 76px; }
  html { scroll-padding-top: 72px; }
  .site-header, .site-header.is-scrolled { height: 66px; }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 36px; }
  .site-header > .container:not(.header-inner) { gap: 12px; }
  .site-header > .container:not(.header-inner) .brand { font-size: 16px; }
  .site-header > .container:not(.header-inner) nav a { font-size: 10px; }
  .mobile-nav { top: 100%; height: calc(100dvh - 66px); }
  .hero h1 { font-size: clamp(48px, 15.5vw, 68px); }
  .hero h1 { letter-spacing: -.045em; }
  .hero-lead { margin-top: 26px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof li { min-height: 62px; border-bottom: 1px solid var(--line); }
  .hero-proof li + li { padding-left: 0; border-left: 0; }
  .hero-system { min-height: 430px; margin: 0 10px 12px 0; padding: 20px; box-shadow: 10px 12px 0 var(--signal-soft); }
  .system-slash { right: -12%; font-size: 230px; }
  .system-core p { font-size: 25px; }
  .capability-line { overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .capability-line::-webkit-scrollbar { display: none; }
  .capability-track { justify-content: flex-start; min-height: 62px; scroll-snap-type: x proximity; }
  .capability-track span { scroll-snap-align: start; }
  .section-heading h2, .studio-copy h2, .faq-heading h2, .brief-copy h2, .inner-hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .case-visual { min-height: 280px; }
  .case-status-chip { top: 12px; left: 12px; min-height: 30px; max-width: calc(100% - 86px); padding: 7px 9px; gap: 7px; font-size: 8px; letter-spacing: .04em; }
  .case-yastreb-preview > .case-status-chip { top: 46px; }
  .case-copy { min-height: 360px; padding: 28px 22px; }
  .case-meta { flex-direction: column; gap: 4px; }
  .project-media { aspect-ratio: 1.05 / 1; }
  .industrial-preview { padding: 12px; }
  .industrial-body { grid-template-columns: 38px 1fr; }
  .industrial-main { padding: 14px; }
  .industrial-body aside { gap: 14px; }
  .project-copy { min-height: 260px; }
  .work-footer { align-items: stretch; flex-direction: column; }
  .work-footer .button { width: 100%; }
  .service-row { grid-template-columns: 36px 1fr 36px; gap: 12px; }
  .service-row:hover { padding-inline: 0; }
  .service-note { grid-template-columns: 1fr; gap: 18px; }
  .service-note .text-link { grid-column: 1; }
  .note-mark { font-size: 52px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid > div { min-height: 230px; }
  .principles-grid h3 { margin-top: 50px; }
  .photo-caption { margin-inline: 10px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; }
  .studio-facts { grid-template-columns: 1fr; }
  .studio-facts div { min-height: 78px; border-bottom: 1px solid var(--line); }
  .budget-grid { grid-template-columns: 1fr; }
  .budget-card { min-height: 265px; }
  .budget-card strong { margin-top: 48px; }
  .faq-list summary { min-height: 84px; font-size: 17px; }
  .form-row.two-cols { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 24px 20px; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
  .direct-contacts a { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; }
  .footer-top { grid-template-columns: 1fr; }
  .site-footer::before { padding-bottom: 38px; font-size: clamp(58px, 20vw, 96px); }
  .footer-project-link { justify-self: start; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p:nth-child(2) { grid-column: 1; grid-row: auto; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner > div { flex-wrap: wrap; }
  .listing-grid, .insights-grid { grid-template-columns: minmax(0, 1fr); }
  .listing-grid > article.listing-card { min-width: 0; min-height: 270px; padding-inline: 20px; }
  .case-facts { grid-template-columns: 1fr; }
  .case-facts div { padding-bottom: 15px; border-bottom: 1px solid var(--line); }
  .page-cta { grid-template-columns: 1fr; }
  .page-cta .button { width: 100%; }
  .article-content table { display: block; overflow-x: auto; }
  .inner-hero { padding-top: 54px; }
  .inner-hero-grid { min-height: 330px; }
  .inner-hero .page-code { right: 12px; bottom: -.08em; font-size: 104px; }
  .inner-hero-grid > .lede { padding-left: 16px; border-left-width: 2px; }
  .content-body > p { font-size: 16px; line-height: 1.65; }
  .content-body h2 { min-width: 0; font-size: clamp(30px, 9.6vw, 34px); hyphens: auto; overflow-wrap: break-word; }
  .case-visual .antimax-console { width: 94%; height: 88%; min-height: 250px; }
  .antimax-shell { grid-template-columns: 38px 1fr; }
  .antimax-rail { gap: 13px; }
  .antimax-rail b { width: 24px; height: 24px; font-size: 10px; }
  .antimax-rail i { width: 13px; }
  .antimax-workspace { padding: 10px; }
  .antimax-title > span, .antimax-boundaries { display: none; }
  .antimax-panels { grid-template-columns: 1fr; }
  .antimax-layers > span { min-height: 52px; padding-block: 9px; }
  .antimax-top { padding-inline: 10px; font-size: 7px; }
  .antimax-foot { font-size: 6px; }
  .antimax-hero, .yastreb-hero { aspect-ratio: 4 / 3; }
  .yastreb-screen { grid-template-rows: 28px minmax(0, 1fr) 32px; }
  .yastreb-screen-top, .yastreb-screen-bottom { font-size: 7px; }
  .case-blueprint { padding: 22px; }
  .blueprint-topline, .blueprint-footer { align-items: flex-start; flex-direction: column; gap: 7px; }
  .blueprint-heading { padding-block: 34px; }
  .blueprint-heading h2 { font-size: clamp(36px, 11vw, 52px); }
  .blueprint-flow, .blueprint-flow.is-five { grid-template-columns: 1fr; }
  .blueprint-flow li { min-height: 150px; }
  .blueprint-flow li::after { display: none; }
  .case-next a { min-height: 190px; padding: 22px; }
  .case-next strong { font-size: 38px; }
  .case-next i { width: 42px; height: 42px; }
  .work-index-grid > .listing-card:nth-child(-n+2) > :first-child { height: auto; min-height: 280px; aspect-ratio: 1.05 / 1; }
  .work-index-grid > .listing-card:nth-child(3) { grid-column: auto; display: flex; }
  .work-index-grid > .listing-card:nth-child(3) .listing-card-media { min-height: 0; aspect-ratio: 1.05 / 1; }
  .work-index-grid > .listing-card:nth-child(3) .listing-card-copy { padding: 24px 48px 40px 0; border-left: 0; border-top: 0; }
  .service-choice { grid-template-columns: 1fr; }
  .service-choice > div { padding: 14px 0; }
  .service-choice > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 1120px) {
  .service-intent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-bottom: 24px; }
  .service-intent-grid > .button { grid-column: 1 / -1; justify-self: start; margin: 22px 0 0; }
}

@media (max-width: 860px) {
  .trust-ledger-grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-ledger-heading { position: static; }
  .capability-line { overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .capability-line::-webkit-scrollbar { display: none; }
  .service-intent-grid { grid-template-columns: 1fr 1fr; }
  .service-intent-item:nth-child(2) { border-right: 0; }
  .service-intent-item:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid var(--line-light); }
  .service-proof-card { grid-template-columns: 1fr; }
  .service-proof-meta { min-height: 280px; border-left: 0; border-top: 1px solid var(--line-light); }
  .service-lead-panel { grid-template-columns: minmax(0, 1fr); }
  .service-lead-panel > * { min-width: 0; }
  .service-lead-panel .lead-form { border-left: 0; border-top: 1px solid var(--line-light); }
}

@media (max-width: 600px) {
  .hero-action-note { margin-top: 13px; font-size: 9px; }
  .hero-system { box-shadow: 5px 6px 0 rgba(214,184,92,.25); }
  .capability-track { min-height: 66px; gap: 18px; }
  .capability-track strong { position: sticky; left: 0; z-index: 1; padding-right: 8px; background: var(--paper-2); }
  .trust-ledger-list li { min-height: 0; grid-template-columns: 1fr; gap: 18px; }
  .trust-ledger-heading h2 { font-size: clamp(40px, 12vw, 54px); }
  .service-intent-grid { grid-template-columns: 1fr; padding-bottom: 22px; }
  .service-intent-item, .service-intent-item + .service-intent-item, .service-intent-item:nth-child(3) { grid-column: 1; padding: 20px 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line-light); }
  .service-intent-grid > .button { grid-column: 1; width: 100%; margin-top: 22px; }
  .service-proof-copy, .service-proof-meta { padding: 28px 22px; }
  .service-proof-copy h2 { font-size: clamp(30px, 9.6vw, 38px); hyphens: auto; overflow-wrap: break-word; }
  .service-proof-meta { min-height: 250px; }
  .service-lead-copy { padding: 30px 22px; }
  .service-lead-copy h2 { min-width: 0; font-size: clamp(30px, 10vw, 40px); hyphens: auto; overflow-wrap: break-word; }
  .service-lead-panel .lead-form { padding: 26px 20px; }
  .brief-response { margin-block: 28px; }
}

/* Design system 5.0: proof-first hierarchy, commercial clarity and final accessibility polish. */
.hero h1 { font-size: clamp(50px, 5.45vw, 86px); }
.brief .button-primary:hover, .service-lead-panel .button-primary:hover { background: var(--signal-hover); color: var(--ink); }
.field input, .field textarea, .field select { border-bottom-color: #70726a; }
.field label span { color: var(--text-inverse-muted); }
.form-submit-row p { color: #8f918a; }
.process-list > li > strong { color: var(--text-inverse-muted); }
.capability-track a { min-height: 44px; display: inline-flex; align-items: center; }

.industrial-feature { padding: clamp(20px, 3vw, 42px); background: #c8d1c6; color: #172019; }
.industrial-console { width: 92%; height: 84%; min-height: 360px; box-shadow: 0 24px 70px rgba(7, 13, 8, .22); }
.industrial-console .industrial-head { height: 42px; }
.industrial-console .industrial-body { height: calc(100% - 42px); }
.industrial-console .industrial-title span { font-size: clamp(18px, 2.25vw, 34px); }
.industrial-console .industrial-chart { height: clamp(72px, 9vw, 116px); }

.antimax-project-preview { display: grid; place-items: center; padding: clamp(18px, 2.4vw, 32px); background: #070b12; }
.antimax-project-preview .antimax-console { width: 100%; height: 100%; min-height: 0; }
.project-media .case-number { z-index: 3; }

.work-index-grid { grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr); }
.work-index-grid > .listing-card:nth-child(1) { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); border-bottom: 1px solid var(--line); }
.work-index-grid > .listing-card:nth-child(1) > :first-child { height: auto; min-height: 520px; aspect-ratio: auto; }
.work-index-grid > .listing-card:nth-child(1) .listing-card-copy { padding: clamp(34px, 5vw, 74px); display: flex; flex-direction: column; justify-content: flex-end; border-left: 1px solid var(--line); }
.work-index-grid > .listing-card:nth-child(3) { grid-column: auto; display: flex; grid-template-columns: none; border-bottom: 0; }
.work-index-grid > .listing-card:nth-child(3) .listing-card-media { height: clamp(410px, 38vw, 520px); min-height: 0; aspect-ratio: auto; }
.work-index-grid > .listing-card:nth-child(3) .listing-card-copy { padding: 24px 0 40px; border: 0; }

.case-decision { max-width: 620px; }
.case-decision > span { display: block; margin-bottom: 8px; color: var(--signal); font-family: var(--mono); font-size: 9px; line-height: 1.4; letter-spacing: .07em; text-transform: uppercase; }
.case-copy .case-decision { font-size: 15px; line-height: 1.65; }
.project-copy .case-decision { font-size: 14px; line-height: 1.65; }
.project-copy .case-decision > span { margin-bottom: 6px; }

.trust-ledger-list li { position: relative; transition: background .25s ease; }
.trust-ledger-list li::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--signal); transform: scaleY(0); transform-origin: bottom; transition: transform .3s var(--ease); }
.trust-ledger-list li:hover { background: var(--surface-raised); }
.trust-ledger-list li:hover::before { transform: scaleY(1); }

.service-note-qualifier { position: relative; overflow: hidden; border: 1px solid rgba(214,184,92,.3); }
.service-note-qualifier::after { content: "FIT / BEFORE BUILD"; position: absolute; right: 24px; bottom: -16px; color: rgba(214,184,92,.07); font-family: var(--mono); font-size: clamp(44px, 7vw, 96px); line-height: 1; letter-spacing: -.08em; white-space: nowrap; pointer-events: none; }
.service-note-qualifier > * { position: relative; z-index: 1; }

.studio-copy .studio-lead { max-width: 760px; margin: clamp(34px, 4vw, 56px) 0 0; color: var(--text-secondary); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.studio-responsibility { margin: clamp(36px, 4vw, 58px) 0 38px; border-top: 1px solid var(--line); }
.studio-responsibility > div { min-height: 92px; padding-block: 18px; display: grid; grid-template-columns: minmax(160px, .55fr) minmax(0, 1.45fr); align-items: center; gap: 24px; border-bottom: 1px solid var(--line); }
.studio-responsibility span { color: var(--signal-ink); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.studio-responsibility strong { max-width: 520px; font-size: 14px; line-height: 1.5; }

.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  outline: 3px solid var(--signal-focus);
  outline-offset: 4px;
  border-color: var(--signal);
}
.consent { min-height: 44px; font-size: 12px; line-height: 1.55; }
.consent input { flex-basis: 20px; width: 20px; height: 20px; }
.footer-links a, .cookie-settings { min-height: 44px; display: inline-flex; align-items: center; }
.cookie-banner p { font-size: 12px; line-height: 1.5; }
.cookie-decline { min-height: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: transparent; font-size: 11px; font-weight: 700; text-decoration: none; }
.cookie-decline:hover { border-color: var(--ink); background: var(--paper-2); }
.cookie-settings { margin-top: 0; font-size: 12px; }

@media (max-width: 860px) {
  .industrial-console { width: 94%; height: 86%; min-height: 330px; }
  .service-note-qualifier::after { right: 12px; }
  .work-index-grid { grid-template-columns: minmax(0, 1fr); }
  .work-index-grid > .listing-card:nth-child(n) { grid-column: auto; display: flex; border-bottom: 0; }
  .work-index-grid > .listing-card:nth-child(n) > :first-child { height: auto; min-height: 300px; aspect-ratio: 1.35 / 1; }
  .work-index-grid > .listing-card:nth-child(n) .listing-card-copy { padding: 24px 48px 40px 0; border: 0; }
}

@media (max-width: 600px) {
  .system-core { flex: 0 0 170px; min-height: 170px; padding-block: 22px 18px; }
  .system-steps li { min-height: 78px; padding-block: 12px; }
  .system-caption { padding-top: 13px; font-size: 8px; }
  .industrial-feature { min-height: 310px; padding: 14px; }
  .industrial-console { width: 100%; height: 100%; min-height: 280px; }
  .industrial-console .industrial-head { height: 34px; }
  .industrial-console .industrial-body { height: calc(100% - 34px); }
  .industrial-console .industrial-title span { font-size: 17px; }
  .industrial-console .industrial-title small { display: none; }
  .industrial-console .industrial-chart { height: 64px; }
  .antimax-project-preview { padding: 12px; }
  .work-index-grid > .listing-card:nth-child(n) > :first-child { height: auto; min-height: 280px; aspect-ratio: 1.05 / 1; }
  .case-copy .case-decision, .project-copy .case-decision { font-size: 13px; }
  .trust-ledger-list li:hover { padding-inline: 0; background: transparent; }
  .service-note-qualifier::after { display: none; }
  .studio-responsibility > div { min-height: 104px; grid-template-columns: 1fr; align-content: center; gap: 8px; }
  .service-intent-grid > .button { grid-row: 1; margin: 20px 0 22px; }
  .service-intent-item { grid-row: auto; }
  .cookie-banner { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); width: calc(100% - 20px); max-height: calc(100dvh - max(20px, calc(env(safe-area-inset-bottom) + 10px))); }
  .cookie-banner > div { width: 100%; display: grid; grid-template-columns: 1fr; }
  .cookie-banner .button, .cookie-decline { width: 100%; min-height: 44px; }
}

/* Design system 6.0: compact decision rhythm, stable interaction geometry and ad-ready forms. */
.hero-action-note span {
  margin-right: 8px;
  color: var(--signal-ink);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.capability-line {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.capability-line::-webkit-scrollbar { display: none; }
.capability-track { scroll-snap-type: x proximity; }
.capability-track a { scroll-snap-align: start; }

.trust-ledger-list li { transition: background .25s ease; }
.trust-ledger-list li > span,
.trust-ledger-list li > div { transition: transform .3s var(--ease); }
.trust-ledger-list li:hover { padding-inline: 0; background: var(--surface-raised); }
.trust-ledger-list li:hover > span,
.trust-ledger-list li:hover > div { transform: translateX(12px); }

.cycle-register {
  margin-top: var(--space-block);
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.018);
}
.cycle-register-intro {
  min-height: 190px;
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
}
.cycle-register-intro span,
.cycle-register li span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.cycle-register-intro p {
  max-width: 300px;
  margin: 34px 0 0;
  color: var(--text-inverse-muted);
  font-size: 14px;
  line-height: 1.55;
}
.cycle-register ol {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}
.cycle-register li {
  min-width: 0;
  min-height: 190px;
  padding: clamp(24px, 2.5vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
}
.cycle-register li:last-child { border-right: 0; }
.cycle-register li strong {
  max-width: 230px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.42;
  letter-spacing: -.02em;
}

.budget-boundaries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-top: 0;
}
.budget-boundaries > div {
  min-height: 118px;
  padding: 22px clamp(24px, 2.5vw, 36px);
  display: grid;
  grid-template-columns: minmax(128px, .36fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.budget-boundaries > div + div { border-left: 1px solid var(--line); }
.budget-boundaries span {
  color: var(--signal-ink);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.budget-boundaries p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.field-help,
.privacy-note {
  display: block;
  margin: 9px 0 0;
  color: var(--text-inverse-muted);
  font-size: 10px;
  line-height: 1.5;
}
.field label > span { margin-left: 6px; }
.privacy-note { margin: -4px 0 20px; }
.privacy-note a { color: inherit; text-underline-offset: 3px; }
.service-lead-panel .form-row { margin-bottom: 0; }
.article-aside:last-child { display: block; }
.response-actions { margin-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; }
.response-actions .text-link { min-height: 44px; display: inline-flex; align-items: center; }

.hero-actions .text-link,
.studio-copy > .text-link,
.faq-heading > .text-link,
.service-note .text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 860px) {
  .article-aside:last-child {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .cycle-register { grid-template-columns: 1fr; }
  .cycle-register-intro { min-height: 138px; border-right: 0; border-bottom: 1px solid var(--line-light); }
}

@media (max-width: 600px) {
  .home-page main > section:not(.work) .section-heading h2,
  .noncase-page .section-heading h2,
  .studio-copy h2,
  .faq-heading h2,
  .brief-copy h2,
  .noncase-page .inner-hero h1,
  .response-hero h1,
  .trust-ledger-heading h2 {
    font-size: clamp(40px, 7.5vw, 46px);
  }
  .hero-action-note { margin-top: 14px; font-size: 10px; line-height: 1.55; }
  .system-caption { font-size: 10px; line-height: 1.45; }
  .photo-caption small { font-size: 10px; }
  .home-page .site-footer::before,
  .noncase-page .site-footer::before { font-size: clamp(52px, 13.5vw, 82px); }
  .cycle-register { margin-top: 52px; }
  .cycle-register-intro { min-height: 128px; padding: 22px; }
  .cycle-register-intro p { margin-top: 26px; }
  .cycle-register ol { grid-template-columns: 1fr; }
  .cycle-register li { min-height: 98px; padding: 20px 22px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .cycle-register li:last-child { border-bottom: 0; }
  .cycle-register li strong { margin-top: 14px; max-width: none; }
  .budget-card { min-height: 225px; }
  .budget-card strong { margin-top: 34px; }
  .budget-boundaries { grid-template-columns: 1fr; }
  .budget-boundaries > div { min-height: 132px; grid-template-columns: 1fr; align-content: center; gap: 10px; }
  .budget-boundaries > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .noncase-page .content-body h2,
  .service-lead-copy h2 { hyphens: none; overflow-wrap: normal; }
  .response-actions { align-items: stretch; flex-direction: column; }
  .response-actions .button { width: 100%; }
  .site-header > .container:not(.header-inner) nav a { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 380px) {
  .cookie-banner > div { grid-template-columns: 1fr; }
  .home-page .footer-project-link,
  .noncase-page .footer-project-link { display: inline-flex; align-items: baseline; gap: 6px; font-size: 20px; white-space: nowrap; }
}

@media (hover: none) {
  .button:hover, .project-card:hover, .budget-card:not(.featured):hover { transform: none; box-shadow: none; }
  .service-row:hover .service-title { transform: none; }
  .service-row:hover .service-arrow { transform: none; }
  .trust-ledger-list li:hover > span, .trust-ledger-list li:hover > div { transform: none; }
  .case-facts div:hover > * { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cookie-banner, .button { display: none !important; }
  body { background: #fff; color: #000; }
  .legal-content, .article-content { max-width: none; }
}

/* Real MAXBETON preview used by homepage and work index. */
.case-visual.maxbeton-real-preview,
.listing-card-media.maxbeton-real-preview { position: relative; overflow: hidden; background: #090b0e; }
.case-visual.maxbeton-real-preview::after,
.listing-card-media.maxbeton-real-preview::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(140deg, transparent 45%, rgba(214,184,92,.16)); }
.case-visual.maxbeton-real-preview img,
.listing-card-media.maxbeton-real-preview img { width: 100%; height: 108%; object-fit: cover; object-position: top left; transform-origin: top center; transition: transform .8s var(--ease); }
.featured-case:hover .case-visual.maxbeton-real-preview img,
.listing-card:hover .listing-card-media.maxbeton-real-preview img { transform: scale(1.025); }

@media (hover: none) {
  .featured-case:hover .case-visual.maxbeton-real-preview img,
  .listing-card:hover .listing-card-media.maxbeton-real-preview img { transform: none; }
}

/* Лес.Регион preview: a real development screen framed as a digital forestry atlas. */
.lesregion-project-preview {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(16px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 153, 97, .2), transparent 32%),
    linear-gradient(135deg, #06120e, #0d281e);
}
.lesregion-project-preview::before {
  content: "";
  position: absolute;
  inset: -42% -18% -50% 34%;
  opacity: .28;
  background: repeating-radial-gradient(ellipse at center, transparent 0 23px, rgba(126,168,137,.23) 24px 25px, transparent 26px 44px);
  transform: rotate(-11deg);
  pointer-events: none;
}
.lesregion-project-preview > .case-status-chip { top: clamp(24px, 3vw, 40px); left: clamp(24px, 3vw, 40px); z-index: 4; }
.lesregion-screen {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #0b1110;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 7px;
  box-shadow: 0 24px 55px rgba(0,0,0,.32);
}
.lesregion-screen-top,
.lesregion-screen-bottom {
  height: 31px;
  padding-inline: 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.48);
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1;
  letter-spacing: .07em;
}
.lesregion-screen-top i { flex: 1; height: 1px; background: rgba(255,255,255,.11); }
.lesregion-screen-bottom { justify-content: space-between; color: rgba(214,184,92,.72); border-top: 1px solid rgba(255,255,255,.08); }
.lesregion-screen img {
  width: 100%;
  height: calc(100% - 62px);
  object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease);
}
.project-card:hover .lesregion-screen img,
.listing-card:hover .lesregion-screen img { transform: scale(1.018); }

@media (max-width: 600px) {
  .lesregion-project-preview { padding: 12px; }
  .lesregion-project-preview > .case-status-chip { top: 20px; left: 20px; }
  .lesregion-screen-top,
  .lesregion-screen-bottom { height: 26px; padding-inline: 9px; font-size: 6px; }
  .lesregion-screen img { height: calc(100% - 52px); object-fit: contain; }
  .lesregion-screen-bottom span:nth-child(2) { display: none; }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .project-card:hover .lesregion-screen img,
  .listing-card:hover .lesregion-screen img { transform: none; }
}

/* Design system 7.0: ad-entry routing and plain-language service decisions. */
.problem-router { scroll-margin-top: 92px; }
.problem-router-list a:focus-visible {
  position: relative;
  z-index: 2;
}
.service-desc b {
  margin-right: 3px;
  color: var(--ink);
  font-weight: 800;
}
.service-row:hover .service-desc b { color: var(--signal-ink); }

@media (max-width: 1120px) {
  .problem-router-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
  .problem-router-copy {
    position: static;
  }
  .problem-router-copy h2 {
    max-width: 720px;
  }
}

@media (max-width: 860px) {
  .problem-router {
    padding-block: 58px 74px;
  }
  .problem-router-list a {
    min-height: 188px;
  }
  .service-desc {
    max-width: 680px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .problem-router {
    padding-block: 48px 64px;
  }
  .problem-router-copy h2 {
    font-size: clamp(36px, 9.8vw, 44px);
  }
  .problem-router-list {
    grid-template-columns: 1fr;
  }
  .problem-router-list a {
    min-height: 164px;
    padding: 22px 0;
    border-right: 0;
  }
  .problem-router-list strong {
    font-size: clamp(21px, 6vw, 28px);
  }
  .problem-router-list small {
    font-size: 13px;
  }
}

@media (hover: none) {
  .problem-router-list a:hover {
    transform: none;
  }
}

/* Sales readiness layer: audience clarity, decision support and trust before lead capture. */
.audience-map {
  background:
    radial-gradient(circle at 8% 12%, rgba(214,184,92,.16), transparent 28%),
    linear-gradient(180deg, rgba(248,245,236,.92), rgba(255,255,255,.98));
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(20,22,24,.1);
  border-radius: var(--radius-xl);
  background: rgba(20,22,24,.12);
  box-shadow: 0 34px 90px rgba(20,22,24,.08);
}
.audience-grid a {
  min-height: 252px;
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,245,236,.9));
  text-decoration: none;
  transition: transform .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}
.audience-grid a:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 24px 55px rgba(20,22,24,.12);
}
.audience-grid span,
.case-proof-ledger span,
.trust-package span,
.estimator-result span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.audience-grid strong {
  max-width: 360px;
  display: block;
  font-size: clamp(21px, 2vw, 28px);
  line-height: .98;
  letter-spacing: -.04em;
}
.audience-grid small {
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.case-proof-ledger {
  margin-top: clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.12);
}
.case-proof-ledger div {
  min-height: 168px;
  padding: clamp(22px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 86% 16%, rgba(214,184,92,.18), transparent 34%),
    rgba(255,255,255,.045);
}
.case-proof-ledger strong {
  max-width: 360px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.offer-estimator {
  position: relative;
  overflow: hidden;
}
.offer-estimator::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto 44%;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(214,184,92,.24), transparent 64%);
}
.estimator-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .72fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
}
.estimator-copy h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(44px, 7vw, 94px);
  line-height: .9;
  letter-spacing: -.075em;
}
.estimator-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.62;
}
.estimator-panel {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.07);
  box-shadow: 0 34px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.estimator-panel label {
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.estimator-panel select {
  min-height: 58px;
  width: 100%;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(8,10,12,.72);
  font: inherit;
}
.estimator-result {
  padding: 22px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(214,184,92,.22);
  border-radius: 22px;
  background: rgba(214,184,92,.08);
}
.estimator-result strong {
  color: #fff;
  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.estimator-result small {
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.55;
}

.lead-magnet-card {
  padding: clamp(26px, 4.8vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(20,22,24,.1);
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    radial-gradient(circle at 92% 8%, rgba(214,184,92,.2), transparent 30%),
    linear-gradient(135deg, #fff, #f8f5ec);
  box-shadow: 0 32px 90px rgba(20,22,24,.08);
}
.lead-magnet-card h2 {
  max-width: 720px;
  font-size: clamp(38px, 5.5vw, 82px);
  line-height: .92;
  letter-spacing: -.07em;
}
.lead-magnet-card p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.lead-magnet-actions {
  min-width: 280px;
  display: grid;
  justify-items: start;
  gap: 16px;
}

.trust-package {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.trust-package li {
  padding: 16px 18px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(20,22,24,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
}
.trust-package strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 1120px) {
  .audience-grid,
  .case-proof-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .estimator-grid,
  .lead-magnet-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .audience-grid,
  .case-proof-ledger {
    grid-template-columns: 1fr;
  }
  .audience-grid a {
    min-height: 210px;
  }
  .case-proof-ledger div {
    min-height: 142px;
  }
  .estimator-grid {
    gap: 26px;
  }
  .estimator-panel {
    padding: 18px;
    border-radius: 24px;
  }
  .lead-magnet-card {
    padding: 22px;
    border-radius: 24px;
  }
  .lead-magnet-actions,
  .lead-magnet-actions .button {
    width: 100%;
  }
}

@media (hover: none) {
  .audience-grid a:hover {
    transform: none;
    box-shadow: none;
  }
}

.ai-maturity {
  padding-block: clamp(58px, 8vw, 112px);
  background:
    radial-gradient(circle at 14% 14%, rgba(214,184,92,.14), transparent 30%),
    #fff;
}
.ai-maturity-grid {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.ai-maturity h2 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .9;
  letter-spacing: -.07em;
}
.ai-maturity p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.ai-maturity-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(20,22,24,.1);
  border-radius: var(--radius-xl);
  background: rgba(20,22,24,.1);
  list-style: none;
}
.ai-maturity-list li {
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 20px;
  background: rgba(248,245,236,.9);
}
.ai-maturity-list span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--signal-ink);
  border: 1px solid rgba(214,184,92,.42);
  border-radius: 50%;
  background: rgba(214,184,92,.12);
  font-family: var(--mono);
  font-size: 12px;
}
.ai-maturity-list strong {
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.ai-maturity-list small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .ai-maturity-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .ai-maturity-list li {
    grid-template-columns: 1fr;
  }
  .ai-maturity-list span {
    grid-row: auto;
  }
}

/* Advertising-readiness case summaries: fast business meaning before deep case reading. */
.case-ad-summary {
  margin-top: clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.16);
}
.case-ad-summary article {
  min-height: 156px;
  padding: clamp(18px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(214,184,92,.16), transparent 35%),
    rgba(255,255,255,.055);
}
.case-ad-summary span {
  color: rgba(255,255,255,.58);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.case-ad-summary strong {
  color: #fff;
  font-size: clamp(16px, 1.42vw, 21px);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.case-ad-summary--light {
  border-color: rgba(20,22,24,.12);
  background: rgba(20,22,24,.12);
  box-shadow: 0 24px 80px rgba(20,22,24,.08);
}
.case-ad-summary--light article {
  background:
    radial-gradient(circle at 86% 12%, rgba(214,184,92,.14), transparent 35%),
    rgba(255,255,255,.88);
}
.case-ad-summary--light span {
  color: var(--muted);
}
.case-ad-summary--light strong {
  color: var(--ink);
}
.case-ad-summary--forest {
  border-color: rgba(126,168,137,.22);
  background: rgba(126,168,137,.18);
}
.case-ad-summary--forest article {
  background:
    radial-gradient(circle at 86% 12%, rgba(214,184,92,.14), transparent 35%),
    rgba(7,24,18,.72);
}

@media (max-width: 980px) {
  .case-ad-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .case-ad-summary {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .case-ad-summary article {
    min-height: 122px;
  }
}
