/* Shared Dizaina Studija V2 design system */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600&display=swap');

:root {
  --ink: #11171d;
  --ink-2: #18222b;
  --paper: #f3f1ed;
  --white: #fff;
  --soft: #e8e8e4;
  --line: rgba(17, 23, 29, .14);
  --muted: #667078;
  --orange: #ff6b22;
  --orange-soft: #ffb38e;
  --green: #0fb98d;
  --blue: #4f72ed;
  --red: #e95c58;
  --radius: 22px;
  --shell: min(1240px, calc(100vw - 72px));
  --sans: 'Manrope', Arial, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body.home-v2 { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
body.home-v2.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin: 0 auto; position: relative; }
.section-pad { padding: 132px 0; }
.section-pad-sm { padding: 104px 0; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 1000; background: #fff; padding: 12px 18px; border-radius: 6px; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 18px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
h1 { font-size: clamp(58px, 5.6vw, 86px); line-height: .99; font-weight: 500; margin-bottom: 32px; }
h2 { font-size: clamp(42px, 4.1vw, 62px); line-height: 1.04; font-weight: 500; margin-bottom: 28px; }
h3 { font-size: 24px; line-height: 1.18; font-weight: 600; }
p { margin-bottom: 0; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; font: 500 12px/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.eyebrow > span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.eyebrow.light { color: rgba(255,255,255,.62); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 17px 23px; background: var(--orange); color: #161616; border: 1px solid var(--orange); border-radius: 8px; text-decoration: none; font-size: 16px; font-weight: 600; transition: transform .22s, background .22s, box-shadow .22s; }
.button:hover { transform: translateY(-2px); background: #ff7b3d; box-shadow: 0 14px 32px rgba(231, 83, 20, .18); }
.button-small { padding: 12px 16px; gap: 12px; }
.button-light { background: #fff; border-color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 22px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.text-link span, .button span { transition: transform .2s; }
.text-link:hover span, .button:hover span { transform: translate(2px, -2px); }

.site-header { height: 96px; position: sticky; top: 0; z-index: 50; transition: height .25s, background .25s, box-shadow .25s; }
.site-header.is-sticky { height: 76px; background: rgba(243,241,237,.9); box-shadow: 0 1px rgba(17,23,29,.08); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 68px; height: 66px; object-fit: contain; }
.is-sticky .brand img { width: 54px; height: 52px; }
.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav > a:not(.button) { position: relative; font-size: 14px; font-weight: 600; text-decoration: none; }
.site-nav > a:not(.button)::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .22s; }
.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero { min-height: calc(100vh - 96px); padding-top: 78px; position: relative; display: flex; align-items: center; }
.hero-glow { position: absolute; width: 800px; height: 800px; right: -250px; top: -250px; background: radial-gradient(circle, rgba(255,107,34,.13), transparent 66%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(430px, .76fr); gap: 90px; align-items: center; }
.hero-copy { max-width: 857px; }
.hero h1 em { display: block; color: var(--orange); font-style: normal; }
.hero-lead { max-width: 640px; color: #4d5860; font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 630px; margin-top: 70px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-proof div { display: flex; gap: 12px; align-items: flex-start; }
.hero-proof strong { font: 500 22px/1 var(--mono); color: var(--orange); }
.hero-proof span { max-width: 110px; color: var(--muted); font-size: 12px; line-height: 1.35; }

.hero-visual { width: 100%; margin: 0; position: relative; }
.hero-visual img { display: block; width: 100%; height: auto; }

.hero-system { position: relative; padding: 18px; background: var(--ink); color: #fff; border-radius: 28px; box-shadow: 0 40px 80px rgba(20, 26, 31, .22); transform: rotate(1.25deg); }
.hero-system::before { display: none; }
.system-topline { display: flex; justify-content: space-between; align-items: center; padding: 2px 5px 16px; color: rgba(255,255,255,.45); font: 400 10px/1 var(--mono); letter-spacing: .04em; }
.live-dot { display: flex; align-items: center; gap: 7px; }
.live-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #48d89b; box-shadow: 0 0 0 5px rgba(72,216,155,.1); }
.request-card { padding: 24px; border-radius: 15px; color: var(--ink); background: #f9f7f2; }
.request-card small { color: var(--orange); font: 500 10px/1 var(--mono); letter-spacing: .06em; }
.request-card h2 { max-width: 360px; margin: 12px 0 22px; font-size: 29px; line-height: 1.08; }
.request-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.request-meta span { padding: 7px 9px; border: 1px solid rgba(17,23,29,.13); border-radius: 5px; font: 400 9px/1 var(--mono); }
.system-flow { padding: 10px 6px 5px 20px; }
.flow-step { min-height: 70px; display: grid; grid-template-columns: 30px 1fr 22px; gap: 11px; align-items: center; position: relative; border-bottom: 1px solid rgba(255,255,255,.09); opacity: .46; }
.flow-step > b { font: 500 10px/1 var(--mono); }
.flow-step small { display: block; margin-bottom: 3px; color: rgba(255,255,255,.42); font: 400 9px/1 var(--mono); letter-spacing: .05em; }
.flow-step strong { font-size: 13px; font-weight: 500; }
.flow-step > span { text-align: center; font: 500 11px/1 var(--mono); }
.flow-step.is-done, .flow-step.is-active { opacity: 1; }
.flow-step.is-done > span { color: #48d89b; }
.flow-step.is-active::before { content: ''; position: absolute; left: -20px; top: 0; bottom: 0; width: 3px; background: var(--orange); }
.flow-step.is-active > span { color: var(--orange); letter-spacing: 1px; }
.system-footer { display: flex; flex-direction: column; gap: 5px; padding: 17px 5px 2px; }
.system-footer code { color: #92a5f9; font: 400 10px/1.3 var(--mono); }
.system-footer > span { color: rgba(255,255,255,.36); font: 400 9px/1 var(--mono); text-align: right; }

.recognition { background: #fff; }
.recognition-grid, .knowledge-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 120px; align-items: start; }
.section-intro h2 { max-width: 580px; }
.section-intro > p:last-child { max-width: 540px; color: var(--muted); font-size: 18px; }
.signal-list { margin: 0; padding: 0; border-top: 1px solid var(--line); }
.signal-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 27px 0 29px; border-bottom: 1px solid var(--line); }
.signal-list li > span { color: var(--orange); font: 500 11px/1.4 var(--mono); }
.signal-list h3 { margin: -4px 0 8px; font-size: 20px; }
.signal-list p { color: var(--muted); line-height: 1.55; }

.complexity, .debt { background: var(--ink); color: #fff; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 100px; align-items: end; margin-bottom: 64px; }
.section-heading h2 { max-width: 790px; margin-bottom: 0; }
.section-heading > p { max-width: 430px; color: rgba(255,255,255,.6); font-size: 18px; }
.section-heading.dark-text > p { color: var(--muted); }
.complexity-board { display: grid; grid-template-columns: 1fr 1fr 1.22fr; grid-template-rows: auto minmax(280px, auto) auto; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; background: #141c23; }
.complexity-axis { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr 1.22fr; color: rgba(255,255,255,.38); border-bottom: 1px solid rgba(255,255,255,.1); font: 400 10px/1 var(--mono); }
.complexity-axis span { padding: 17px 20px; border-right: 1px solid rgba(255,255,255,.08); }
.complexity-stage { display: flex; align-content: flex-start; flex-wrap: wrap; gap: 8px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.08); }
.stage-two { padding-top: 48px; }
.stage-three { padding-top: 65px; background: linear-gradient(135deg, rgba(233,92,88,.03), rgba(233,92,88,.12)); }
.ui-chip { align-self: flex-start; padding: 9px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 5px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.7); font: 400 10px/1 var(--mono); }
.ui-chip.green { color: #58dca7; border-color: rgba(88,220,167,.35); }
.ui-chip.blue { color: #9eafff; border-color: rgba(158,175,255,.34); }
.ui-chip.orange { color: #ffb18a; border-color: rgba(255,177,138,.35); }
.ui-chip.red { color: #ff9894; border-color: rgba(255,152,148,.3); transform: rotate(var(--r, -1deg)); }
.ui-chip.red:nth-child(2n) { --r: 1.5deg; }
.complexity-caption { grid-column: 1 / -1; display: flex; justify-content: space-between; padding: 24px 28px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.52); }
.complexity-caption strong { color: #fff; font-weight: 500; }

.pillars { background: #f7f6f3; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pillar { min-height: 420px; padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.pillar-top { display: flex; justify-content: space-between; min-height: 130px; }
.pillar-top > span { color: var(--orange); font: 500 11px/1 var(--mono); }
.pillar h3 { max-width: 420px; margin: auto 0 17px; font-size: 31px; }
.pillar > p { max-width: 540px; color: var(--muted); font-size: 17px; }
.capacity-viz { display: flex; align-items: flex-end; gap: 6px; width: 140px; height: 54px; }
.capacity-viz i { flex: 1; height: 35%; background: #d9dde0; }
.capacity-viz i:nth-child(2) { height: 60%; }.capacity-viz i:nth-child(3) { height: 78%; }.capacity-viz i:nth-child(4) { height: 52%; }
.capacity-viz b { width: 26px; height: 100%; background: var(--orange); }
.path-viz, .memory-viz { display: flex; align-items: center; }
.path-viz b, .memory-viz b { display: grid; place-items: center; min-width: 35px; height: 35px; padding: 0 7px; border: 1px solid var(--line); font: 500 10px/1 var(--mono); }
.path-viz b:last-child { background: var(--green); color: #fff; border-color: var(--green); }
.path-viz i, .memory-viz i { width: 25px; height: 1px; background: var(--line); }
.tree-viz { display: grid; grid-template-columns: 75px 55px; gap: 5px 9px; font: 400 9px/1 var(--mono); }
.tree-viz b { grid-row: 1 / 4; align-self: center; }
.tree-viz i { padding-left: 8px; border-left: 1px solid var(--line); font-style: normal; color: var(--muted); }
.memory-viz b { border-radius: 50%; min-width: 32px; width: 32px; height: 32px; }
.memory-viz b:last-child { width: 46px; border-radius: 16px; background: var(--orange); border-color: var(--orange); }
.memory-viz i { width: 12px; }

.process { background: #fff; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-track article { min-height: 190px; padding: 26px 25px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-track article:nth-of-type(4n) { border-right: 0; }
.process-track article:nth-of-type(n+5) { border-bottom: 0; }
.process-track article:nth-of-type(7), .process-track article:nth-of-type(8) { background: #f3f7f5; }
.process-track article > span { color: var(--orange); font: 500 10px/1 var(--mono); }
.process-track h3 { margin: 45px 0 6px; font-size: 19px; letter-spacing: -.025em; }
.process-track p { color: var(--muted); font-size: 13px; line-height: 1.45; }
.process-progress { position: absolute; z-index: 2; left: 0; top: calc(50% - 2px); width: 100%; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange) 62%, var(--green) 80%, var(--green)); opacity: .7; pointer-events: none; }
.process-link { margin-top: 30px; float: right; }

.dev-team { padding: 118px 0; background: var(--ink); color: #fff; }
.dev-team-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: center; }
.dev-team h2 { max-width: 500px; }
.dev-team-grid > div:first-child > p:last-child { max-width: 500px; color: rgba(255,255,255,.55); font-size: 18px; }
.dev-map { display: grid; grid-template-columns: 1fr 80px 1.25fr; grid-template-rows: 1fr auto; align-items: stretch; }
.dev-sources { display: grid; gap: 10px; }
.dev-sources span { display: flex; align-items: center; min-height: 60px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; color: rgba(255,255,255,.72); font: 400 11px/1.25 var(--mono); }
.connector { display: grid; align-items: center; }
.connector i { display: block; height: 1px; background: rgba(255,255,255,.25); }
.design-layer { grid-row: 1; grid-column: 3; display: flex; flex-direction: column; justify-content: center; padding: 28px; border-radius: 12px; background: var(--orange); color: var(--ink); }
.design-layer small { font: 500 9px/1 var(--mono); letter-spacing: .06em; }
.design-layer strong { margin: 18px 0 14px; font-size: 33px; letter-spacing: -.05em; }
.design-layer > span { font: 400 10px/1.5 var(--mono); }
.product-node { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 16px; padding: 18px 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; font-weight: 600; }
.product-node span { color: var(--green); }

.flagship { background: #f0efeb; }
.flagship-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.flagship-copy h2 { font-size: clamp(40px, 3.6vw, 56px); }
.flagship-copy > p { max-width: 580px; color: var(--muted); font-size: 17px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 32px 0; padding: 0; list-style: none; }
.tag-list li { padding: 7px 10px; border: 1px solid var(--line); border-radius: 5px; color: #4e5961; font: 400 10px/1 var(--mono); }
.flagship-copy blockquote { margin: 34px 0; padding: 5px 0 5px 25px; border-left: 2px solid var(--orange); font-size: 20px; line-height: 1.55; letter-spacing: -.02em; }
.flagship-visual { min-height: 650px; position: relative; border-radius: 28px; background: #dfe3e3; overflow: hidden; }
.flagship-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 62% 45%, transparent 20%, rgba(17,23,29,.12)); pointer-events: none; }
.case-label { position: absolute; top: 32px; left: 34px; z-index: 5; display: flex; flex-direction: column; }
.case-label b { font-size: 52px; line-height: 1; letter-spacing: -.08em; }
.case-label span { color: var(--muted); font: 400 10px/1.4 var(--mono); }
.screen { position: absolute; margin: 0; }
.screen-desktop { width: 97%; right: -18%; top: 24%; filter: drop-shadow(0 30px 35px rgba(17,23,29,.17)); }
.screen-mobile { width: 54%; left: 4%; bottom: 1%; filter: drop-shadow(0 25px 28px rgba(17,23,29,.2)); }
.case-note { position: absolute; z-index: 4; right: 27px; bottom: 28px; display: flex; flex-direction: column; padding: 14px 17px; border-radius: 8px; background: rgba(17,23,29,.9); color: #fff; }
.case-note span { color: rgba(255,255,255,.5); font: 400 9px/1 var(--mono); }
.case-note strong { margin-top: 8px; color: #fff; font: 500 11px/1 var(--mono); }

.debt-compare { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; }
.debt-card { min-height: 390px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: #161f27; }
.debt-card-head { display: flex; justify-content: space-between; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.1); font: 500 10px/1 var(--mono); }
.debt-card-head i { padding: 6px 8px; border-radius: 4px; font-style: normal; }
.debt-bad .debt-card-head i { background: rgba(233,92,88,.13); color: #ff9691; }
.debt-good .debt-card-head i { background: rgba(15,185,141,.13); color: #5de0b1; }
.component-tree { display: flex; flex-direction: column; gap: 8px; padding: 32px 5px; font: 400 13px/1.25 var(--mono); }
.component-tree strong { margin-bottom: 6px; color: #fff; }
.debt-bad .component-tree span { color: #dc8581; }
.debt-good .component-tree span { color: #7bceb5; }
.debt-card > p { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: 14px; }
.compare-arrow { display: grid; place-items: center; color: var(--orange); font-size: 30px; }
.debt-statement { max-width: 920px; margin: 62px auto 0; text-align: center; font-size: clamp(26px, 3vw, 42px); line-height: 1.25; letter-spacing: -.04em; }

.knowledge { background: #fff; }
.knowledge-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; align-items: end; min-height: 480px; padding: 35px; background: #f3f2ef; border-radius: var(--radius); }
.knowledge-timeline article { min-height: 150px; padding: 18px; position: relative; display: flex; flex-direction: column; justify-content: space-between; background: var(--ink); color: #fff; }
.knowledge-timeline article:nth-child(1) { height: 25%; }.knowledge-timeline article:nth-child(2) { height: 45%; }.knowledge-timeline article:nth-child(3) { height: 70%; }.knowledge-timeline article:nth-child(4) { height: 100%; }
.knowledge-timeline article:nth-child(2) { background: #26333d; }.knowledge-timeline article:nth-child(3) { background: #47545d; }.knowledge-timeline article:nth-child(4) { background: var(--orange); color: var(--ink); }
.knowledge-timeline span { font: 400 9px/1 var(--mono); text-transform: uppercase; opacity: .58; }
.knowledge-timeline b { font-size: 13px; line-height: 1.45; font-weight: 500; }
.knowledge-timeline i { display: none; }

.cases { background: #f7f6f3; }
.cases .section-heading { align-items: end; }
.cases .section-heading > .text-link { justify-self: end; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card { background: #fff; border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(17,23,29,.09); }
.case-card > a { display: block; text-decoration: none; }
.case-card figure { height: 270px; margin: 0; background: #e4e8e8; overflow: hidden; }
.case-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.case-card:nth-child(3) figure img { object-fit: contain; transform: scale(1.25); }
.case-card:hover figure img { transform: scale(1.035); }
.case-card:nth-child(3):hover figure img { transform: scale(1.29); }
.case-card > a > div { min-height: 250px; padding: 27px; display: flex; flex-direction: column; }
.case-card div > span { color: var(--orange); font: 500 9px/1 var(--mono); }
.case-card h3 { margin: 14px 0 12px; font-size: 26px; }
.case-card p { color: var(--muted); }
.case-card div > b { margin-top: auto; padding-top: 28px; font-size: 13px; }

.trust { background: #fff; }
.trust-heading { max-width: 930px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.metrics article { min-height: 240px; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics strong { display: block; margin-bottom: 55px; font: 500 clamp(48px, 5vw, 70px)/1 var(--mono); color: var(--orange); letter-spacing: -.08em; }
.metrics p { max-width: 260px; color: var(--muted); font-size: 14px; }
.logo-row { min-height: 170px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: center; margin-top: 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-row img { width: 100%; max-width: 105px; max-height: 58px; object-fit: contain; margin: auto; filter: grayscale(1); opacity: .54; }
.logo-row .client-logo { margin: auto; opacity: .56; filter: grayscale(1); }
.logo-row .tv3 { font-size: 27px; font-weight: 700; letter-spacing: -.08em; }

.testimonials { background: #f7f6f3; }
.quote-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 18px; }
.quote-card { min-height: 430px; margin: 0; padding: 38px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.quote-card.featured { background: var(--ink); color: #fff; }
.quote-card > span { color: var(--orange); font: 500 60px/.7 Georgia, serif; }
.quote-card h3 { max-width: 590px; margin: 40px 0 18px; font-size: 31px; }
.quote-card > p { max-width: 620px; color: var(--muted); font-size: 17px; }
.quote-card.featured > p { color: rgba(255,255,255,.58); }
.quote-card footer { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 35px; }
.quote-card footer img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; filter: grayscale(1); }
.quote-card footer div { display: flex; flex-direction: column; }
.quote-card footer strong { font-size: 13px; }
.quote-card footer small { color: var(--muted); font-size: 11px; }
.featured footer small { color: rgba(255,255,255,.42); }

.fit { background: #f0efeb; }
.section-intro.centered { max-width: 800px; margin: 0 auto 65px; text-align: center; }
.section-intro.centered .eyebrow { justify-content: center; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fit-grid article { min-height: 470px; padding: 45px; }
.fit-grid article + article { border-left: 1px solid var(--line); }
.fit-grid article > span { font: 500 10px/1 var(--mono); }
.fit-yes > span { color: var(--green); }.fit-no > span { color: var(--red); }
.fit-grid h3 { max-width: 430px; margin: 54px 0 32px; font-size: 29px; }
.fit-grid ul { margin: 0; padding: 0; list-style: none; }
.fit-grid li { position: relative; padding: 13px 0 13px 28px; border-top: 1px solid var(--line); color: var(--muted); }
.fit-grid li::before { position: absolute; left: 0; content: '✓'; color: var(--green); font: 500 12px/1.7 var(--mono); }
.fit-no li::before { content: '−'; color: var(--red); }

.final-cta { padding: 132px 0; color: #fff; background: var(--orange); }
.final-cta .eyebrow.light { color: rgba(17,23,29,.6); }
.final-cta .eyebrow > span { background: var(--ink); }
.final-cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 120px; align-items: end; }
.final-cta h2 { max-width: 780px; margin-bottom: 0; color: var(--ink); font-size: clamp(48px, 5vw, 74px); }
.final-cta-copy > p { margin-bottom: 32px; color: rgba(17,23,29,.67); font-size: 18px; }
.direct-links { display: flex; gap: 20px; margin-top: 29px; }
.direct-links a { color: rgba(17,23,29,.7); font-size: 13px; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(17,23,29,.25); }

.site-footer { padding: 70px 0 30px; background: var(--ink); color: #fff; }
.footer-main { min-height: 190px; display: flex; align-items: flex-start; justify-content: space-between; }
.brand-footer img { width: 78px; height: auto; }
.footer-main nav { display: grid; grid-template-columns: repeat(2, minmax(170px, 1fr)); gap: 12px 50px; }
.footer-main nav a, .footer-bottom a { color: rgba(255,255,255,.65); font-size: 13px; text-decoration: none; }
.footer-main nav a:hover, .footer-bottom a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font: 400 10px/1.3 var(--mono); }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { font: inherit; }

.reveal { opacity: 1; transform: none; }
.has-js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .13s; }
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { animation: none !important; } }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 52px, 980px); }
  .section-pad { padding: 105px 0; }
  .hero { min-height: auto; padding: 70px 0 100px; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 45px; }
  .hero-system { padding: 14px; }
  .hero-proof { gap: 14px; }
  .site-nav { gap: 17px; }
  .site-nav > a:not(.button) { font-size: 13px; }
  .recognition-grid, .knowledge-grid, .flagship-grid { gap: 65px; }
  .section-heading { gap: 60px; }
  .pillar { min-height: 380px; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-track article:nth-of-type(n) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process-track article:nth-of-type(2n) { border-right: 0; }
  .process-track article:nth-of-type(n+7) { border-bottom: 0; }
  .process-progress { display: none; }
  .dev-team-grid { gap: 55px; }
  .case-card figure { height: 220px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 40px); --radius: 17px; }
  .section-pad, .section-pad-sm { padding: 84px 0; }
  h1 { font-size: clamp(46px, 12vw, 66px); }
  h2 { font-size: clamp(36px, 9vw, 50px); }
  .site-header, .site-header.is-sticky { height: 74px; }
  .brand img, .is-sticky .brand img { width: 52px; height: 52px; }
  .menu-toggle { width: 46px; height: 46px; position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; gap: 7px; background: none; border: 0; }
  .menu-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-toggle i { width: 26px; height: 2px; align-self: center; background: var(--ink); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 2; padding: 120px 30px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); visibility: hidden; opacity: 0; transform: translateY(-15px); transition: opacity .25s, transform .25s, visibility .25s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a:not(.button) { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 24px; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 28px; }
  .hero { padding: 65px 0 85px; }
  .hero-grid, .recognition-grid, .knowledge-grid, .flagship-grid, .dev-team-grid, .final-cta-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 70px; }
  .hero-copy { max-width: 680px; }
  .hero-system { max-width: 560px; margin: auto; }
  .recognition-grid { gap: 55px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; }
  .section-heading > p { max-width: 620px; }
  .complexity-board { grid-template-columns: 1fr; grid-template-rows: auto; }
  .complexity-axis { display: none; }
  .complexity-stage { min-height: 160px; position: relative; padding: 50px 20px 24px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .complexity-stage::before { position: absolute; top: 18px; left: 20px; color: rgba(255,255,255,.4); font: 400 9px/1 var(--mono); }
  .stage-one::before { content: 'SĀKUMS'; }.stage-two::before { content: '12 MĒNEŠI'; }.stage-three::before { content: '3 GADI'; }
  .stage-two, .stage-three { padding-top: 50px; }
  .complexity-caption { grid-column: auto; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 350px; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .dev-team-grid { gap: 55px; }
  .flagship-grid { gap: 60px; }
  .flagship-visual { min-height: 580px; }
  .debt-compare { grid-template-columns: 1fr; gap: 18px; }
  .compare-arrow { transform: rotate(90deg); height: 45px; }
  .knowledge-grid { gap: 55px; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .case-card:last-child { grid-column: 1 / -1; }
  .case-card:last-child figure { height: 330px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics article { min-height: auto; }
  .metrics strong { margin-bottom: 30px; }
  .logo-row { grid-template-columns: repeat(3, 1fr); padding: 25px 0; }
  .quote-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .final-cta-grid { gap: 55px; }
}

@media (max-width: 560px) {
  .case-feature.section-pad { padding-top: 50px; padding-bottom: 50px; }
  .case-feature-visual { min-height: 390px; }
  .case-feature-laptop { left: 49%; top: 53%; width: 128%; }
  .case-kpis { gap: 14px; }
  .case-kpis strong { font-size: clamp(27px, 9vw, 36px); }
  .case-kpis span { font-size: 10px; }
  :root { --shell: calc(100vw - 30px); }
  body.home-v2 { font-size: 15px; }
  .section-pad, .section-pad-sm { padding: 72px 0; }
  h1 { font-size: clamp(41px, 12.4vw, 58px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .eyebrow { font-size: 10px; }
  .hero { padding: 48px 0 76px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 21px; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; margin-top: 48px; }
  .hero-proof div { align-items: center; }.hero-proof span { max-width: none; }
  .hero-system { margin: 0 2px; border-radius: 20px; }
  .request-card { padding: 20px; }
  .request-card h2 { font-size: 24px; }
  .flow-step { grid-template-columns: 26px 1fr 18px; }
  .system-footer code { font-size: 8px; }
  .signal-list li { grid-template-columns: 38px 1fr; }
  .complexity-caption { flex-direction: column; gap: 5px; }
  .pillar { min-height: 380px; padding: 28px 24px; }
  .pillar-top { min-height: 110px; }.pillar h3 { font-size: 27px; }
  .capacity-viz, .path-viz, .tree-viz, .memory-viz { transform: scale(.85); transform-origin: top right; }
  .process-track { grid-template-columns: 1fr; }
  .process-track article:nth-of-type(n) { min-height: 155px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-track article:last-child { border-bottom: 0; }
  .process-track h3 { margin-top: 35px; }
  .process-link { float: none; margin-top: 25px; }
  .dev-team { padding: 78px 0; }
  .dev-map { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; }
  .connector { height: 35px; grid-template-columns: repeat(3, 1fr); justify-items: center; }
  .connector i { height: 35px; width: 1px; }
  .design-layer { grid-row: auto; grid-column: auto; }
  .product-node { grid-column: auto; margin-top: 0; }
  .flagship-visual { min-height: 470px; }
  .case-label { top: 24px; left: 24px; }.case-label b { font-size: 40px; }
  .screen-desktop { width: 118%; right: -32%; top: 27%; }.screen-mobile { width: 72%; left: -6%; bottom: 3%; }
  .case-note { right: 17px; bottom: 18px; padding: 12px; }
  .debt-card { min-height: auto; padding: 24px 20px; }.debt-card-head { gap: 15px; }.component-tree { font-size: 10px; }
  .debt-statement { margin-top: 45px; }
  .knowledge-timeline { grid-template-columns: 1fr; min-height: auto; align-items: stretch; padding: 20px; }
  .knowledge-timeline article:nth-child(n) { height: auto; min-height: 125px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card:last-child { grid-column: auto; }
  .case-card figure, .case-card:last-child figure { height: 235px; }
  .metrics article { padding: 28px 25px; }
  .logo-row { grid-template-columns: repeat(2, 1fr); gap: 35px 20px; }
  .quote-card { min-height: 430px; padding: 28px 24px; }.quote-card h3 { font-size: 27px; }
  .fit-grid article { min-height: auto; padding: 32px 24px; }.fit-grid h3 { margin: 38px 0 25px; font-size: 25px; }
  .final-cta { padding: 84px 0; }.final-cta h2 { font-size: clamp(40px, 12vw, 56px); }.direct-links { flex-wrap: wrap; }
  .footer-main { flex-direction: column; gap: 50px; }
  .footer-main nav { grid-template-columns: 1fr; }
  .footer-bottom { margin-top: 50px; flex-direction: column; gap: 20px; }
}

/* =========================================================
   Design support sales page
   Reuses the shared V2 header, hero, section, process, fit,
   development, CTA and footer components above.
========================================================= */

.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 38px; color: var(--muted); font: 400 10px/1 var(--mono); text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.service-hero { min-height: auto; padding-top: 62px; }
.service-hero h1 { font-size: clamp(54px, 5vw, 78px); }
.hero-note { margin-top: 26px; padding-left: 17px; border-left: 2px solid var(--green); color: var(--muted); font-size: 13px; }
.support-system { transform: rotate(-1deg); }
.support-system::before { transform: rotate(2deg); }
.capacity-card { padding-bottom: 20px; }
.capacity-total { display: flex; align-items: flex-end; justify-content: space-between; margin: 11px 0 18px; }
.capacity-total h2 { margin: 0; }
.capacity-total > span { color: var(--green); font: 500 10px/1 var(--mono); }
.capacity-bar { display: grid; grid-template-columns: 1.2fr .9fr .65fr 1fr .8fr; gap: 4px; margin-bottom: 20px; }
.capacity-bar i { height: 6px; border-radius: 5px; background: var(--orange); }
.capacity-bar i:nth-child(2) { background: var(--blue); }.capacity-bar i:nth-child(3) { background: var(--green); }.capacity-bar i:nth-child(n+4) { background: #d9dbd9; }
.support-tasks { padding: 9px 6px 2px 18px; }
.support-task { min-height: 67px; display: grid; grid-template-columns: 27px 1fr auto; gap: 10px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); }
.support-task > b { color: var(--orange-soft); font: 500 9px/1 var(--mono); }
.support-task > span { display: flex; flex-direction: column; font-size: 12px; font-weight: 500; }
.support-task small { margin-bottom: 4px; color: rgba(255,255,255,.34); font: 400 8px/1 var(--mono); }
.support-task > i { min-width: 48px; padding: 6px 7px; border-radius: 4px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.55); font: 400 8px/1 var(--mono); font-style: normal; text-align: center; }
.support-task.active > i { background: rgba(255,107,34,.16); color: #ffb18a; }
.support-task.muted { opacity: .45; }

.outcome-strip { padding: 0; background: var(--ink); color: #fff; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid rgba(255,255,255,.1); }
.outcome-grid article { min-height: 195px; padding: 28px 25px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.1); }
.outcome-grid article > span { color: var(--orange); font: 500 10px/1 var(--mono); }
.outcome-grid strong { margin: auto 0 10px; font-size: 17px; line-height: 1.25; }
.outcome-grid p { color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.5; }
.support-recognition { background: #fff; }
.support-pillars .pillar { min-height: 440px; }
.card-link { margin-top: 23px; align-self: flex-start; color: var(--ink); font-size: 12px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line); }
.card-link:hover { color: var(--orange); }
.mini-labels { display: flex; gap: 5px; }
.mini-labels i { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line); font: 500 9px/1 var(--mono); font-style: normal; }
.mini-labels i:last-child { color: #fff; border-color: var(--orange); background: var(--orange); }
.qa-viz { display: grid; grid-template-columns: 20px auto; gap: 5px 7px; align-items: center; font: 400 9px/1 var(--mono); }
.qa-viz i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(15,185,141,.12); color: var(--green); font-style: normal; }
.qa-viz b { font-weight: 500; }
.support-process { background: #fff; }

.work-rhythm { background: var(--ink); color: #fff; }
.work-rhythm-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.work-rhythm .section-intro > p:last-child { color: rgba(255,255,255,.5); }
.rhythm-board { border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); overflow: hidden; background: #151e25; }
.rhythm-head { display: flex; justify-content: space-between; padding: 17px 22px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font: 400 9px/1 var(--mono); }
.rhythm-board article { min-height: 115px; padding: 22px; display: grid; grid-template-columns: 35px 1fr auto; gap: 18px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.rhythm-board article:last-child { border-bottom: 0; }
.rhythm-board article > b { color: var(--orange); font: 500 10px/1 var(--mono); }
.rhythm-board h3 { margin: 0 0 5px; color: #fff; font-size: 18px; letter-spacing: -.025em; }
.rhythm-board p { color: rgba(255,255,255,.48); font-size: 13px; }
.rhythm-board article > span { min-width: 72px; padding: 7px 8px; border-radius: 4px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.55); font: 400 8px/1 var(--mono); text-align: center; }

.model-comparison { background: #f7f6f3; }
.comparison-table { border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; background: #fff; }
.comparison-row { min-width: 1071px; display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); }
.comparison-row > * { min-height: 82px; padding: 20px; display: flex; align-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 400; }
.comparison-row > *:last-child { border-right: 0; }
.comparison-row:last-child > * { border-bottom: 0; }
.comparison-row > strong { color: var(--ink); font-weight: 600; }
.comparison-head > * { min-height: 64px; background: #f0efeb; color: var(--muted); font: 500 9px/1 var(--mono); text-transform: uppercase; }
.comparison-row > .is-ds { background: #fff4ee; color: var(--ink); }
.comparison-head > .is-ds { background: var(--orange); }

.support-proof { background: #eef0ee; }
.support-proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.support-proof-visual { min-height: 590px; position: relative; border-radius: 26px; overflow: hidden; background: #dde3e2; }
.support-proof-visual > img { position: absolute; width: 120%; max-width: none; right: -29%; top: 22%; filter: drop-shadow(0 30px 35px rgba(17,23,29,.2)); }
.proof-meta { position: absolute; z-index: 3; left: 30px; top: 30px; display: flex; flex-direction: column; }
.proof-meta span { color: var(--muted); font: 400 9px/1 var(--mono); }
.proof-meta b { margin-top: 7px; font-size: 56px; line-height: 1; letter-spacing: -.08em; }
.proof-status { position: absolute; z-index: 3; right: 25px; bottom: 25px; padding: 12px 14px; display: flex; align-items: center; gap: 9px; border-radius: 7px; background: rgba(17,23,29,.9); color: #fff; font: 400 9px/1 var(--mono); }
.proof-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(15,185,141,.12); }
.support-proof .section-intro blockquote { margin: 32px 0; padding: 3px 0 3px 22px; border-left: 2px solid var(--orange); font-size: 19px; line-height: 1.55; letter-spacing: -.02em; }
.support-fit { background: #fff; }

.faq { background: #f7f6f3; }
.faq-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 120px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 90px; display: grid; grid-template-columns: 1fr 28px; gap: 20px; align-items: center; cursor: pointer; list-style: none; font-size: 18px; font-weight: 600; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); font: 400 16px/1 var(--mono); transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; padding: 0 55px 28px 0; color: var(--muted); }

@media (max-width: 1120px) {
  .work-rhythm-grid, .support-proof-grid, .faq-grid { gap: 65px; }
  .support-proof-visual { min-height: 510px; }
}

@media (max-width: 820px) {
  .service-hero { padding-top: 42px; }
  .service-hero h1 { font-size: clamp(46px, 11vw, 65px); }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid article { border-bottom: 1px solid rgba(255,255,255,.1); }
  .outcome-grid article:nth-child(n+3) { border-bottom: 0; }
  .work-rhythm-grid, .support-proof-grid, .faq-grid { grid-template-columns: 1fr; }
  .work-rhythm-grid, .faq-grid { gap: 55px; }
  .support-proof-grid { gap: 65px; }
  .support-proof-visual { max-width: 640px; min-height: 540px; }
}

@media (max-width: 560px) {
  .breadcrumbs { margin-bottom: 30px; }
  .service-hero h1 { font-size: clamp(40px, 12vw, 54px); }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-grid article { min-height: 155px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .outcome-grid article:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .outcome-grid article:last-child { border-bottom: 0; }
  .support-pillars .pillar { min-height: 400px; }
  .rhythm-board article { grid-template-columns: 28px 1fr; }
  .rhythm-board article > span { grid-column: 2; justify-self: start; }
  .support-proof-visual { min-height: 420px; }
  .support-proof-visual > img { width: 145%; right: -48%; top: 27%; }
  .proof-meta { left: 22px; top: 22px; }.proof-meta b { font-size: 44px; }
  .proof-status { right: 15px; bottom: 15px; }
  .faq-list summary { min-height: 82px; font-size: 16px; }
  .faq-list details p { padding-right: 0; }
}

/* =========================================================
   V2 system, evidence and process pages
   These pages intentionally reuse the shared V2 primitives.
========================================================= */

.system-governance { transform: rotate(1deg); }
.system-governance::before { transform: rotate(-2deg); }
.token-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 20px; }
.token-row i { min-height: 36px; padding: 9px 6px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); font: 400 8px/1 var(--mono); font-style: normal; }
.token-row i:first-child { color: #fff; border-color: var(--orange); background: var(--orange); }
.system-tree { padding: 11px 8px 4px 18px; }
.system-tree article { min-height: 64px; display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); }
.system-tree article > b { color: rgba(255,255,255,.35); font: 500 8px/1 var(--mono); text-transform: uppercase; }
.system-tree article > span { color: #fff; font-size: 12px; }
.system-tree code { padding: 6px 7px; border-radius: 4px; background: rgba(15,185,141,.11); color: #73d9bf; font: 400 8px/1 var(--mono); }

.system-audit { background: #f7f6f3; }
.audit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.audit-grid article { min-height: 290px; padding: 28px 25px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.audit-grid article:last-child { border-right: 0; }
.audit-grid article > span { color: var(--orange); font: 500 10px/1 var(--mono); }
.audit-grid h3 { margin: auto 0 16px; font-size: 23px; letter-spacing: -.035em; }
.audit-grid p { color: var(--muted); font-size: 13px; }
.system-evidence { background: #eef0ee; }
.system-evidence-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 100px; align-items: center; }
.system-evidence-visual { min-height: 590px; padding: 35px; display: grid; place-items: center; border-radius: 26px; overflow: hidden; background: #dce2e1; }
.system-evidence-visual img { width: 118%; max-width: none; filter: drop-shadow(0 28px 35px rgba(17,23,29,.18)); }
.check-list { margin: 30px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { padding: 15px 0 15px 27px; position: relative; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font: 500 11px/1.5 var(--mono); }

.cases-hero-stack { min-height: 610px; position: relative; }
.case-shot { position: absolute; margin: 0; overflow: hidden; border: 9px solid #fff; border-radius: 18px; background: #e1e4e2; box-shadow: 0 28px 60px rgba(17,23,29,.17); }
.case-shot img { width: 100%; height: 100%; object-fit: cover; }
.shot-tv3 { width: 86%; height: 54%; top: 5%; right: 0; transform: rotate(2deg); }
.shot-zole { width: 57%; height: 43%; left: 0; bottom: 3%; transform: rotate(-3deg); }
.shot-r24 { width: 47%; height: 35%; right: 2%; bottom: 7%; transform: rotate(3deg); }
.cases-hero-stack > span { position: absolute; z-index: 5; left: 32%; top: 47%; padding: 12px 15px; border-radius: 5px; background: var(--ink); color: #fff; font: 500 9px/1 var(--mono); }
.case-feature { background: #eef0ee; }
.case-feature.section-pad { padding-top: 92px; padding-bottom: 92px; }
.case-feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.case-feature-visual { min-height: 650px; position: relative; overflow: visible; background: transparent; }
.case-feature-laptop { position: absolute; left: 48%; top: 54%; width: 136%; max-width: none; height: auto; display: block; transform: translate(-50%, -50%); filter: drop-shadow(0 28px 32px rgba(17,23,29,.18)); }
.case-feature-label { position: absolute; z-index: 4; left: 31px; top: 30px; display: flex; flex-direction: column; }
.case-feature-label small { color: var(--muted); font: 400 9px/1 var(--mono); }
.case-feature-label strong { margin-top: 7px; font-size: 62px; line-height: 1; letter-spacing: -.08em; }
.case-main-screen { position: absolute; width: 117%; max-width: none; right: -28%; top: 24%; filter: drop-shadow(0 30px 35px rgba(17,23,29,.2)); }
.case-side-screen { position: absolute; width: 62%; max-width: none; left: -17%; bottom: 3%; filter: drop-shadow(0 22px 28px rgba(17,23,29,.2)); }
.case-feature-status { position: absolute; z-index: 4; right: 22px; bottom: 22px; padding: 12px 14px; display: flex; gap: 9px; align-items: center; border-radius: 6px; background: rgba(17,23,29,.92); color: #fff; font: 400 9px/1 var(--mono); }
.case-feature-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.case-scope { margin: 30px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.case-scope span { padding: 8px 10px; border: 1px solid #cdd1ce; border-radius: 4px; color: var(--muted); font: 400 9px/1 var(--mono); }
.case-feature-copy > .eyebrow { margin-bottom: 20px; color: var(--green); }
.case-feature-copy > .eyebrow > span { background: var(--green); }
.case-kpis { margin: 34px 0 32px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.case-kpis div { min-width: 0; }
.case-kpis strong { display: block; margin-bottom: 8px; font-size: clamp(30px, 3vw, 43px); line-height: .95; letter-spacing: -.055em; }
.case-kpis span { display: block; max-width: 120px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.case-feature-copy blockquote { margin: 30px 0 0; padding-left: 21px; border-left: 2px solid var(--orange); font-size: 19px; line-height: 1.55; letter-spacing: -.02em; }
.evidence-principles, .process-phases { background: var(--ink); color: #fff; }
.evidence-principles h2, .process-phases h2 { color: #fff; }
.evidence-principles .section-heading > p, .process-phases .section-heading > p { color: rgba(255,255,255,.48); }
.evidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.evidence-grid article { min-height: 275px; padding: 27px 24px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.12); }
.evidence-grid article:last-child { border-right: 0; }
.evidence-grid article > span { color: var(--orange); font: 500 10px/1 var(--mono); }
.evidence-grid h3 { margin: auto 0 15px; color: #fff; font-size: 23px; }
.evidence-grid p { color: rgba(255,255,255,.48); font-size: 13px; }
.selected-cases { background: #f7f6f3; }
.case-row { min-height: 430px; display: grid; grid-template-columns: 45px 1fr .9fr; gap: 35px; align-items: center; border-top: 1px solid var(--line); }
.case-row:last-child { border-bottom: 1px solid var(--line); }
.case-row-index { align-self: start; padding-top: 34px; color: var(--orange); font: 500 10px/1 var(--mono); }
.case-row figure { height: 340px; margin: 0; border-radius: 17px; overflow: hidden; background: #e3e5e3; }
.case-row figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.case-row:hover figure img { transform: scale(1.025); }
.case-row-copy > span { color: var(--muted); font: 500 9px/1 var(--mono); }
.case-row-copy h3 { margin: 12px 0 18px; font-size: 42px; letter-spacing: -.05em; }
.case-row-copy > p { color: var(--muted); }
.case-row-copy dl { margin: 28px 0 0; border-top: 1px solid var(--line); }
.case-row-copy dl div { padding: 13px 0; display: grid; grid-template-columns: 105px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.case-row-copy dt { color: var(--muted); font: 500 8px/1.5 var(--mono); text-transform: uppercase; }
.case-row-copy dd { margin: 0; font-size: 12px; }
.case-method { background: #fff; }

.process-statement { max-width: 890px; margin: 55px auto 0; color: var(--ink); font-size: clamp(22px, 2.3vw, 34px); font-weight: 600; line-height: 1.25; letter-spacing: -.04em; text-align: center; }
.process-system .flow-step > i { color: rgba(255,255,255,.48); font: 500 11px/1 var(--mono); font-style: normal; text-align: center; }
.process-system .flow-step.is-done > i { color: #48d89b; }
.process-system .flow-step.is-active > i { color: var(--orange); }
.phase-list { border-top: 1px solid rgba(255,255,255,.13); }
.phase-list article { min-height: 275px; padding: 35px 0; display: grid; grid-template-columns: 155px 1fr .7fr; gap: 55px; align-items: start; border-bottom: 1px solid rgba(255,255,255,.13); }
.phase-list article > span { color: var(--orange); font: 500 9px/1 var(--mono); }
.phase-list h3 { margin: 0 0 17px; color: #fff; font-size: 29px; letter-spacing: -.04em; }
.phase-list p { color: rgba(255,255,255,.53); }
.phase-list ul { margin: 0; padding: 0; list-style: none; }
.phase-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.65); font-size: 12px; }
.handoff-evidence {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #eef0ee;
}
.handoff-grid { position: static; }
.handoff-copy {
  width: 55%;
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.handoff-copy h2 { max-width: 700px; }
.handoff-copy > p:last-of-type { max-width: 680px; }
.handoff-evidence .eyebrow { color: var(--green); }
.handoff-evidence .eyebrow > span { background: var(--green); }
.handoff-copy .text-link { margin-top: 32px; }
.handoff-visual {
  position: absolute;
  left: 50%;
  top: 0;
  width: 50%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}
.handoff-visual img {
  width: min(118%, 820px);
  max-width: none;
  height: auto;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 26px 30px rgba(17,23,29,.12));
}
.handoff-automation {
  width: min(430px, 34vw);
  position: absolute;
  left: 57%;
  bottom: -85px;
  z-index: 4;
  padding: 20px 22px 21px;
  border: 1px solid rgba(15,185,141,.18);
  border-radius: 9px;
  background: #dceee8;
  box-shadow: 0 22px 48px rgba(17,23,29,.18);
}
.handoff-automation > span {
  display: block;
  margin-bottom: 9px;
  color: #087d62;
  font: 600 11px/1.2 var(--mono);
  letter-spacing: .035em;
  text-transform: uppercase;
}
.handoff-automation h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -.025em;
}
.handoff-automation p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.handoff-evidence + .dev-team {
  position: relative;
  z-index: 1;
  padding-top: 155px;
}

@media (max-width: 1120px) {
  .system-evidence-grid, .case-feature-grid { gap: 65px; }
  .handoff-copy { width: 57%; }
  .case-feature-visual { min-height: 560px; }
  .case-feature-laptop { left: 48%; top: 54%; width: 132%; }
  .case-row { grid-template-columns: 35px 1fr .9fr; gap: 25px; }
}

@media (max-width: 820px) {
  .audit-grid, .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-grid article:nth-child(2), .evidence-grid article:nth-child(2) { border-right: 0; }
  .audit-grid article:nth-child(-n+2), .evidence-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .evidence-grid article:nth-child(-n+2) { border-bottom-color: rgba(255,255,255,.12); }
  .system-evidence-grid, .case-feature-grid { grid-template-columns: 1fr; }
  .handoff-copy { width: 100%; max-width: 680px; }
  .handoff-visual {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 500px;
    margin-top: 46px;
    transform: none;
  }
  .handoff-visual img { width: min(112%, 720px); }
  .handoff-automation {
    width: min(460px, calc(100vw - 80px));
    left: auto;
    right: 18px;
    bottom: -150px;
  }
  .handoff-evidence + .dev-team { padding-top: 160px; }
  .system-evidence-visual { min-height: 510px; }
  .cases-hero-stack { max-width: 610px; min-height: 580px; }
  .case-feature-visual { max-width: 650px; min-height: 570px; }
  .case-feature-laptop { left: 49%; top: 52%; width: 118%; }
  .case-row { padding: 55px 0; grid-template-columns: 35px 1fr; }
  .case-row figure { grid-column: 2; height: 350px; }
  .case-row-copy { grid-column: 2; }
  .phase-list article { grid-template-columns: 100px 1fr; gap: 35px; }
  .phase-list ul { grid-column: 2; }
}

@media (max-width: 560px) {
  .system-tree article { grid-template-columns: 58px 1fr; }
  .system-tree code { grid-column: 2; justify-self: start; margin-top: -10px; }
  .audit-grid, .evidence-grid { grid-template-columns: 1fr; }
  .audit-grid article, .audit-grid article:nth-child(2), .evidence-grid article, .evidence-grid article:nth-child(2) { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .evidence-grid article, .evidence-grid article:nth-child(2) { border-bottom-color: rgba(255,255,255,.12); }
  .audit-grid article:last-child, .evidence-grid article:last-child { border-bottom: 0; }
  .system-evidence-visual { min-height: 370px; padding: 18px; }
  .system-evidence-visual img { width: 135%; }
  .cases-hero-stack { min-height: 440px; }
  .case-shot { border-width: 6px; border-radius: 12px; }
  .shot-tv3 { height: 50%; }.shot-zole { width: 59%; height: 40%; }.shot-r24 { width: 49%; height: 33%; }
  .cases-hero-stack > span { left: 19%; top: 47%; }
  .case-feature-visual { min-height: 430px; }
  .case-feature-label { left: 21px; top: 21px; }.case-feature-label strong { font-size: 46px; }
  .case-main-screen { width: 137%; right: -43%; top: 27%; }.case-side-screen { width: 72%; left: -25%; }
  .case-feature-status { right: 14px; bottom: 14px; }
  .case-row { grid-template-columns: 25px 1fr; gap: 15px; }
  .case-row figure { height: 235px; }
  .case-row-copy h3 { font-size: 34px; }
  .case-row-copy dl div { grid-template-columns: 1fr; gap: 4px; }
  .phase-list article { padding: 30px 0; grid-template-columns: 1fr; gap: 20px; }
  .phase-list ul { grid-column: auto; }
  .handoff-visual { height: 390px; margin-top: 38px; }
  .handoff-visual img { width: 132%; max-width: none; margin: 0; }
  .handoff-automation {
    width: 100%;
    right: 0;
    bottom: -150px;
    padding: 18px 19px 19px;
  }
  .handoff-evidence + .dev-team { padding-top: 175px; }
}

/* =========================================================
   V2 product evolution, about and reviews pages
========================================================= */

.evolution-system { transform: rotate(-1deg); }
.evolution-system::before { transform: rotate(2deg); }
.impact-axis { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; color: var(--muted); font: 400 8px/1 var(--mono); }
.impact-axis i { height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--green), var(--orange)); }
.priority-stack { padding: 10px 7px 3px 18px; }
.priority-stack article { min-height: 66px; display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); }
.priority-stack article > b { color: rgba(255,255,255,.38); font: 500 9px/1 var(--mono); }
.priority-stack article > span { color: #fff; font-size: 12px; }
.priority-stack small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.34); font: 400 8px/1 var(--mono); }
.priority-stack article > i { padding: 6px 7px; border-radius: 4px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.48); font: 400 8px/1 var(--mono); font-style: normal; }
.priority-stack .priority-high > b, .priority-stack .priority-high > i { color: #ffb18a; }
.priority-stack .priority-high > i { background: rgba(255,107,34,.15); }
.priority-stack .priority-later { opacity: .43; }
.product-audit { background: #f7f6f3; }
.product-audit-grid article { min-height: 310px; }
.evolution-options { background: var(--ink); color: #fff; }
.evolution-options h2 { color: #fff; }
.evolution-options .section-heading > p { color: rgba(255,255,255,.48); }
.evolution-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); overflow: hidden; }
.evolution-grid article { min-height: 430px; padding: 32px 29px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.13); }
.evolution-grid article:last-child { border-right: 0; }
.evolution-grid article > span { color: var(--orange); font: 500 9px/1 var(--mono); }
.evolution-grid h3 { margin: auto 0 18px; color: #fff; font-size: 28px; letter-spacing: -.04em; }
.evolution-grid p { color: rgba(255,255,255,.5); }
.evolution-grid ul { margin: 28px 0 0; padding: 0; list-style: none; }
.evolution-grid li { padding: 11px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.67); font-size: 12px; }
.product-work { background: #fff; }
.evolution-evidence { background: #eef0ee; }
.evolution-evidence-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 100px; align-items: center; }
.evolution-evidence-visual { min-height: 610px; position: relative; border-radius: 27px; overflow: hidden; background: #dce2e1; }
.evolution-evidence-visual > div { position: absolute; overflow: hidden; border: 8px solid #fff; border-radius: 16px; background: #fff; box-shadow: 0 25px 45px rgba(17,23,29,.16); }
.evolution-evidence-visual small { position: absolute; z-index: 2; left: 14px; top: 14px; padding: 7px 8px; border-radius: 4px; background: rgba(17,23,29,.9); color: #fff; font: 500 8px/1 var(--mono); }
.evolution-evidence-visual img { width: 100%; height: 100%; object-fit: cover; }
.evolution-before { width: 72%; height: 62%; left: -8%; top: 8%; transform: rotate(-3deg); }
.evolution-after { width: 68%; height: 57%; right: -7%; bottom: 7%; transform: rotate(3deg); }

.founder-board { min-height: 620px; padding: 27px; display: flex; flex-direction: column; position: relative; border-radius: 28px; overflow: hidden; background: var(--ink); color: #fff; box-shadow: 0 40px 80px rgba(20,26,31,.2); transform: rotate(1deg); }
.founder-board::before { content: ''; position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 42px 42px; }
.founder-board > * { position: relative; z-index: 1; }
.founder-board-top, .founder-board-bottom { display: flex; justify-content: space-between; color: rgba(255,255,255,.38); font: 400 8px/1 var(--mono); text-transform: uppercase; }
.founder-board-top i { color: var(--green); font-style: normal; }
.founder-number { margin: auto 0 35px; display: grid; grid-template-columns: auto 1fr; gap: 25px; align-items: end; }
.founder-number strong { color: var(--orange); font-size: clamp(100px, 11vw, 150px); line-height: .75; letter-spacing: -.1em; }
.founder-number span { max-width: 150px; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.4; }
.founder-role { padding: 24px; border-radius: 13px; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.founder-role small { color: var(--orange-soft); font: 500 8px/1 var(--mono); }
.founder-role h2 { margin: 10px 0 9px; color: #fff; font-size: 34px; }
.founder-role p { color: rgba(255,255,255,.48); font: 400 9px/1.4 var(--mono); }
.founder-board-bottom { margin-top: 25px; gap: 12px; }
.about-trust { background: var(--ink); }
.about-trust .metrics { border-color: rgba(255,255,255,.12); }
.about-trust .metrics article { border-color: rgba(255,255,255,.12); }
.about-trust .metrics span, .about-trust .metrics p { color: rgba(255,255,255,.42); }
.about-trust .metrics strong { color: #fff; }
.about-position { background: #fff; }
.about-position-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: center; }
.position-board { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #f7f6f3; }
.position-board article { min-height: 105px; padding: 22px; display: grid; grid-template-columns: 70px 1fr 28px 1.2fr; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); }
.position-board article:last-child { border-bottom: 0; }
.position-board article > span { color: var(--muted); font: 500 8px/1 var(--mono); }
.position-board strong { color: var(--muted); font-size: 13px; font-weight: 400; }
.position-board i { color: var(--orange); font: 500 16px/1 var(--mono); font-style: normal; }
.position-board b { font-size: 14px; }
.principles { background: var(--ink); color: #fff; }
.principles h2 { color: #fff; }
.principles .section-heading > p { color: rgba(255,255,255,.48); }
.about-operating { background: #f7f6f3; }
.about-history { background: #eef0ee; }
.about-history-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
.about-history blockquote { margin: 35px 0 0; padding-left: 21px; border-left: 2px solid var(--orange); font-size: 19px; line-height: 1.55; letter-spacing: -.02em; }
.history-timeline { border-top: 1px solid #cdd1ce; }
.history-timeline article { min-height: 145px; padding: 25px 0; display: grid; grid-template-columns: 90px 1fr; gap: 25px; border-bottom: 1px solid #cdd1ce; }
.history-timeline article > span { color: var(--orange); font: 500 10px/1 var(--mono); }
.history-timeline h3 { margin: 0 0 9px; font-size: 22px; letter-spacing: -.035em; }
.history-timeline p { color: var(--muted); font-size: 13px; }
.about-clients { background: #fff; }
.about-quote { background: #f7f6f3; }
.about-quote-grid { display: grid; grid-template-columns: .32fr 1fr; gap: 55px; align-items: start; }
.quote-mark { color: var(--orange); font-family: Georgia, serif; font-size: 210px; line-height: .7; }
.about-quote blockquote { max-width: 850px; margin: 20px 0 30px; font-size: clamp(34px, 4vw, 58px); font-weight: 600; line-height: 1.08; letter-spacing: -.055em; }
.about-quote-author { margin-bottom: 34px; display: flex; gap: 14px; align-items: center; }
.about-quote-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.about-quote-author p { display: flex; flex-direction: column; }
.about-quote-author strong { font-size: 13px; }
.about-quote-author span { margin-top: 4px; color: var(--muted); font-size: 11px; }

.reviews-board { min-height: 600px; padding: 27px; display: flex; flex-direction: column; position: relative; border-radius: 28px; overflow: hidden; background: var(--ink); color: #fff; box-shadow: 0 40px 80px rgba(20,26,31,.2); transform: rotate(-1deg); }
.reviews-board::before { content: '“'; position: absolute; right: -5px; top: 5px; color: rgba(255,255,255,.05); font-family: Georgia, serif; font-size: 320px; line-height: 1; }
.reviews-board > * { position: relative; z-index: 1; }
.reviews-board-top, .reviews-board-bottom { display: flex; justify-content: space-between; color: rgba(255,255,255,.38); font: 400 8px/1 var(--mono); text-transform: uppercase; }
.reviews-board-top i { color: var(--green); font-style: normal; }
.reviews-board blockquote { margin: auto 0 38px; color: #fff; font-size: clamp(32px, 3.5vw, 49px); font-weight: 600; line-height: 1.07; letter-spacing: -.055em; }
.review-signals { border-top: 1px solid rgba(255,255,255,.12); }
.review-signals article { min-height: 50px; display: flex; gap: 12px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.62); font-size: 11px; }
.review-signals i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.reviews-board-bottom { margin-top: 23px; }
.reviews-list { background: #f7f6f3; }
.review-story { min-height: 440px; padding: 55px 0; display: grid; grid-template-columns: .55fr 1.25fr 45px; gap: 70px; align-items: start; border-top: 1px solid var(--line); }
.review-story:last-child { border-bottom: 1px solid var(--line); }
.review-story-featured { min-height: 500px; }
.review-person { display: flex; gap: 15px; align-items: center; }
.review-person img { width: 70px; height: 70px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; background: #e1e3e0; }
.review-person > div { display: flex; flex-direction: column; }
.review-person strong { font-size: 14px; }
.review-person span { margin-top: 5px; color: var(--muted); font-size: 11px; }
.review-person small { margin-top: 4px; color: var(--muted); font-size: 9px; }
.review-story-copy > span { color: var(--orange); font: 500 9px/1 var(--mono); }
.review-story-copy h3 { margin: 16px 0 28px; font-size: clamp(30px, 3vw, 45px); letter-spacing: -.05em; }
.review-story-copy blockquote { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.68; }
.review-story-featured .review-story-copy blockquote { color: var(--ink); font-size: 21px; }
.review-index { color: var(--orange); font: 500 10px/1 var(--mono); text-align: right; }
.review-patterns { background: var(--ink); color: #fff; }
.review-patterns h2 { color: #fff; }
.review-patterns .section-heading > p { color: rgba(255,255,255,.48); }
.review-context { background: #eef0ee; }
.review-context-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; align-items: center; }
.review-context-number { min-height: 430px; padding: 40px; display: flex; flex-direction: column; justify-content: center; border-radius: 24px; background: var(--orange); color: var(--ink); }
.review-context-number strong { font-size: clamp(110px, 13vw, 180px); line-height: .75; letter-spacing: -.11em; }
.review-context-number span { max-width: 240px; margin-top: 40px; font-size: 18px; font-weight: 600; }

@media (max-width: 1120px) {
  .evolution-evidence-grid, .about-position-grid, .about-history-grid, .review-context-grid { gap: 65px; }
  .review-story { gap: 40px; }
}

@media (max-width: 820px) {
  .evolution-grid { grid-template-columns: 1fr; }
  .evolution-grid article { min-height: 330px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .evolution-grid article:last-child { border-bottom: 0; }
  .evolution-evidence-grid, .about-position-grid, .about-history-grid, .review-context-grid { grid-template-columns: 1fr; }
  .evolution-evidence-visual { max-width: 650px; min-height: 540px; }
  .founder-board, .reviews-board { max-width: 600px; min-height: 570px; margin: auto; }
  .about-trust .metrics article { border-color: rgba(255,255,255,.12); }
  .about-history-grid { gap: 55px; }
  .review-story { grid-template-columns: .48fr 1.2fr 30px; gap: 25px; }
  .review-context-number { max-width: 600px; min-height: 350px; }
}

@media (max-width: 560px) {
  .priority-stack article { grid-template-columns: 25px 1fr; }
  .priority-stack article > i { grid-column: 2; justify-self: start; margin-top: -8px; }
  .evolution-grid article { min-height: 350px; padding: 27px 23px; }
  .evolution-evidence-visual { min-height: 410px; }
  .evolution-evidence-visual > div { border-width: 5px; }
  .evolution-before { width: 82%; height: 58%; }.evolution-after { width: 77%; height: 55%; }
  .founder-board, .reviews-board { min-height: 500px; padding: 22px; }
  .founder-number { grid-template-columns: 1fr; gap: 25px; }
  .founder-number strong { font-size: 105px; }
  .founder-role h2 { font-size: 28px; }
  .founder-board-bottom { flex-direction: column; }
  .position-board article { grid-template-columns: 55px 1fr 18px; }
  .position-board b { grid-column: 2 / 4; padding-top: 9px; }
  .history-timeline article { grid-template-columns: 70px 1fr; gap: 15px; }
  .about-quote-grid { grid-template-columns: 1fr; gap: 12px; }
  .quote-mark { height: 90px; font-size: 150px; }
  .reviews-board blockquote { font-size: 34px; }
  .review-story, .review-story-featured { min-height: auto; padding: 45px 0; grid-template-columns: 1fr 30px; gap: 28px 12px; }
  .review-person { grid-column: 1; }.review-index { grid-column: 2; grid-row: 1; }
  .review-story-copy { grid-column: 1 / -1; }
  .review-story-copy blockquote, .review-story-featured .review-story-copy blockquote { font-size: 17px; }
  .review-context-number { min-height: 300px; padding: 30px; }
  .review-context-number strong { font-size: 110px; }
}

/* =========================================================
   V2 product design, architecture and brand system pages
========================================================= */

.product-state-system { transform: rotate(1deg); }
.state-matrix { padding: 10px 7px 3px 18px; }
.state-matrix article { min-height: 58px; display: grid; grid-template-columns: 70px 1fr 18px; gap: 10px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); opacity: .48; }
.state-matrix b { color: rgba(255,255,255,.42); font: 500 8px/1 var(--mono); text-transform: uppercase; }
.state-matrix span { color: #fff; font-size: 11px; }
.state-matrix i { color: rgba(255,255,255,.4); font: 500 10px/1 var(--mono); font-style: normal; }
.state-matrix .is-ready { opacity: 1; }
.state-matrix .is-ready i { color: var(--green); }
.product-logic, .architecture-layers { background: var(--ink); color: #fff; }
.product-logic h2, .architecture-layers h2 { color: #fff; }
.product-logic .section-heading > p, .architecture-layers .section-heading > p { color: rgba(255,255,255,.5); }
.logic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); overflow: hidden; }
.logic-grid article { min-height: 300px; padding: 28px 25px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.13); }
.logic-grid article:last-child { border-right: 0; }
.logic-grid article > span { color: var(--orange); font: 500 10px/1 var(--mono); }
.logic-grid h3 { margin: auto 0 15px; color: #fff; font-size: 23px; letter-spacing: -.035em; }
.logic-grid p { color: rgba(255,255,255,.48); font-size: 13px; }
.product-scenarios { background: #f7f6f3; }
.scenario-board { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.scenario-head { padding: 17px 22px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--muted); font: 500 9px/1 var(--mono); }
.scenario-head i { color: var(--green); font-style: normal; }
.scenario-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.scenario-grid > article { min-height: 330px; padding: 22px; border-right: 1px solid var(--line); }
.scenario-grid > article:last-child { border-right: 0; }
.scenario-grid > article > small { color: var(--muted); font: 500 8px/1 var(--mono); }
.scenario-card { min-height: 190px; margin-top: 35px; padding: 21px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 11px; background: #f8f7f4; }
.scenario-card b { font-size: 16px; }
.scenario-card span { margin-top: 7px; color: var(--muted); font-size: 11px; }
.scenario-card button { margin-top: auto; min-height: 36px; border: 0; border-radius: 5px; background: var(--ink); color: #fff; font: 500 9px/1 var(--mono); }
.scenario-card.skeleton b, .scenario-card.skeleton span, .scenario-card.skeleton button { display: block; border-radius: 5px; background: #e1e2df; }
.scenario-card.skeleton b { width: 55%; height: 17px; }.scenario-card.skeleton span { width: 75%; height: 10px; }.scenario-card.skeleton button { height: 36px; }
.scenario-card.muted { opacity: .58; }
.scenario-card.error { border-color: #e3b5aa; background: #fff6f3; }
.scenario-card.error b { color: var(--red); }
.scenario-card.error button { background: var(--red); }
.product-proof { background: #eef0ee; }
.product-proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.product-proof-visual { min-height: 580px; position: relative; border-radius: 27px; overflow: hidden; background: #dce2e1; }
.product-proof-visual > img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.product-proof-badge { position: absolute; left: 25px; right: 25px; bottom: 25px; padding: 18px 20px; display: flex; flex-direction: column; border-radius: 9px; background: rgba(17,23,29,.92); color: #fff; backdrop-filter: blur(8px); }
.product-proof-badge small { color: var(--orange-soft); font: 500 8px/1 var(--mono); }
.product-proof-badge strong { margin-top: 7px; font-size: 25px; }
.product-proof-badge span { margin-top: 7px; color: rgba(255,255,255,.5); font: 400 8px/1 var(--mono); }

.architecture-system { transform: rotate(-1deg); }
.architecture-root { margin: 0 0 8px; padding: 23px; border-radius: 14px; background: #f9f7f2; color: var(--ink); }
.architecture-root small { color: var(--orange); font: 500 9px/1 var(--mono); }
.architecture-root strong { display: block; margin-top: 10px; font-size: 25px; }
.architecture-tree { padding: 11px 8px 4px 18px; }
.architecture-tree > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.architecture-tree span { min-height: 43px; padding: 8px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; color: rgba(255,255,255,.68); font: 400 8px/1 var(--mono); text-align: center; }
.architecture-tree > i { width: 1px; height: 21px; display: block; margin: 0 auto; background: rgba(255,255,255,.18); }
.architecture-artifacts { background: #f7f6f3; }
.artifact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.artifact-grid article { padding: 13px 13px 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.artifact-grid figure { height: 285px; margin: 0 0 27px; overflow: hidden; border-radius: 11px; background: #e7e8e5; }
.artifact-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.artifact-grid article:hover img { transform: scale(1.025); }
.artifact-grid article > span { padding: 0 12px; color: var(--orange); font: 500 8px/1 var(--mono); }
.artifact-grid h3 { margin: 12px 12px 13px; font-size: 23px; letter-spacing: -.035em; }
.artifact-grid p { margin: 0 12px; color: var(--muted); font-size: 13px; }
.wireframe-decision { background: #eef0ee; }
.wireframe-decision-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 100px; align-items: center; }
.wireframe-visual { min-height: 590px; position: relative; border-radius: 27px; overflow: hidden; background: #dce2e1; }
.wireframe-visual > img { width: 118%; max-width: none; height: 100%; position: absolute; right: -9%; object-fit: cover; }
.wireframe-note { position: absolute; left: 25px; bottom: 25px; padding: 15px 17px; display: flex; flex-direction: column; border-radius: 7px; background: rgba(17,23,29,.92); color: #fff; }
.wireframe-note span { color: var(--green); font: 500 8px/1 var(--mono); }
.wireframe-note strong { margin-top: 7px; font-size: 14px; }

.brand-language-system { transform: rotate(1deg); }
.brand-core { padding: 23px; border-radius: 14px; background: #f9f7f2; color: var(--ink); }
.brand-core small { color: var(--orange); font: 500 9px/1 var(--mono); }
.brand-core strong { display: block; margin: 9px 0 20px; font-size: 27px; }
.brand-swatches, .brand-mini-swatches { display: flex; gap: 6px; }
.brand-swatches i { height: 11px; flex: 1; border-radius: 4px; background: var(--orange); }
.brand-swatches i:nth-child(2), .brand-mini-swatches i:nth-child(2) { background: var(--green); }
.brand-swatches i:nth-child(3), .brand-mini-swatches i:nth-child(3) { background: var(--blue); }
.brand-swatches i:nth-child(4) { background: var(--ink); }
.brand-channels { padding: 10px 7px 3px 18px; }
.brand-channels article { min-height: 63px; display: grid; grid-template-columns: 85px 1fr 16px; gap: 10px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); }
.brand-channels b { color: #fff; font-size: 11px; }
.brand-channels span { color: rgba(255,255,255,.38); font: 400 8px/1 var(--mono); }
.brand-channels i { color: var(--green); font: 500 10px/1 var(--mono); font-style: normal; }
.brand-audit { background: #f7f6f3; }
.brand-mini-swatches i { width: 42px; height: 42px; border-radius: 50%; background: var(--orange); }
.brand-channel-map { background: var(--ink); color: #fff; }
.brand-channel-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: center; }
.brand-channel-map .section-intro h2 { color: #fff; }
.brand-channel-map .section-intro > p:last-of-type { color: rgba(255,255,255,.5); }
.channel-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; position: relative; }
.channel-core { grid-column: 1 / -1; min-height: 105px; display: grid; place-items: center; border-radius: 11px; background: var(--orange); color: var(--ink); font: 600 12px/1 var(--mono); }
.channel-board article { min-height: 105px; padding: 20px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: rgba(255,255,255,.035); }
.channel-board article:last-child { grid-column: 1 / -1; }
.channel-board span { color: var(--orange-soft); font: 500 8px/1 var(--mono); text-transform: uppercase; }
.channel-board b { margin-top: 9px; color: #fff; font-size: 14px; }
.brand-evidence { background: #eef0ee; }
.brand-evidence-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: center; }
.brand-evidence-visual { min-height: 590px; position: relative; border-radius: 27px; overflow: hidden; background: #dfe2df; }
.brand-evidence-visual img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: left top; }
.brand-evidence-visual > span { position: absolute; left: 22px; bottom: 22px; padding: 11px 13px; border-radius: 5px; background: rgba(17,23,29,.92); color: #fff; font: 500 8px/1 var(--mono); }

@media (max-width: 1120px) {
  .product-proof-grid, .wireframe-decision-grid, .brand-channel-grid, .brand-evidence-grid { gap: 65px; }
  .artifact-grid figure { height: 245px; }
}

@media (max-width: 820px) {
  .logic-grid { grid-template-columns: repeat(2, 1fr); }
  .logic-grid article:nth-child(2) { border-right: 0; }
  .logic-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid > article:nth-child(2) { border-right: 0; }
  .scenario-grid > article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-proof-grid, .wireframe-decision-grid, .brand-channel-grid, .brand-evidence-grid { grid-template-columns: 1fr; }
  .product-proof-visual, .wireframe-visual, .brand-evidence-visual { max-width: 650px; min-height: 540px; }
  .artifact-grid { grid-template-columns: 1fr; }
  .artifact-grid article { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; }
  .artifact-grid figure { height: 300px; grid-row: 1 / 5; margin: 0; }
  .artifact-grid article > span { align-self: end; }
  .brand-channel-grid { gap: 55px; }
}

@media (max-width: 560px) {
  .state-matrix article { grid-template-columns: 62px 1fr 15px; }
  .logic-grid { grid-template-columns: 1fr; }
  .logic-grid article, .logic-grid article:nth-child(2) { min-height: 215px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .logic-grid article:last-child { border-bottom: 0; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-grid > article, .scenario-grid > article:nth-child(2) { min-height: 285px; border-right: 0; border-bottom: 1px solid var(--line); }
  .scenario-grid > article:last-child { border-bottom: 0; }
  .scenario-card { min-height: 165px; margin-top: 25px; }
  .product-proof-visual, .wireframe-visual, .brand-evidence-visual { min-height: 410px; }
  .artifact-grid article { display: block; }
  .artifact-grid figure { height: 220px; margin-bottom: 25px; }
  .architecture-tree span { min-height: 52px; padding: 5px; }
  .brand-channels article { grid-template-columns: 72px 1fr 14px; }
  .brand-mini-swatches i { width: 36px; height: 36px; }
  .channel-board { grid-template-columns: 1fr; }
  .channel-core, .channel-board article:last-child { grid-column: auto; }
  .brand-evidence-visual img { width: 180%; max-width: none; object-position: left top; }
}

/* Web design, campaign and contact pages */
.web-delivery-system { transform: rotate(-1deg); }
.viewport-row { display: flex; gap: 7px; }
.viewport-row i { padding: 6px 8px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font: 400 8px/1 var(--mono); font-style: normal; }
.delivery-stack { padding: 9px 6px 4px 18px; }
.delivery-stack article { min-height: 61px; display: grid; grid-template-columns: 34px 1fr 18px; gap: 10px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.43); }
.delivery-stack article:last-child { border-bottom: 0; }
.delivery-stack b, .delivery-stack i { font: 500 9px/1 var(--mono); font-style: normal; }
.delivery-stack span { font-size: 12px; }
.delivery-stack .done i { color: var(--green); }
.delivery-stack .active { color: #fff; }
.delivery-stack .active i { color: var(--orange); }
.web-scope { background: #eef0ee; }
.web-handoff { background: #f8f7f3; }
.web-proof { background: #e6ebe9; }
.web-proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.web-proof-visual { min-height: 590px; position: relative; overflow: hidden; border-radius: 27px; background: #d8ddda; }
.web-proof-visual img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: center top; }
.web-proof-visual > span { position: absolute; left: 22px; bottom: 22px; padding: 11px 13px; border-radius: 5px; background: rgba(17,23,29,.92); color: #fff; font: 500 8px/1 var(--mono); }

.campaign-system { transform: rotate(1deg); }
.campaign-master { padding: 23px; border-radius: 14px; background: #f9f7f2; color: var(--ink); }
.campaign-master small { color: var(--orange); font: 500 9px/1 var(--mono); }
.campaign-master strong { display: block; margin: 9px 0 20px; font-size: 27px; }
.campaign-master div { display: grid; grid-template-columns: 15px repeat(3, 1fr); gap: 8px; align-items: center; }
.campaign-master div i { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.campaign-master div span { padding: 7px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font: 400 8px/1 var(--mono); text-align: center; }
.campaign-format-grid { padding: 12px 5px 5px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.campaign-format-grid article { min-height: 70px; padding: 14px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; background: rgba(255,255,255,.025); }
.campaign-format-grid small { color: rgba(255,255,255,.38); font: 400 8px/1 var(--mono); }
.campaign-format-grid b { color: #fff; font: 500 13px/1 var(--mono); }
.campaign-scope { background: #eef0ee; }
.campaign-spark { width: 90px; height: 48px; position: relative; display: grid; place-items: center; }
.campaign-spark i { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,34,.38), transparent 70%); }
.campaign-spark b { z-index: 1; font: 500 9px/1 var(--mono); }
.campaign-map { background: var(--ink); color: #fff; }
.campaign-map-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; align-items: center; }
.campaign-map .section-intro h2 { color: #fff; }
.campaign-map .section-intro > p:last-of-type { color: rgba(255,255,255,.5); }
.campaign-channel-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.campaign-core { grid-column: 1 / -1; min-height: 115px; padding: 24px; display: flex; flex-direction: column; justify-content: center; border-radius: 11px; background: var(--orange); color: var(--ink); }
.campaign-core small, .campaign-channel-board article span, .campaign-channel-board article i { font: 500 8px/1 var(--mono); font-style: normal; }
.campaign-core strong { margin-top: 9px; font-size: 21px; }
.campaign-channel-board article { min-height: 120px; padding: 20px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: rgba(255,255,255,.035); }
.campaign-channel-board article span { color: var(--orange-soft); text-transform: uppercase; }
.campaign-channel-board article b { margin: 9px 0 16px; font-size: 14px; }
.campaign-channel-board article i { color: rgba(255,255,255,.35); }
.campaign-page-v2 .work-rhythm .section-heading h2 { color: #fff; }
.campaign-page-v2 .work-rhythm .section-heading > p { color: rgba(255,255,255,.5); }
.campaign-page-v2 .rhythm-columns { display: grid; grid-template-columns: repeat(3, 1fr); }
.campaign-page-v2 .rhythm-board article { min-height: 220px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 0; }
.campaign-page-v2 .rhythm-board article:last-child { border-right: 0; }
.campaign-page-v2 .rhythm-board small { margin-bottom: auto; color: var(--orange-soft); font: 500 8px/1 var(--mono); }
.campaign-page-v2 .rhythm-board article > b { color: #fff; font: 600 17px/1.2 var(--sans); }
.campaign-page-v2 .rhythm-board article > p { margin: 8px 0 20px; }
.campaign-page-v2 .rhythm-board article > i { color: rgba(255,255,255,.34); font: 400 8px/1 var(--mono); font-style: normal; }
.brand-bridge { background: #e6ebe9; }
.brand-bridge-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.bridge-board { padding: 28px; display: grid; grid-template-columns: 1fr auto 1fr auto 1.2fr; gap: 12px; align-items: stretch; border-radius: var(--radius); background: #fff; }
.bridge-board > div { min-height: 150px; padding: 18px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-radius: 9px; }
.bridge-board > i { align-self: center; color: var(--orange); font: 500 21px/1 var(--mono); font-style: normal; }
.bridge-board small { color: var(--muted); font: 500 8px/1 var(--mono); }
.bridge-board strong { margin-top: 10px; font-size: 14px; line-height: 1.25; }
.bridge-board .bridge-result { background: var(--orange); border-color: var(--orange); }
.bridge-board .bridge-result small { color: rgba(17,23,29,.55); }

.contact-page-v2 .site-header { background: var(--ink); }
.contact-page-v2 .brand img { filter: brightness(0) invert(1); }
.contact-page-v2 .site-nav { color: #fff; }
.contact-page-v2 .site-header.is-sticky { background: rgba(17,23,29,.94); box-shadow: 0 1px rgba(255,255,255,.09); }
.contact-hero { min-height: calc(100vh - 96px); position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.contact-glow { width: 850px; height: 850px; position: absolute; left: -360px; bottom: -500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,34,.24), transparent 67%); }
.contact-layout { display: grid; grid-template-columns: 1fr .78fr; gap: 100px; align-items: center; }
.contact-copy h1 { max-width: 760px; }
.contact-copy h1 em { display: block; color: var(--orange); font-style: normal; }
.contact-copy .hero-lead { color: rgba(255,255,255,.58); }
.breadcrumbs-dark, .breadcrumbs-dark a { color: rgba(255,255,255,.42); }
.contact-prompts { max-width: 660px; margin: 45px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.12); }
.contact-prompts li { min-height: 58px; display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.78); font-size: 13px; }
.contact-prompts span { color: var(--orange); font: 500 9px/1 var(--mono); }
.contact-direct { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 26px; }
.contact-direct a { text-decoration: none; }
.contact-direct small, .contact-direct strong { display: block; }
.contact-direct small { margin-bottom: 7px; color: rgba(255,255,255,.32); font: 500 8px/1 var(--mono); }
.contact-direct strong { color: #fff; font-size: 12px; }
.contact-form-card { padding: 34px; border-radius: 22px; background: #f8f7f3; color: var(--ink); box-shadow: 0 35px 80px rgba(0,0,0,.22); }
.form-head { display: flex; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid var(--line); color: var(--muted); font: 500 8px/1 var(--mono); }
.contact-form-card h2 { margin: 28px 0 8px; font-size: 30px; }
.contact-form-card > p { color: var(--muted); font-size: 13px; }
.contact-form { margin-top: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 600; }
.field label span { color: var(--orange); }
.field input, .field textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(17,23,29,.18); border-radius: 0; outline: none; background: transparent; color: var(--ink); font: 400 14px/1.5 var(--sans); resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--orange); }
.field input::placeholder, .field textarea::placeholder { color: #a3a8a9; }
.form-submit { width: 100%; margin-top: 8px; cursor: pointer; }
.form-note { margin-top: 12px; color: var(--muted); font-size: 10px; text-align: center; }
.contact-next { background: #eef0ee; }
.next-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.next-grid article { min-height: 280px; padding: 35px 34px; border-right: 1px solid var(--line); }
.next-grid article:last-child { border-right: 0; }
.next-grid span { color: var(--orange); font: 500 10px/1 var(--mono); }
.next-grid h3 { margin: 75px 0 14px; }
.next-grid p { color: var(--muted); font-size: 14px; }
.contact-fit { background: var(--ink); color: #fff; }
.contact-fit-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 110px; align-items: center; }
.contact-fit .section-intro h2 { color: #fff; }
.contact-fit .section-intro > p:last-child { color: rgba(255,255,255,.5); }
.contact-fit-list article { min-height: 90px; display: grid; grid-template-columns: 35px 1fr; gap: 15px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-fit-list article:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.contact-fit-list i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(15,185,141,.12); color: var(--green); font: 500 10px/1 var(--mono); font-style: normal; }
.contact-fit-list b, .contact-fit-list span { display: block; }
.contact-fit-list b { margin-bottom: 3px; font-size: 14px; }
.contact-fit-list span { color: rgba(255,255,255,.42); font-size: 12px; }
.contact-trust { padding: 75px 0; background: var(--orange); }
.contact-trust .trust-metrics { padding: 0; border: 0; }

@media (max-width: 1120px) {
  .web-proof-grid, .campaign-map-grid, .brand-bridge-grid, .contact-layout, .contact-fit-grid { gap: 65px; }
  .bridge-board { grid-template-columns: 1fr auto 1fr; }
  .bridge-board .bridge-result { grid-column: 1 / -1; }
  .bridge-board > i:nth-of-type(2) { display: none; }
}

@media (max-width: 820px) {
  .web-proof-grid, .campaign-map-grid, .brand-bridge-grid, .contact-layout, .contact-fit-grid { grid-template-columns: 1fr; }
  .web-proof-visual { min-height: 540px; }
  .campaign-page-v2 .rhythm-columns { grid-template-columns: 1fr; }
  .campaign-page-v2 .rhythm-board article { min-height: 150px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .campaign-page-v2 .rhythm-board article:last-child { border-bottom: 0; }
  .contact-layout { gap: 65px; }
  .contact-copy { max-width: 720px; }
  .contact-form-card { max-width: 680px; }
  .next-grid { grid-template-columns: 1fr; }
  .next-grid article { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .next-grid article:last-child { border-bottom: 0; }
  .next-grid h3 { margin-top: 45px; }
}

@media (max-width: 560px) {
  .web-proof-visual { min-height: 410px; }
  .campaign-format-grid, .campaign-channel-board { grid-template-columns: 1fr; }
  .campaign-core { grid-column: auto; }
  .bridge-board { padding: 18px; grid-template-columns: 1fr; }
  .bridge-board > i { min-height: 10px; transform: rotate(90deg); }
  .bridge-board > i:nth-of-type(2) { display: block; }
  .bridge-board .bridge-result { grid-column: auto; }
  .contact-hero { padding-top: 70px; }
  .contact-form-card { padding: 25px 20px; }
  .contact-direct { flex-direction: column; gap: 18px; }
  .contact-prompts li { padding: 10px 0; }
}

/* Contacts and system status pages */
.contacts-hero { padding-bottom: 88px; }
.contacts-heading { margin-top: 70px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.contacts-heading h1 { margin: 0; }
.contacts-heading h1 em { display: block; color: var(--orange); font-style: normal; }
.contacts-heading > p { max-width: 490px; margin-bottom: 12px; color: var(--muted); font-size: 18px; }
.contacts-channels { padding-bottom: 125px; }
.channel-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.channel-cards > a { min-height: 310px; padding: 33px; position: relative; display: flex; flex-direction: column; border-right: 1px solid var(--line); text-decoration: none; transition: background .22s, color .22s; }
.channel-cards > a:last-child { border-right: 0; }
.channel-cards > a:hover { background: var(--ink); color: #fff; }
.channel-cards span { color: var(--orange); font: 500 9px/1 var(--mono); }
.channel-cards strong { margin-top: auto; font-size: 20px; letter-spacing: -.025em; overflow-wrap: anywhere; }
.channel-cards p { max-width: 260px; margin-top: 11px; color: var(--muted); font-size: 13px; }
.channel-cards i { position: absolute; top: 30px; right: 30px; font: 500 18px/1 var(--mono); font-style: normal; transition: transform .2s; }
.channel-cards a:hover i { transform: translate(3px, -3px); }
.channel-cards a:hover p { color: rgba(255,255,255,.45); }
.contacts-context { background: #eef0ee; }
.contacts-context-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: center; }
.contacts-context .section-intro .button { margin-top: 34px; }
.contact-context-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-context-list li { min-height: 122px; padding: 20px 0; display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); }
.contact-context-list > li > span { color: var(--orange); font: 500 10px/1 var(--mono); }
.contact-context-list h3 { margin: 0 0 5px; font-size: 20px; }
.contact-context-list p { color: var(--muted); font-size: 13px; }
.office-section { background: var(--ink); color: #fff; }
.office-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 110px; align-items: center; }
.office-section .section-intro h2 { color: #fff; }
.office-section .section-intro > p:last-of-type { color: rgba(255,255,255,.5); }
.office-card { min-height: 480px; padding: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column; border-radius: 25px; background: var(--orange); color: var(--ink); }
.office-card::before, .office-card::after { content: ''; position: absolute; border: 1px solid rgba(17,23,29,.16); border-radius: 50%; }
.office-card::before { width: 520px; height: 520px; right: -190px; bottom: -240px; }
.office-card::after { width: 300px; height: 300px; right: -80px; bottom: -130px; }
.office-card > span { font: 500 9px/1 var(--mono); }
.office-card h2 { max-width: 470px; margin: auto 0 8px; font-size: clamp(42px, 5vw, 68px); }
.office-card p { font-size: 16px; }
.office-marker { width: 120px; height: 120px; position: absolute; right: 40px; top: 40px; display: grid; place-items: center; border: 1px solid rgba(17,23,29,.18); border-radius: 50%; }
.office-marker i { width: 9px; height: 9px; position: absolute; top: 22px; border-radius: 50%; background: var(--ink); }
.office-marker b { font: 500 10px/1.4 var(--mono); text-align: center; }
.text-link-light { color: #fff; border-color: rgba(255,255,255,.24); }

.success-page-v2 .site-header, .error-page-v2 .site-header { background: var(--ink); }
.success-page-v2 .brand img, .error-page-v2 .brand img { filter: brightness(0) invert(1); }
.success-page-v2 .site-nav, .error-page-v2 .site-nav { color: #fff; }
.success-page-v2 .site-header.is-sticky, .error-page-v2 .site-header.is-sticky { background: rgba(17,23,29,.94); box-shadow: 0 1px rgba(255,255,255,.09); }
.status-main { background: var(--ink); }
.status-section { min-height: calc(100vh - 96px); padding: 105px 0 130px; position: relative; overflow: hidden; display: flex; align-items: center; color: #fff; }
.status-glow { width: 900px; height: 900px; position: absolute; right: -480px; top: -360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,34,.22), transparent 66%); }
.status-layout, .error-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; align-items: center; }
.status-mark { aspect-ratio: 1; position: relative; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.status-mark::before, .status-mark::after { content: ''; position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.status-mark::before { inset: 13%; }
.status-mark::after { inset: 26%; }
.status-mark i { width: 90px; height: 90px; z-index: 1; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--ink); font: 600 30px/1 var(--mono); font-style: normal; }
.status-mark span { position: absolute; bottom: 14%; color: rgba(255,255,255,.36); font: 500 8px/1 var(--mono); }
.status-copy { max-width: 730px; }
.status-copy h1 em { display: block; color: var(--orange); font-style: normal; }
.status-copy > p { max-width: 650px; color: rgba(255,255,255,.56); font-size: 18px; }
.status-next { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.12); }
.status-next article { min-height: 61px; display: grid; grid-template-columns: 44px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); }
.status-next span { color: var(--orange); font: 500 9px/1 var(--mono); }
.status-next b { font-size: 12px; }
.status-copy .hero-actions { margin-top: 42px; }
.error-code { min-height: 460px; display: flex; align-items: center; justify-content: center; gap: 20px; color: var(--orange); font: 500 clamp(100px, 12vw, 180px)/1 var(--mono); }
.error-code i { width: 50px; height: 50px; position: relative; border: 2px solid rgba(255,255,255,.18); border-radius: 50%; font-style: normal; }
.error-code i::before { content: ''; width: 10px; height: 10px; position: absolute; left: 18px; top: 18px; border-radius: 50%; background: var(--orange); }
.error-links { margin-top: 45px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.12); }
.error-links a { min-height: 68px; padding: 0 8px; display: grid; grid-template-columns: 34px 1fr 18px; gap: 8px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; text-decoration: none; }
.error-links a:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
.error-links span { color: var(--orange); font: 500 8px/1 var(--mono); }
.error-links b { font-size: 12px; }
.error-links i { font-style: normal; transition: transform .2s; }
.error-links a:hover i { transform: translate(3px, -3px); }

@media (max-width: 1120px) {
  .contacts-heading, .contacts-context-grid, .office-grid, .status-layout, .error-layout { gap: 65px; }
}

@media (max-width: 820px) {
  .contacts-heading, .contacts-context-grid, .office-grid, .status-layout, .error-layout { grid-template-columns: 1fr; }
  .contacts-heading { margin-top: 45px; }
  .channel-cards { grid-template-columns: 1fr; }
  .channel-cards > a { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .channel-cards > a:last-child { border-bottom: 0; }
  .office-card { min-height: 420px; }
  .status-mark { width: min(380px, 70vw); }
  .error-code { min-height: 260px; justify-content: flex-start; }
}

@media (max-width: 560px) {
  .contacts-hero { padding-bottom: 60px; }
  .contacts-heading { gap: 35px; }
  .channel-cards > a { min-height: 190px; padding: 25px; }
  .contacts-channels { padding-bottom: 85px; }
  .contact-context-list li { grid-template-columns: 42px 1fr; }
  .office-card { min-height: 370px; padding: 27px; }
  .office-marker { width: 95px; height: 95px; top: 26px; right: 26px; }
  .office-marker i { top: 15px; }
  .status-section { padding-top: 70px; }
  .status-copy .hero-actions { align-items: flex-start; }
  .error-links { grid-template-columns: 1fr; }
  .error-links a:nth-child(odd) { border-right: 0; }
}

/* =========================================================
   V2 refinement pass
   More whitespace, stronger type, cleaner hierarchy
========================================================= */
:root { --muted: #4d575f; }
body.home-v2 { font-size: 17px; }
.section-pad { padding: 148px 0; }
.section-pad-sm { padding: 116px 0; }
.breadcrumbs { display: none; }
.hero-note { display: none; }
.section-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 0; margin-bottom: 70px; }
.section-heading > div { max-width: 940px; }
.section-heading > p { max-width: 690px; margin-top: 23px; color: rgba(255,255,255,.72); font-size: 18px; }
.section-heading.dark-text > p { color: var(--muted); }
.section-heading .text-link { margin-top: 27px; }
.final-cta-grid { grid-template-columns: 1fr; gap: 34px; }
.final-cta-copy { max-width: 680px; }
.contacts-heading { grid-template-columns: 1fr; gap: 28px; }
.contacts-heading > p { max-width: 680px; margin: 0; }

/* Essential microcopy must remain readable */
.eyebrow { font-size: 13px; }
.hero-proof span, .outcome-grid p, .process-track p, .support-task > span,
.system-tree article > span, .delivery-stack span, .contact-fit-list span,
.phase-list li, .evolution-grid li, .founder-number span, .review-signals article,
.state-matrix span, .scenario-card span, .brand-channels b, .case-row-copy dd,
.handoff-board article span, .priority-stack article > span { font-size: 13px; }
.system-topline, .request-card small, .request-meta span, .flow-step > b,
.flow-step small, .flow-step > span, .system-footer code, .system-footer > span,
.complexity-axis, .ui-chip, .pillar-top > span, .path-viz b, .memory-viz b,
.tree-viz, .process-track article > span, .dev-sources span, .design-layer small,
.design-layer > span, .tag-list li, .case-label span, .case-note span,
.case-note strong, .debt-card-head, .knowledge-timeline span, .case-card div > span,
.quote-card footer small, .fit-grid article > span, .footer-bottom, .capacity-total > span,
.support-task > b, .support-task small, .support-task > i, .outcome-grid article > span,
.mini-labels i, .qa-viz, .rhythm-head, .rhythm-board article > b,
.rhythm-board article > span, .comparison-head > *, .proof-meta span,
.proof-status, .token-row i, .system-tree article > b, .system-tree code,
.audit-grid article > span, .cases-hero-stack > span, .case-feature-label small,
.case-feature-status, .case-scope span, .evidence-grid article > span,
.case-row-index, .case-row-copy > span, .case-row-copy dt, .process-system .flow-step > i,
.phase-list article > span, .handoff-head, .handoff-board article i, .impact-axis,
.priority-stack article > b, .priority-stack small, .priority-stack article > i,
.evolution-grid article > span, .evolution-evidence-visual small,
.founder-board-top, .founder-board-bottom, .founder-role small, .founder-role p,
.position-board article > span, .history-timeline article > span,
.about-quote-author span, .reviews-board-top, .reviews-board-bottom,
.review-person span, .review-person small, .review-story-copy > span, .review-index,
.state-matrix b, .state-matrix i, .logic-grid article > span, .scenario-head,
.scenario-grid > article > small, .scenario-card button, .product-proof-badge small,
.product-proof-badge span, .architecture-root small, .architecture-tree span,
.artifact-grid article > span, .wireframe-note span, .brand-core small,
.brand-channels span, .brand-channels i, .channel-core, .channel-board span,
.brand-evidence-visual > span, .viewport-row i, .delivery-stack b,
.delivery-stack i, .web-proof-visual > span, .campaign-master small,
.campaign-master div span, .campaign-format-grid small, .campaign-spark b,
.campaign-core small, .campaign-channel-board article span,
.campaign-channel-board article i, .campaign-page-v2 .rhythm-board small,
.campaign-page-v2 .rhythm-board article > i, .bridge-board small,
.contact-prompts span, .contact-direct small, .form-head, .next-grid span,
.contact-fit-list i, .channel-cards span, .contact-context-list > li > span,
.office-card > span, .office-marker b, .status-mark span, .status-next span,
.error-links span { font-size: 12px; }

/* Raise low contrast text */
.system-topline, .flow-step small, .system-footer > span, .design-layer > span,
.case-note span, .outcome-grid p, .rhythm-head, .rhythm-board article > span,
.system-tree article > b, .brand-channels span, .campaign-format-grid small,
.campaign-channel-board article i, .campaign-page-v2 .rhythm-board article > i,
.contact-direct small, .contact-fit-list span, .status-mark span,
.founder-board-top, .founder-board-bottom, .founder-role p,
.reviews-board-top, .reviews-board-bottom, .product-proof-badge span,
.priority-stack small, .priority-stack article > i { color: rgba(255,255,255,.62); }
.field label { font-size: 15px; }
.field input, .field textarea { font-size: 16px; }
.field input::placeholder, .field textarea::placeholder { color: #6f777b; opacity: 1; }
.field-help { max-width: 520px; margin: 0 0 9px; color: #596269; font-size: 13px; line-height: 1.55; }
.field-message { margin-top: 28px; }
.form-note { font-size: 12px; text-align: left; }
.contact-direct strong { font-size: 16px; }
.contact-direct small { font-size: 12px; }
.contact-direct strong { font-size: 18px; }
.channel-cards span, .contact-context-list > li > span { font-size: 12px; }
.channel-cards strong { font-size: 22px; }
.channel-cards p, .contact-context-list p { font-size: 15px; line-height: 1.55; }
.complexity-stage::before { font-size: 12px; }
.component-tree { font-size: 12px; }

/* Remove secondary UI noise from proof blocks */
.flagship-copy .eyebrow, .flagship-copy .tag-list,
.case-feature-copy .eyebrow, .case-feature-copy .case-scope,
.product-proof .case-scope, .web-proof .case-scope,
.support-proof .eyebrow, .support-proof .proof-status,
.case-feature-status, .cases-hero-stack > span,
.web-proof-visual > span, .brand-evidence-visual > span { display: none; }
.flagship-copy blockquote, .case-feature-copy blockquote { margin-top: 34px; }

/* Mobile menu must be a fully opaque, independent layer */
@media (max-width: 820px) {
  .section-pad, .section-pad-sm { padding: 104px 0; }
  .section-heading { margin-bottom: 56px; }
  .site-header { isolation: isolate; }
  .site-nav { height: 100dvh; min-height: 100vh; z-index: 999; overflow-y: auto; overscroll-behavior: contain; background-color: #f3f1ed !important; color: var(--ink) !important; }
  .menu-toggle { z-index: 1000; }
  .contact-page-v2 .menu-toggle i,
  .success-page-v2 .menu-toggle i,
  .error-page-v2 .menu-toggle i { background: #fff; }
  .menu-toggle[aria-expanded="true"] i { background: var(--ink) !important; }
  body.menu-open .site-header { background: var(--paper) !important; box-shadow: none; }
  body.menu-open .brand { position: relative; z-index: 1000; }
  body.menu-open .brand img { filter: brightness(0); }
  body.menu-open main, body.menu-open footer { visibility: hidden; }
}

@media (max-width: 560px) {
  body.home-v2 { font-size: 16px; }
  .section-pad, .section-pad-sm { padding: 88px 0; }
  .eyebrow { font-size: 12px; }
  .hero-proof span, .outcome-grid p, .process-track p, .phase-list li,
  .evolution-grid li, .review-signals article, .contact-fit-list span { font-size: 13px; }
  .site-nav { padding: 100px 24px 34px; }
  .site-nav > a:not(.button) { padding: 20px 0; font-size: 26px; line-height: 1.15; }
}

/* CSS variables and Figma variables mapping */
.code-sync { background: var(--ink); color: #fff; }
.code-sync-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: center; }
.code-sync .section-intro h2 { color: #fff; }
.code-sync .section-intro > p:last-of-type { color: rgba(255,255,255,.68); }
.token-sync-board { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: #151e25; }
.token-sync-head { padding: 18px 22px; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font: 500 12px/1 var(--mono); }
.token-sync-board article { min-height: 82px; padding: 17px 22px; display: grid; grid-template-columns: 1fr 34px 1fr; gap: 14px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.token-sync-board article:last-child { border-bottom: 0; }
.token-sync-board code { color: #fff; font: 500 13px/1.35 var(--mono); }
.token-sync-board i { color: var(--orange); font: 500 16px/1 var(--mono); font-style: normal; text-align: center; }
.token-sync-board span { color: rgba(255,255,255,.7); font-size: 13px; }
.sync-benefits { margin: 35px 0 0; padding: 0; list-style: none; }
.sync-benefits li { padding: 12px 0 12px 27px; position: relative; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.76); font-size: 14px; }
.sync-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--green); }

/* Expanded portfolio archive */
.case-archive { background: #eef0ee; }
.case-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.archive-case { min-height: 420px; overflow: visible; display: flex; flex-direction: column; border-radius: 0; background: transparent; }
.archive-case figure { height: 230px; margin: 0; overflow: hidden; border-radius: 16px; background: #dfe3e1; }
.archive-case img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .45s ease; }
.archive-case:hover img { transform: scale(1.025); }
.archive-case div { padding: 24px 0 0; }
.archive-case span { color: var(--orange); font: 500 12px/1 var(--mono); }
.archive-case h3 { margin: 0 0 10px; font-size: 27px; }
.archive-case p { color: var(--muted); font-size: 14px; }

@media (max-width: 920px) {
  .code-sync-grid { grid-template-columns: 1fr; gap: 60px; }
  .case-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .token-sync-board article { grid-template-columns: 1fr; gap: 8px; }
  .token-sync-board i { text-align: left; transform: rotate(90deg); transform-origin: left center; }
  .case-archive-grid { grid-template-columns: 1fr; }
  .archive-case { min-height: 390px; }
}

/* =========================================================
   Calm system pass — shared typography, less graphic noise
========================================================= */
body.home-v2 { font-weight: 400; }
h1, h2, h3, h4, strong, b, .button, .text-link, .site-nav a { font-weight: 500; }
h3 { font-size: clamp(23px, 2vw, 29px); }
.button, .site-nav > a:not(.button), .direct-links a { font-weight: 500; }
.eyebrow { font-size: 13px; }

/* Functional content stays; decorative rules go. */
.hero-proof, .metrics, .logo-row, .pillar-grid, .process-track, .fit-grid,
.quote-card, .case-card, .footer-bottom { border: 0; }
.pillar, .metrics article, .process-track article, .fit-grid article,
.fit-grid article + article { border: 0; }
.case-card { border-radius: 16px; overflow: hidden; }
.quote-card { box-shadow: 0 18px 48px rgba(17,23,29,.05); }
.footer-bottom { padding-top: 34px; }

/* Hero proof is evidence, not microcopy. */
.hero-proof { gap: 40px; margin-top: 76px; padding-top: 0; }
.hero-proof div { display: block; }
.hero-proof strong { display: block; margin-bottom: 10px; font: 500 clamp(34px,3vw,42px)/1 var(--mono); color: #4d5860; letter-spacing: -.06em; }
.hero-proof span { display: block; max-width: 145px; font-size: 14px; line-height: 1.4; }
.system-footer code, .system-footer > span { font-size: 12px; }
.system-footer > span { color: rgba(255,255,255,.64); }

/* Design-system evolution: a graphic, not a table. */
.complexity .section-heading { margin-bottom: 85px; }
.system-evolution { display: grid; grid-template-columns: 1fr 44px 1.08fr 44px 1.25fr; gap: 18px; align-items: center; }
.evolution-stage { min-height: 400px; padding: 34px; display: flex; flex-direction: column; border-radius: 22px; background: rgba(255,255,255,.055); }
.evolution-stage.evolution-growth { background: rgba(255,255,255,.08); }
.evolution-stage.evolution-forks { background: rgba(255,107,34,.09); }
.evolution-meta { display: flex; flex-direction: column; gap: 10px; }
.evolution-meta span { color: rgba(255,255,255,.6); font: 500 13px/1.2 var(--mono); }
.evolution-meta strong { max-width: 290px; font-size: 19px; line-height: 1.3; }
.component-cluster { min-height: 185px; margin: auto 0 26px; position: relative; }
.component-cluster .token { position: absolute; display: block; border-radius: 6px; background: #70808c; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.component-cluster .token-a { width: 74px; height: 42px; left: 3%; top: 38%; background: var(--green); }
.component-cluster .token-b { width: 105px; height: 58px; left: 33%; top: 12%; background: #5d70c9; }
.component-cluster .token-c { width: 58px; height: 88px; right: 5%; top: 32%; background: #85919a; }
.component-cluster .token-d { width: 90px; height: 48px; left: 31%; bottom: 6%; background: var(--orange); }
.component-cluster .token-e { width: 49px; height: 49px; left: 5%; top: 8%; background: #40505b; }
.component-cluster .token-f { width: 80px; height: 36px; right: 19%; bottom: 3%; background: #3e4b54; }
.component-cluster .token-g { width: 42px; height: 70px; right: 0; top: 0; background: #64727b; }
.component-cluster .fork { outline: 2px solid #ff7474; outline-offset: 4px; background: #8d4d51; }
.component-cluster .fork-a { width: 68px; height: 36px; right: 4%; bottom: 3%; transform: rotate(7deg); }
.component-cluster .fork-b { width: 53px; height: 70px; left: 5%; bottom: 0; transform: rotate(-5deg); }
.component-cluster .fork-c { width: 95px; height: 35px; right: 18%; top: 4%; transform: rotate(4deg); }
.component-cluster b { position: absolute; left: 0; bottom: -20px; color: rgba(255,255,255,.68); font: 500 13px/1 var(--mono); }
.evolution-stage > p { margin: 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.55; }
.evolution-arrow { color: var(--orange); font: 400 27px/1 var(--mono); text-align: center; }

/* Four responsibilities: icon-led and borderless. */
.icon-pillars { gap: 72px 90px; }
.icon-pillars .pillar { min-height: 360px; padding: 0; }
.pillar-icon { width: 62px; height: 62px; margin-bottom: 55px; display: grid; place-items: center; border-radius: 18px; background: #e9ece9; color: var(--ink); }
.pillar-icon svg, .sync-card svg, .sync-core svg, .embedded-design svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pillar-number { margin-bottom: 18px; color: var(--orange); font: 500 13px/1 var(--mono); }
.icon-pillars .pillar h3 { margin: 0 0 18px; font-size: clamp(28px,2.4vw,35px); }
.icon-pillars .pillar > p { font-size: 17px; }

/* Code and Figma are one operating system. */
.system-sync { background: #e8ebe8; }
.sync-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 105px; align-items: center; }
.sync-layout .section-intro > p { max-width: 620px; color: var(--muted); font-size: 18px; }
.sync-layout .sync-outcome { margin-top: 28px; color: var(--ink); font-weight: 500; }
.sync-visual { display: grid; grid-template-columns: 1fr 150px 1fr; align-items: center; gap: 18px; }
.sync-card { min-height: 310px; padding: 30px; display: flex; flex-direction: column; border-radius: 20px; background: #fff; }
.sync-card > svg { margin-bottom: auto; color: var(--orange); }
.sync-card > span { margin-bottom: 12px; color: var(--muted); font: 500 13px/1 var(--mono); }
.sync-card strong { margin-bottom: 22px; font-size: 22px; line-height: 1.2; }
.sync-card code { color: #53606a; font: 400 13px/1.75 var(--mono); }
.sync-core { min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border-radius: 50%; background: var(--orange); text-align: center; }
.sync-core svg { width: 24px; height: 24px; }
.sync-core strong { font-size: 15px; }
.sync-core span { max-width: 110px; font-size: 12px; line-height: 1.35; }

/* Process uses spacing and rhythm, not a spreadsheet grid. */
.process-track { gap: 12px; overflow: visible; border-radius: 0; }
.process-track article { min-height: 190px; padding: 28px; border-radius: 14px; background: #f0f1ef; }
.process-track article:nth-of-type(7), .process-track article:nth-of-type(8) { background: #e5eee8; }
.process-track h3 { margin-top: 43px; font-size: 20px; }
.process-track p { font-size: 14px; }
.process-progress { display: none; }

/* DS sits inside the team and sprint rhythm. */
.embedded-team { position: relative; }
.team-shell { min-height: 355px; padding: 34px; position: relative; border-radius: 24px; background: #192229; }
.team-heading { display: flex; flex-direction: column; gap: 10px; }
.team-heading span { color: rgba(255,255,255,.58); font: 500 13px/1 var(--mono); }
.team-heading strong { font-size: 23px; }
.team-roles { margin-top: 55px; display: flex; gap: 12px; flex-wrap: wrap; }
.team-roles span { padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.72); font-size: 14px; }
.embedded-design { width: 62%; min-height: 175px; padding: 26px; position: absolute; right: 30px; bottom: -35px; display: grid; grid-template-columns: 45px 1fr; gap: 17px; align-items: start; border-radius: 20px; background: var(--orange); color: var(--ink); box-shadow: 0 25px 60px rgba(0,0,0,.22); }
.embedded-design small { font: 500 12px/1 var(--mono); }
.embedded-design strong { display: block; margin: 20px 0 8px; font-size: 29px; }
.embedded-design span { font-size: 14px; }
.delivery-rhythm { margin: 75px 8px 0; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.delivery-rhythm span, .delivery-rhythm strong { padding: 10px 0; color: rgba(255,255,255,.58); font-size: 13px; white-space: nowrap; }
.delivery-rhythm strong { color: var(--green); }

/* Trust and fit: calmer spacing, no cages. */
.metrics { gap: 34px; margin-top: 72px; }
.metrics article { min-height: 220px; padding: 36px; border-radius: 18px; background: #f7f6f3; }
.metrics strong { margin-bottom: 48px; }
.metrics p { font-size: 16px; }
.logo-row { min-height: 150px; margin-top: 56px; }
.tv3-wordmark { display: flex; align-items: center; justify-content: center; gap: 1px; color: #767676; }
.tv3-wordmark b { font-size: 27px; letter-spacing: -.08em; }
.logo-row .tv3-wordmark img { width: 28px; height: 38px; margin: 0; object-fit: contain; }
.fit .section-intro.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.fit .section-intro.centered h2 { max-width: 850px; margin-left: auto; margin-right: auto; }
.fit-grid { gap: 24px; overflow: visible; }
.fit-grid article { min-height: 470px; border-radius: 18px; background: rgba(255,255,255,.62); }
.fit-grid li { border: 0; padding-top: 10px; padding-bottom: 10px; }

.direct-links { gap: 28px; flex-wrap: wrap; }
.direct-links a { font-size: 17px; border: 0; }

@media (max-width: 1040px) {
  .system-evolution { grid-template-columns: 1fr 28px 1fr 28px 1fr; gap: 10px; }
  .evolution-stage { padding: 27px; }
  .sync-layout { grid-template-columns: 1fr; gap: 65px; }
  .sync-visual { max-width: 760px; }
  .embedded-design { width: 68%; }
}
@media (max-width: 820px) {
  .system-evolution { grid-template-columns: 1fr; gap: 18px; }
  .evolution-stage { min-height: 350px; }
  .evolution-arrow { transform: rotate(90deg); }
  .icon-pillars { grid-template-columns: 1fr 1fr; gap: 55px 35px; }
  .process-track { grid-template-columns: repeat(2,1fr); }
  .dev-team-grid { grid-template-columns: 1fr; gap: 65px; }
  .metrics { gap: 18px; }
}
@media (max-width: 620px) {
  h3 { font-size: 23px; }
  .hero-proof { grid-template-columns: 1fr; gap: 26px; margin-top: 55px; }
  .hero-proof div { display: grid; grid-template-columns: 95px 1fr; align-items: center; }
  .hero-proof strong { margin: 0; }
  .hero-proof span { max-width: none; }
  .icon-pillars { grid-template-columns: 1fr; gap: 62px; }
  .icon-pillars .pillar { min-height: auto; }
  .pillar-icon { margin-bottom: 34px; }
  .sync-visual { grid-template-columns: 1fr; }
  .sync-core { width: 145px; min-height: 145px; margin: 0 auto; }
  .process-track { grid-template-columns: 1fr; }
  .process-track article { min-height: 160px; }
  .team-shell { min-height: 490px; }
  .embedded-design { width: auto; left: 24px; right: 24px; bottom: -30px; }
  .delivery-rhythm { margin-top: 70px; display: grid; grid-template-columns: repeat(3,1fr); }
  .delivery-rhythm span, .delivery-rhythm strong { white-space: normal; }
  .metrics { grid-template-columns: 1fr; }
  .metrics article { min-height: 180px; }
  .logo-row { grid-template-columns: repeat(3,1fr); gap: 35px 22px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-grid article { min-height: auto; }
}

/* =========================================================
   Minimal editorial pass - whitespace over interface chrome
========================================================= */
:root {
  --shell: min(1240px, calc(100vw - 96px));
}

body.home-v2 { font-size: 17px; }
.section-pad { padding: 154px 0; }
.section-pad-sm { padding: 126px 0; }

/* A quieter, more consistent type system. */
h1 { font-size: clamp(58px, 5.25vw, 80px); line-height: 1.01; }
h2 { max-width: 1166px; font-size: clamp(42px, 3.75vw, 58px); line-height: 1.08; }
h3 { font-size: clamp(24px, 2vw, 30px); line-height: 1.2; }
h1, h2 { text-wrap: balance; }
.eyebrow { gap: 0; margin-bottom: 24px; font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.eyebrow > span { display: none; }
.eyebrow.light { color: rgba(255,255,255,.72); }
.section-intro > p:last-child,
.section-heading > p,
.dev-team-grid > div:first-child > p:last-child { font-size: 18px; line-height: 1.65; }
.section-heading { max-width: 980px; display: block; margin-bottom: 84px; }
.section-heading > div { max-width: none; }
.section-heading h2 { max-width: 940px; }
.section-heading > p { max-width: 680px; margin-top: 26px; }
.section-heading .text-link { margin-top: 32px; }

/* Decorative rules and framed UI are deliberately removed. */
.text-link { border-bottom: 0; padding-bottom: 0; }
.signal-list,
.signal-list li,
.sync-benefits li,
.debt-card-head,
.debt-card > p,
.footer-bottom,
.token-sync-head,
.token-sync-board article { border: 0; }

/* Hero: fewer micro-signals, larger evidence. */
.hero { padding-top: 96px; padding-bottom: 142px; }
.hero-grid { grid-template-columns: minmax(0,1.06fr) minmax(420px,.78fr); gap: 110px; }
.hero-copy { max-width: 760px; }
.hero-lead { max-width: 680px; font-size: 20px; }
.hero-glow { opacity: .55; }
.hero-proof { max-width: 680px; gap: 56px; margin-top: 82px; }
.hero-proof strong { font-size: clamp(38px,3.3vw,48px); }
.hero-proof span { max-width: 160px; font-size: 16px; line-height: 1.45; }
.hero-system { padding: 28px; transform: none; border-radius: 22px; }
.request-card { padding: 28px; border-radius: 12px; }
.request-card h2 { max-width: 390px; margin: 0; font-size: 31px; }
.system-flow { padding: 22px 6px 5px; }
.flow-step { min-height: 82px; grid-template-columns: 48px 1fr; gap: 18px; border: 0; }
.flow-step > b { color: var(--orange); font: 500 17px/1 var(--sans); }
.flow-step small { margin-bottom: 7px; color: rgba(255,255,255,.62); font: 500 13px/1 var(--sans); letter-spacing: 0; }
.flow-step strong { font-size: 16px; }
.flow-step.is-active::before { display: none; }
.system-footer { padding: 20px 5px 0; }
.system-footer > span { color: rgba(255,255,255,.7); font: 500 14px/1.3 var(--sans); text-align: left; }

/* Recognition reads top-to-bottom instead of competing columns. */
.recognition-grid { display: block; }
.recognition .section-intro { max-width: 930px; }
.recognition .section-intro h2 { max-width: 900px; }
.signal-list { max-width: 900px; margin-top: 84px; display: grid; grid-template-columns: 1fr 1fr; gap: 58px 80px; }
.signal-list li { grid-template-columns: 62px 1fr; gap: 22px; padding: 0; }
.signal-list li > span { color: var(--orange); font: 500 28px/1 var(--sans); }
.signal-list h3 { margin: 0 0 12px; font-size: 25px; }
.signal-list p { font-size: 16px; }

/* Evolution remains an illustration, without three cards. */
.system-evolution { grid-template-columns: 1fr 56px 1.08fr 56px 1.22fr; gap: 22px; }
.evolution-stage,
.evolution-stage.evolution-growth,
.evolution-stage.evolution-forks { min-height: 380px; padding: 0; border-radius: 0; background: transparent; }
.evolution-meta span { font: 500 15px/1.2 var(--sans); }
.evolution-meta strong { font-size: 21px; }
.component-cluster { margin-bottom: 34px; }
.component-cluster b { bottom: -24px; font: 500 15px/1 var(--sans); }
.evolution-stage > p { font-size: 16px; }
.evolution-arrow { font-family: var(--sans); font-size: 38px; }

/* Responsibilities are four open editorial columns. */
.pillars { background: #f8f7f4; }
.icon-pillars { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 110px 120px; }
.icon-pillars .pillar { min-height: auto; padding: 0; }
.pillar-icon { width: 58px; height: 58px; margin-bottom: 42px; border-radius: 14px; background: #e7e8e4; }
.icon-pillars .pillar h3 { max-width: 480px; margin-bottom: 20px; }
.icon-pillars .pillar > p { max-width: 540px; font-size: 17px; line-height: 1.65; }

/* Align responsibilities with the recognition section. */
.pillars .eyebrow {
  margin-bottom: 28px;
  color: #087d62;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}
.pillars .eyebrow > span {
  display: none;
}
.pillars .section-heading {
  margin-bottom: 68px;
}
.pillars .section-heading h2 {
  max-width: 900px;
}
.pillars .icon-pillars {
  gap: 72px 120px;
}
.pillars .icon-pillars .pillar .pillar-icon {
  margin-bottom: 28px;
  background: rgba(15,185,141,.10);
  color: #087d62;
}
.pillars .icon-pillars .pillar h3 {
  margin-bottom: 12px;
  font-size: clamp(21px,1.8vw,25px);
}
.pillars .icon-pillars .pillar > p {
  color: #59656d;
  font-size: 17px;
  line-height: 1.58;
}

/* Match the responsibilities row to the four-column recognition rhythm. */
.pillars .icon-pillars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 58px);
}
.pillars .icon-pillars .pillar:nth-child(n) .pillar-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 26px;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--green);
}
.pillars .icon-pillars .pillar .pillar-icon svg {
  width: 30px;
  height: 30px;
}
.pillars .icon-pillars .pillar h3 {
  max-width: 260px;
}
.pillars .icon-pillars .pillar > p {
  max-width: 265px;
}

@media (max-width: 1040px) {
  .pillars .icon-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 64px;
  }
}
@media (max-width: 640px) {
  .pillars .icon-pillars {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

/* Match the code-sync typography to the preceding sections. */
.system-sync .section-intro > .eyebrow {
  margin-bottom: 28px;
  color: #087d62;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}
.system-sync .section-intro > .eyebrow > span {
  display: none;
}
.system-sync .section-intro > p:not(.eyebrow) {
  color: #59656d;
  font-size: 17px;
  line-height: 1.58;
}
.system-sync .section-intro > .sync-results-label {
  margin-top: 28px;
  color: var(--ink);
  font-weight: 500;
}
.sync-results {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.sync-results li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #59656d;
  font-size: 17px;
  line-height: 1.58;
}
.sync-results li::before {
  content: "✓";
  color: var(--green);
  font-weight: 600;
}

/* Figma and code: one open mapping, no white cards. */
.system-sync { background: #e9ece9; }
.sync-layout { grid-template-columns: .88fr 1.12fr; gap: 120px; }
.sync-visual { grid-template-columns: 1fr 90px 1fr; gap: 34px; }
.sync-card { min-height: 320px; padding: 0; border-radius: 0; background: transparent; }
.sync-card > svg { margin-bottom: 78px; }
.sync-card > span { font: 500 15px/1 var(--sans); }
.sync-card strong { font-size: 25px; }
.sync-card code { font-size: 14px; }
.sync-core { width: 72px; min-height: 72px; margin: auto; border-radius: 50%; }
.sync-core strong, .sync-core span { display: none; }

/* Process uses whitespace and large sequence numbers. */
.process-track { grid-template-columns: repeat(4,1fr); gap: 72px 50px; }
.process-track article,
.process-track article:nth-of-type(7),
.process-track article:nth-of-type(8) { min-height: 190px; padding: 0; border-radius: 0; background: transparent; }
.process-track article > span { font: 500 32px/1 var(--sans); }
.process-track h3 { margin: 52px 0 10px; font-size: 23px; }
.process-track p { font-size: 16px; line-height: 1.55; }

/* DS sits within the team. The illustration is open, not a dashboard. */
.dev-team { padding: 150px 0; }
.dev-team-grid { grid-template-columns: 1fr; gap: 90px; }
.dev-team h2 { max-width: 850px; }
.dev-team-grid > div:first-child > p:last-child { max-width: 690px; }
.embedded-team { max-width: 980px; }
.team-shell { min-height: 360px; padding: 0; background: transparent; }
.team-heading span { color: rgba(255,255,255,.72); font: 500 15px/1 var(--sans); }
.team-heading strong { margin-top: 6px; font-size: 28px; }
.team-roles { margin-top: 80px; gap: 56px; }
.team-roles span { padding: 0; background: transparent; color: rgba(255,255,255,.76); font-size: 19px; }
.embedded-design { width: 460px; min-height: 190px; right: 40px; bottom: 0; grid-template-columns: 52px 1fr; border-radius: 18px; }
.embedded-design small { font: 500 14px/1 var(--sans); }
.embedded-design strong { font-size: 34px; }
.embedded-design span { font-size: 16px; }

/* TV3 imagery becomes the visual proof - no enclosing panel or labels. */
.flagship { background: #f5f3ef; }
.flagship-grid { grid-template-columns: .84fr 1.16fr; gap: 100px; }
.flagship-copy h2 { max-width: 650px; font-size: clamp(42px,3.5vw,56px); }
.flagship-copy > p { font-size: 18px; line-height: 1.65; }
.flagship-copy blockquote { max-width: 610px; margin: 42px 0; padding: 0; border: 0; font-size: 22px; }
.flagship-visual { min-height: 650px; overflow: visible; border-radius: 0; background: transparent; }
.flagship-visual::after { display: none; }
.screen-desktop { width: 96%; right: -8%; top: 5%; filter: drop-shadow(0 38px 44px rgba(17,23,29,.17)); }
.screen-mobile { width: 58%; left: -4%; bottom: 2%; filter: drop-shadow(0 30px 34px rgba(17,23,29,.2)); }

/* Comparisons are content, not two framed cards. */
.debt-compare { grid-template-columns: 1fr 90px 1fr; gap: 46px; }
.debt-card { min-height: 380px; padding: 0; border: 0; border-radius: 0; background: transparent; }
.debt-card-head { padding: 0; font: 500 15px/1 var(--sans); }
.debt-card-head i { font-size: 14px; }
.component-tree { padding: 48px 0 36px; font: 400 15px/1.5 var(--mono); }
.debt-card > p { padding: 0; font-size: 16px; }

/* Project and proof content floats on the page instead of living in cards. */
.case-grid { gap: 48px; }
.case-card { overflow: visible; border-radius: 0; background: transparent; }
.case-card:hover { box-shadow: none; }
.case-card figure { height: 300px; border-radius: 14px; }
.case-card > a > div { min-height: 230px; padding: 28px 0 0; }
.case-card div > span { font: 500 14px/1 var(--sans); }
.case-card h3 { font-size: 30px; }
.case-card div > b { font-size: 15px; }

.metrics { gap: 80px; }
.metrics article { min-height: 0; padding: 0; border-radius: 0; background: transparent; }
.metrics strong { margin-bottom: 28px; }
.metrics p { max-width: 300px; font-size: 17px; }
.logo-row { min-height: 130px; margin-top: 90px; }
.logo-row img { max-width: 120px; opacity: .62; }

.quote-grid { gap: 60px; }
.quote-card { min-height: 410px; padding: 42px; }
.quote-card:not(.featured) { padding-left: 0; padding-right: 0; background: transparent; box-shadow: none; }
.quote-card h3 { font-size: 32px; }
.quote-card footer strong { font-size: 15px; }
.quote-card footer small { font-size: 13px; }

.fit .section-intro.centered { max-width: 940px; text-align: left; align-items: flex-start; margin-left: 0; }
.fit .section-intro.centered .eyebrow { justify-content: flex-start; }
.fit .section-intro.centered h2 { max-width: 900px; margin-left: 0; }
.fit-grid { gap: 120px; }
.fit-grid article { min-height: 0; padding: 0; border-radius: 0; background: transparent; }
.fit-grid article > span { font: 500 15px/1 var(--sans); }
.fit-grid h3 { margin: 38px 0 28px; font-size: 28px; }
.fit-grid li { padding: 11px 0 11px 30px; font-size: 16px; }

/* Shared inner pages inherit the same calmer language. */
.service-hero-grid { gap: 84px; }
.service-hero-copy { max-width: 820px; }
.outcome-strip,
.evidence-grid,
.phase-list,
.logic-grid,
.artifact-grid,
.scenario-grid,
.channel-board,
.review-pattern-grid,
.next-grid,
.channel-cards,
.contact-context-list { border: 0; }
.outcome-grid article,
.evidence-grid article,
.phase-list article,
.logic-grid article,
.artifact-grid article,
.scenario-grid > article,
.review-pattern-grid article,
.next-grid article,
.channel-cards article { border: 0; }

/* Large editorial illustrations may bleed beyond the content grid. */
.hero,
.complexity,
.system-sync { overflow: hidden; }

.hero-visual {
  width: 100%;
  height: clamp(600px, 52vw, 720px);
  max-width: none;
  margin: 0;
  position: relative;
}
.hero-visual img {
  width: calc(100% + clamp(220px, 18vw, 360px));
  max-width: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.evolution-illustration {
  width: calc(100% + clamp(120px, 10vw, 210px));
  max-width: none;
  margin: -28px 0 -72px;
}
.evolution-illustration img,
.sync-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.sync-illustration {
  display: block;
  width: calc(100% + clamp(170px, 15vw, 280px));
  height: clamp(660px, 58vw, 820px);
  max-width: none;
  margin: 0;
  position: relative;
}
.sync-illustration img {
  max-width: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1040px) {
  :root { --shell: min(100% - 64px, 980px); }
  .hero-grid { gap: 62px; }
  .sync-layout { grid-template-columns: 1fr; gap: 80px; }
  .sync-illustration { width: min(100%, 760px); height: auto; }
  .sync-illustration img { position: static; transform: none; }
  .flagship-grid { gap: 65px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 48px, 720px); }
  .section-pad, .section-pad-sm { padding: 112px 0; }
  .hero-grid, .flagship-grid { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; height: auto; max-width: 620px; margin: 0 auto; }
  .hero-visual img { width: 100%; position: static; transform: none; }
  .hero-system { max-width: 620px; }
  .signal-list { grid-template-columns: 1fr; }
  .evolution-illustration { width: calc(100% + 80px); margin: -10px -40px -30px; }
  .system-evolution { grid-template-columns: 1fr; gap: 38px; }
  .evolution-stage { min-height: 340px; }
  .evolution-arrow { transform: rotate(90deg); }
  .process-track { grid-template-columns: 1fr 1fr; }
  .embedded-design { right: 0; }
  .flagship-visual { min-height: 620px; }
  .debt-compare { grid-template-columns: 1fr; gap: 65px; }
  .compare-arrow { transform: rotate(90deg); }
  .case-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; gap: 80px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 40px); }
  body.home-v2 { font-size: 17px; }
  .section-pad, .section-pad-sm { padding: 88px 0; }
  h1 { font-size: clamp(44px,13vw,58px); }
  h2 { font-size: clamp(36px,10vw,46px); }
  .eyebrow { font-size: 15px; }
  .hero { padding: 70px 0 100px; }
  .hero-grid { gap: 72px; }
  .hero-visual { width: calc(100% + 16px); margin-left: -8px; }
  .hero-proof { grid-template-columns: repeat(3,1fr); gap: 18px; }
  .hero-proof div { display: block; }
  .hero-proof strong { margin-bottom: 10px; font-size: 33px; }
  .hero-proof span { font-size: 14px; }
  .hero-system { margin: 0 -4px; padding: 20px; }
  .request-card h2 { font-size: 27px; }
  .section-heading { margin-bottom: 58px; }
  .signal-list { margin-top: 64px; gap: 48px; }
  .signal-list li { grid-template-columns: 52px 1fr; }
  .signal-list li > span { font-size: 25px; }
  .icon-pillars { grid-template-columns: 1fr; gap: 78px; }
  .sync-visual { grid-template-columns: 1fr; gap: 55px; }
  .sync-illustration { width: calc(100% + 36px); margin-left: -18px; }
  .evolution-illustration { width: calc(100% + 48px); margin: -4px -24px -24px; }
  .sync-card { min-height: auto; }
  .sync-card > svg { margin-bottom: 44px; }
  .sync-core { transform: rotate(90deg); }
  .process-track { grid-template-columns: 1fr; gap: 58px; }
  .process-track article { min-height: 0; }
  .process-track h3 { margin-top: 28px; }
  .team-shell { min-height: 590px; }
  .team-roles { gap: 26px; }
  .embedded-design { width: auto; left: 0; right: 0; bottom: 0; }
  .flagship-visual { min-height: 470px; }
  .screen-desktop { width: 112%; right: -18%; }
  .screen-mobile { width: 66%; left: -6%; }
  .metrics { gap: 58px; }
  .logo-row { grid-template-columns: repeat(2,1fr); gap: 45px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-card:not(.featured) { min-height: 350px; }
}

/* =========================================================
   TV3 flagship case / direct landing page
========================================================= */
.tv3-hero { padding-top: 105px; overflow: hidden; }
.tv3-hero-layout { min-height: 720px; display: grid; grid-template-columns: 1.04fr .96fr; gap: 75px; align-items: center; }
.tv3-hero-copy h1 { font-size: clamp(54px,5.2vw,78px); }
.tv3-hero-copy h1 em { display: block; color: var(--orange); font-style: normal; }
.tv3-hero-copy .hero-lead { max-width: 720px; }
.tv3-wordmark-large { width: max-content; margin-bottom: 42px; opacity: .72; }
.tv3-wordmark-large b { font-size: 34px; }
.tv3-wordmark-large img { width: 34px; height: 46px; }
.tv3-hero-visual { min-height: 620px; position: relative; }
.tv3-shot { margin: 0; position: absolute; overflow: hidden; border-radius: 20px; background: #dfe2e1; box-shadow: 0 35px 80px rgba(17,23,29,.16); }
.tv3-shot img { width: 100%; height: 100%; object-fit: cover; }
.tv3-shot-main { width: 88%; height: 450px; right: 0; top: 35px; }
.tv3-shot-mobile { width: 42%; height: 360px; left: 0; bottom: 10px; }
.tv3-continuity { min-width: 310px; padding: 20px 23px; position: absolute; right: 0; bottom: 38px; display: flex; flex-direction: column; gap: 7px; border-radius: 14px; background: var(--ink); color: #fff; }
.tv3-continuity span { color: var(--orange); font: 500 13px/1 var(--mono); }
.tv3-continuity strong { font: 500 13px/1.4 var(--mono); }
.tv3-proof { padding: 20px 0 105px; }
.tv3-proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tv3-proof article { min-height: 210px; padding: 32px; border-radius: 18px; background: #e9eae7; }
.tv3-proof strong { margin-bottom: auto; font-size: 28px; letter-spacing: -.035em; }
.tv3-proof p { margin: 45px 0 0; color: var(--muted); font-size: 15px; }
.tv3-two-col { display: block; }
.tv3-two-col .section-intro { max-width: 920px; }
.tv3-long-copy { max-width: 760px; margin-top: 38px; padding-top: 0; }
.tv3-long-copy p { margin-bottom: 28px; color: var(--muted); font-size: 20px; line-height: 1.6; }
.tv3-long-copy > strong { display: block; margin-top: 38px; font-size: 23px; line-height: 1.45; }
.tv3-long-copy .text-link { margin-top: 35px; }
.tv3-evolution { background: var(--ink); color: #fff; }
.tv3-timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tv3-timeline article { min-height: 340px; padding: 30px; border-radius: 18px; background: rgba(255,255,255,.055); }
.tv3-timeline article:nth-child(4) { background: var(--orange); color: var(--ink); }
.tv3-timeline span, .tv3-work-grid > article > span, .tv3-system-stack article > span { color: var(--orange); font: 500 13px/1 var(--mono); }
.tv3-timeline article:nth-child(4) span { color: rgba(17,23,29,.7); }
.tv3-timeline h3 { margin: auto 0 20px; font-size: 25px; }
.tv3-timeline p { color: rgba(255,255,255,.65); font-size: 15px; }
.tv3-timeline article:nth-child(4) p { color: rgba(17,23,29,.72); }
.tv3-work-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.tv3-work-grid > article { min-height: 315px; padding: 36px; border-radius: 18px; background: #edece8; }
.tv3-work-grid h3 { margin: auto 0 17px; font-size: 31px; }
.tv3-work-grid p { color: var(--muted); font-size: 16px; }
.tv3-examples { background: #e7eae8; }
.tv3-examples .section-intro { max-width: 850px; margin-bottom: 75px; }
.tv3-examples .section-intro > p:last-child { max-width: 680px; color: var(--muted); font-size: 18px; }
.tv3-gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.tv3-gallery figure { min-height: 480px; margin: 0; overflow: hidden; position: relative; border-radius: 20px; background: #dfe2e1; }
.tv3-gallery figure:first-child { grid-row: span 2; min-height: 984px; }
.tv3-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.tv3-gallery figcaption { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 15px 18px; border-radius: 12px; background: rgba(17,23,29,.9); color: #fff; font-size: 14px; }
.tv3-system { background: var(--ink); color: #fff; }
.tv3-system-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: center; }
.tv3-system .section-intro h2 { color: #fff; }
.tv3-system .section-intro > p:last-child { max-width: 640px; color: rgba(255,255,255,.68); font-size: 18px; }
.tv3-system-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tv3-system-stack article { min-height: 225px; padding: 28px; border-radius: 18px; background: rgba(255,255,255,.055); }
.tv3-system-stack article:nth-child(4) { background: rgba(35,180,135,.15); }
.tv3-system-stack strong { margin-top: auto; font-size: 20px; }
.tv3-system-stack p { margin: 8px 0 0; color: rgba(255,255,255,.63); font-size: 14px; }
.tv3-value { background: #f7f6f3; }

@media (max-width: 960px) {
  .tv3-hero-layout { grid-template-columns: 1fr; }
  .tv3-hero-visual { min-height: 590px; }
  .tv3-two-col, .tv3-system-layout { grid-template-columns: 1fr; gap: 55px; }
  .tv3-long-copy { padding-top: 0; }
  .tv3-timeline { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .tv3-hero { padding-top: 65px; }
  .tv3-hero-layout { min-height: auto; gap: 55px; }
  .tv3-hero-copy h1 { font-size: clamp(44px,13vw,60px); }
  .tv3-hero-visual { min-height: 480px; }
  .tv3-shot-main { width: 94%; height: 350px; }
  .tv3-shot-mobile { width: 47%; height: 280px; }
  .tv3-continuity { min-width: 0; left: 30%; right: 0; bottom: 12px; }
  .tv3-proof-grid, .tv3-timeline, .tv3-work-grid, .tv3-system-stack { grid-template-columns: 1fr; }
  .tv3-gallery { grid-template-columns: 1fr; }
  .tv3-gallery figure, .tv3-gallery figure:first-child { grid-row: auto; min-height: 430px; }
  .tv3-long-copy p { font-size: 18px; }
}

/* Shared legibility and line cleanup across all V2 inner pages. */
.home-v2 small,
.home-v2 .form-head,
.home-v2 .review-person small,
.home-v2 .review-person span,
.home-v2 .about-quote-author span,
.home-v2 .state-matrix span,
.home-v2 .scenario-card span,
.home-v2 .brand-channels b,
.home-v2 .handoff-head,
.home-v2 .handoff-board article span,
.home-v2 .case-row-copy dd,
.home-v2 .contact-direct small,
.home-v2 .contact-fit-list span,
.home-v2 .footer-bottom,
.home-v2 .channel-cards span,
.home-v2 .contact-context-list > li > span { font-size: 13px; }
.home-v2 .field label { font-size: 15px; font-weight: 500; }
.home-v2 .field input, .home-v2 .field textarea { font-size: 16px; }
.home-v2 .process-statement, .home-v2 .about-quote blockquote,
.home-v2 .reviews-board blockquote { font-weight: 500; }

.audit-grid, .evidence-grid, .evolution-grid, .logic-grid, .scenario-grid,
.channel-cards, .next-grid { gap: 18px; border: 0; }
.audit-grid article, .evidence-grid article, .evolution-grid article,
.logic-grid article, .scenario-grid > article, .channel-cards > a,
.next-grid article { border: 0; border-radius: 16px; }
.audit-grid article, .scenario-grid > article, .channel-cards > a,
.next-grid article { background: #f5f4f1; }
.evidence-grid article, .evolution-grid article, .logic-grid article { background: rgba(255,255,255,.055); }
.review-signals, .phase-list, .history-timeline, .contact-prompts,
.contact-context-list, .check-list, .status-next, .error-links,
.case-row, .case-row:last-child, .review-story, .review-story:last-child,
.case-row-copy dl { border-top: 0; border-bottom: 0; }
.review-signals article, .phase-list article, .phase-list li,
.history-timeline article, .contact-prompts li, .contact-context-list li,
.check-list li, .status-next article, .error-links a,
.case-row-copy dl div { border: 0; }
.review-signals, .contact-prompts, .contact-context-list, .check-list,
.status-next, .error-links { display: grid; gap: 10px; }
.review-signals article, .contact-prompts li, .contact-context-list li,
.check-list li, .status-next article, .error-links a { border-radius: 10px; }

@media (max-width: 820px) {
  .audit-grid article, .audit-grid article:nth-child(2),
  .evidence-grid article, .evidence-grid article:nth-child(2),
  .evolution-grid article, .logic-grid article, .logic-grid article:nth-child(2),
  .scenario-grid > article, .scenario-grid > article:nth-child(2),
  .channel-cards > a, .next-grid article { border: 0; }
}

/* Final shared simplification for case and service pages. */
.tv3-shot { overflow: visible; border-radius: 0; background: transparent; box-shadow: none; }
.tv3-shot img { object-fit: contain; filter: drop-shadow(0 34px 42px rgba(17,23,29,.18)); }
.tv3-continuity { display: none; }
.tv3-proof-grid { gap: 70px; }
.tv3-proof article { min-height: 0; padding: 0; border-radius: 0; background: transparent; }
.tv3-proof strong { font-size: 31px; }
.tv3-proof p { margin-top: 24px; font-size: 17px; line-height: 1.6; }
.tv3-timeline { gap: 54px; }
.tv3-timeline article,
.tv3-timeline article:nth-child(4) { min-height: 310px; padding: 0; border-radius: 0; background: transparent; color: #fff; }
.tv3-timeline span,
.tv3-timeline article:nth-child(4) span { color: var(--orange); font: 500 16px/1 var(--sans); }
.tv3-timeline h3 { font-size: 27px; }
.tv3-timeline article:nth-child(4) p { color: rgba(255,255,255,.65); }
.tv3-work-grid { gap: 90px 110px; }
.tv3-work-grid > article { min-height: 250px; padding: 0; border-radius: 0; background: transparent; }
.tv3-work-grid > article > span { font: 500 30px/1 var(--sans); }
.tv3-work-grid h3 { font-size: 31px; }
.tv3-gallery { gap: 54px; align-items: center; }
.tv3-gallery figure,
.tv3-gallery figure:first-child { min-height: 0; overflow: visible; border-radius: 0; background: transparent; }
.tv3-gallery img { height: auto; object-fit: contain; filter: drop-shadow(0 30px 40px rgba(17,23,29,.16)); }
.tv3-gallery figcaption { position: static; margin-top: 22px; padding: 0; border-radius: 0; background: transparent; color: var(--muted); font-size: 16px; }
.tv3-system-layout { display: block; }
.tv3-system-layout .section-intro { max-width: 850px; }
.tv3-system-stack { max-width: 980px; margin-top: 90px; grid-template-columns: repeat(4,1fr); gap: 50px; }
.tv3-system-stack article,
.tv3-system-stack article:nth-child(4) { min-height: 250px; padding: 0; border-radius: 0; background: transparent; }
.tv3-system-stack article > span { font: 500 30px/1 var(--sans); }
.tv3-system-stack strong { margin-top: 70px; font-size: 22px; }
.tv3-system-stack p { font-size: 16px; line-height: 1.55; }

.audit-grid, .evidence-grid, .evolution-grid, .logic-grid, .scenario-grid,
.channel-cards, .next-grid { gap: 64px; }
.audit-grid article, .evidence-grid article, .evolution-grid article,
.logic-grid article, .scenario-grid > article, .channel-cards > a,
.next-grid article { padding-left: 0; padding-right: 0; border-radius: 0; background: transparent; }
.evidence-grid article, .evolution-grid article, .logic-grid article { background: transparent; }
.review-signals, .contact-prompts, .contact-context-list, .check-list,
.status-next, .error-links { gap: 24px; }
.review-signals article, .contact-prompts li, .contact-context-list li,
.check-list li, .status-next article, .error-links a { border-radius: 0; background: transparent; }

@media (max-width: 820px) {
  .tv3-proof-grid, .tv3-timeline, .tv3-system-stack { grid-template-columns: 1fr 1fr; }
  .tv3-work-grid { gap: 70px 50px; }
}

@media (max-width: 560px) {
  .tv3-proof-grid, .tv3-timeline, .tv3-work-grid, .tv3-system-stack { grid-template-columns: 1fr; gap: 64px; }
  .site-nav > a:not(.button) { border-bottom: 0; }
  .tv3-shot-main { width: 106%; right: -13%; }
  .tv3-shot-mobile { width: 58%; left: -4%; }
  .tv3-gallery { gap: 70px; }
}


/* 2026-09-16 story and visual scale refinement */
.dev-team,
.flagship { overflow: hidden; }

.dev-team-grid {
  grid-template-columns: .68fr 1.32fr;
  gap: 54px;
}
.dev-team-copy { position: relative; z-index: 2; }
.dev-team-visual {
  width: calc(100% + clamp(190px, 16vw, 330px));
  height: clamp(650px, 55vw, 790px);
  max-width: none;
  margin: -90px 0 -90px;
  position: relative;
}
.dev-team-visual img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.flagship-grid {
  grid-template-columns: .72fr 1.28fr;
  gap: 40px;
}
.flagship-copy { position: relative; z-index: 2; }
.flagship-visual {
  width: calc(100% + clamp(170px, 14vw, 290px));
  min-height: 720px;
  margin-right: calc(clamp(170px, 14vw, 290px) * -1);
}
.screen-desktop {
  width: 126%;
  right: -24%;
  top: 1%;
}
.screen-mobile {
  width: 76%;
  left: -10%;
  bottom: -4%;
}

@media (max-width: 1040px) {
  .dev-team-grid { grid-template-columns: 1fr; gap: 38px; }
  .dev-team-visual {
    width: calc(100% + 120px);
    height: auto;
    margin: -40px -60px -70px;
  }
  .dev-team-visual img { position: static; transform: none; }
  .flagship-grid { grid-template-columns: 1fr; gap: 40px; }
  .flagship-visual {
    width: calc(100% + 120px);
    min-height: 690px;
    margin: 0 -60px;
  }
}

@media (max-width: 560px) {
  .dev-team-visual {
    width: calc(100% + 68px);
    margin: -12px -34px -44px;
  }
  .flagship-visual {
    width: calc(100% + 64px);
    min-height: 500px;
    margin: -10px -32px 0;
  }
  .screen-desktop { width: 122%; right: -25%; top: 3%; }
  .screen-mobile { width: 74%; left: -8%; bottom: 0; }
}


/* 2026-09-16 illustration, TV3 composition and accent balance */
.debt,
.knowledge,
.flagship { overflow: hidden; }

.debt-layout {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 52px;
  align-items: center;
}
.debt-copy { position: relative; z-index: 2; }
.debt-copy h2 { max-width: 610px; }
.debt-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255,255,255,.62);
  font-size: 18px;
}
.debt-copy .debt-statement {
  max-width: 570px;
  margin: 34px 0 0;
  color: #fff;
  text-align: left;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.debt-visual,
.knowledge-visual {
  width: calc(100% + clamp(180px, 15vw, 300px));
  height: clamp(650px, 55vw, 790px);
  max-width: none;
  margin: -70px 0;
  position: relative;
}
.debt-visual img,
.knowledge-visual img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.knowledge-grid {
  grid-template-columns: .68fr 1.32fr;
  gap: 52px;
  align-items: center;
}
.knowledge-visual {
  width: calc(100% + clamp(150px, 13vw, 260px));
  margin-top: -95px;
  margin-bottom: -95px;
}
.flagship-cta { margin-top: 4px; }
.flagship-visual { min-height: 760px; }
.screen-desktop { width: 145%; right: -38%; top: 0; }
.screen-mobile { z-index: 3; width: 53%; left: 24%; bottom: 7%; }

/* Orange is reserved for primary actions and key emphasis. */
.recognition .eyebrow > span,
.system-sync .eyebrow > span,
.knowledge .eyebrow > span,
.trust .eyebrow > span { background: var(--green); }
.signal-list li:nth-child(even) > span,
.process-track article:nth-of-type(n+5) > span,
.metrics article:nth-child(2) strong { color: var(--green); }
.icon-pillars .pillar:nth-child(2) .pillar-icon,
.icon-pillars .pillar:nth-child(4) .pillar-icon {
  background: rgba(15,185,141,.10);
  color: #087d62;
}

@media (max-width: 1040px) {
  .debt-layout,
  .knowledge-grid { grid-template-columns: 1fr; gap: 34px; }
  .debt-visual,
  .knowledge-visual {
    width: calc(100% + 120px);
    height: auto;
    margin: -28px -60px -58px;
  }
  .debt-visual img,
  .knowledge-visual img { position: static; transform: none; }
  .knowledge-visual { margin-top: -35px; }
  .screen-desktop { width: 142%; right: -37%; }
  .screen-mobile { width: 54%; left: 22%; bottom: 7%; }
}

@media (max-width: 560px) {
  .debt-visual,
  .knowledge-visual {
    width: calc(100% + 72px);
    margin: -8px -36px -38px;
  }
  .knowledge-visual { margin-top: -12px; }
  .debt-copy .debt-statement { font-size: 20px; }
  .flagship-visual { min-height: 520px; }
  .screen-desktop { width: 145%; right: -40%; top: 3%; }
  .screen-mobile { width: 56%; left: 19%; bottom: 9%; }
}


/* Mobile TV3 devices form one overlapping composition. */
@media (max-width: 560px) {
  .screen-mobile {
    width: 58%;
    left: 17%;
    bottom: 38%;
  }
}


/* 2026-09-16 CTA sizing, TV3 proximity and footer refinement */
.button {
  padding: 18px 26px;
  font-size: 18px;
}
.button-small {
  padding: 14px 19px;
  font-size: 17px;
}
.button-teal,
.site-header .button {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}
.button-teal:hover,
.site-header .button:hover {
  background: #16c99a;
  border-color: #16c99a;
  box-shadow: 0 14px 32px rgba(15,185,141,.20);
}

/* Keep the TV3 devices large, but connect them to the copy. */
@media (min-width: 1041px) {
  .screen-desktop { right: -19%; }
  .screen-mobile { left: 11%; }
}

/* A calmer, more legible footer without boxes or decorative rules. */
.site-footer {
  padding: 94px 0 38px;
  position: relative;
  overflow: hidden;
}
.footer-main {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 100px;
  align-items: start;
}
.brand-footer img {
  width: 94px;
}
.footer-main nav {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 20px 64px;
}
.footer-main nav a {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.35;
}
.footer-main nav a:hover,
.footer-bottom a:hover {
  color: #63d7b8;
}
.footer-bottom {
  padding-top: 0;
  border-top: 0;
  align-items: center;
  color: rgba(255,255,255,.48);
  font: 400 13px/1.4 var(--sans);
}
.footer-bottom div { gap: 30px; }
.footer-bottom a {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

@media (max-width: 820px) {
  .footer-main {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 62px;
    padding-bottom: 72px;
  }
  .footer-main nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 30px;
  }
  .footer-bottom {
    gap: 28px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .button {
    width: auto;
    min-height: 58px;
    font-size: 18px;
  }
  .button-small {
    min-height: 50px;
    font-size: 17px;
  }
  .site-footer { padding-top: 76px; }
  .brand-footer img { width: 82px; }
  .footer-main nav { grid-template-columns: 1fr; gap: 20px; }
  .footer-main nav a { font-size: 18px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom div { gap: 24px; flex-wrap: wrap; }
}


/* 2026-09-16 final storytelling rhythm and fit simplification */
.fit-simple {
  max-width: 1110px;
}
.fit-question {
  max-width: 860px;
  margin: 0 0 96px;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.fit-question span {
  color: var(--green);
}
.fit-answer {
  max-width: 760px;
  margin-left: auto;
}
.fit-answer h3 {
  margin: 0 0 36px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.fit-answer ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fit-answer li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}
.fit-answer li::before {
  content: "✓";
  color: var(--green);
  font-weight: 600;
}

/* Deliberately vary the composition across the four consecutive stories. */
@media (min-width: 1041px) {
  .flagship-grid {
    grid-template-columns: 1.18fr .82fr;
    gap: 58px;
  }
  .flagship-visual {
    order: 1;
    width: calc(100% + clamp(180px, 14vw, 280px));
    margin-right: 0;
    margin-left: calc(clamp(180px, 14vw, 280px) * -1);
  }
  .flagship-copy {
    order: 2;
  }
  .screen-desktop {
    width: 145%;
    right: auto;
    left: -25%;
    top: 0;
  }
  .screen-mobile {
    width: 53%;
    left: auto;
    right: 8%;
    bottom: 7%;
  }

  .debt-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
  .debt-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    column-gap: clamp(70px, 8vw, 130px);
    align-items: start;
  }
  .debt-copy .eyebrow {
    grid-column: 1 / -1;
  }
  .debt-copy h2 {
    grid-column: 1;
    grid-row: 2 / span 2;
    max-width: 720px;
    margin-bottom: 0;
  }
  .debt-copy > p:not(.eyebrow):not(.debt-statement) {
    grid-column: 2;
    grid-row: 2;
    margin-top: 8px;
  }
  .debt-copy .debt-statement {
    grid-column: 2;
    grid-row: 3;
    margin-top: 26px;
  }
  .debt-visual {
    width: calc(100% + 180px);
    height: 500px;
    margin: -34px -90px -98px;
  }
  .debt-visual img {
    width: min(1220px, 100%);
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .knowledge-grid {
    grid-template-columns: 1.2fr .8fr;
    gap: 72px;
  }
  .knowledge-visual {
    order: 1;
    width: calc(100% + clamp(170px, 13vw, 270px));
    margin-left: calc(clamp(170px, 13vw, 270px) * -1);
    margin-right: 0;
  }
  .knowledge .section-intro {
    order: 2;
  }
}

@media (max-width: 1040px) {
  .fit-question {
    margin-bottom: 70px;
  }
}

@media (max-width: 560px) {
  .fit-question {
    margin-bottom: 56px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .fit-answer h3 {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .fit-answer li {
    grid-template-columns: 24px 1fr;
    gap: 10px;
    font-size: 17px;
  }
}


/* Keep large visuals clear of their reading zones. */
@media (min-width: 1041px) {
  .screen-desktop {
    width: 130%;
  }
  .debt-visual {
    margin-top: 18px;
  }
  .debt-visual img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }
}


/* Refined recognition hierarchy */
.recognition-question {
  margin: 0 0 28px;
  color: #087d62;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.recognition .signal-list {
  margin-top: 68px;
}
.recognition .signal-list li:nth-child(n) > span {
  color: var(--green);
}
.recognition .signal-list p {
  color: #59656d;
  font-size: 17px;
  line-height: 1.58;
}

/* 2026-09-17 recognition flow and TV3 mark */
.recognition-head {
  max-width: 930px;
}
.recognition-head h2 {
  max-width: 900px;
  margin-bottom: 0;
}
.recognition .signal-list {
  max-width: none;
  margin-top: 68px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 58px);
}
.recognition .signal-list li {
  display: block;
}
.recognition .signal-list li > span {
  display: block;
  margin-bottom: 26px;
}
.recognition .signal-list h3 {
  max-width: 260px;
  font-size: clamp(21px, 1.8vw, 25px);
}
.recognition .signal-list p {
  max-width: 265px;
}
.recognition-outro {
  max-width: 700px;
  margin: 104px 0 0 auto;
}
.recognition-outro h3 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.recognition-outro p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}
.tv3-wordmark img {
  object-fit: contain;
}

@media (max-width: 1040px) {
  .recognition .signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 64px;
  }
}

@media (max-width: 640px) {
  .recognition .signal-list {
    margin-top: 54px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .recognition .signal-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }
  .recognition .signal-list li > span {
    margin-bottom: 0;
    font-size: 24px;
  }
  .recognition .signal-list h3,
  .recognition .signal-list p {
    max-width: none;
  }
  .recognition-outro {
    margin-top: 72px;
    margin-left: 0;
  }
  .recognition-outro p {
    font-size: 17px;
  }
}


/* 2026-09-17 compact code-system composition */
@media (min-width: 1041px) {
  .system-sync {
    padding: 76px 0;
    position: relative;
    overflow: hidden;
  }
  .system-sync .sync-layout {
    min-height: 0;
    display: block;
    position: relative;
  }
  .system-sync .section-intro {
    width: 43%;
    max-width: 530px;
    position: relative;
    z-index: 2;
  }
  .home-v2 .system-sync .sync-illustration.reveal {
    width: min(54vw, 880px);
    height: auto;
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: calc((100vw - 100%) / -2);
    transform: translateY(-50%);
    pointer-events: none;
  }
  .system-sync .sync-illustration img {
    width: 100%;
    max-width: none;
    height: auto;
    position: static;
    transform: none;
  }
}


/* 2026-09-17 four-phase product process */
.process .eyebrow {
  color: var(--green) !important;
}
.process .eyebrow > span {
  background: var(--green);
}
.process-heading {
  max-width: 860px;
  display: block;
  margin-bottom: 58px;
}
.process-heading h2 {
  max-width: 840px;
}
.process-description {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(70px, 7vw, 108px);
  overflow: visible;
}
.process-phase {
  min-width: 0;
}
.process-phase-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 24px;
  padding: 6px 9px;
  border-radius: 2px;
  background: rgba(15, 185, 141, .12);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.process-phase-label > span {
  color: #087d62;
  font: 500 12px/1 var(--sans);
}
.process-phase-steps {
  display: grid;
  grid-template-rows: minmax(104px, auto) 30px auto;
  gap: 7px;
}
.process-track article,
.process-track article:nth-of-type(7),
.process-track article:nth-of-type(8) {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.process-track h3 {
  margin: 0 0 8px;
  font-size: clamp(21px, 1.6vw, 24px);
  line-height: 1.2;
}
.process-track article p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.process-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-10px);
}
.process .process-link {
  float: none;
  display: inline-flex;
  margin-top: 54px;
}

@media (min-width: 1041px) {
  .process {
    padding: 108px 0;
  }
}

@media (max-width: 1040px) {
  .process-heading {
    margin-bottom: 54px;
  }
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 62px 76px;
  }
}

@media (max-width: 620px) {
  .process-heading {
    margin-bottom: 48px;
  }
  .process-description {
    margin-top: 22px;
    font-size: 17px;
  }
  .process-track {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .process-phase-label {
    margin-bottom: 22px;
  }
  .process-phase-steps {
    grid-template-rows: auto 28px auto;
    gap: 6px;
  }
  .process-arrow {
    transform: translateY(-7px);
  }
  .process .process-link {
    margin-top: 46px;
  }
}


/* 2026-09-17 compact embedded-team composition */
@media (min-width: 1041px) {
  .dev-team {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .dev-team-grid {
    min-height: 0;
    display: block;
    position: relative;
  }
  .dev-team-copy {
    width: 42%;
    max-width: 520px;
    position: relative;
    z-index: 2;
  }
  .dev-team-copy .eyebrow {
    color: var(--green);
  }
  .dev-team-copy h2 {
    max-width: 520px;
    font-size: clamp(42px, 3.2vw, 52px);
  }
  .dev-team-grid > .dev-team-copy > p:last-child {
    max-width: 500px;
    color: #b8c1c7;
    font-size: 18px;
    line-height: 1.62;
  }
  .home-v2 .dev-team-visual.reveal {
    width: min(61vw, 1040px);
    height: auto;
    max-width: none;
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: calc((100vw - 100%) / -2 - 40px);
    left: auto;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .dev-team-visual img {
    width: 100%;
    max-width: none;
    height: auto;
    position: static;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .dev-team {
    padding: 92px 0 58px;
    overflow: hidden;
  }
  .dev-team-grid {
    display: block;
  }
  .dev-team-copy {
    width: 100%;
    max-width: 650px;
  }
  .dev-team-copy .eyebrow {
    color: var(--green);
  }
  .dev-team-copy h2 {
    max-width: 620px;
  }
  .dev-team-grid > .dev-team-copy > p:last-child {
    max-width: 580px;
    color: #b8c1c7;
  }
  .home-v2 .dev-team-visual.reveal {
    width: calc(100% + 120px);
    height: auto;
    margin: 30px -60px -42px;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
  }
  .dev-team-visual img {
    width: 100%;
    height: auto;
    position: static;
    transform: none;
  }
}

@media (max-width: 560px) {
  .dev-team {
    padding: 76px 0 46px;
  }
  .dev-team-grid > .dev-team-copy > p:last-child {
    font-size: 17px;
  }
  .home-v2 .dev-team-visual.reveal {
    width: calc(100% + 60px);
    margin: 28px -30px -28px;
  }
}


/* 2026-09-17 TV3 proof block hierarchy */
.flagship-copy .eyebrow {
  margin-bottom: 24px;
  color: #087d62;
}
.flagship-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.flagship-copy .flagship-cta {
  margin-top: 32px;
}

@media (min-width: 1041px) {
  .flagship {
    padding-bottom: 120px;
  }
}

@media (max-width: 620px) {
  .flagship-copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 17px;
  }
  .flagship-copy .flagship-cta {
    margin-top: 28px;
  }
}


/* 2026-09-17 text-led TV3 proof composition */
.flagship-copy > .flagship-eyebrow {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  margin: 0 0 24px !important;
  color: var(--green) !important;
  font-size: 15px;
  line-height: 1.4;
}

@media (min-width: 1041px) {
  .flagship {
    padding: 110px 0;
    position: relative;
    z-index: 2;
    overflow: visible;
  }
  .flagship-grid {
    min-height: 0;
    display: block;
    position: relative;
  }
  .flagship-copy {
    width: 42%;
    max-width: 590px;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }
  .home-v2 .flagship-visual.reveal {
    width: min(70vw, 1120px);
    height: clamp(660px, 48vw, 740px);
    min-height: 0;
    max-width: none;
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: calc((100vw - 100%) / -2 - 50px);
    right: auto;
    transform: translateY(-50%);
    overflow: visible;
    border-radius: 0;
    background: transparent;
    pointer-events: none;
  }
  .flagship-visual::after {
    display: none;
  }
  .debt {
    position: relative;
    z-index: 1;
  }
}


/* 2026-09-17 center-anchored storytelling visuals */
@media (min-width: 1041px) {
  .home-v2 .system-sync .sync-illustration.reveal {
    left: 50%;
    right: auto;
  }

  .home-v2 .dev-team-visual.reveal {
    left: 50%;
    right: auto;
  }

  .home-v2 .flagship-visual.reveal {
    width: min(86vw, 1480px);
    height: clamp(820px, 66vw, 960px);
    top: 65%;
    right: 50%;
    left: auto;
  }
  .flagship .screen-desktop {
    width: 115%;
    top: -2%;
    right: auto;
    left: -15%;
  }
  .flagship .screen-mobile {
    width: 53%;
    right: 8%;
    left: auto;
    bottom: 4%;
  }
}


/* 2026-09-17 design-debt story refinement */
@media (min-width: 1041px) {
  .home-v2 .debt.section-pad {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .home-v2 .debt-layout {
    min-height: 0;
    display: block;
    position: relative;
  }
  .home-v2 .debt-copy {
    width: 48%;
    max-width: 640px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .home-v2 .debt-copy .eyebrow {
    color: var(--green);
  }
  .home-v2 .debt-copy .eyebrow > span {
    background: var(--green);
  }
  .home-v2 .debt-copy h2 {
    max-width: 640px;
    margin-bottom: 28px;
  }
  .home-v2 .debt-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255,255,255,.66);
    font-size: 18px;
    line-height: 1.6;
  }
  .home-v2 .debt-copy .debt-statement {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .home-v2 .debt-visual.reveal {
    width: min(61vw, 1040px);
    height: auto;
    max-width: none;
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .home-v2 .debt-visual img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    position: static;
    transform: none;
  }
}


/* 2026-09-17 accumulated-context story refinement */
@media (min-width: 1041px) {
  .home-v2 .knowledge.section-pad {
    padding: 110px 0;
    position: relative;
    z-index: 2;
    overflow: visible;
  }
  .home-v2 .knowledge-grid {
    min-height: 0;
    display: block;
    position: relative;
  }
  .home-v2 .knowledge .section-intro {
    width: 42%;
    max-width: 590px;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }
  .home-v2 .knowledge .section-intro .eyebrow {
    color: var(--green);
  }
  .home-v2 .knowledge .section-intro h2 {
    max-width: 590px;
  }
  .home-v2 .knowledge .section-intro > p:last-child {
    max-width: 580px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
  }
  .home-v2 .knowledge-visual.reveal {
    width: min(61vw, 1040px);
    height: auto;
    max-width: none;
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 50%;
    left: auto;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .home-v2 .knowledge-visual img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    position: static;
    transform: none;
  }
}


/* 2026-09-17 supporting cases refinement */
.home-v2 .cases .eyebrow {
  color: var(--green);
}
.home-v2 .cases .eyebrow > span {
  background: var(--green);
}
.home-v2 .cases .section-heading {
  margin-bottom: 56px;
}
.home-v2 .cases .case-card {
  cursor: default;
}
.home-v2 .cases .case-card:hover {
  transform: none;
  box-shadow: none;
}
.home-v2 .cases .case-card > div {
  min-height: 180px;
  padding: 28px 0 0;
  display: flex;
  flex-direction: column;
}
.home-v2 .cases .case-card div > span {
  color: var(--green);
}
.home-v2 .cases .case-card:hover figure img {
  transform: none;
}
.home-v2 .cases .case-card:nth-child(3):hover figure img {
  transform: scale(1.25);
}
.home-v2 .cases .cases-all-link {
  display: inline-flex;
  margin-top: 46px;
}
@media (min-width: 1041px) {
  .home-v2 .cases.section-pad {
    padding-bottom: 110px;
  }
}


/* 2026-09-17 experience proof refinement */
.home-v2 .trust .eyebrow {
  color: var(--green);
}
.home-v2 .trust-heading {
  max-width: 900px;
}
.home-v2 .trust .metrics {
  margin-top: 56px;
}
.home-v2 .trust .metrics article strong,
.home-v2 .trust .metrics article:nth-child(2) strong {
  margin-bottom: 14px;
  color: #59656d;
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
}
.home-v2 .trust .logo-row {
  min-height: 112px;
  margin-top: 58px;
}
.home-v2 .trust .logo-row img {
  max-width: 125px;
  max-height: 54px;
  opacity: .70;
}
.home-v2 .trust .logo-row .tv3-mark {
  width: auto;
  max-width: 26px;
  max-height: 46px;
  filter: grayscale(1);
  opacity: .70;
}
.home-v2 .trust .logo-row img[src*="lnb"] {
  transform: scale(1.65);
}
.home-v2 .trust .logo-row img[src*="starfm"] {
  transform: scale(.92);
}
@media (min-width: 1041px) {
  .home-v2 .trust.section-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}


/* 2026-09-17 testimonials approved refinement */
.home-v2 .testimonials .eyebrow {
  color: var(--green);
}
.home-v2 .testimonials .eyebrow > span {
  background: var(--green);
}
.home-v2 .testimonials .section-heading {
  margin-bottom: 44px;
}


/* 2026-09-17 fit alignment and Lucide checks */
.home-v2 .fit-simple {
  max-width: 1110px;
}
.home-v2 .fit-question {
  max-width: 900px;
  margin-bottom: 58px;
}
.home-v2 .fit-answer {
  max-width: 820px;
  margin-left: 0;
}
.home-v2 .fit-answer li {
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 19px;
}
.fit-grid li::before,
.check-list li::before,
.sync-benefits li::before,
.sync-results li::before,
.fit-answer li::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-color: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.fit-grid li::before,
.check-list li::before,
.sync-benefits li::before {
  top: 14px;
}
.fit-no li::before {
  content: "−";
  width: auto;
  height: auto;
  background: none;
  -webkit-mask: none;
  mask: none;
}
@media (max-width: 560px) {
  .home-v2 .fit-question {
    margin-bottom: 44px;
  }
}


/* 2026-09-17 fit cross-block alignment */
.home-v2 .fit-simple {
  width: var(--shell);
  max-width: none;
}
.home-v2 .fit-question {
  max-width: 900px;
  font-size: clamp(42px, 4.1vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}


/* 2026-09-17 horizontal collaboration-fit criteria */
.home-v2 .fit-answer {
  width: 100%;
  max-width: none;
}
.home-v2 .fit-answer ul {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 42px);
}
.home-v2 .fit-answer li {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  font-size: 16px;
  line-height: 1.48;
}
.home-v2 .fit-answer li::before {
  width: 20px;
  height: 20px;
  align-self: center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}
@media (max-width: 1040px) {
  .home-v2 .fit-answer ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 42px;
  }
}
@media (max-width: 560px) {
  .home-v2 .fit-answer ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-v2 .fit-answer li {
    font-size: 17px;
  }
}


/* 2026-09-17 collaboration-fit content cards */
.home-v2 .fit-question {
  max-width: 920px;
  margin-bottom: 24px;
}
.home-v2 .fit-description {
  max-width: 760px;
  margin: 0 0 68px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.home-v2 .fit-answer ul {
  align-items: start;
}
.home-v2 .fit-answer li {
  display: block;
  color: var(--ink);
  font-size: inherit;
  line-height: inherit;
}
.home-v2 .fit-answer li::before {
  width: 24px;
  height: 24px;
  margin-bottom: 28px;
}
.home-v2 .fit-answer h3 {
  max-width: 210px;
  margin: 0 0 13px;
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -.035em;
}
.home-v2 .fit-answer p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}
@media (max-width: 1040px) {
  .home-v2 .fit-description {
    margin-bottom: 58px;
  }
  .home-v2 .fit-answer li::before {
    margin-bottom: 22px;
  }
  .home-v2 .fit-answer h3,
  .home-v2 .fit-answer p {
    max-width: 360px;
  }
}
@media (max-width: 560px) {
  .home-v2 .fit-description {
    margin-bottom: 48px;
    font-size: 17px;
  }
  .home-v2 .fit-answer ul {
    gap: 38px;
  }
  .home-v2 .fit-answer li::before {
    margin-bottom: 18px;
  }
  .home-v2 .fit-answer h3,
  .home-v2 .fit-answer p {
    max-width: none;
  }
}


/* 2026-09-17 final CTA and footer refinement */
.home-v2 .final-cta-copy > p {
  margin-bottom: 24px;
}
@media (min-width: 821px) {
  .home-v2 .site-footer {
    padding: 78px 0 30px;
  }
  .home-v2 .footer-main {
    min-height: 185px;
  }
  .home-v2 .brand-footer img {
    width: 108px;
  }
}
@media (min-width: 1041px) {
  .home-v2 .footer-main nav {
    margin-right: 76px;
  }
}


/* 2026-09-17 compact contact hero and direct channels */
.home-v2 .contact-form-card {
  padding: 24px 34px;
}
.home-v2 .contact-form-card h2 {
  margin: 0 0 18px;
}
.home-v2 .contact-form {
  margin-top: 0;
}
.home-v2 .contact-form .field {
  margin-bottom: 13px;
}
.home-v2 .contact-form .field-message {
  margin-top: 16px;
}
.home-v2 .contact-form .field input,
.home-v2 .contact-form .field textarea {
  padding: 10px 0;
}
.home-v2 .contact-form .field textarea {
  min-height: 104px;
}
.home-v2 .contact-form .form-submit {
  margin-top: 4px;
}
.home-v2 .contact-direct {
  gap: 8px;
}
.home-v2 .contact-direct a {
  min-height: 64px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 22px auto;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  transition: color .2s, background .2s, transform .2s;
}
.home-v2 .contact-direct a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .2s, transform .2s;
}
.home-v2 .contact-direct a:hover,
.home-v2 .contact-direct a:focus-visible {
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.home-v2 .contact-direct a:hover svg,
.home-v2 .contact-direct a:focus-visible svg {
  stroke: var(--orange);
  transform: scale(1.08);
}
.home-v2 .contact-direct a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
@media (max-width: 560px) {
  .home-v2 .contact-form-card {
    padding: 22px 20px;
  }
  .home-v2 .contact-direct a {
    width: fit-content;
  }
}


/* 2026-09-17 compact contact-next process */
.home-v2 .contact-next.section-pad {
  padding: 104px 0;
}
.home-v2 .contact-next .section-heading {
  max-width: 940px;
  display: block;
  margin-bottom: 64px;
}
.home-v2 .contact-next .eyebrow {
  color: var(--green);
}
.home-v2 .contact-next .eyebrow > span {
  background: var(--green);
}
.home-v2 .contact-next .section-heading h2 {
  max-width: 920px;
}
.home-v2 .contact-next .section-heading > p {
  max-width: 720px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.home-v2 .contact-next .next-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(56px, 7vw, 104px);
}
.home-v2 .contact-next .next-grid article {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.home-v2 .contact-next .next-grid article > span {
  display: block;
  margin-bottom: 30px;
  color: var(--orange);
  font: 500 12px/1 var(--sans);
}
.home-v2 .contact-next .next-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -.035em;
}
.home-v2 .contact-next .next-grid p {
  max-width: 350px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}
@media (max-width: 820px) {
  .home-v2 .contact-next.section-pad {
    padding: 88px 0;
  }
  .home-v2 .contact-next .section-heading {
    margin-bottom: 54px;
  }
  .home-v2 .contact-next .next-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .home-v2 .contact-next .next-grid article > span {
    margin-bottom: 18px;
  }
  .home-v2 .contact-next .next-grid p {
    max-width: 620px;
  }
}
@media (max-width: 560px) {
  .home-v2 .contact-next.section-pad {
    padding: 72px 0;
  }
  .home-v2 .contact-next .section-heading > p {
    margin-top: 22px;
    font-size: 17px;
  }
}


/* 2026-09-17 index-aligned contact-fit block */
.home-v2 .contact-fit.section-pad {
  padding: 104px 0;
}
.home-v2 .contact-fit-grid {
  display: block;
}
.home-v2 .contact-fit .section-intro {
  max-width: 920px;
}
.home-v2 .contact-fit .section-intro .eyebrow {
  color: var(--green);
}
.home-v2 .contact-fit .section-intro .eyebrow > span {
  background: var(--green);
}
.home-v2 .contact-fit .section-intro h2 {
  max-width: 900px;
}
.home-v2 .contact-fit .section-intro > p:last-child {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255,255,255,.64);
  font-size: 18px;
  line-height: 1.62;
}
.home-v2 .contact-fit-list {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 78px);
}
.home-v2 .contact-fit-list article {
  min-height: 0;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
}
.home-v2 .contact-fit-list article::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  margin-bottom: 28px;
  background-color: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.home-v2 .contact-fit-list article b {
  max-width: 240px;
  display: block;
  margin-bottom: 13px;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -.035em;
}
.home-v2 .contact-fit-list article span {
  max-width: 260px;
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.58;
}
@media (max-width: 1040px) {
  .home-v2 .contact-fit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 64px;
  }
  .home-v2 .contact-fit-list article b,
  .home-v2 .contact-fit-list article span {
    max-width: 380px;
  }
}
@media (max-width: 560px) {
  .home-v2 .contact-fit.section-pad {
    padding: 72px 0;
  }
  .home-v2 .contact-fit .section-intro > p:last-child {
    margin-top: 22px;
    font-size: 17px;
  }
  .home-v2 .contact-fit-list {
    margin-top: 52px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-v2 .contact-fit-list article::before {
    margin-bottom: 18px;
  }
  .home-v2 .contact-fit-list article b,
  .home-v2 .contact-fit-list article span {
    max-width: none;
  }
}


/* 2026-09-17 process hero with lifecycle illustration */
.process-page-v2 .service-hero {
  padding-top: 72px;
  padding-bottom: 88px;
}

.process-page-v2 .service-hero .hero-grid {
  grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
  gap: 44px;
  align-items: center;
}

.process-page-v2 .service-hero .hero-copy {
  max-width: 650px;
}

.process-page-v2 .service-hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 5.35vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
}

.process-page-v2 .service-hero .hero-lead {
  max-width: 650px;
}

.process-page-v2 .service-hero .hero-note {
  display: block;
  max-width: 560px;
}

.process-hero-visual {
  width: 115%;
  margin: 0;
  transform: translateX(2%);
}

.process-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 34px rgba(18, 24, 30, .12));
}

@media (max-width: 1120px) {
  .process-page-v2 .service-hero .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
    gap: 30px;
  }

  .process-page-v2 .service-hero h1 {
    font-size: clamp(52px, 5.8vw, 68px);
  }

  .process-hero-visual {
    width: 110%;
    transform: none;
  }
}

@media (max-width: 900px) {
  .process-page-v2 .service-hero {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .process-page-v2 .service-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-page-v2 .service-hero .hero-copy {
    max-width: 720px;
  }

  .process-page-v2 .service-hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 9vw, 68px);
  }

  .process-hero-visual {
    width: min(112%, 760px);
    margin-left: -4%;
  }
}

@media (max-width: 620px) {
  .process-page-v2 .service-hero {
    padding-top: 36px;
    padding-bottom: 60px;
  }

  .process-page-v2 .service-hero h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .process-page-v2 .service-hero .hero-actions {
    align-items: flex-start;
  }

  .process-page-v2 .service-hero .hero-note {
    margin-top: 22px;
  }

  .process-hero-visual {
    width: 118%;
    margin-left: -9%;
  }
}


/* 2026-09-17 expanded process outcomes */
.process-outcomes {
  background: #11171d;
  color: #fff;
}

.process-outcomes-head {
  display: block;
  max-width: 920px;
}

.process-outcomes-head > div {
  max-width: 920px;
}

.process-outcomes-head h2 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.7vw, 70px);
  line-height: 1;
  letter-spacing: -.05em;
}

.process-outcomes-head > p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 17px;
  line-height: 1.65;
}

.process-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  margin-top: 82px;
}

.process-outcome-grid article {
  min-width: 0;
}

.process-outcome-grid .outcome-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--green);
}

.process-outcome-grid .outcome-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-outcome-grid h3 {
  max-width: 260px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(21px, 1.8vw, 25px);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.process-outcome-grid p {
  max-width: 285px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .process-outcomes-head {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .process-outcomes-head > p {
    max-width: 680px;
  }

  .process-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 64px;
    margin-top: 64px;
  }
}

@media (max-width: 620px) {
  .process-outcomes-head h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .process-outcomes-head > p {
    font-size: 16px;
  }

  .process-outcome-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 54px;
  }

  .process-outcome-grid .outcome-icon {
    margin-bottom: 20px;
  }

  .process-outcome-grid h3,
  .process-outcome-grid p {
    max-width: 520px;
  }
}


/* 2026-09-17 horizontal process phase cards */
.phase-cards-section {
  background: #11171d;
  color: #fff;
}

.phase-cards-head {
  max-width: 930px;
}

.phase-cards-head h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.7vw, 70px);
  line-height: 1;
  letter-spacing: -.05em;
}

.phase-cards-head > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 17px;
  line-height: 1.65;
}

.phase-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 54px);
  margin-top: 76px;
}

.phase-card {
  min-width: 0;
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.phase-card-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 34px;
  padding: 6px 9px;
  border-radius: 2px;
  background: rgba(15, 185, 141, .12);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.phase-card-label > span {
  color: var(--green);
  font: 500 12px/1 var(--sans);
}

.phase-card h3 {
  min-height: 2.35em;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(22px, 1.7vw, 27px);
  line-height: 1.16;
  letter-spacing: -.035em;
}

.phase-card-copy {
  margin: 0;
  color: rgba(255,255,255,.59);
  font-size: 15px;
  line-height: 1.62;
}

.phase-checks {
  margin: auto 0 0;
  padding: 30px 0 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.phase-checks li {
  min-width: 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.42;
}

.phase-checks li::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-color: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 1080px) {
  .phase-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 58px;
  }

  .phase-card {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .phase-cards-head h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .phase-cards-head > p:last-child {
    font-size: 16px;
  }

  .phase-card-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 58px;
  }

  .phase-card {
    min-height: 0;
  }

  .phase-card-label {
    margin-bottom: 25px;
  }

  .phase-card h3 {
    min-height: 0;
  }

  .phase-checks {
    margin-top: 28px;
  }
}


/* Process page: one visual connects handoff and automation */
.process-page-v2 .handoff-evidence {
  position: relative;
  z-index: 2;
  overflow: visible;
}
.process-page-v2 .handoff-grid { position: static; }
.process-page-v2 .handoff-copy {
  width: 55%;
  max-width: 720px;
}
.process-page-v2 .handoff-visual {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 50%;
  height: 930px;
  margin: 0;
  overflow: visible;
  pointer-events: none;
}
.process-page-v2 .handoff-visual img {
  width: min(128%, 880px);
  max-width: none;
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
}
.process-page-v2 .automation-section {
  min-height: 610px;
  padding: 158px 0 150px;
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: #fff;
}
.process-page-v2 .automation-grid { position: relative; }
.process-page-v2 .automation-copy {
  width: 55%;
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.process-page-v2 .automation-copy .eyebrow { color: var(--green); }
.process-page-v2 .automation-copy .eyebrow > span { background: var(--green); }
.process-page-v2 .automation-copy h2 {
  max-width: 700px;
  margin-bottom: 28px;
}
.process-page-v2 .automation-copy > p:last-child {
  max-width: 690px;
  color: rgba(255,255,255,.62);
  font-size: 18px;
  line-height: 1.58;
}

@media (max-width: 1120px) {
  .process-page-v2 .handoff-copy,
  .process-page-v2 .automation-copy { width: 57%; }
  .process-page-v2 .handoff-visual img { width: min(134%, 820px); }
}

@media (max-width: 820px) {
  .process-page-v2 .handoff-copy,
  .process-page-v2 .automation-copy {
    width: 100%;
    max-width: 680px;
  }
  .process-page-v2 .handoff-visual {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 500px;
    margin-top: 46px;
    overflow: hidden;
  }
  .process-page-v2 .handoff-visual img {
    width: min(112%, 720px);
    top: 50%;
  }
  .process-page-v2 .automation-section {
    min-height: 0;
    padding: 96px 0;
  }
}

@media (max-width: 560px) {
  .process-page-v2 .handoff-visual {
    height: 390px;
    margin-top: 38px;
  }
  .process-page-v2 .handoff-visual img { width: 132%; }
  .process-page-v2 .automation-section { padding: 78px 0; }
  .process-page-v2 .automation-copy > p:last-child { font-size: 16px; }
}


/* Process handoff alignment and visible process questions */
body.process-page-v2 { overflow-x: hidden; }
.process-page-v2 .handoff-copy {
  width: calc(50% - 44px);
  max-width: 680px;
}
.process-page-v2 .handoff-visual {
  left: calc(50% + 14px);
  top: 100%;
  width: calc(50% - 14px);
  height: clamp(760px, 58vw, 920px);
  overflow: visible;
  transform: translateY(-50%);
}
.process-page-v2 .handoff-visual img {
  width: calc(100% + 10vw);
  max-width: none;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.process-page-v2 .automation-copy > p:last-child { max-width: 700px; }

.process-questions { background: #f7f6f3; }
.process-questions-head {
  max-width: 940px;
  margin-bottom: 70px;
}
.process-questions-head h2 {
  max-width: 900px;
  margin-bottom: 24px;
}
.process-questions-head > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.process-questions .eyebrow {
  color: var(--green);
}
.process-questions .eyebrow > span {
  background: var(--green);
}
.process-page-v2 .final-cta .eyebrow.light {
  color: var(--green);
}
.process-page-v2 .final-cta .eyebrow > span {
  background: var(--green);
}
.process-question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
  row-gap: 64px;
  align-items: start;
}
.process-question-grid article {
  padding-top: 0;
}
.process-question-grid article > span {
  display: block;
  color: var(--green);
  font: 500 11px/1 var(--mono);
}
.process-question-grid h3 {
  margin: 20px 0 18px;
  font-size: 25px;
  line-height: 1.16;
}
.process-question-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.process-question-grid em { font-style: italic; }

@media (max-width: 1180px) {
  .process-question-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 42px;
    row-gap: 54px;
  }
}

@media (max-width: 980px) {
  .process-page-v2 .handoff-copy { width: 100%; max-width: 680px; }
  .process-page-v2 .handoff-visual {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 520px;
    margin-top: 46px;
    overflow: hidden;
    transform: none;
  }
  .process-page-v2 .handoff-visual img {
    width: min(122%, 760px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 680px) {
  .process-questions-head { margin-bottom: 48px; }
  .process-question-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .process-question-grid article { padding-top: 0; }
  .process-question-grid h3 { font-size: 23px; }
}

@media (max-width: 560px) {
  .process-page-v2 .handoff-visual { height: 390px; margin-top: 38px; }
  .process-page-v2 .handoff-visual img { width: 138%; }
}


/* 2026-09-18 design systems service page rebuild */
.system-page-v2 { overflow-x: hidden; }

/* Hero: system as three connected layers, not another code/Figma diagram. */
.system-service-hero .hero-grid {
  grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr);
  gap: 72px;
}
.system-service-hero .hero-copy { max-width: 735px; }
.system-service-hero .hero-lead { max-width: 660px; }

.system-hero-visual {
  min-height: 620px;
  margin: 0;
  position: relative;
}
.system-layer-card {
  position: absolute;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 28px 60px rgba(17,23,29,.12);
}
.system-layer-label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font: 500 11px/1 var(--mono);
  letter-spacing: .04em;
}
.system-layer-card > strong {
  display: block;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.035em;
}
.system-layer-foundations {
  width: 68%;
  min-height: 195px;
  left: 1%;
  top: 2%;
  z-index: 1;
  background: #e4e8e5;
  transform: rotate(-3deg);
}
.system-token-cloud {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.system-token-cloud i {
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(17,23,29,.07);
  color: #4f5a61;
  font: 500 10px/1 var(--mono);
  font-style: normal;
}
.system-layer-components {
  width: 78%;
  min-height: 260px;
  right: 1%;
  top: 24%;
  z-index: 2;
  color: #fff;
  background: var(--ink);
  transform: rotate(2deg);
}
.system-layer-components .system-layer-label { color: rgba(255,255,255,.5); }
.system-component-stack {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.system-component-stack span {
  min-height: 48px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.system-component-stack b {
  color: #65d9b7;
  font: 500 10px/1 var(--mono);
}
.system-layer-product {
  width: 66%;
  min-height: 270px;
  left: 8%;
  bottom: 1%;
  z-index: 3;
  background: #fff;
  transform: rotate(-1deg);
}
.system-layer-product .system-layer-label { color: var(--green); }
.system-product-ui {
  margin-top: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #f3f1ed;
}
.system-product-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}
.system-product-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c7cbc8;
}
.system-product-ui > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 26px;
  letter-spacing: -.045em;
}
.system-product-copy {
  display: block;
  width: 72%;
  height: 10px;
  border-radius: 999px;
  background: #d4d8d5;
}
.system-product-actions {
  margin-top: 30px;
  display: flex;
  gap: 8px;
}
.system-product-actions i {
  width: 92px;
  height: 34px;
  border-radius: 7px;
  background: var(--orange);
}
.system-product-actions i + i {
  width: 72px;
  background: #dfe3e0;
}
.system-live-badge {
  position: absolute;
  right: 0;
  bottom: 12%;
  z-index: 5;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #dceee8;
  color: #087d62;
  box-shadow: 0 18px 35px rgba(17,23,29,.12);
  font-size: 12px;
  font-weight: 600;
}
.system-live-badge > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15,185,141,.12);
}

/* Reuse the process-page outcome block immediately after the hero. */
.system-outcomes .process-outcomes-head { max-width: 930px; }
.system-outcomes .process-outcomes-head > p { max-width: 780px; }

/* Audit: four open columns, no cages or separator rules. */
.system-page-v2 .system-audit .audit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 76px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.system-page-v2 .system-audit .audit-grid article,
.system-page-v2 .system-audit .audit-grid article:nth-child(n) {
  min-height: 0;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
}
.system-page-v2 .system-audit .audit-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
  font: 500 12px/1 var(--mono);
}
.system-page-v2 .system-audit .audit-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.16;
}
.system-page-v2 .system-audit .audit-grid p {
  max-width: 280px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

/* The shared homepage code-system block is used without a second local variant. */
.system-page-v2 .system-sync .eyebrow {
  color: var(--green);
}
.system-page-v2 .system-sync .eyebrow > span {
  background: var(--green);
}

/* Shared Lucide circle-check list. */
.circle-checks {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}
.circle-checks li {
  min-width: 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.circle-checks li::before {
  content: "";
  width: 19px;
  height: 19px;
  margin-top: 2px;
  display: block;
  background-color: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Reused handoff composition with a temporary existing illustration. */
.system-use .handoff-copy { width: 51%; max-width: 670px; }
.system-use .handoff-visual { left: 52%; width: 48%; }
.system-use .handoff-visual img { width: min(116%, 780px); }

/* Two valid starting points, without yes/no framing. */
.system-start { background: #f0efeb; }
.system-start .section-intro.centered {
  max-width: 930px;
  margin-bottom: 0;
}
.system-start .section-intro.centered .eyebrow {
  justify-content: center;
  color: var(--green);
}
.system-start .section-intro.centered .eyebrow > span { background: var(--green); }
.system-start .section-intro.centered h2 { max-width: 900px; }
.system-start-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 9vw, 140px);
}
.system-start-grid article { min-width: 0; }
.system-start-label {
  display: block;
  margin-bottom: 25px;
  color: var(--green);
  font: 500 12px/1 var(--mono);
  letter-spacing: .04em;
}
.system-start-grid h3 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.system-start-grid .circle-checks {
  max-width: 520px;
  margin-top: 34px;
}

/* Open FAQ and final CTA use the same system already established on the process page. */
.system-page-v2 .process-questions .eyebrow {
  color: var(--green);
}
.system-page-v2 .process-questions .eyebrow > span {
  background: var(--green);
}
.system-page-v2 .final-cta .eyebrow.light {
  color: var(--green);
}
.system-page-v2 .final-cta .eyebrow > span {
  background: var(--green);
}

@media (max-width: 1080px) {
  .system-service-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: 44px;
  }
  .system-hero-visual { min-height: 560px; }
  .system-page-v2 .system-audit .audit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 70px;
  }
}

@media (max-width: 820px) {
  .system-service-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .system-hero-visual {
    width: min(100%, 650px);
    min-height: 590px;
    margin: 0 auto;
  }
  .system-use .handoff-copy { width: 100%; max-width: 680px; }
  .system-use .handoff-visual {
    left: auto;
    width: 100%;
  }
  .system-start-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }
}

@media (max-width: 620px) {
  .system-hero-visual {
    min-height: 520px;
    margin-top: -10px;
  }
  .system-layer-card { padding: 21px; border-radius: 17px; }
  .system-layer-foundations { width: 77%; min-height: 165px; }
  .system-layer-components { width: 84%; min-height: 225px; top: 24%; }
  .system-layer-product { width: 75%; min-height: 225px; left: 5%; }
  .system-live-badge {
    max-width: 190px;
    right: 0;
    bottom: 10%;
    border-radius: 14px;
    line-height: 1.3;
  }
  .system-page-v2 .system-audit .audit-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .system-page-v2 .system-audit .audit-grid p { max-width: 520px; }
  .system-start-grid { margin-top: 58px; }
}


/* 2026-09-18 long-term support page rebuild */
.support-page-v2 { overflow-x: hidden; }

/* Hero: the design function visibly plugs into the existing product team. */
.support-service-hero .hero-grid {
  grid-template-columns: minmax(0, .98fr) minmax(500px, 1.02fr);
  gap: 72px;
}
.support-service-hero .hero-copy { max-width: 735px; }
.support-service-hero .hero-lead { max-width: 650px; }

.support-hero-visual {
  min-height: 610px;
  margin: 0;
  position: relative;
}
.support-hero-node {
  position: absolute;
  padding: 27px;
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(17,23,29,.12);
}
.support-hero-node > span {
  display: block;
  margin-bottom: 15px;
  font: 500 11px/1 var(--mono);
  letter-spacing: .04em;
}
.support-hero-node > strong {
  display: block;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.support-hero-node > div {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.support-hero-node i {
  padding: 8px 10px;
  border-radius: 999px;
  font: 500 10px/1 var(--mono);
  font-style: normal;
}
.support-hero-product {
  width: 64%;
  min-height: 205px;
  left: 0;
  top: 3%;
  z-index: 1;
  background: #e4e8e5;
}
.support-hero-product > span { color: var(--muted); }
.support-hero-product i { background: rgba(17,23,29,.07); color: #556067; }
.support-hero-ds {
  width: 62%;
  min-height: 205px;
  right: 3%;
  top: 35%;
  z-index: 3;
  background: var(--orange);
  color: var(--ink);
}
.support-hero-ds > span { color: rgba(17,23,29,.55); }
.support-hero-ds small {
  display: block;
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.5;
}
.support-hero-development {
  width: 68%;
  min-height: 215px;
  left: 4%;
  bottom: 1%;
  z-index: 2;
  background: var(--ink);
  color: #fff;
}
.support-hero-development > span { color: rgba(255,255,255,.46); }
.support-hero-development i { background: rgba(255,255,255,.08); color: rgba(255,255,255,.72); }
.support-hero-connector {
  position: absolute;
  z-index: 0;
  width: 34%;
  height: 2px;
  background: rgba(17,23,29,.15);
  transform-origin: left center;
}
.connector-one {
  left: 44%;
  top: 29%;
  transform: rotate(29deg);
}
.connector-two {
  left: 43%;
  top: 63%;
  transform: rotate(151deg);
}

/* Shared dark outcomes, now used directly after the support hero. */
.support-outcomes .process-outcomes-head {
  max-width: 960px;
}
.support-outcomes .process-outcomes-head h2 {
  max-width: 930px;
}
.support-outcomes .process-outcomes-head > p {
  max-width: 790px;
}

/* Shared icon pillars: remove all old service-card sizing. */
.support-page-v2 .support-pillars .pillar {
  min-height: auto;
  padding: 0;
}
.support-page-v2 .support-pillars .icon-pillars {
  gap: 72px 120px;
}

/* A calm light version of the shared four-outcome grid. */
.support-rhythm {
  background: #eef0ee;
}
.support-rhythm-head {
  max-width: 930px;
}
.support-rhythm-head .eyebrow {
  color: var(--green);
}
.support-rhythm-head .eyebrow > span {
  background: var(--green);
}
.support-rhythm-head h2 {
  max-width: 900px;
  margin-bottom: 26px;
}
.support-rhythm-head > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.support-rhythm-grid {
  margin-top: 78px;
}
.support-rhythm-grid .outcome-icon {
  color: var(--green);
}
.support-rhythm-grid h3 {
  color: var(--ink);
}
.support-rhythm-grid p {
  color: var(--muted);
}

/* Three honest collaboration models instead of a comparison table. */
.support-models {
  background: #f7f6f3;
}
.support-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(55px, 7vw, 110px);
}
.support-model-grid article {
  min-width: 0;
}
.support-model-grid article > span {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font: 500 12px/1 var(--mono);
}
.support-model-grid h3 {
  max-width: 340px;
  margin: 0 0 18px;
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.08;
}
.support-model-grid p {
  max-width: 360px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

/* Reused flagship proof must keep its eyebrow visible on this page too. */
.support-page-v2 .flagship-copy > .flagship-eyebrow {
  display: flex !important;
  color: var(--green) !important;
}
.support-page-v2 .flagship-copy > .flagship-eyebrow > span {
  background: var(--green);
}

/* Fit and FAQ accents stay consistent with the other audited pages. */
.support-page-v2 .support-fit .eyebrow,
.support-page-v2 .process-questions .eyebrow {
  color: var(--green);
}
.support-page-v2 .support-fit .eyebrow > span,
.support-page-v2 .process-questions .eyebrow > span {
  background: var(--green);
}
.support-page-v2 .support-fit .fit-question {
  margin-top: 22px;
}
.support-page-v2 .final-cta .eyebrow.light {
  color: var(--green);
}
.support-page-v2 .final-cta .eyebrow > span {
  background: var(--green);
}

@media (max-width: 1080px) {
  .support-service-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: 45px;
  }
  .support-hero-visual { min-height: 560px; }
  .support-model-grid {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .support-service-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }
  .support-hero-visual {
    width: min(100%, 650px);
    min-height: 590px;
    margin: 0 auto;
  }
  .support-model-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .support-model-grid h3,
  .support-model-grid p {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .support-hero-visual {
    min-height: 510px;
    margin-top: -10px;
  }
  .support-hero-node {
    padding: 21px;
    border-radius: 16px;
  }
  .support-hero-product {
    width: 77%;
    min-height: 165px;
  }
  .support-hero-ds {
    width: 75%;
    min-height: 175px;
    top: 34%;
  }
  .support-hero-development {
    width: 80%;
    min-height: 185px;
    bottom: 0;
  }
  .support-hero-node > strong {
    font-size: 21px;
  }
  .support-hero-node > div {
    margin-top: 19px;
  }
  .support-rhythm-grid {
    margin-top: 56px;
  }
}


/* 2026-09-18 TV3 case study rebuild */
.tv3-case-v2 { overflow-x: hidden; }
.tv3-case-v2 .eyebrow { color: var(--green); }
.tv3-case-v2 .eyebrow > span { background: var(--green); }

/* Hero */
.tv3-case-hero {
  min-height: 820px;
  padding-top: 92px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.tv3-case-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(560px,1.08fr);
  gap: clamp(60px,7vw,118px);
  align-items: center;
}
.tv3-case-hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 4;
}
.tv3-case-hero-copy .tv3-wordmark { margin-bottom: 28px; }
.tv3-case-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(58px,5.3vw,84px);
  line-height: .96;
  letter-spacing: -.055em;
}
.tv3-case-hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
}
.tv3-case-hero-copy .hero-lead { max-width: 660px; }

.tv3-generation-visual {
  min-height: 650px;
  margin: 0;
  position: relative;
}
.generation-shot {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 64px rgba(17,23,29,.16);
  background: #fff;
}
.generation-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.generation-shot figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-radius: 7px;
  background: rgba(17,23,29,.88);
  color: #fff;
  backdrop-filter: blur(8px);
}
.generation-shot figcaption strong {
  color: var(--green);
  font: 600 12px/1 var(--mono);
}
.generation-shot figcaption span {
  font-size: 12px;
}
.generation-shot-old {
  width: 48%;
  height: 350px;
  left: 0;
  top: 50px;
  z-index: 1;
  transform: rotate(-4deg);
  opacity: .78;
}
.generation-shot-old img { object-position: 50% 18%; }
.generation-shot-current {
  width: 52%;
  height: 390px;
  right: 2%;
  top: 78px;
  z-index: 2;
  transform: rotate(3deg);
}
.generation-shot-current img { object-position: 50% 15%; }
.generation-shot-new {
  width: 39%;
  height: 550px;
  left: 33%;
  top: 58px;
  z-index: 3;
  transform: rotate(-1deg);
  background: var(--ink);
}
.generation-shot-new img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
}
.generation-note {
  max-width: 290px;
  padding: 13px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 7px;
  border-radius: 10px;
  background: #dceee8;
  color: #087d62;
  font-size: 12px;
  line-height: 1.4;
}
.generation-note > span {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
}

/* Metrics */
.tv3-case-metrics .process-outcomes-head { max-width: 960px; }
.tv3-case-metrics .process-outcomes-head h2 { max-width: 880px; }
.tv3-case-metrics .process-outcomes-head > p { max-width: 760px; }

/* Era storytelling */
.tv3-story { background: #f7f6f3; }
.tv3-era-list {
  display: grid;
  gap: 120px;
}
.tv3-era {
  display: grid;
  grid-template-columns: 150px minmax(300px,.72fr) minmax(420px,1.28fr);
  gap: 48px;
  align-items: center;
}
.tv3-era-meta {
  align-self: start;
  padding-top: 8px;
}
.tv3-era-meta strong {
  display: block;
  color: var(--green);
  font: 500 17px/1 var(--mono);
}
.tv3-era-meta span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}
.tv3-era-copy h3 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(32px,3vw,46px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.tv3-era-copy p {
  max-width: 570px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.tv3-era > figure,
.era-future-visual figure {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #e5e6e3;
}
.tv3-era > figure img,
.era-future-visual figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tv3-era > figure img { object-position: 50% 15%; }
.tv3-era .era-dark {
  background: var(--ink);
}
.tv3-era .era-dark img {
  padding: 28px;
  object-fit: contain;
}
.tv3-era-future {
  align-items: stretch;
}
.era-future-visual {
  min-height: 540px;
  position: relative;
}
.era-future-visual figure:first-child {
  width: 43%;
  height: 520px;
  min-height: 0;
  position: absolute;
  left: 2%;
  top: 8px;
  z-index: 2;
  background: var(--ink);
  box-shadow: 0 28px 50px rgba(17,23,29,.18);
}
.era-future-visual figure:first-child img {
  object-fit: contain;
  padding: 20px;
}
.era-future-visual figure:last-child {
  width: 72%;
  height: 400px;
  min-height: 0;
  position: absolute;
  right: 0;
  top: 70px;
  z-index: 1;
  background: var(--ink);
}
.era-future-visual figure:last-child img {
  object-fit: cover;
  object-position: 50% 25%;
}

/* Product universe */
.tv3-universe { background: #eef0ee; }
.tv3-universe-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 70px 56px;
}
.tv3-universe-grid article { min-width: 0; }
.tv3-universe-grid article > span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font: 500 11px/1 var(--mono);
}
.tv3-universe-grid h3 {
  margin: 0 0 13px;
  font-size: 24px;
  line-height: 1.13;
}
.tv3-universe-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.57;
}

/* Role */
.tv3-role { background: #fff; }

/* Four case studies */
.tv3-mini-cases { background: #f7f6f3; }
.tv3-case-story {
  min-height: 660px;
  margin-top: 110px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(70px,8vw,130px);
  align-items: center;
}
.tv3-case-story:first-of-type { margin-top: 0; }
.tv3-case-story-reverse {
  grid-template-columns: 1.28fr .72fr;
}
.tv3-case-story-reverse .tv3-case-story-copy { order: 2; }
.tv3-case-story-reverse .tv3-case-story-visual { order: 1; }
.tv3-case-story-copy > span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font: 500 12px/1 var(--mono);
}
.tv3-case-story-copy h3 {
  max-width: 590px;
  margin: 0 0 25px;
  font-size: clamp(40px,4vw,60px);
  line-height: 1;
  letter-spacing: -.05em;
}
.tv3-case-story-copy p {
  max-width: 600px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.tv3-case-story-visual {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #e5e8e6;
}
.proof-caption {
  position: absolute;
  left: 28px;
  bottom: 25px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(17,23,29,.9);
  color: #fff;
  font-size: 12px;
}

/* TV3 Play abstract proof */
.tv3-play-proof {
  background: #dce4e2;
}
.tv3-play-proof .proof-screen {
  position: absolute;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 45px rgba(17,23,29,.14);
}
.tv3-play-proof .proof-screen::before,
.tv3-play-proof .proof-screen::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  border-radius: 4px;
}
.tv3-play-proof .proof-screen::before {
  top: 8%;
  height: 25%;
  background: linear-gradient(135deg,#11171d 0 45%,#d5dfdd 45% 100%);
}
.tv3-play-proof .proof-screen::after {
  top: 39%;
  bottom: 8%;
  background: repeating-linear-gradient(to bottom,#eef1ef 0 34px,#fff 34px 39px);
}
.tv3-play-proof .screen-a { width: 35%; height: 76%; left: 8%; top: 10%; transform: rotate(-3deg); }
.tv3-play-proof .screen-b { width: 35%; height: 82%; left: 33%; top: 8%; z-index: 2; }
.tv3-play-proof .screen-c { width: 34%; height: 72%; right: 7%; top: 14%; transform: rotate(3deg); }

/* auth */
.auth-proof {
  padding: 65px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
  background: #e4e5e3;
}
.auth-modal {
  min-height: 190px;
  padding: 26px 24px;
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  background:
    linear-gradient(#fff,#fff) padding-box;
  box-shadow: 0 20px 35px rgba(17,23,29,.12);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
.auth-modal::before {
  content: "Ienāc tv3.lv";
  position: absolute;
  left: 24px;
  top: 22px;
  font-size: 18px;
}
.auth-modal::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 58px;
  height: 82px;
  background: repeating-linear-gradient(to bottom,#edf0ee 0 28px,#fff 28px 36px);
}
.auth-google { transform: rotate(-2deg); }
.auth-register { transform: rotate(1deg); }
.auth-reset { transform: rotate(-1deg); }

/* sports */
.sports-proof {
  background: #eef4f3;
}
.sports-table,
.sports-calendar {
  position: absolute;
  width: 39%;
  height: 72%;
  top: 10%;
  border-radius: 12px;
  background:
    linear-gradient(#fff,#fff) padding-box;
  box-shadow: 0 18px 40px rgba(17,23,29,.1);
}
.sports-table { left: 8%; }
.sports-calendar { left: 40%; }
.sports-table::before,
.sports-calendar::before {
  content: "";
  position: absolute;
  inset: 18px;
  background: repeating-linear-gradient(to bottom,#e1ece9 0 23px,#fff 23px 30px);
}
.sports-live {
  width: 27%;
  min-height: 210px;
  padding: 24px;
  position: absolute;
  right: 7%;
  bottom: 8%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 40px rgba(17,23,29,.16);
}
.sports-live strong { color: #ff3939; font: 700 13px/1 var(--mono); }
.sports-live span { margin-top: 12px; font-size: 23px; }

/* new video story */
.tv3-case-story-feature {
  min-height: 790px;
}
.video-first-proof {
  min-height: 760px;
  overflow: visible;
  background: var(--ink);
}
.video-first-proof figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 28px 55px rgba(0,0,0,.22);
}
.video-first-proof .video-mobile {
  width: 40%;
  height: 690px;
  position: absolute;
  z-index: 3;
  left: 7%;
  top: 34px;
  background: #171b1f;
}
.video-first-proof .video-mobile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-first-proof .video-desktop {
  width: 72%;
  height: 475px;
  position: absolute;
  right: -5%;
  top: 122px;
  z-index: 2;
}
.video-first-proof .video-desktop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 20%;
}
.video-state-dots {
  position: absolute;
  right: 40px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 7px;
}
.video-state-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
}
.video-state-dots i:first-child { background: var(--green); }

/* Design system */
.tv3-design-system {
  background: var(--ink);
  color: #fff;
}
.tv3-design-system-head {
  max-width: 950px;
}
.tv3-design-system-head h2 {
  max-width: 900px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(48px,5vw,76px);
  line-height: .98;
  letter-spacing: -.052em;
}
.tv3-design-system-head > p:last-child {
  max-width: 790px;
  color: rgba(255,255,255,.62);
  font-size: 18px;
  line-height: 1.62;
}
.tv3-system-metrics {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 48px;
}
.tv3-system-metrics strong {
  display: block;
  color: var(--green);
  font-size: clamp(46px,5vw,72px);
  line-height: 1;
  letter-spacing: -.06em;
}
.tv3-system-metrics span {
  display: block;
  max-width: 240px;
  margin-top: 9px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.45;
}
.tv3-system-proof {
  min-height: 620px;
  margin-top: 82px;
  position: relative;
}
.system-proof-main {
  width: 72%;
  height: 600px;
  margin: 0;
  position: absolute;
  left: -5%;
  top: 0;
  overflow: hidden;
}
.system-proof-main img {
  width: 115%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.system-proof-panels {
  width: 39%;
  position: absolute;
  right: 0;
  top: 80px;
  display: grid;
  gap: 15px;
}
.system-proof-panels article {
  min-height: 118px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
}
.system-proof-panels span {
  color: var(--green);
  font: 500 11px/1 var(--mono);
}
.system-proof-panels strong {
  max-width: 320px;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.25;
}

/* Collaboration */
.tv3-collaboration { background: #fff; }
.tv3-low-friction {
  max-width: 760px;
  margin: 85px 0 0 auto;
}
.tv3-low-friction h3 {
  margin: 0 0 20px;
  font-size: clamp(31px,3vw,44px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.tv3-low-friction p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

/* Response-time proof */
.tv3-response-proof {
  background: #f3f5f3;
}
.tv3-response-head {
  max-width: 920px;
  text-align: left;
}
.tv3-response-head h2 {
  max-width: 900px;
  margin: 0 0 26px;
  font-size: clamp(45px,4.8vw,72px);
  line-height: 1;
  letter-spacing: -.05em;
}
.tv3-response-head > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.tv3-response-summary {
  margin-top: clamp(62px,7vw,96px);
  display: grid;
  grid-template-columns: minmax(300px,.82fr) minmax(0,1.18fr);
  gap: clamp(70px,9vw,140px);
  align-items: end;
}
.tv3-response-primary {
  text-align: left;
}
.tv3-response-primary > strong {
  display: block;
  color: var(--green);
  font-size: clamp(92px,11vw,172px);
  line-height: .78;
  letter-spacing: -.08em;
}
.tv3-response-primary > span {
  display: block;
  margin-top: 24px;
  font-size: clamp(25px,2.5vw,38px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.tv3-response-primary > p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.tv3-response-support {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(28px,4vw,58px);
  text-align: left;
}
.tv3-response-support article {
  min-width: 0;
}
.tv3-response-support strong {
  display: block;
  color: var(--ink);
  font-size: clamp(35px,3.7vw,56px);
  line-height: 1;
  letter-spacing: -.055em;
}
.tv3-response-support span {
  display: block;
  max-width: 235px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}
.tv3-response-progress-label {
  margin: clamp(64px,7vw,92px) 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
}
.tv3-response-progress {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: clamp(20px,3vw,42px);
}
.tv3-response-progress-item {
  min-width: 0;
}
.tv3-response-progress-item > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.tv3-response-progress-item span {
  color: var(--muted);
  font: 500 11px/1.2 var(--mono);
}
.tv3-response-progress-item strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.035em;
}
.tv3-response-progress-item > i {
  height: 5px;
  margin-top: 13px;
  display: block;
  overflow: hidden;
  background: rgba(17,23,29,.11);
}
.tv3-response-progress-item > i > b {
  width: var(--response-value);
  height: 100%;
  display: block;
  background: var(--green);
}
.tv3-response-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 900px) {
  .tv3-response-summary {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .tv3-response-primary > strong {
    font-size: clamp(96px,20vw,150px);
  }
  .tv3-response-support {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .tv3-response-progress {
    grid-template-columns: repeat(2,minmax(0,1fr));
    row-gap: 34px;
  }
}
@media (max-width: 640px) {
  .tv3-response-head h2 {
    font-size: clamp(40px,12vw,56px);
  }
  .tv3-response-head > p:last-child {
    font-size: 16px;
  }
  .tv3-response-summary {
    margin-top: 52px;
    gap: 42px;
  }
  .tv3-response-primary > strong {
    font-size: clamp(88px,28vw,126px);
  }
  .tv3-response-primary > span {
    margin-top: 18px;
    font-size: 27px;
  }
  .tv3-response-support {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tv3-response-support span {
    max-width: 320px;
  }
  .tv3-response-progress-label {
    margin-top: 52px;
  }
  .tv3-response-progress {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Quality loop */
.tv3-quality-loop { background: #eef0ee; }
.tv3-quality-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(70px,8vw,120px);
  align-items: center;
}
.tv3-quality-grid .section-intro p:not(.eyebrow) {
  margin-top: 18px;
}
.quality-loop-visual {
  min-height: 580px;
  position: relative;
}
.quality-source {
  width: 43%;
  min-height: 390px;
  padding: 20px;
  position: absolute;
  top: 54px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(17,23,29,.12);
}
.quality-source:first-child { left: 0; transform: rotate(-2deg); }
.quality-source:nth-child(3) { right: 0; transform: rotate(2deg); }
.quality-source > span {
  color: var(--green);
  font: 500 11px/1 var(--mono);
}
.quality-ui {
  min-height: 315px;
  margin-top: 20px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #eff1ef;
}
.quality-ui::before {
  content: "";
  position: absolute;
  left: 6%;
  top: 6%;
  width: 88%;
  height: 28%;
  background: #d7ddda;
}
.quality-ui::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 40%;
  bottom: 7%;
  background: repeating-linear-gradient(to bottom,#dfe4e1 0 17px,transparent 17px 28px);
}
.quality-ui-prod::before { background: linear-gradient(135deg,#11171d 0 54%,#ea6c36 54% 100%); }
.quality-compare {
  width: 82px;
  height: 82px;
  position: absolute;
  left: 50%;
  top: 198px;
  z-index: 5;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}
.quality-compare b { font-size: 27px; }
.quality-compare small {
  position: absolute;
  top: 92px;
  color: var(--muted);
  font-size: 11px;
}
.quality-decisions {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quality-decisions article {
  min-height: 62px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17,23,29,.08);
}
.quality-decisions i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15,185,141,.13);
  color: var(--green);
  font-style: normal;
}
.quality-decisions p { margin: 0; font-size: 13px; }

/* Context + quote */
.tv3-context-value { background: #f7f6f3; }
.tv3-context-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: clamp(40px,5vw,76px);
}
.tv3-context-grid article > span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font: 500 11px/1 var(--mono);
}
.tv3-context-grid h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.14;
}
.tv3-context-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}
.tv3-quote-placeholder {
  max-width: 1060px;
  margin: 120px auto 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 55px;
  align-items: center;
}
.quote-placeholder-photo {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}
.quote-placeholder-photo span {
  color: var(--green);
  font: 700 28px/1 var(--sans);
}
.tv3-quote-placeholder blockquote { margin: 0; }
.tv3-quote-placeholder blockquote > p {
  margin: 0;
  font-size: clamp(28px,3.1vw,43px);
  line-height: 1.22;
  letter-spacing: -.035em;
}
.tv3-quote-placeholder footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
}
.tv3-quote-placeholder footer span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

/* CTA accent consistency */
.tv3-case-v2 .final-cta .eyebrow.light { color: var(--green); }
.tv3-case-v2 .final-cta .eyebrow > span { background: var(--green); }

@media (max-width: 1180px) {
  .tv3-case-hero-grid { grid-template-columns: minmax(0,1fr) minmax(480px,.9fr); gap: 50px; }
  .tv3-generation-visual { min-height: 590px; }
  .generation-shot-new { height: 500px; }
  .tv3-era { grid-template-columns: 110px minmax(260px,.72fr) minmax(360px,1.28fr); gap: 34px; }
  .tv3-universe-grid, .tv3-context-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .tv3-case-hero-grid { grid-template-columns: 1fr; }
  .tv3-case-hero { min-height: 0; }
  .tv3-generation-visual { width: min(100%,720px); min-height: 610px; margin: 0 auto; }
  .tv3-era {
    grid-template-columns: 110px 1fr;
  }
  .tv3-era > figure, .era-future-visual {
    grid-column: 1 / -1;
  }
  .tv3-era > figure { min-height: 390px; }
  .tv3-universe-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .tv3-case-story,
  .tv3-case-story-reverse {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tv3-case-story-reverse .tv3-case-story-copy,
  .tv3-case-story-reverse .tv3-case-story-visual { order: initial; }
  .tv3-case-story-visual { min-height: 570px; }
  .video-first-proof { min-height: 690px; }
  .tv3-quality-grid { grid-template-columns: 1fr; }
  .quality-loop-visual { max-width: 720px; width: 100%; margin: 0 auto; }
}

@media (max-width: 680px) {
  .tv3-case-hero { padding-top: 54px; }
  .tv3-case-hero-copy h1 { font-size: clamp(44px,12vw,60px); }
  .tv3-generation-visual { min-height: 510px; }
  .generation-shot-old { width: 55%; height: 270px; top: 50px; }
  .generation-shot-current { width: 56%; height: 290px; top: 70px; }
  .generation-shot-new { width: 44%; height: 410px; left: 30%; top: 42px; }
  .generation-shot figcaption { left: 10px; bottom: 10px; padding: 7px 8px; }
  .generation-note { max-width: 230px; right: 8px; bottom: 0; font-size: 10px; }

  .tv3-era-list { gap: 80px; }
  .tv3-era { grid-template-columns: 1fr; gap: 24px; }
  .tv3-era-meta { display: flex; align-items: baseline; gap: 12px; }
  .tv3-era-meta span { margin-top: 0; }
  .tv3-era > figure { min-height: 300px; }
  .era-future-visual { min-height: 455px; }
  .era-future-visual figure:first-child { width: 48%; height: 420px; }
  .era-future-visual figure:last-child { width: 76%; height: 300px; top: 78px; }

  .tv3-universe-grid,
  .tv3-context-grid { grid-template-columns: 1fr; gap: 42px; }

  .tv3-case-story { margin-top: 86px; }
  .tv3-case-story-copy h3 { font-size: clamp(36px,10vw,48px); }
  .tv3-case-story-copy p { font-size: 16px; }
  .tv3-case-story-visual { min-height: 480px; border-radius: 18px; }
  .auth-proof { padding: 30px; gap: 13px; }
  .auth-modal { min-height: 160px; padding: 18px; font-size: 12px; }
  .auth-modal::before { left: 18px; top: 17px; font-size: 15px; }
  .auth-modal::after { left: 18px; right: 18px; top: 49px; height: 68px; }
  .sports-table, .sports-calendar { width: 46%; height: 68%; }
  .sports-table { left: 3%; }
  .sports-calendar { left: 35%; }
  .sports-live { width: 36%; right: 4%; }
  .video-first-proof { min-height: 590px; }
  .video-first-proof .video-mobile { width: 47%; height: 535px; left: 5%; top: 25px; }
  .video-first-proof .video-desktop { width: 75%; height: 330px; top: 95px; }

  .tv3-system-metrics { grid-template-columns: 1fr; gap: 30px; }
  .tv3-system-proof { min-height: 700px; margin-top: 55px; }
  .system-proof-main { width: 116%; height: 430px; left: -8%; }
  .system-proof-panels { width: 100%; top: 420px; grid-template-columns: 1fr; }
  .system-proof-panels article { min-height: 90px; }

  .quality-loop-visual { min-height: 510px; }
  .quality-source { width: 47%; min-height: 320px; padding: 14px; }
  .quality-ui { min-height: 255px; }
  .quality-compare { top: 170px; width: 64px; height: 64px; }
  .quality-decisions { left: 2%; right: 2%; bottom: 0; }
  .quality-decisions article { padding: 10px; font-size: 11px; }

  .tv3-quote-placeholder {
    margin-top: 82px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quote-placeholder-photo { width: 120px; height: 120px; }
  .tv3-quote-placeholder blockquote > p { font-size: 28px; }
}


/* 2026-09-18 TV3 real proof asset pass */
.tv3-real-proof {
  min-height: 620px;
  margin: 0;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #dfe4e1;
}
.tv3-real-proof img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  padding: 24px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.tv3-real-proof figcaption {
  position: absolute;
  left: 28px;
  bottom: 25px;
  z-index: 3;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(17,23,29,.9);
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
}
.tv3-real-proof.tv3-play-proof,
.tv3-real-proof.auth-proof,
.tv3-real-proof.sports-proof {
  padding: 0;
  display: block;
}
.tv3-real-proof.tv3-play-proof img {
  background: #e4e6e4;
}
.tv3-real-proof.auth-proof {
  background: #e7e7e5;
}
.tv3-real-proof.auth-proof img {
  padding: 34px;
}
.tv3-real-proof.sports-proof {
  background: #e5efed;
}
.tv3-real-proof.sports-proof img {
  padding: 28px;
}

.tv3-case-story {
  padding: 42px 0;
}
.tv3-case-story-copy {
  align-self: center;
}
.tv3-case-story-feature .tv3-case-story-copy {
  max-width: 620px;
}

.system-proof-real {
  width: 74%;
  height: 610px;
  border-radius: 18px;
  background: #20272d;
}
.system-proof-real img {
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
  object-position: center;
}

.tv3-era > figure,
.era-future-visual figure {
  box-shadow: 0 20px 50px rgba(17,23,29,.08);
}
.tv3-era-copy p {
  max-width: 610px;
}
.tv3-context-value .section-heading {
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .tv3-real-proof,
  .tv3-real-proof img { min-height: 520px; }
  .system-proof-real {
    width: 100%;
    height: 470px;
    left: 0;
  }
}
@media (max-width: 680px) {
  .tv3-real-proof,
  .tv3-real-proof img { min-height: 410px; }
  .tv3-real-proof img,
  .tv3-real-proof.auth-proof img,
  .tv3-real-proof.sports-proof img { padding: 14px; }
  .tv3-real-proof figcaption {
    left: 14px;
    bottom: 14px;
    right: 14px;
    width: max-content;
    max-width: calc(100% - 28px);
  }
  .system-proof-real {
    height: 360px;
  }
  .system-proof-real img { padding: 12px; }
}


/* 2026-09-18 TV3 visual review polish */
/* Tighten the case study after full-page visual review. */
.tv3-case-hero {
  padding-top: 78px;
  padding-bottom: 92px;
}
.tv3-case-hero-grid {
  gap: clamp(52px,6vw,96px);
}
.tv3-case-hero-copy h1 {
  max-width: 820px;
}
.tv3-case-hero-copy .hero-lead {
  margin-top: 30px;
}
.tv3-generation-visual {
  transform: translateY(8px);
}
.generation-note {
  font-size: 11px;
  line-height: 1.35;
}

/* Evolution should feel like one continuous story, not four isolated landing-page cards. */
.tv3-story .section-heading {
  margin-bottom: 82px;
}
.tv3-era-list {
  gap: 86px;
}
.tv3-era {
  grid-template-columns: 120px minmax(320px,.8fr) minmax(460px,1.2fr);
  gap: clamp(34px,4vw,64px);
  align-items: start;
}
.tv3-era-copy {
  padding-top: 2px;
}
.tv3-era > figure,
.era-future-visual {
  align-self: stretch;
}
.tv3-era > figure {
  min-height: 380px;
}
.tv3-era-future {
  padding-top: 12px;
}
.era-future-visual {
  min-height: 500px;
}

/* Give the product-universe block more breathing room without adding boxes or dividers. */
.tv3-universe .section-heading {
  margin-bottom: 76px;
}
.tv3-universe-grid {
  gap: 58px 64px;
}
.tv3-universe-grid h3 {
  max-width: 260px;
}

/* Role block uses the same reusable 2x2 language as other service pages. */
.tv3-role .section-heading {
  margin-bottom: 82px;
}

/* The proof section is the core of the case study - make evidence visually dominant. */
.tv3-mini-cases .section-heading {
  margin-bottom: 54px;
}
.tv3-case-story {
  min-height: 610px;
  margin-top: 82px;
  padding: 56px 0;
  gap: clamp(60px,7vw,112px);
}
.tv3-case-story + .tv3-case-story {
  margin-top: 54px;
}
.tv3-case-story-copy > span {
  margin-bottom: 18px;
}
.tv3-case-story-copy h3 {
  margin-bottom: 22px;
}
.tv3-case-story-visual {
  min-height: 620px;
  box-shadow: 0 22px 55px rgba(17,23,29,.08);
}
.tv3-case-story-feature {
  min-height: 720px;
}
.tv3-case-story-feature .tv3-case-story-visual {
  min-height: 700px;
}

/* Make the temporary proof compositions read as Figma/product evidence, not decorative diagrams. */
.tv3-play-proof,
.auth-proof,
.sports-proof {
  border-radius: 18px;
}
.tv3-play-proof::before,
.auth-proof::before,
.sports-proof::before {
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 5;
  color: var(--muted);
  font: 500 10px/1 var(--mono);
  letter-spacing: .04em;
}
.tv3-play-proof::before { content: "FIGMA / TV3 PLAY"; }
.auth-proof::before { content: "FIGMA / AUTHENTICATION"; }
.sports-proof::before { content: "FIGMA / SPORTS"; }

/* System proof is a major selling point, so increase its visual weight. */
.tv3-design-system {
  padding-top: clamp(110px,9vw,150px);
  padding-bottom: clamp(110px,9vw,150px);
}
.tv3-design-system-head {
  max-width: 1040px;
}
.tv3-system-metrics {
  margin-top: 62px;
}
.tv3-system-proof {
  min-height: 690px;
  margin-top: 70px;
}
.system-proof-main {
  width: 76%;
  height: 660px;
}
.system-proof-panels {
  width: 37%;
  top: 105px;
}

/* Collaboration block should be faster to scan. */
.tv3-collaboration .process-heading {
  margin-bottom: 72px;
}
.tv3-low-friction {
  max-width: 800px;
  margin-top: 68px;
}

/* Quality loop: give the comparison enough room and reduce diagram-like density. */
.tv3-quality-loop {
  padding-top: clamp(100px,8vw,140px);
  padding-bottom: clamp(100px,8vw,140px);
}
.tv3-quality-grid {
  gap: clamp(60px,7vw,105px);
}
.quality-loop-visual {
  min-height: 545px;
}
.quality-source {
  min-height: 365px;
}
.quality-ui {
  min-height: 290px;
}
.quality-compare {
  top: 184px;
}

/* Long-term value and quote should be the emotional proof before CTA. */
.tv3-context-value .section-heading {
  margin-bottom: 72px;
}
.tv3-context-grid {
  margin-bottom: 0;
}
.tv3-quote-placeholder {
  max-width: 1160px;
  margin-top: 105px;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 48px;
}
.quote-placeholder-photo {
  width: 150px;
  height: 150px;
}
.tv3-quote-placeholder blockquote > p {
  max-width: 900px;
  font-size: clamp(31px,3.2vw,46px);
  line-height: 1.18;
}

/* On a public repository, do not hint that confidential source assets are stored here. */


@media (max-width: 1180px) {
  .tv3-era {
    grid-template-columns: 100px minmax(280px,.78fr) minmax(400px,1.22fr);
  }
}
@media (max-width: 900px) {
  .tv3-era-list { gap: 76px; }
  .tv3-era {
    grid-template-columns: 90px 1fr;
  }
  .tv3-case-story {
    padding: 34px 0;
    margin-top: 60px;
  }
  .tv3-case-story + .tv3-case-story { margin-top: 38px; }
}
@media (max-width: 680px) {
  .tv3-case-hero { padding-top: 50px; padding-bottom: 72px; }
  .tv3-story .section-heading,
  .tv3-universe .section-heading,
  .tv3-role .section-heading { margin-bottom: 56px; }
  .tv3-era-list { gap: 64px; }
  .tv3-era { grid-template-columns: 1fr; }
  .tv3-case-story { padding: 18px 0; }
  .tv3-case-story-visual { min-height: 440px; }
  .tv3-design-system { padding-top: 86px; padding-bottom: 86px; }
  .tv3-system-proof { min-height: 650px; }
  .tv3-quote-placeholder {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }
}


/* 2026-09-18 TV3 variable proof details */
.system-variable-proof article {
  min-height: 132px;
}
.system-variable-proof strong {
  font-size: 23px;
  letter-spacing: -.025em;
}
.system-variable-proof small {
  max-width: 330px;
  margin-top: 9px;
  color: rgba(255,255,255,.46);
  font-size: 12px;
  line-height: 1.45;
}
.system-proof-real img {
  background: #23282d;
}


/* 2026-09-18 TV3 collaboration facts */
.tv3-collab-facts {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: clamp(34px,5vw,72px);
}
.tv3-collab-facts article { min-width: 0; }
.tv3-collab-facts strong {
  display: block;
  color: var(--green);
  font: 500 13px/1.2 var(--mono);
}
.tv3-collab-facts span {
  display: block;
  max-width: 250px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .tv3-collab-facts { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px 48px; }
}
@media (max-width: 560px) {
  .tv3-collab-facts { grid-template-columns: 1fr; }
}


/* 2026-09-18 TV3 real evidence pass */
/* Replace the temporary drawn proof diagrams with the real TV3 / Figma evidence. */
.tv3-real-proof {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background: #e1e4e2;
}
.tv3-real-proof > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.tv3-real-proof > figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 6;
  max-width: calc(100% - 44px);
  padding: 9px 11px;
  border-radius: 7px;
  background: rgba(17,23,29,.88);
  color: #fff;
  font-size: 11px;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}
.tv3-real-proof::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(17,23,29,.06);
  border-radius: inherit;
}
.tv3-real-proof::before {
  padding: 8px 10px;
  top: 18px;
  left: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.9);
  color: #4e595f;
  backdrop-filter: blur(8px);
}
.tv3-play-proof,
.auth-proof,
.sports-proof {
  padding: 0;
  display: flex;
}
.tv3-play-proof > img {
  object-fit: cover;
  object-position: center;
}
.auth-proof > img {
  object-fit: cover;
  object-position: center;
}
.sports-proof {
  min-height: 520px;
  background: #dce5e2;
}
.sports-proof > img {
  object-fit: contain;
  padding: 34px 24px 42px;
}

/* The variable screenshot is proof itself, not another decorative panel. */
.system-variable-panel {
  min-height: 244px !important;
  padding: 0 !important;
  overflow: hidden;
  justify-content: flex-start !important;
}
.system-variable-panel > img {
  width: 100%;
  height: 126px;
  display: block;
  object-fit: cover;
  object-position: left top;
  background: #2a2d2f;
}
.system-variable-panel > div {
  padding: 20px 24px 23px;
}
.system-variable-panel > div > span {
  display: block;
  color: var(--green);
  font: 500 11px/1 var(--mono);
}
.system-variable-panel > div > strong {
  display: block;
  max-width: 320px;
  margin-top: 14px;
  font-size: 23px;
  line-height: 1.2;
}
.system-variable-panel > div > small {
  display: block;
  max-width: 330px;
  margin-top: 9px;
  color: rgba(255,255,255,.46);
  font-size: 12px;
  line-height: 1.45;
}
.system-proof-panels {
  top: 70px;
}
.system-proof-panels article:not(.system-variable-panel) {
  min-height: 120px;
}

/* Real evidence carries more information, so keep the surrounding copy quieter. */
.tv3-mini-cases .section-heading {
  margin-bottom: 72px;
}
.tv3-case-story {
  padding: 42px 0;
}
.tv3-case-story + .tv3-case-story {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .sports-proof { min-height: 470px; }
  .system-variable-panel > img { height: 150px; }
}
@media (max-width: 680px) {
  .tv3-real-proof > figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    font-size: 10px;
  }
  .tv3-real-proof::before {
    left: 13px;
    top: 13px;
  }
  .sports-proof {
    min-height: 360px !important;
  }
  .sports-proof > img {
    padding: 28px 12px 36px;
  }
  .system-variable-panel > img { height: 120px; }
}


/* 2026-09-18 TV3 real generations and universe pass */
/* Real product generations replace the previous generic mockup crops. */
.generation-shot-old img,
.generation-shot-current img {
  object-fit: cover;
  object-position: top center;
}
.generation-shot-new {
  background: #171b1f;
}
.generation-shot-new img {
  padding: 8px;
  object-fit: contain;
  object-position: center;
}
.tv3-era-meta em {
  font-style: italic;
}
.tv3-era .era-real-shot {
  background: #e4e6e4;
}
.tv3-era .era-real-shot img {
  padding: 0;
  object-fit: cover;
  object-position: top center;
}
.tv3-era .era-flow-shot {
  background: #555;
}
.tv3-era .era-flow-shot img {
  padding: 0;
  object-fit: cover;
  object-position: center 14%;
}

/* One real Figma canvas establishes the scale before the textual taxonomy. */
.tv3-universe-proof {
  min-height: 610px;
  margin: 0 0 76px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe2e0;
  box-shadow: 0 20px 50px rgba(17,23,29,.07);
}
.tv3-universe-proof img {
  width: 100%;
  height: 610px;
  padding: 20px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.tv3-universe-proof figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  max-width: 430px;
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(17,23,29,.88);
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}
.tv3-universe-grid {
  margin-top: 0;
}

/* Keep Figma proof labels Latvian-first as elsewhere on the site. */
.auth-proof::before { content: "FIGMA / AUTENTIFIKĀCIJA"; }
.sports-proof::before { content: "FIGMA / SPORTS"; }

/* The new video product should look like the actual product, not a generic phone mockup. */
.video-first-proof .video-mobile {
  background: #171b1f;
}
.video-first-proof .video-mobile img {
  object-fit: contain;
  object-position: center;
}
.video-first-proof .video-desktop img {
  object-position: center 18%;
}

@media (max-width: 900px) {
  .tv3-universe-proof,
  .tv3-universe-proof img {
    min-height: 500px;
    height: 500px;
  }
}
@media (max-width: 680px) {
  .tv3-universe-proof {
    min-height: 360px;
    margin-bottom: 54px;
    border-radius: 15px;
  }
  .tv3-universe-proof img {
    height: 360px;
    min-height: 360px;
    padding: 10px;
  }
  .tv3-universe-proof figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    font-size: 10px;
  }
  .tv3-era .era-real-shot img {
    object-position: top center;
  }
}


/* 2026-09-18 TV3 quality loop simplification */
/* Quality check is a decision loop, not a fake QA screenshot. */
.quality-source {
  min-height: 300px;
  padding: 30px;
  top: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.quality-source > span {
  display: block;
  margin-bottom: auto;
  color: var(--green);
  font: 500 11px/1 var(--mono);
  letter-spacing: .05em;
}
.quality-source > strong {
  display: block;
  max-width: 290px;
  margin-top: 56px;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.quality-source > p {
  max-width: 300px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.quality-source-figma {
  background: #fff;
}
.quality-source-production {
  background: var(--ink);
  color: #fff;
}
.quality-source-production > p {
  color: rgba(255,255,255,.58);
}
.quality-compare {
  top: 196px;
}
.quality-decisions {
  bottom: 20px;
}

/* Testimonial placeholder uses the real TV3 mark until the approved portrait arrives. */
.quote-placeholder-photo {
  background: var(--ink);
}
.quote-placeholder-photo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.quote-placeholder-photo span { display: none; }

@media (max-width: 680px) {
  .quality-source {
    min-height: 275px;
    padding: 20px;
    top: 62px;
  }
  .quality-source > strong {
    margin-top: 38px;
    font-size: 20px;
  }
  .quality-source > p {
    font-size: 12px;
  }
  .quality-compare {
    top: 154px;
  }
  .quote-placeholder-photo img {
    width: 48px;
    height: 48px;
  }
}


/* 2026-09-21 TV3 hero layered generations */
.tv3-case-v2 .tv3-case-hero {
  min-height: 760px;
  padding-top: 62px;
  padding-bottom: 88px;
  overflow: hidden;
}

.tv3-case-v2 .tv3-case-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(420px, 510px) minmax(0, 1fr);
  column-gap: clamp(42px, 4.8vw, 78px);
  align-items: center;
}

.tv3-case-v2 .tv3-case-hero-copy {
  width: 100%;
  max-width: 510px;
  position: relative;
  z-index: 10;
}

.tv3-case-v2 .tv3-hero-logo {
  height: 52px;
  margin: 0 0 38px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}

.tv3-case-v2 .tv3-hero-logo img {
  width: auto;
  height: 46px;
  margin: 0 2px 0 1px;
  display: block;
  object-fit: contain;
}

.tv3-case-v2 .tv3-case-hero-copy h1 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(55px, 4.7vw, 72px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.052em;
}

.tv3-case-v2 .tv3-case-hero-copy h1 > span {
  display: block;
}

.tv3-case-v2 .tv3-hero-title-accent {
  color: var(--orange);
}

.tv3-case-v2 .tv3-hero-title-main {
  margin-top: 7px;
  color: var(--ink);
}

.tv3-case-v2 .tv3-case-hero-copy .hero-lead {
  max-width: 485px;
  margin-top: 31px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.tv3-case-v2 .tv3-case-hero-copy .hero-lead em {
  font-style: italic;
}

.tv3-case-v2 .tv3-case-hero .hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 26px;
}

.tv3-case-v2 .tv3-case-hero .hero-actions .button,
.tv3-case-v2 .tv3-case-hero .hero-actions .text-link {
  width: auto;
  min-width: max-content;
  white-space: nowrap;
}

.tv3-case-v2 .tv3-case-hero .hero-actions .button {
  flex: 0 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.tv3-case-v2 .tv3-hero-collage {
  min-width: 0;
  min-height: 650px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.tv3-case-v2 .tv3-hero-collage-stage {
  width: clamp(820px, 68vw, 1120px);
  height: 650px;
  margin-left: -28px;
  margin-right: -250px;
  position: relative;
  flex: 0 0 auto;
}

.tv3-case-v2 .tv3-hero-layer {
  max-width: none;
  display: block;
  position: absolute;
  opacity: 0;
  transform-origin: center center;
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform, filter;
}

.tv3-case-v2 .tv3-hero-layer-old {
  width: 55%;
  left: 0;
  top: 72px;
  z-index: 1;
  animation: tv3HeroOldIn 1s cubic-bezier(.22,1,.36,1) .08s forwards;
}

.tv3-case-v2 .tv3-hero-layer-current {
  width: 76%;
  left: 27%;
  top: 138px;
  z-index: 2;
  animation: tv3HeroCurrentIn 1.05s cubic-bezier(.22,1,.36,1) .7s forwards;
}

.tv3-case-v2 .tv3-hero-layer-phone {
  width: 24%;
  left: 29%;
  top: 164px;
  z-index: 3;
  animation: tv3HeroPhoneIn .95s cubic-bezier(.22,1,.36,1) 1.38s forwards;
}

@keyframes tv3HeroOldIn {
  0% {
    opacity: 0;
    filter: blur(26px);
    transform: translate3d(54px, 18px, 0) scale(.94);
  }
  100% {
    opacity: .62;
    filter: blur(10px);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tv3HeroCurrentIn {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(62px, 24px, 0) scale(.94);
  }
  100% {
    opacity: 1;
    filter: blur(2.5px);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tv3HeroPhoneIn {
  0% {
    opacity: 0;
    filter: blur(12px) drop-shadow(0 16px 26px rgba(17,23,29,.08));
    transform: translate3d(4px, 52px, 0) scale(.87) rotate(-6deg);
  }
  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 26px 42px rgba(17,23,29,.22));
    transform: translate3d(0, 0, 0) scale(1) rotate(-6deg);
  }
}

@media (max-width: 1280px) {
  .tv3-case-v2 .tv3-case-hero-grid {
    grid-template-columns: minmax(390px, 480px) minmax(0, 1fr);
    column-gap: 30px;
  }

  .tv3-case-v2 .tv3-case-hero-copy h1 {
    max-width: 470px;
    font-size: clamp(50px, 5vw, 64px);
  }

  .tv3-case-v2 .tv3-case-hero-copy .hero-lead {
    max-width: 455px;
    font-size: 16px;
  }

  .tv3-case-v2 .tv3-hero-collage-stage {
    width: 850px;
    margin-left: -12px;
    margin-right: -230px;
  }
}

@media (max-width: 1040px) {
  .tv3-case-v2 .tv3-case-hero {
    min-height: 0;
    padding-top: 50px;
  }

  .tv3-case-v2 .tv3-case-hero-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .tv3-case-v2 .tv3-case-hero-copy {
    max-width: 570px;
  }

  .tv3-case-v2 .tv3-case-hero-copy h1 {
    max-width: 540px;
  }

  .tv3-case-v2 .tv3-case-hero-copy .hero-lead {
    max-width: 540px;
  }

  .tv3-case-v2 .tv3-hero-collage {
    min-height: 560px;
    margin-top: 6px;
  }

  .tv3-case-v2 .tv3-hero-collage-stage {
    width: min(960px, 112vw);
    height: 560px;
    margin-left: -2vw;
    margin-right: -18vw;
  }

  .tv3-case-v2 .tv3-hero-layer-old {
    width: 52%;
    top: 55px;
  }

  .tv3-case-v2 .tv3-hero-layer-current {
    width: 72%;
    left: 28%;
    top: 112px;
  }

  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 23%;
    left: 31%;
    top: 135px;
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-case-hero {
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .tv3-case-v2 .tv3-hero-logo {
    height: 40px;
    margin-bottom: 27px;
    font-size: 29px;
  }

  .tv3-case-v2 .tv3-hero-logo img {
    height: 36px;
  }

  .tv3-case-v2 .tv3-case-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(42px, 12.5vw, 56px);
    line-height: 1;
  }

  .tv3-case-v2 .tv3-case-hero-copy .hero-lead {
    max-width: 100%;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.56;
  }

  .tv3-case-v2 .tv3-case-hero .hero-actions {
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .tv3-case-v2 .tv3-case-hero .hero-actions .button,
  .tv3-case-v2 .tv3-case-hero .hero-actions .text-link {
    white-space: nowrap;
  }

  .tv3-case-v2 .tv3-hero-collage {
    min-height: 390px;
    margin-top: 10px;
  }

  .tv3-case-v2 .tv3-hero-collage-stage {
    width: 650px;
    height: 390px;
    margin-left: -38px;
    margin-right: -225px;
  }

  .tv3-case-v2 .tv3-hero-layer-old {
    width: 54%;
    left: 0;
    top: 40px;
  }

  .tv3-case-v2 .tv3-hero-layer-current {
    width: 72%;
    left: 27%;
    top: 82px;
  }

  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 23%;
    left: 31%;
    top: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tv3-case-v2 .tv3-hero-layer {
    animation: none !important;
  }

  .tv3-case-v2 .tv3-hero-layer-old {
    opacity: .62;
    filter: blur(10px);
    transform: none;
  }

  .tv3-case-v2 .tv3-hero-layer-current {
    opacity: 1;
    filter: blur(2.5px);
    transform: none;
  }

  .tv3-case-v2 .tv3-hero-layer-phone {
    opacity: 1;
    filter: drop-shadow(0 26px 42px rgba(17,23,29,.22));
    transform: rotate(-6deg);
  }
}


/* 2026-09-21 TV3 hero sequence refinement */
.tv3-case-v2 .tv3-hero-logo {
  width: 136px;
  height: auto;
  margin-bottom: 29px;
  display: block;
}
.tv3-case-v2 .tv3-hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 1041px) {
  .tv3-case-v2 .tv3-case-hero {
    min-height: 860px;
    overflow: visible;
    z-index: 3;
  }
  .tv3-case-v2 .tv3-case-hero-grid {
    overflow: visible;
  }
  .tv3-case-v2 .tv3-case-metrics {
    position: relative;
    z-index: 1;
  }
  .tv3-case-v2 .tv3-hero-collage {
    min-height: 730px;
    align-items: flex-start;
    transform: translate3d(28px, 54px, 0);
    overflow: visible;
  }
  .tv3-case-v2 .tv3-hero-collage-stage {
    width: clamp(940px, 76vw, 1260px);
    height: 760px;
    margin-left: -18px;
    margin-right: -360px;
    overflow: visible;
  }

  .tv3-case-v2 .tv3-hero-layer {
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }
  .tv3-case-v2 .tv3-hero-layer-old {
    width: 57%;
    left: 0;
    top: 56px;
    animation: tv3HeroOldSequence 7.2s cubic-bezier(.45,0,.25,1) .12s forwards;
  }
  .tv3-case-v2 .tv3-hero-layer-current {
    width: 78%;
    left: 28%;
    top: 126px;
    animation: tv3HeroCurrentSequence 7.2s cubic-bezier(.45,0,.25,1) .12s forwards;
  }
  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 25%;
    left: 30%;
    top: 260px;
    z-index: 4;
    animation: tv3HeroPhoneSequence 7.2s cubic-bezier(.45,0,.25,1) .12s forwards;
  }
}

@keyframes tv3HeroOldSequence {
  0%, 22% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0,0,0) scale(1);
  }
  34% {
    opacity: .94;
    filter: blur(1.5px);
    transform: translate3d(-7px,5px,0) scale(.965);
  }
  48%, 60% {
    opacity: .80;
    filter: blur(4px);
    transform: translate3d(-20px,12px,0) scale(.91);
  }
  72% {
    opacity: .63;
    filter: blur(6px);
    transform: translate3d(-34px,20px,0) scale(.84);
  }
  86%, 100% {
    opacity: .48;
    filter: blur(8.5px);
    transform: translate3d(-48px,28px,0) scale(.78);
  }
}

@keyframes tv3HeroCurrentSequence {
  0%, 22% {
    opacity: 0;
    filter: blur(0);
    transform: translate3d(72px,24px,0) scale(.96);
  }
  34% {
    opacity: .72;
    filter: blur(0);
    transform: translate3d(22px,8px,0) scale(.985);
  }
  46%, 62% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0,0,0) scale(1);
  }
  74% {
    opacity: .94;
    filter: blur(1.5px);
    transform: translate3d(-3px,4px,0) scale(.97);
  }
  86%, 100% {
    opacity: .80;
    filter: blur(4.5px);
    transform: translate3d(-10px,12px,0) scale(.91);
  }
}

@keyframes tv3HeroPhoneSequence {
  0%, 60% {
    opacity: 0;
    filter: blur(0) drop-shadow(0 16px 26px rgba(17,23,29,.08));
    transform: translate3d(18px,62px,0) scale(.90) rotate(-6deg);
  }
  70% {
    opacity: .58;
    filter: blur(0) drop-shadow(0 20px 32px rgba(17,23,29,.14));
    transform: translate3d(8px,26px,0) scale(.95) rotate(-6deg);
  }
  82%, 100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 28px 44px rgba(17,23,29,.24));
    transform: translate3d(0,0,0) scale(1) rotate(-6deg);
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-hero-logo {
    width: 108px;
    height: auto;
    margin-bottom: 27px;
  }
}


/* 2026-09-22 TV3 hero static composition */
.tv3-case-v2 .tv3-hero-layer {
  opacity: 1 !important;
  animation: none !important;
  transition: none !important;
  filter: none !important;
  will-change: auto;
}

.tv3-case-v2 .tv3-hero-layer-old,
.tv3-case-v2 .tv3-hero-layer-current {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.tv3-case-v2 .tv3-hero-layer-phone {
  opacity: 1 !important;
  filter: drop-shadow(0 28px 44px rgba(17,23,29,.18)) !important;
  transform: rotate(-6deg) !important;
}


/* 2026-09-22 TV3 hero logo sizing fix */
.tv3-case-v2 .tv3-hero-logo {
  width: auto !important;
  height: 52px !important;
  display: flex !important;
  align-items: center;
  overflow: visible !important;
}

.tv3-case-v2 .tv3-hero-logo img {
  width: auto !important;
  height: 46px !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-hero-logo {
    width: auto !important;
    height: 40px !important;
    margin-bottom: 27px;
    overflow: visible !important;
  }

  .tv3-case-v2 .tv3-hero-logo img {
    width: auto !important;
    height: 36px !important;
    max-height: none !important;
  }
}


/* 2026-09-22 TV3 evolution metadata/title refinement */
.tv3-case-v2 .tv3-era {
  grid-template-columns: minmax(360px, .78fr) minmax(460px, 1.22fr);
  gap: clamp(48px, 5vw, 78px);
  align-items: start;
}

.tv3-case-v2 .tv3-era-copy {
  padding-top: 4px;
}

.tv3-case-v2 .tv3-era-meta {
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.tv3-case-v2 .tv3-era-meta strong,
.tv3-case-v2 .tv3-era-meta span {
  display: inline;
  margin: 0;
  font: 500 12px/1.2 var(--mono);
}

.tv3-case-v2 .tv3-era-meta strong {
  color: var(--green);
}

.tv3-case-v2 .tv3-era-meta span {
  color: var(--muted);
}

.tv3-case-v2 .tv3-era-meta span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(17,23,29,.28);
}

.tv3-case-v2 .tv3-era-copy h3 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(28px, 2.35vw, 36px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

@media (max-width: 1180px) {
  .tv3-case-v2 .tv3-era {
    grid-template-columns: minmax(320px, .82fr) minmax(400px, 1.18fr);
  }
}

@media (max-width: 900px) {
  .tv3-case-v2 .tv3-era {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .tv3-case-v2 .tv3-era-copy h3 {
    max-width: 620px;
    font-size: clamp(28px, 5.2vw, 36px);
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-era-meta {
    margin-bottom: 14px;
  }
  .tv3-case-v2 .tv3-era-copy h3 {
    font-size: clamp(27px, 8.5vw, 34px);
  }
}


/* 2026-09-22 TV3 evolution split-screen rebuild */
.tv3-case-v2 .tv3-story {
  overflow: hidden;
}

.tv3-case-v2 .tv3-era-list {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  gap: 0;
}

.tv3-case-v2 .tv3-era {
  min-height: clamp(570px, 43vw, 720px);
  display: grid;
  grid-template-columns: 50vw 50vw;
  gap: 0;
  align-items: center;
  position: relative;
}

.tv3-case-v2 .tv3-era + .tv3-era {
  margin-top: clamp(20px, 2.5vw, 44px);
}

.tv3-case-v2 .tv3-era-copy {
  width: 100%;
  max-width: 600px;
  padding-top: 0;
  align-self: center;
  position: relative;
  z-index: 5;
}

.tv3-case-v2 .tv3-era:nth-child(odd) .tv3-era-copy {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  padding-left: clamp(58px, 6.2vw, 118px);
  padding-right: clamp(32px, 5vw, 88px);
}

.tv3-case-v2 .tv3-era:nth-child(even) .tv3-era-copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  padding-left: clamp(32px, 5vw, 88px);
  padding-right: clamp(58px, 6.2vw, 118px);
}

.tv3-case-v2 .tv3-era-meta {
  margin-bottom: 17px;
}

.tv3-case-v2 .tv3-era-copy h3 {
  max-width: 500px;
  margin-bottom: 19px;
  font-size: clamp(29px, 2.55vw, 39px);
  line-height: 1.05;
}

.tv3-case-v2 .tv3-era-copy p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.58;
}

.tv3-case-v2 .tv3-era-visual {
  min-width: 0;
  margin: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.tv3-case-v2 .tv3-era-visual-single {
  width: clamp(690px, 56vw, 1020px);
}

.tv3-case-v2 .tv3-era-visual-single img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}

.tv3-case-v2 .tv3-era:nth-child(odd) .tv3-era-visual-single {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  transform: translateX(4.2vw);
}

.tv3-case-v2 .tv3-era:nth-child(even) .tv3-era-visual-single {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  transform: translateX(-4.2vw);
}

.tv3-case-v2 .tv3-era:nth-child(1) .tv3-era-visual-single {
  width: clamp(720px, 58vw, 1060px);
}

.tv3-case-v2 .tv3-era:nth-child(2) .tv3-era-visual-single {
  width: clamp(710px, 57vw, 1040px);
}

.tv3-case-v2 .tv3-era:nth-child(3) .tv3-era-visual-single {
  width: clamp(700px, 55vw, 1000px);
}

.tv3-case-v2 .tv3-era-future {
  min-height: clamp(640px, 49vw, 800px);
  padding-top: 0;
}

.tv3-case-v2 .tv3-era-future .tv3-era-copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.tv3-case-v2 .tv3-era-visual-devices {
  width: clamp(760px, 59vw, 1100px);
  height: clamp(560px, 45vw, 720px);
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  transform: translateX(-5vw);
}

.tv3-case-v2 .tv3-era-visual-devices img {
  width: auto;
  height: auto;
  max-width: none;
  display: block;
  position: absolute;
  object-fit: contain;
}

.tv3-case-v2 .tv3-era-visual-devices .era-device-laptop {
  width: 82%;
  right: -2%;
  top: 2%;
  z-index: 1;
}

.tv3-case-v2 .tv3-era-visual-devices .era-device-phone {
  width: 27%;
  left: 8%;
  bottom: 1%;
  z-index: 3;
}

.tv3-case-v2 .tv3-era-visual-devices .era-device-tablet {
  width: 32%;
  right: 2%;
  bottom: 0;
  z-index: 2;
}

@media (max-width: 1120px) {
  .tv3-case-v2 .tv3-era-copy h3 {
    font-size: clamp(28px, 3vw, 35px);
  }

  .tv3-case-v2 .tv3-era-copy p {
    font-size: 15px;
  }

  .tv3-case-v2 .tv3-era:nth-child(odd) .tv3-era-copy {
    padding-left: 52px;
    padding-right: 34px;
  }

  .tv3-case-v2 .tv3-era:nth-child(even) .tv3-era-copy {
    padding-left: 34px;
    padding-right: 52px;
  }
}

@media (max-width: 900px) {
  .tv3-case-v2 .tv3-story {
    overflow: hidden;
  }

  .tv3-case-v2 .tv3-era-list {
    width: auto;
    margin-left: 0;
    gap: 76px;
  }

  .tv3-case-v2 .tv3-era,
  .tv3-case-v2 .tv3-era-future {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tv3-case-v2 .tv3-era + .tv3-era {
    margin-top: 0;
  }

  .tv3-case-v2 .tv3-era:nth-child(n) .tv3-era-copy {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
    max-width: 620px;
    padding: 0;
  }

  .tv3-case-v2 .tv3-era:nth-child(n) .tv3-era-visual-single,
  .tv3-case-v2 .tv3-era-visual-devices {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: min(820px, 112vw);
    transform: none;
  }

  .tv3-case-v2 .tv3-era-visual-devices {
    height: min(570px, 75vw);
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-era-list {
    gap: 64px;
  }

  .tv3-case-v2 .tv3-era {
    gap: 22px;
  }

  .tv3-case-v2 .tv3-era-meta {
    margin-bottom: 13px;
  }

  .tv3-case-v2 .tv3-era-copy h3 {
    max-width: 100%;
    margin-bottom: 15px;
    font-size: clamp(27px, 8.5vw, 34px);
  }

  .tv3-case-v2 .tv3-era-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .tv3-case-v2 .tv3-era:nth-child(n) .tv3-era-visual-single {
    width: 118vw;
  }

  .tv3-case-v2 .tv3-era-visual-devices {
    width: 118vw;
    height: 86vw;
    margin-left: -7vw;
  }

  .tv3-case-v2 .tv3-era-visual-devices .era-device-laptop {
    width: 82%;
    right: 0;
  }

  .tv3-case-v2 .tv3-era-visual-devices .era-device-phone {
    width: 28%;
    left: 8%;
  }

  .tv3-case-v2 .tv3-era-visual-devices .era-device-tablet {
    width: 33%;
    right: 2%;
  }
}


/* 2026-09-22 TV3 evolution crop/alignment correction */
@media (min-width: 901px) {
  /* Keep every device fully inside the viewport while preserving a small centre overlap. */
  .tv3-case-v2 .tv3-era-visual-single {
    width: clamp(640px, 50vw, 900px);
  }

  .tv3-case-v2 .tv3-era:nth-child(1) .tv3-era-visual-single {
    width: clamp(660px, 52vw, 940px);
  }

  .tv3-case-v2 .tv3-era:nth-child(2) .tv3-era-visual-single {
    width: clamp(650px, 51vw, 920px);
  }

  .tv3-case-v2 .tv3-era:nth-child(3) .tv3-era-visual-single {
    width: clamp(640px, 50vw, 900px);
  }

  .tv3-case-v2 .tv3-era:nth-child(odd) .tv3-era-visual-single {
    transform: translateX(2.6vw);
  }

  .tv3-case-v2 .tv3-era:nth-child(even) .tv3-era-visual-single {
    transform: translateX(-2.6vw);
  }

  .tv3-case-v2 .tv3-era-visual-devices {
    width: clamp(700px, 54vw, 980px);
    height: clamp(530px, 42vw, 680px);
    transform: translateX(-3vw);
  }

  .tv3-case-v2 .tv3-era-visual-devices .era-device-laptop {
    width: 78%;
    right: 2%;
    top: 4%;
  }

  .tv3-case-v2 .tv3-era-visual-devices .era-device-phone {
    width: 25%;
    left: 10%;
    bottom: 2%;
  }

  .tv3-case-v2 .tv3-era-visual-devices .era-device-tablet {
    width: 29%;
    right: 4%;
    bottom: 2%;
  }

  /* The two left-side copy blocks need a small optical correction against transparent device canvases. */
  .tv3-case-v2 .tv3-era:nth-child(2) .tv3-era-copy {
    transform: translateY(18px);
  }

  .tv3-case-v2 .tv3-era:nth-child(4) .tv3-era-copy {
    transform: translateY(14px);
  }
}

@media (max-width: 900px) {
  .tv3-case-v2 .tv3-era:nth-child(2) .tv3-era-copy,
  .tv3-case-v2 .tv3-era:nth-child(4) .tv3-era-copy {
    transform: none;
  }

  .tv3-case-v2 .tv3-era:nth-child(n) .tv3-era-visual-single {
    width: min(760px, 104vw);
  }

  .tv3-case-v2 .tv3-era-visual-devices {
    width: min(760px, 104vw);
    height: min(540px, 72vw);
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-era:nth-child(n) .tv3-era-visual-single {
    width: 106vw;
  }

  .tv3-case-v2 .tv3-era-visual-devices {
    width: 106vw;
    height: 78vw;
    margin-left: -3vw;
  }
}


/* 2026-09-22 TV3 evolution final alignment + ecosystem proof */
@media (min-width: 901px) {
  /* Align the two left-side copy blocks with the site's main shell, not lower. */
  .tv3-case-v2 .tv3-era:nth-child(even) .tv3-era-copy {
    justify-self: start;
    padding-left: max(36px, calc((100vw - var(--shell)) / 2));
    padding-right: clamp(52px, 5vw, 92px);
    transform: none;
  }

  .tv3-case-v2 .tv3-era:nth-child(2) .tv3-era-copy,
  .tv3-case-v2 .tv3-era:nth-child(4) .tv3-era-copy {
    transform: none;
  }
}

/* Use the full Figma canvas as the proof image, edge-to-edge in the placeholder. */
.tv3-case-v2 .tv3-universe-proof {
  min-height: 0;
  height: auto;
  aspect-ratio: 2048 / 1155;
  padding: 0;
  overflow: hidden;
  background: #e5e6e3;
}

.tv3-case-v2 .tv3-universe-proof img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .tv3-case-v2 .tv3-universe-proof,
  .tv3-case-v2 .tv3-universe-proof img {
    min-height: 0;
    height: auto;
  }

  .tv3-case-v2 .tv3-universe-proof {
    aspect-ratio: 2048 / 1155;
  }

  .tv3-case-v2 .tv3-universe-proof img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-universe-proof,
  .tv3-case-v2 .tv3-universe-proof img {
    min-height: 0;
    height: auto;
  }

  .tv3-case-v2 .tv3-universe-proof {
    aspect-ratio: 2048 / 1155;
  }

  .tv3-case-v2 .tv3-universe-proof img {
    width: 100%;
    height: 100%;
    padding: 0;
  }
}


/* 2026-09-22 TV3 ecosystem proof hard-fill */
.tv3-case-v2 .tv3-universe-proof {
  position: relative;
  min-height: clamp(420px, 43vw, 680px);
  height: clamp(420px, 43vw, 680px);
  aspect-ratio: auto;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.tv3-case-v2 .tv3-universe-proof img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  padding: 0;
  margin: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .tv3-case-v2 .tv3-universe-proof {
    min-height: clamp(320px, 52vw, 520px);
    height: clamp(320px, 52vw, 520px);
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-universe-proof {
    min-height: clamp(240px, 60vw, 400px);
    height: clamp(240px, 60vw, 400px);
  }
}


/* 2026-09-22 TV3 evolution width + ecosystem aspect correction */
@media (min-width: 901px) {
  /* Keep left-side evolution copy on the site's main content vertical without squeezing it. */
  .tv3-case-v2 .tv3-era:nth-child(even) .tv3-era-copy {
    width: min(
      540px,
      calc(50vw - max(36px, calc((100vw - var(--shell)) / 2)) - 56px)
    );
    max-width: 540px;
    margin-left: max(36px, calc((100vw - var(--shell)) / 2));
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    justify-self: start;
    transform: none;
  }

  .tv3-case-v2 .tv3-era:nth-child(2) .tv3-era-copy,
  .tv3-case-v2 .tv3-era:nth-child(4) .tv3-era-copy {
    transform: none;
  }

  .tv3-case-v2 .tv3-era:nth-child(even) .tv3-era-copy h3,
  .tv3-case-v2 .tv3-era:nth-child(even) .tv3-era-copy p {
    max-width: 100%;
  }
}

/* Preserve the real Figma screenshot ratio - no top/bottom cropping. */
.tv3-case-v2 .tv3-universe-proof {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 2048 / 1155;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.tv3-case-v2 .tv3-universe-proof img {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
}

@media (max-width: 900px) {
  .tv3-case-v2 .tv3-universe-proof {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 2048 / 1155;
  }

  .tv3-case-v2 .tv3-universe-proof img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-universe-proof {
    height: auto;
    min-height: 0;
    aspect-ratio: 2048 / 1155;
  }

  .tv3-case-v2 .tv3-universe-proof img {
    height: 100%;
    min-height: 0;
    object-fit: contain;
  }
}


/* 2026-09-22 Cases hero TV3 evolution composition */
.cases-hero-tv3-evolution {
  min-height: 610px;
  position: relative;
  overflow: visible;
}

.cases-hero-tv3-evolution .case-shot {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cases-hero-tv3-evolution .case-shot img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}

.cases-hero-tv3-evolution .shot-skates-history {
  width: 96%;
  height: auto;
  top: 3%;
  right: -8%;
  z-index: 1;
  transform: none;
}

.cases-hero-tv3-evolution .shot-skates-history img {
  filter: drop-shadow(0 28px 45px rgba(17,23,29,.16));
}

.cases-hero-tv3-evolution .shot-tv3-video-mobile {
  width: 33%;
  height: auto;
  left: 3%;
  bottom: 1%;
  z-index: 3;
  transform: rotate(-4deg);
}

.cases-hero-tv3-evolution .shot-tv3-video-mobile img {
  filter: drop-shadow(0 28px 46px rgba(17,23,29,.22));
}

@media (max-width: 900px) {
  .cases-hero-tv3-evolution {
    max-width: 650px;
    min-height: 560px;
    margin: 0 auto;
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 92%;
    right: -2%;
    top: 2%;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 31%;
    left: 3%;
    bottom: 2%;
  }
}

@media (max-width: 560px) {
  .cases-hero-tv3-evolution {
    min-height: 410px;
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 96%;
    right: -7%;
    top: 5%;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 34%;
    left: 0;
    bottom: 0;
    transform: rotate(-3deg);
  }
}


/* 2026-09-22 Cases hero centre-anchored TV3 overlap */
.cases-hero {
  min-height: 770px;
  padding-top: 70px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.cases-hero .hero-grid {
  position: relative;
  min-height: 610px;
  align-items: center;
}

.cases-hero .hero-copy {
  position: relative;
  z-index: 5;
}

.cases-hero-tv3-evolution {
  width: clamp(700px, 58vw, 920px);
  min-height: 650px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate3d(-2%, -43%, 0);
  overflow: visible;
  pointer-events: none;
}

.cases-hero-tv3-evolution .shot-skates-history {
  width: 82%;
  height: auto;
  top: 1%;
  left: 12%;
  right: auto;
  z-index: 1;
  transform: none;
}

.cases-hero-tv3-evolution .shot-tv3-video-mobile {
  width: 25%;
  height: auto;
  left: 1%;
  bottom: -5%;
  z-index: 4;
  transform: rotate(-4deg);
}

.cases-hero-evolution-note {
  width: min(285px, 34%);
  padding: 19px 20px 21px;
  position: absolute;
  left: 24%;
  bottom: 5%;
  z-index: 5;
  background: rgba(17,23,29,.95);
  color: #fff;
  box-shadow: 0 22px 42px rgba(17,23,29,.2);
  pointer-events: none;
}

.cases-hero-evolution-note span {
  display: block;
  margin-bottom: 11px;
  color: var(--green);
  font: 500 10px/1.2 var(--mono);
  letter-spacing: .04em;
}

.cases-hero-evolution-note strong {
  display: block;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 500;
}

.cases-outcomes {
  position: relative;
  z-index: 1;
}

@media (max-width: 1180px) {
  .cases-hero {
    min-height: 720px;
  }

  .cases-hero-tv3-evolution {
    width: clamp(620px, 60vw, 780px);
    transform: translate3d(-2%, -42%, 0);
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 24%;
  }

  .cases-hero-evolution-note {
    left: 23%;
    bottom: 7%;
    width: min(255px, 36%);
  }
}

@media (max-width: 900px) {
  .cases-hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .cases-hero .hero-grid {
    min-height: 0;
  }

  .cases-hero-tv3-evolution {
    width: min(760px, 112vw);
    min-height: 570px;
    position: relative;
    left: auto;
    top: auto;
    margin: 54px auto -115px;
    transform: translateX(3%);
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 80%;
    left: 15%;
    top: 0;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 23%;
    left: 5%;
    bottom: 1%;
  }

  .cases-hero-evolution-note {
    width: min(270px, 38%);
    left: 25%;
    bottom: 9%;
  }
}

@media (max-width: 560px) {
  .cases-hero {
    padding-bottom: 18px;
  }

  .cases-hero-tv3-evolution {
    width: 114vw;
    min-height: 420px;
    margin: 42px 0 -82px -7vw;
    transform: none;
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 84%;
    left: 17%;
    top: 2%;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 25%;
    left: 6%;
    bottom: 0;
  }

  .cases-hero-evolution-note {
    width: 43%;
    left: 29%;
    bottom: 8%;
    padding: 14px 14px 16px;
  }

  .cases-hero-evolution-note span {
    margin-bottom: 8px;
    font-size: 8px;
  }

  .cases-hero-evolution-note strong {
    font-size: 17px;
    line-height: 1.09;
  }
}


/* 2026-09-22 Cases hero position/scale refinement */
@media (min-width: 901px) {
  .cases-hero-tv3-evolution {
    transform: translate3d(-2%, -51%, 0);
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 88%;
    left: 9%;
    top: -1%;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    bottom: -2%;
  }

  .cases-hero-evolution-note {
    bottom: 8%;
  }

  .cases-hero-evolution-note strong {
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.1;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .cases-hero-tv3-evolution {
    transform: translate3d(-2%, -49%, 0);
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 86%;
    left: 10%;
  }

  .cases-hero-evolution-note strong {
    font-size: clamp(17px, 1.5vw, 20px);
  }
}

@media (max-width: 900px) {
  .cases-hero-tv3-evolution {
    margin-top: 22px;
    margin-bottom: -95px;
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 86%;
    left: 11%;
  }

  .cases-hero-evolution-note strong {
    font-size: clamp(17px, 2.5vw, 20px);
  }
}

@media (max-width: 560px) {
  .cases-hero-tv3-evolution {
    margin-top: 18px;
    margin-bottom: -70px;
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 88%;
    left: 13%;
    top: 0;
  }

  .cases-hero-evolution-note strong {
    font-size: 15px;
    line-height: 1.1;
  }
}


/* 2026-09-22 Cases hero stronger position/scale correction */
@media (min-width: 1181px) {
  .cases-hero-tv3-evolution {
    width: clamp(760px, 61vw, 980px);
    min-height: 650px;
    top: 50%;
    transform: translate3d(-3%, -64%, 0);
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 96%;
    left: 4%;
    top: -3%;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 27%;
    left: -1%;
    bottom: -1%;
  }

  .cases-hero-evolution-note {
    width: min(260px, 31%);
    left: 22%;
    bottom: 10%;
    padding: 16px 17px 18px;
  }

  .cases-hero-evolution-note span {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .cases-hero-evolution-note strong {
    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.12;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .cases-hero-tv3-evolution {
    width: clamp(680px, 64vw, 840px);
    transform: translate3d(-3%, -60%, 0);
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 92%;
    left: 6%;
    top: -2%;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 26%;
    left: 0;
    bottom: 0;
  }

  .cases-hero-evolution-note {
    width: min(240px, 33%);
    left: 23%;
    bottom: 10%;
    padding: 15px 16px 17px;
  }

  .cases-hero-evolution-note strong {
    font-size: 16px;
  }
}


/* 2026-09-22 Cases hero exact mockup reference composition */
@media (min-width: 1181px) {
  .cases-hero {
    min-height: 760px;
    padding-bottom: 96px;
    overflow: hidden;
  }

  .cases-hero .hero-grid {
    min-height: 620px;
  }

  .cases-hero-tv3-evolution {
    width: clamp(900px, 68vw, 1120px);
    min-height: 700px;
    left: 50%;
    top: 50%;
    transform: translate3d(-7%, -71%, 0);
    z-index: 4;
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 100%;
    left: 6%;
    top: -4%;
    z-index: 1;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 29%;
    left: 2%;
    bottom: -2%;
    z-index: 5;
    transform: rotate(-3deg);
  }

  .cases-hero-evolution-note {
    width: 250px;
    left: 29%;
    bottom: 12%;
    padding: 15px 16px 17px;
    background: rgba(17,23,29,.94);
    z-index: 6;
  }

  .cases-hero-evolution-note span {
    margin-bottom: 7px;
    font-size: 9px;
  }

  .cases-hero-evolution-note strong {
    font-size: 15px;
    line-height: 1.12;
    letter-spacing: -.03em;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .cases-hero {
    min-height: 700px;
    overflow: hidden;
  }

  .cases-hero-tv3-evolution {
    width: clamp(760px, 70vw, 920px);
    min-height: 620px;
    left: 50%;
    top: 50%;
    transform: translate3d(-6%, -66%, 0);
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 98%;
    left: 7%;
    top: -3%;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 28%;
    left: 3%;
    bottom: -1%;
  }

  .cases-hero-evolution-note {
    width: 235px;
    left: 29%;
    bottom: 12%;
    padding: 14px 15px 16px;
  }

  .cases-hero-evolution-note strong {
    font-size: 14px;
    line-height: 1.12;
  }
}


/* 2026-09-22 Cases hero reference lock */
@media (min-width: 901px) {
  .cases-hero {
    min-height: 760px;
    padding-bottom: 96px;
    overflow: visible;
  }

  .cases-hero .hero-grid {
    min-height: 620px;
    position: relative;
  }

  .cases-hero-tv3-evolution {
    width: clamp(850px, 62vw, 1020px);
    min-height: 700px;
    height: 700px;
    position: absolute;
    left: 50%;
    top: 28px;
    margin: 0;
    transform: none !important;
    overflow: visible;
    z-index: 4;
  }

  .cases-hero-tv3-evolution .shot-skates-history {
    width: 100%;
    height: auto;
    left: 0;
    right: auto;
    top: 0;
    bottom: auto;
    transform: none !important;
    z-index: 1;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 28%;
    height: auto;
    left: 7%;
    top: 300px;
    bottom: auto;
    transform: none !important;
    z-index: 5;
  }

  .cases-hero-evolution-note {
    width: 235px;
    left: 34%;
    top: 448px;
    bottom: auto;
    padding: 20px 21px 21px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 14px 30px rgba(17,23,29,.12);
    z-index: 6;
  }

  .cases-hero-evolution-note span {
    display: none;
  }

  .cases-hero-evolution-note strong {
    font-size: 16px;
    line-height: 1.18;
    letter-spacing: -.025em;
    font-weight: 500;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .cases-hero-tv3-evolution {
    width: clamp(760px, 66vw, 900px);
    top: 34px;
  }

  .cases-hero-tv3-evolution .shot-tv3-video-mobile {
    width: 27%;
    left: 7%;
    top: 285px;
  }

  .cases-hero-evolution-note {
    width: 220px;
    left: 34%;
    top: 425px;
  }

  .cases-hero-evolution-note strong {
    font-size: 15px;
  }
}




/* 2026-09-22 Cases hero evolution note only */
@media (min-width: 1181px) {
  .cases-hero-evolution-note {
    left: 34%;
    top: 88%;
    bottom: auto;
    z-index: 8;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .cases-hero-evolution-note {
    left: 34%;
    top: 86%;
    bottom: auto;
  }
}

@media (max-width: 900px) {
  .cases-hero-evolution-note {
    left: 40%;
    top: 84%;
    bottom: auto;
  }
}

@media (max-width: 560px) {
  .cases-hero-evolution-note {
    left: 37%;
    top: 86%;
  }
}


/* 2026-09-22 Cases page proof placeholders */
.case-logo-placeholder,
.archive-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(15,185,141,.06), rgba(255,106,39,.04)),
    #e8ebe9;
}

.case-logo-placeholder img {
  width: min(46%, 220px) !important;
  height: auto !important;
  max-height: 110px;
  object-fit: contain !important;
  filter: none !important;
}

.case-logo-placeholder small,
.archive-placeholder small {
  color: var(--muted);
  font: 500 9px/1.3 var(--mono);
  letter-spacing: .02em;
}

.archive-placeholder strong {
  color: var(--ink);
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: -.04em;
}

.archive-proof {
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.archive-proof strong {
  font-weight: 500;
  color: var(--ink);
}

.proof-archive-case {
  min-height: 455px;
}

.proof-archive-case figure {
  height: 205px;
}

@media (max-width: 760px) {
  .case-logo-placeholder img {
    width: min(55%, 190px) !important;
  }

  .proof-archive-case {
    min-height: 410px;
  }
}


/* 2026-09-22 TV3 hero static phone + correct mark */
.tv3-case-v2 .tv3-hero-logo {
  width: 42px !important;
  height: 76px !important;
  margin-bottom: 28px;
  display: flex !important;
  align-items: flex-start;
  overflow: visible !important;
}

.tv3-case-v2 .tv3-hero-logo img {
  width: 42px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
  object-fit: contain;
  object-position: left top;
}

.tv3-case-v2 .tv3-hero-layer-phone {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  filter: drop-shadow(0 28px 44px rgba(17,23,29,.18)) !important;
}

@media (min-width: 1041px) {
  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 25%;
    left: 31%;
    top: 252px;
  }
}

@media (max-width: 1040px) {
  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 23%;
    left: 31%;
    top: 130px;
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-hero-logo {
    width: 34px !important;
    height: 61px !important;
    margin-bottom: 25px;
  }

  .tv3-case-v2 .tv3-hero-logo img {
    width: 34px !important;
    height: auto !important;
  }

  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 22%;
    left: 31%;
    top: 92px;
  }
}


/* 2026-09-22 TV3 hero/evolution spacing refinement */
/* Hero: old Skaties visual now uses the iMac mockup from the collaboration examples. */
@media (min-width: 1041px) {
  .tv3-case-v2 .tv3-hero-layer-old {
    width: 63%;
    left: -2%;
    top: 34px;
  }

  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 25%;
    left: 27%;
    top: 282px;
  }
}

@media (max-width: 1040px) {
  .tv3-case-v2 .tv3-hero-layer-old {
    width: 58%;
    left: -2%;
    top: 38px;
  }

  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 23%;
    left: 28%;
    top: 154px;
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-hero-layer-old {
    width: 58%;
    left: -3%;
    top: 30px;
  }

  .tv3-case-v2 .tv3-hero-layer-phone {
    width: 22%;
    left: 27%;
    top: 110px;
  }
}

/* Pull the four evolution examples closer together. */
@media (min-width: 901px) {
  .tv3-case-v2 .tv3-era {
    min-height: clamp(510px, 38vw, 640px);
  }

  .tv3-case-v2 .tv3-era + .tv3-era {
    margin-top: clamp(6px, 1vw, 16px);
  }

  .tv3-case-v2 .tv3-era-future {
    min-height: clamp(545px, 41vw, 680px);
    margin-top: clamp(-18px, -1.3vw, -8px) !important;
  }

  .tv3-case-v2 .tv3-story.section-pad {
    padding-bottom: 54px;
  }

  .tv3-case-v2 .tv3-universe.section-pad {
    padding-top: 54px;
  }
}

@media (max-width: 900px) {
  .tv3-case-v2 .tv3-era-list {
    gap: 48px;
  }

  .tv3-case-v2 .tv3-era-future {
    margin-top: -14px !important;
  }

  .tv3-case-v2 .tv3-story.section-pad {
    padding-bottom: 46px;
  }

  .tv3-case-v2 .tv3-universe.section-pad {
    padding-top: 46px;
  }
}

@media (max-width: 680px) {
  .tv3-case-v2 .tv3-era-list {
    gap: 40px;
  }

  .tv3-case-v2 .tv3-era-future {
    margin-top: -12px !important;
  }

  .tv3-case-v2 .tv3-story.section-pad {
    padding-bottom: 38px;
  }

  .tv3-case-v2 .tv3-universe.section-pad {
    padding-top: 38px;
  }
}


/* Selected cases refinement */
.cases-page-v2 .selected-cases .section-heading h2 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.cases-page-v2 .selected-cases .case-row {
  grid-template-columns: minmax(0, .86fr) minmax(390px, 1fr);
  gap: 56px;
  align-items: center;
}
.cases-page-v2 .selected-cases .case-row figure,
.cases-page-v2 .selected-cases .case-row-copy {
  grid-column: auto;
}
.cases-page-v2 .selected-cases .case-row figure {
  width: 100%;
  height: 375px;
  justify-self: start;
}
.cases-page-v2 .selected-cases .case-row-copy h3 {
  margin: 0 0 16px;
}
.cases-page-v2 .selected-cases .case-row-copy > p {
  margin-bottom: 0;
}
.cases-page-v2 .selected-cases .case-row-copy dl {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 14px;
  border: 0;
}
.cases-page-v2 .selected-cases .case-row-copy dl div {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.cases-page-v2 .selected-cases .case-row-copy dt,
.cases-page-v2 .selected-cases .case-row-copy dd {
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cases-page-v2 .selected-cases .case-row-copy dt {
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 600;
  text-transform: none;
}
.cases-page-v2 .selected-cases .case-row-copy dd {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 1120px) {
  .cases-page-v2 .selected-cases .case-row {
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr);
    gap: 42px;
  }
  .cases-page-v2 .selected-cases .case-row figure {
    height: 360px;
  }
}

@media (max-width: 820px) {
  .cases-page-v2 .selected-cases .case-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cases-page-v2 .selected-cases .case-row figure,
  .cases-page-v2 .selected-cases .case-row-copy {
    grid-column: auto;
  }
  .cases-page-v2 .selected-cases .case-row figure {
    width: min(100%, 620px);
    height: 370px;
  }
}

@media (max-width: 560px) {
  .cases-page-v2 .selected-cases .case-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cases-page-v2 .selected-cases .case-row figure {
    height: 280px;
  }
  .cases-page-v2 .selected-cases .case-row-copy dl {
    grid-template-columns: 1fr;
  }
  .cases-page-v2 .selected-cases .case-row-copy dl div {
    min-height: auto;
  }
}

/* Agency / development partner proof */
.cases-page-v2 .agency-proof {
  background: #e3ece8;
}
.cases-page-v2 .agency-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 72px;
  align-items: center;
}
.cases-page-v2 .agency-proof-copy {
  max-width: 650px;
}
.cases-page-v2 .agency-proof-copy .eyebrow {
  margin-bottom: 24px;
  color: var(--green);
}
.cases-page-v2 .agency-proof-copy .eyebrow > span {
  background: var(--green);
}
.cases-page-v2 .agency-proof-copy h2 {
  max-width: 690px;
  margin-bottom: 24px;
}
.cases-page-v2 .agency-proof-copy > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.cases-page-v2 .agency-proof .quote-card {
  width: 100%;
  min-height: 300px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.cases-page-v2 .agency-proof .quote-card h3 {
  margin-top: 20px;
  margin-bottom: 12px;
}
.cases-page-v2 .agency-proof .quote-card > p {
  margin-bottom: 0;
}
.cases-page-v2 .agency-proof .quote-card footer {
  padding-top: 18px;
}
@media (max-width: 820px) {
  .cases-page-v2 .agency-proof-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cases-page-v2 .agency-proof-copy {
    max-width: 680px;
  }
}
@media (max-width: 560px) {
  .cases-page-v2 .agency-proof-grid {
    gap: 34px;
  }
  .cases-page-v2 .agency-proof .quote-card {
    min-height: 300px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}



/* 2026-09-23 About page conversion pass */
.about-position > .shell { display: block; }
.about-model-strip {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.about-model-strip article {
  min-height: 220px;
  padding: 34px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  background: #f7f6f3;
}
.about-model-strip article > span {
  color: var(--orange);
  font: 500 11px/1 var(--mono);
}
.about-model-strip h3 {
  max-width: 430px;
  margin: 0 0 14px;
  font-size: 27px;
}
.about-model-strip p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.about-operating .about-pillar-grid {
  border: 0;
}
.about-operating .pillar {
  min-height: 310px;
  padding: 34px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}
.about-operating .pillar:nth-child(odd) {
  padding-right: 52px;
}
.about-operating .pillar:nth-child(even) {
  padding-left: 52px;
}
.about-operating .pillar-top {
  min-height: 48px;
}
.about-operating .pillar h3 {
  margin: auto 0 16px;
}
.about-operating .pillar > p {
  max-width: 520px;
}

.about-tv3-proof {
  background: #eef0ee;
}
.about-tv3-proof .case-feature-copy > p:not(.eyebrow):not(.about-tv3-scope) {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.about-tv3-proof .case-kpis span {
  max-width: 150px;
}
.about-tv3-scope {
  margin: -2px 0 28px;
  color: var(--muted);
  font: 500 12px/1.4 var(--mono);
  letter-spacing: .02em;
}

.about-founder {
  background: #fff;
}
.founder-profile-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 110px;
  align-items: center;
}
.founder-board-compact {
  min-height: 480px;
  transform: none;
  box-shadow: 0 28px 65px rgba(20,26,31,.13);
}
.founder-person {
  margin: auto 0 28px;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 28px;
  align-items: end;
}
.founder-person > strong {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--orange);
  font: 500 43px/1 var(--mono);
  letter-spacing: -.08em;
}
.founder-person small {
  color: rgba(255,255,255,.46);
  font: 500 9px/1 var(--mono);
}
.founder-person h3 {
  max-width: 520px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.05;
}
.founder-board-compact .founder-role {
  margin-top: 0;
}
.founder-board-compact .founder-role p {
  max-width: 620px;
  font-size: 11px;
  line-height: 1.55;
}

.logo-row-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.client-wordmark {
  display: block;
  margin: auto;
  color: #11171d;
  opacity: .54;
  filter: grayscale(1);
  line-height: 1;
}
.client-peero {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.06em;
}

@media (max-width: 980px) {
  .about-model-strip {
    margin-top: 58px;
  }
  .founder-profile-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .founder-board-compact {
    max-width: 720px;
  }
  .logo-row-five {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .about-model-strip {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }
  .about-model-strip article {
    min-height: auto;
    padding: 28px 24px;
  }
  .about-operating .pillar:nth-child(odd),
  .about-operating .pillar:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }
  .about-operating .pillar {
    min-height: 260px;
  }
  .about-tv3-proof .case-feature-copy > p:not(.eyebrow):not(.about-tv3-scope) {
    font-size: 16px;
  }
  .founder-board-compact {
    min-height: 430px;
    padding: 24px;
  }
  .founder-person {
    grid-template-columns: 82px 1fr;
    gap: 18px;
  }
  .founder-person > strong {
    width: 82px;
    height: 82px;
    font-size: 32px;
  }
  .founder-person h3 {
    font-size: 30px;
  }
  .logo-row-five {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-peero {
    font-size: 27px;
  }
}


/* 2026-09-23 client logo sizing fix */
.about-clients .client-tv3 {
  width: 88px;
  max-width: 88px;
  max-height: 44px;
  object-fit: contain;
}

.about-clients .client-lnb {
  width: 207px;
  max-width: 207px;
  max-height: 108px;
  object-fit: contain;
}

.about-clients .client-rv {
  max-width: 132px;
}

.about-clients .client-reaton {
  max-width: 128px;
}


/* 2026-09-23 About outcomes dark block */
.about-outcomes .process-outcomes-head {
  max-width: 980px;
}

.about-outcomes .process-outcomes-head > p {
  color: rgba(255,255,255,.76);
}

.about-outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 84px);
}

.about-outcome-grid article {
  max-width: 330px;
}

.about-outcome-number {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font: 500 clamp(58px, 6vw, 84px)/.9 var(--mono);
  letter-spacing: -.075em;
}

.about-outcome-grid h3 {
  max-width: 300px;
  margin-bottom: 14px;
  color: #fff;
}

.about-outcome-grid p {
  max-width: 315px;
  color: rgba(255,255,255,.74);
}

@media (max-width: 980px) {
  .about-outcome-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
  }

  .about-outcome-number {
    font-size: clamp(52px, 8vw, 72px);
  }
}

@media (max-width: 720px) {
  .about-outcome-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-outcome-grid article {
    max-width: 520px;
  }

  .about-outcome-number {
    margin-bottom: 22px;
  }
}


/* 2026-09-23 simplified About positioning block */
.about-position-head {
  max-width: 900px;
}

.about-position-head h2 {
  max-width: 760px;
  margin-bottom: 26px;
}

.about-position-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.about-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px);
  margin-top: 76px;
}

.about-model-grid article {
  min-width: 0;
}

.about-model-grid article > span {
  display: block;
  margin-bottom: 40px;
  color: var(--orange);
  font: 500 11px/1 var(--mono);
}

.about-model-grid h3 {
  max-width: 260px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.about-model-grid p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .about-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 56px;
    margin-top: 62px;
  }
}

@media (max-width: 620px) {
  .about-position-copy {
    font-size: 16px;
  }

  .about-model-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 52px;
  }

  .about-model-grid article > span {
    margin-bottom: 18px;
  }

  .about-model-grid h3,
  .about-model-grid p {
    max-width: 520px;
  }
}


/* 2026-09-23 About outcome metric labels */
.about-outcomes .eyebrow.light {
  color: var(--green);
}

.about-outcomes .eyebrow.light > span {
  background: var(--green);
}

.about-outcome-unit {
  display: block;
  max-width: 250px;
  margin: -18px 0 34px;
  color: rgba(255,255,255,.62);
  font: 500 12px/1.35 var(--mono);
  letter-spacing: .015em;
}

.about-outcome-grid h3 {
  min-height: 2.35em;
}

@media (max-width: 720px) {
  .about-outcome-unit {
    margin-top: -10px;
    margin-bottom: 24px;
  }

  .about-outcome-grid h3 {
    min-height: 0;
  }
}


/* 2026-09-23 About page simplification and language pass */

/* All section eyebrows on About page use the turquoise accent. */
.about-page-v2 main .eyebrow,
.about-page-v2 main .eyebrow.light {
  color: var(--green);
}
.about-page-v2 main .eyebrow > span,
.about-page-v2 main .eyebrow.light > span {
  background: var(--green);
}

/* Outcome cards: title -> number -> practical explanation. */
.about-outcome-grid h3 {
  min-height: 2.35em;
  margin: 0 0 26px;
}
.about-outcome-number {
  margin: 0 0 24px;
  font-weight: 400;
}
.about-outcome-unit {
  display: none;
}

/* Collaboration model: compact benefit pills instead of decorative numbers. */
.about-model-grid article > span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 7px 9px;
  border: 1px solid rgba(15,185,141,.18);
  border-radius: 2px;
  background: rgba(15,185,141,.08);
  color: var(--green);
  font: 500 11px/1 var(--sans);
  letter-spacing: 0;
}

/* Principles are values, not numbered steps. */
.principles .evidence-grid article {
  min-height: 210px;
  padding-top: 28px;
}
.principles .evidence-grid h3 {
  margin: 0 0 16px;
}

/* Daily work: one horizontal row, no cards, no numbering. */
.about-operating .about-pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px);
  border: 0;
}
.about-operating .pillar {
  min-height: 0;
  padding: 0;
  display: block;
  border: 0;
}
.about-operating .pillar:nth-child(odd),
.about-operating .pillar:nth-child(even) {
  padding-left: 0;
  padding-right: 0;
}
.about-operating .pillar h3 {
  max-width: 260px;
  margin: 0 0 14px;
  font-size: clamp(22px, 2vw, 28px);
}
.about-operating .pillar > p {
  max-width: 290px;
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .about-operating .about-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 56px;
  }
}

@media (max-width: 620px) {
  .about-outcome-grid h3 {
    min-height: 0;
    margin-bottom: 20px;
  }

  .about-outcome-number {
    margin-bottom: 18px;
  }

  .about-model-grid article > span {
    margin-bottom: 18px;
  }

  .about-operating .about-pillar-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-operating .pillar h3,
  .about-operating .pillar > p {
    max-width: 520px;
  }
}


/* 2026-09-23 About history horizontal timeline */
.about-history-head {
  max-width: 900px;
}

.about-history-head h2 {
  max-width: 820px;
  margin-bottom: 26px;
}

.about-history-head > p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.history-timeline-horizontal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px);
  margin-top: 78px;
  border-top: 0;
}

.history-timeline-horizontal article {
  min-height: 0;
  padding: 0;
  display: block;
  border: 0;
}

.history-timeline-horizontal article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--orange);
  font: 500 11px/1 var(--mono);
}

.history-timeline-horizontal h3 {
  max-width: 300px;
  margin: 0 0 14px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.history-timeline-horizontal p {
  max-width: 310px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .history-timeline-horizontal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 56px;
    margin-top: 62px;
  }
}

@media (max-width: 620px) {
  .about-history-head > p:last-child {
    font-size: 16px;
  }

  .history-timeline-horizontal {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 52px;
  }

  .history-timeline-horizontal article > span {
    margin-bottom: 18px;
  }

  .history-timeline-horizontal h3,
  .history-timeline-horizontal p {
    max-width: 520px;
  }
}


/* 2026-09-23 About hero portrait layout */
.about-hero {
  overflow: hidden;
  padding-bottom: 0;
}

.about-hero .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, .82fr);
  gap: 56px;
  align-items: stretch;
}

.about-hero .hero-copy {
  max-width: 820px;
  align-self: center;
  padding-bottom: 72px;
}

.about-hero .hero-copy h1 {
  max-width: 820px;
}

.about-hero .hero-lead {
  max-width: 700px;
}

.about-hero .hero-actions {
  flex-wrap: nowrap;
}

.about-hero .button,
.about-hero .text-link {
  white-space: nowrap;
}

.about-hero-media {
  width: calc(100% + 14vw);
  min-height: 650px;
  margin-right: -14vw;
  position: relative;
  align-self: stretch;
}

.about-hero-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
}

.about-hero-photo img {
  width: auto;
  max-width: none;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
}

.about-hero-name-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 32px;
  width: min(430px, 68%);
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(17,23,29,.92);
  color: #fff;
  box-shadow: 0 18px 45px rgba(17,23,29,.16);
  backdrop-filter: blur(10px);
}

.about-hero-name-card small {
  color: var(--orange-soft);
  font: 500 10px/1.3 var(--mono);
}

.about-hero-name-card h2 {
  margin: 9px 0 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
}

.about-hero-name-card p {
  margin: 15px 0 0;
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: rgba(255,255,255,.68);
}

.about-hero-name-card p strong {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
}

.about-hero-name-card p span {
  max-width: 190px;
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 1120px) {
  .about-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .78fr);
    gap: 42px;
  }

  .about-hero .hero-copy {
    padding-bottom: 60px;
  }

  .about-hero-media {
    min-height: 590px;
    width: calc(100% + 10vw);
    margin-right: -10vw;
  }

  .about-hero .hero-actions {
    gap: 20px;
  }
}

@media (max-width: 820px) {
  .about-hero {
    padding-bottom: 0;
  }

  .about-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero .hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .about-hero .hero-actions {
    flex-wrap: wrap;
  }

  .about-hero-media {
    width: 112%;
    min-height: 650px;
    margin: 0 -6%;
  }

  .about-hero-name-card {
    left: 7%;
  }
}

@media (max-width: 560px) {
  .about-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-hero .button,
  .about-hero .text-link {
    width: fit-content;
    white-space: nowrap;
  }

  .about-hero-media {
    width: 118%;
    min-height: 500px;
    margin: 0 -9%;
  }

  .about-hero-name-card {
    left: 9%;
    bottom: 20px;
    width: min(360px, 78%);
    padding: 17px 18px;
  }

  .about-hero-name-card h2 {
    font-size: 30px;
  }
}


/* 2026-09-23 About hero image placement refinement */
.about-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.about-hero .hero-grid {
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.about-hero .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding-top: 36px;
  padding-bottom: 88px;
}

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

.about-hero .hero-lead {
  max-width: 650px;
}

.about-hero .hero-actions {
  margin-top: 36px;
}

.about-hero-media {
  min-height: 650px;
  align-self: stretch;
  position: relative;
  overflow: visible;
}

.about-hero-photo {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 1285px;
  height: auto;
  margin: 0;
  overflow: visible;
  background: transparent;
  transform: translateX(-48%);
}

.about-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
}

.about-hero-name-card {
  z-index: 4;
}

@media (min-width: 1280px) {
  .about-hero-photo {
    width: 1404px;
    transform: translateX(-46%);
  }
}

@media (max-width: 1120px) {
  .about-hero .hero-copy {
    max-width: 650px;
    padding-bottom: 72px;
  }

  .about-hero .hero-copy h1 {
    max-width: 650px;
  }

  .about-hero-photo {
    width: 1666px;
    transform: translateX(-49%);
  }
}

@media (max-width: 820px) {
  .about-hero .hero-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-hero-media {
    min-height: 520px;
  }

  .about-hero-photo {
    left: 50%;
    width: 1530px;
    transform: translateX(-43%);
  }
}

@media (max-width: 560px) {
  .about-hero-media {
    min-height: 420px;
  }

  .about-hero-photo {
    width: 1224px;
    transform: translateX(-40%);
  }
}


/* 2026-09-23 About hero mobile card separation */
@media (max-width: 820px) {
  .about-hero-media {
    min-height: 620px;
  }

  .about-hero-photo {
    bottom: 170px;
  }

  .about-hero-name-card {
    left: 20px;
    right: 20px;
    bottom: 16px;
    width: auto;
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .about-hero-media {
    min-height: 520px;
  }

  .about-hero-photo {
    bottom: 160px;
  }

  .about-hero-name-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
  }
}


/* Contact form spam trap */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}


/* Privacy page */
.privacy-page-v2 .service-hero {
  background: #f3f1ed;
}
.privacy-page-v2 .service-hero .section-intro {
  max-width: 900px;
}
.privacy-content {
  max-width: 880px;
}
.privacy-content article {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.privacy-content article:first-child {
  border-top: 0;
  padding-top: 0;
}
.privacy-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 38px);
}
.privacy-content p {
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.privacy-content p + p {
  margin-top: 14px;
}
.privacy-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-updated {
  margin-top: 30px;
  font-size: 13px !important;
}


/* Cookie consent */
.cookie-consent[hidden],
.cookie-settings-backdrop[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  z-index: 9998;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #11171d;
  color: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.cookie-consent-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.cookie-consent-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent-copy a,
.cookie-manage-link {
  color: #62d7c5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-consent .button {
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.55);
}

.cookie-consent .cookie-accept,
.cookie-consent .cookie-reject {
  background: transparent;
  color: #fff;
}

.cookie-consent .cookie-accept:hover,
.cookie-consent .cookie-reject:hover {
  background: #fff;
  color: #11171d;
}

.cookie-manage-link {
  border: 0;
  background: transparent;
  padding: 10px 4px;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-settings-backdrop {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17,23,29,.62);
  backdrop-filter: blur(8px);
}

.cookie-settings {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 36px;
  background: #f3f1ed;
  color: #11171d;
  outline: none;
  box-shadow: 0 22px 80px rgba(0,0,0,.28);
}

.cookie-settings h2 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.cookie-settings > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-settings-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.cookie-setting-row strong,
.cookie-setting-row span {
  display: block;
}

.cookie-setting-row strong {
  margin-bottom: 4px;
}

.cookie-setting-row div > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-status {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.cookie-setting-toggle {
  cursor: pointer;
}

.cookie-setting-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch {
  position: relative;
  flex: 0 0 50px;
  width: 50px;
  height: 28px;
  border-radius: 30px;
  background: #c8c6c1;
  transition: background .2s ease;
}

.cookie-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}

.cookie-setting-toggle input:checked + .cookie-switch {
  background: var(--green);
}

.cookie-setting-toggle input:checked + .cookie-switch::after {
  transform: translateX(22px);
}

.cookie-setting-toggle input:focus-visible + .cookie-switch {
  outline: 3px solid rgba(17,23,29,.3);
  outline-offset: 3px;
}

.cookie-settings-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.cookie-settings-open {
  overflow: hidden;
}

.site-footer [data-cookie-settings] {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-footer [data-cookie-settings]:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 20px;
  }

  .cookie-consent-actions {
    flex-wrap: wrap;
  }

  .cookie-consent .button {
    flex: 1 1 200px;
  }
}

@media (max-width: 560px) {
  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent .button,
  .cookie-manage-link {
    width: 100%;
  }

  .cookie-settings-backdrop {
    padding: 12px;
  }

  .cookie-settings {
    padding: 30px 22px 24px;
  }

  .cookie-settings-actions {
    align-items: stretch;
    flex-direction: column;
  }
}


.cookie-policy-table-wrap {
  overflow-x: auto;
  margin: 22px 0 18px;
}

.cookie-policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
}

.cookie-policy-table th,
.cookie-policy-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.cookie-policy-table th {
  color: #11171d;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cookie-policy-table td {
  color: var(--muted);
}

.cookie-policy-table code {
  color: #11171d;
  font-size: 13px;
}


/* 2026-09-24 compact footer and orange eyebrow contrast */
.site-footer {
  padding: 52px 0 26px;
}

.site-footer .footer-main {
  min-height: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  padding-bottom: 34px;
}

.site-footer .brand-footer img {
  width: 58px;
  height: auto;
}

.site-footer .footer-main nav {
  display: flex;
  grid-template-columns: none;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-right: 0;
}

.site-footer .footer-main nav a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.36);
  font: 400 11px/1.4 var(--sans);
}

.site-footer .footer-utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.site-footer .footer-utility a,
.site-footer .footer-utility [data-cookie-settings] {
  color: rgba(255,255,255,.42);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer .footer-utility a:hover,
.site-footer .footer-utility [data-cookie-settings]:hover {
  color: rgba(255,255,255,.8);
}

.final-cta .eyebrow,
.final-cta .eyebrow.light,
.contact-trust .eyebrow,
.contact-trust .eyebrow.light,
.office-card .eyebrow,
.office-card .eyebrow.light,
.review-context-number .eyebrow,
.review-context-number .eyebrow.light,
.knowledge-timeline article:nth-child(4) .eyebrow,
.tv3-timeline article:nth-child(4) .eyebrow {
  color: rgba(255,255,255,.94) !important;
}

.final-cta .eyebrow > span,
.contact-trust .eyebrow > span,
.office-card .eyebrow > span,
.review-context-number .eyebrow > span,
.knowledge-timeline article:nth-child(4) .eyebrow > span,
.tv3-timeline article:nth-child(4) .eyebrow > span {
  background: #fff !important;
}

@media (max-width: 820px) {
  .site-footer {
    padding: 54px 0 26px;
  }

  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 32px;
  }

  .site-footer .brand-footer img {
    width: 52px;
  }

  .site-footer .footer-main nav {
    justify-content: flex-start;
    gap: 12px 22px;
  }

  .site-footer .footer-main nav a {
    font-size: 14px;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer .footer-utility {
    justify-content: flex-start;
    gap: 10px 18px;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-main nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .site-footer .footer-main nav a {
    white-space: normal;
  }

  .site-footer .footer-utility {
    gap: 10px 16px;
  }
}


/* 2026-09-24 success page simplification */
.success-page-v2 .status-layout-simple {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.success-page-v2 .status-layout-simple .status-copy {
  max-width: 860px;
}

.success-page-v2 .status-eyebrow {
  justify-content: center;
  color: var(--green);
}

.success-page-v2 .status-eyebrow > span {
  background: var(--green);
}

.success-page-v2 .status-copy h1 {
  margin-bottom: 0;
}

.success-page-v2 .status-copy h1 em {
  margin-top: 6px;
}

.success-page-v2 .status-copy .hero-actions {
  justify-content: center;
  margin-top: 44px;
}

@media (max-width: 820px) {
  .success-page-v2 .status-section {
    padding: 88px 0 110px;
  }

  .success-page-v2 .status-copy .hero-actions {
    align-items: center;
  }
}
