:root {
  --red: #d80b1c;
  --red-dark: #aa0714;
  --ink: #111111;
  --charcoal: #1a1a1a;
  --muted: #686868;
  --line: #dedede;
  --paper: #f5f5f3;
  --white: #ffffff;
  --max: 1240px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.wrap { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
.section { padding: clamp(72px, 8vw, 118px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 68px;
  padding: 6px max(32px, calc((100vw - var(--max)) / 2));
  background: rgba(245, 245, 243, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 164px; height: auto; max-height: 38px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; justify-content: center; gap: clamp(24px, 3vw, 48px); font-size: 14px; font-weight: 650; }
.site-nav a { position: relative; padding: 12px 0; }
.site-nav a::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; content: ""; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.mobile-nav-cta { display: none; }
.header-cta { padding: 11px 17px; color: var(--white); background: var(--ink); border-radius: 999px; font-size: 13px; font-weight: 700; transition: background 180ms ease, transform 180ms ease; }
.header-cta:hover { background: var(--red); transform: translateY(-1px); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; background: none; border: 1px solid var(--line); border-radius: 50%; }
.nav-toggle span { display: block; width: 17px; height: 1.5px; margin: 4px auto; background: var(--ink); }

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: var(--white);
}
.grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(17,17,17,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(17,17,17,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .58fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
  min-height: 0 !important;
  padding-top: clamp(6px, 1.4vw, 18px);
  padding-bottom: clamp(28px, 3.2vw, 44px);
}
.hero-copy { padding-top: clamp(34px, 4.2vw, 64px); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.eyebrow.light { color: #ff6571; }
h1, h2, h3, h4, p { overflow-wrap: break-word; }
h1, h2, h3, h4 { margin-top: 0; line-height: .99; letter-spacing: -.045em; }
h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(48px, 5.7vw, 84px); font-weight: 800; }
h2 { max-width: 880px; margin-bottom: 28px; font-size: clamp(42px, 5.1vw, 72px); font-weight: 790; }
.headline-dot { color: var(--red); }
h3 { font-size: 24px; }
.hero-trigger { max-width: 650px; margin: 0 0 16px; padding-left: 18px; border-left: 3px solid var(--red); font-size: clamp(19px, 1.65vw, 24px); font-weight: 760; line-height: 1.3; }
.hero-lead { max-width: 690px; margin: 0; color: var(--muted); font-size: 17px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 15px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 760; line-height: 1.2; cursor: pointer; transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--red); box-shadow: 0 12px 30px rgba(216, 11, 28, .19); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { background: rgba(255,255,255,.75); border-color: #c9c9c9; }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.hero-visual { position: relative; align-self: center; display: grid; align-content: center; transform: translateY(-4px); }
.hero-visual-mobile { display: none; }
.hero-frame { position: relative; width: min(100%, 330px); margin-left: auto; overflow: visible; background: transparent; border-radius: 0; box-shadow: none; }
.hero-frame img { width: 100%; height: auto; object-fit: contain; object-position: center; filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .08)); }
.hero-trust { max-width: 620px; margin: 16px 0 0; color: #666; font-size: 14px; font-weight: 520; }

.trust-strip { padding: 18px 0; background: var(--ink); color: var(--white); }
.trust-grid { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.4vw, 34px); }
.trust-grid p { display: inline-flex; align-items: baseline; gap: 6px; margin: 0; color: #d2d2d2; font-size: 14px; white-space: nowrap; }
.trust-grid p + p::before { content: "•"; margin-right: clamp(10px, 1.4vw, 22px); color: #6f6f6f; }
.trust-grid strong { color: var(--white); font-size: 16px; line-height: 1; letter-spacing: -.02em; }
.trust-grid span { color: #c9c9c9; font-size: 14px; line-height: 1.2; }

.section-intro { max-width: 870px; margin-bottom: 64px; }
.section-intro > p:last-child { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; }
.split-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(48px, 8vw, 120px); align-items: end; max-width: none; }
.split-intro h2 { margin-bottom: 0; }
.problem { position: relative; padding: clamp(76px, 8.5vw, 128px) 0; background: var(--paper); }
.problem .section-intro { margin-bottom: 34px; }
.problem h2 { max-width: 790px; font-size: clamp(38px, 4.55vw, 64px); }
.problem-copy { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.problem-copy p { margin: 0; }
.problem-copy p + p { margin-top: 16px; }
.problem-flow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; height: 34px; margin-bottom: 22px; opacity: .78; }
.problem-flow::before { position: absolute; top: 17px; right: 0; left: 0; height: 1px; content: ""; background: linear-gradient(90deg, rgba(17,17,17,.04), rgba(17,17,17,.18), rgba(17,17,17,.04)); }
.problem-flow::after { position: absolute; top: 12px; left: 0; width: 10px; height: 10px; content: ""; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 7px rgba(216, 11, 28, .06); }
.problem-flow span { position: relative; }
.problem-flow span::before { position: absolute; top: 14px; left: 22px; width: 7px; height: 7px; content: ""; background: var(--paper); border: 1px solid rgba(216, 11, 28, .38); border-radius: 50%; }
.signal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.signal-grid article { min-height: 158px; padding: 20px; background: rgba(255, 255, 255, .52); border: 1px solid rgba(17, 17, 17, .085); border-radius: 2px; transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease; }
.signal-grid article:hover { background: rgba(255, 255, 255, .82); border-color: rgba(216, 11, 28, .22); box-shadow: 0 14px 38px rgba(0, 0, 0, .045); transform: translateY(-2px); }
.signal-grid span { display: block; margin-bottom: 40px; color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.signal-grid h3 { margin: 0; font-size: clamp(17px, 1.48vw, 21px); line-height: 1.16; letter-spacing: -.03em; }

.problem-solution { padding: clamp(44px, 4.8vw, 70px) 0; background: var(--paper); }
.problem-panel { padding: clamp(22px, 2.6vw, 32px); background: rgba(255, 255, 255, .62); border: 1px solid rgba(17, 17, 17, .095); border-radius: 4px 4px 36px 4px; box-shadow: 0 16px 48px rgba(0, 0, 0, .035); }
.problem-solution-head { max-width: 760px; margin-bottom: 20px; }
.problem-solution-head .eyebrow { margin-bottom: 14px; }
.problem-solution-head h2 { max-width: 660px; margin-bottom: 16px; font-size: clamp(31px, 3.15vw, 44px); }
.problem-solution-head > p:last-child { max-width: 735px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.56; }
.diagnosis-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr); gap: clamp(8px, 1.1vw, 16px); align-items: start; padding-top: 18px; border-top: 1px solid rgba(17, 17, 17, .105); }
.diagnosis-grid::before, .diagnosis-grid::after { display: none; }
.diagnosis-grid article { min-height: 0; padding: 0; background: transparent; border: 0; border-radius: 0; }
.diagnosis-arrow { position: relative; align-self: start; display: grid; place-items: center; width: 24px; padding-top: 3px; color: rgba(216, 11, 28, .62); font-size: 13px; line-height: 1; }
.diagnosis-arrow::before { display: none; }
.diagnosis-arrow { text-shadow: 0 0 0 var(--paper); }
.diagnosis-grid h3 { margin-bottom: 14px; font-size: clamp(20px, 1.65vw, 24px); }
.diagnosis-grid ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.diagnosis-grid li { position: relative; padding-left: 20px; color: var(--muted); font-size: 15px; line-height: 1.42; }
.diagnosis-grid li::before { position: absolute; top: .72em; left: 0; width: 5px; height: 5px; content: ""; background: var(--red); border-radius: 50%; transform: translateY(-50%); }
.diagnosis-solution { margin: -8px 0; padding: 18px !important; background: rgba(216, 11, 28, .052) !important; border: 1px solid rgba(216, 11, 28, .18) !important; border-radius: 3px 3px 28px 3px !important; }
.diagnosis-solution h3 { color: var(--ink); }

.problem-experience { padding: clamp(34px, 4vw, 58px) 0 clamp(56px, 6vw, 88px); background: var(--paper); }
.problem-experience-panel { padding: clamp(30px, 3.6vw, 50px); background: var(--white); border: 1px solid rgba(17, 17, 17, .09); border-radius: 4px 4px 54px 4px; box-shadow: 0 22px 70px rgba(0, 0, 0, .055); }
.problem-experience-copy { max-width: 790px; margin-bottom: clamp(30px, 3.8vw, 48px); }
.problem-experience-copy .eyebrow { margin-bottom: 14px; color: var(--red); font-size: 11px; }
.problem-experience-copy h2 { max-width: 760px; margin-bottom: 14px; font-size: clamp(32px, 3.65vw, 52px); }
.problem-experience-copy > p { max-width: 610px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.12vw, 18px); line-height: 1.55; }
.ad-fatigue-map { position: relative; display: grid; grid-template-columns: minmax(230px, .82fr) minmax(420px, 1.36fr) minmax(260px, .92fr); gap: clamp(18px, 2vw, 28px); align-items: stretch; }
.ad-fatigue-map::before { position: absolute; top: 50%; right: 18%; left: 18%; height: 1px; content: ""; background: linear-gradient(90deg, rgba(216, 11, 28, .12), rgba(17, 17, 17, .16), rgba(216, 11, 28, .18)); transform: translateY(-50%); }
.fatigue-signal, .fatigue-reset, .fatigue-flow article { position: relative; z-index: 1; background: var(--white); }
.fatigue-signal, .fatigue-reset { display: grid; align-content: space-between; min-height: 260px; padding: clamp(22px, 2.4vw, 30px); border: 1px solid rgba(17, 17, 17, .11); border-radius: 3px 3px 34px 3px; }
.fatigue-signal span, .fatigue-reset span, .fatigue-flow span { color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.fatigue-signal strong, .fatigue-reset strong { display: block; max-width: 280px; margin: 28px 0 14px; color: var(--ink); font-size: clamp(25px, 2.45vw, 38px); line-height: 1.02; letter-spacing: -.045em; }
.fatigue-signal p, .fatigue-reset p, .fatigue-flow p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.fatigue-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 1px; background: rgba(17, 17, 17, .1); border-radius: 3px 3px 34px 3px; }
.fatigue-flow article { display: grid; align-content: start; min-height: 260px; padding: clamp(20px, 2.1vw, 28px); }
.fatigue-flow article:first-child { border-radius: 2px 0 0 2px; }
.fatigue-flow article:last-child { border-radius: 0 2px 32px 0; }
.fatigue-flow h3 { margin: clamp(44px, 5vw, 72px) 0 12px; font-size: clamp(21px, 1.8vw, 27px); line-height: 1.06; }
.fatigue-reset { background: #151515; border-color: #151515; box-shadow: 0 20px 55px rgba(0, 0, 0, .12); }
.fatigue-reset strong { color: var(--white); }
.fatigue-reset p { color: #c6c6c6; }
.reset-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.reset-tags em { display: inline-flex; padding: 7px 10px; color: #eeeeee; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; font-size: 12px; font-style: normal; font-weight: 720; }

.services { padding-top: clamp(70px, 7vw, 104px); background: var(--white); }
.services .section-intro { max-width: 940px; margin-bottom: 46px; }
.services h2 { max-width: 820px; font-size: clamp(38px, 4.7vw, 66px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(17, 17, 17, .11); border-left: 1px solid rgba(17, 17, 17, .11); }
.service-grid article { min-height: 238px; padding: 24px; background: var(--white); border-right: 1px solid rgba(17, 17, 17, .11); border-bottom: 1px solid rgba(17, 17, 17, .11); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.service-grid article:hover { position: relative; z-index: 2; transform: translateY(-3px); border-color: rgba(216, 11, 28, .23); box-shadow: 0 16px 44px rgba(0, 0, 0, .055); }
.service-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 48px; color: var(--red); border: 1px solid #d8d8d6; border-radius: 50%; font-size: 10px; font-weight: 850; }
.service-grid h3 { margin-bottom: 12px; font-size: clamp(22px, 2vw, 25px); line-height: 1.08; }
.service-grid p { margin: 0; color: var(--muted); }
.compact-service-grid { grid-template-columns: repeat(4, 1fr); }
.compact-service-grid article { min-height: 232px; }
.service-note { margin: 22px 0 0; padding-top: 18px; color: var(--muted); border-top: 1px solid rgba(17, 17, 17, .1); font-size: 16px; font-weight: 650; }

.showcase { color: var(--white); background: var(--ink); }
.showcase .wrap { display: flex; flex-direction: column; }
.showcase-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: 72px; align-items: end; max-width: none; }
.showcase-intro h2 { margin-bottom: 0; }
.showcase-intro > p { color: #b8b8b8 !important; }
.video-group + .video-group { margin-top: 88px; }
.video-group-real { order: 2; margin-top: 0 !important; }
.video-group-ai { order: 3; margin-top: 88px; }
.showcase-cta { order: 4; }
.video-group-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid #3b3b3b; }
.video-group-head h3 { margin: 0; font-size: 22px; letter-spacing: -.02em; }
.video-group-head span { color: #929292; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.video-card { min-width: 0; }
.video-card button { position: relative; width: 100%; padding: 0; overflow: hidden; background: #282828; border: 0; border-radius: 3px; cursor: pointer; }
.video-card video { width: 100%; aspect-ratio: 9 / 13; object-fit: cover; background: #282828; transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 250ms ease; }
.video-card button:hover video { transform: scale(1.025); filter: brightness(.82); }
.video-card button::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(0,0,0,.35), transparent 38%); pointer-events: none; }
.play-icon { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: 54px; height: 54px; padding-left: 3px; color: var(--ink); background: rgba(255,255,255,.9); border-radius: 50%; font-size: 14px; transform: translate(-50%, -50%); transition: color 180ms ease, background 180ms ease, transform 180ms ease; }
.video-card button:hover .play-icon { color: var(--white); background: var(--red); transform: translate(-50%, -50%) scale(1.08); }
.showcase-cta { display: grid; grid-template-columns: 1fr auto; gap: 18px 32px; align-items: center; margin-top: 58px; padding: 28px; background: #1b1b1b; border: 1px solid #353535; border-radius: 4px 4px 38px 4px; }
.showcase-cta h3 { margin: 0; font-size: clamp(26px, 2.6vw, 38px); line-height: 1.05; }
.showcase-cta p { max-width: 540px; margin: 0; color: #c2c2c2; }
.showcase-cta .btn { grid-row: 1 / 3; grid-column: 2; }

.proof { background: var(--paper); }
.proof .section-intro { margin-bottom: 34px; }
.proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 760px; margin-bottom: 24px; border-top: 1px solid rgba(17, 17, 17, .12); border-left: 1px solid rgba(17, 17, 17, .12); }
.proof-stats p { display: grid; gap: 4px; margin: 0; padding: 15px 18px; background: rgba(255, 255, 255, .42); border-right: 1px solid rgba(17, 17, 17, .12); border-bottom: 1px solid rgba(17, 17, 17, .12); }
.proof-stats strong { color: var(--red); font-size: clamp(24px, 2.4vw, 34px); line-height: .95; letter-spacing: -.04em; }
.proof-stats span { color: var(--muted); font-size: 14px; font-weight: 650; }
.result-panel { padding: clamp(24px, 3vw, 36px); background: rgba(255, 255, 255, .62); border: 1px solid rgba(17, 17, 17, .12); border-radius: 4px 4px 42px 4px; }
.result-panel-label { margin: 0 0 22px; color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.result-panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.result-panel-grid article { position: relative; padding: 0 clamp(22px, 3vw, 38px); }
.result-panel-grid article:first-child { padding-left: 0; }
.result-panel-grid article:last-child { padding-right: 0; }
.result-panel-grid article + article::before { position: absolute; top: 8px; bottom: 8px; left: 0; width: 1px; content: ""; background: rgba(17, 17, 17, .12); }
.result-panel-grid strong { display: block; margin-bottom: 12px; color: var(--red); font-size: clamp(34px, 4vw, 56px); line-height: .95; letter-spacing: -.055em; white-space: nowrap; }
.result-panel-grid p { margin: 0 0 8px; color: var(--ink); font-size: clamp(18px, 1.5vw, 22px); font-weight: 760; line-height: 1.12; letter-spacing: -.025em; }
.result-panel-grid small { display: block; max-width: 280px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.result-panel-note { margin: 28px 0 0; padding-top: 16px; color: var(--muted); border-top: 1px solid rgba(17, 17, 17, .1); font-size: 13px; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.case-grid article { padding: clamp(26px, 3vw, 36px); background: var(--white); border: 1px solid rgba(17, 17, 17, .1); border-radius: 4px 4px 34px 4px; }
.case-grid h3 { margin-bottom: 14px; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.05; }
.case-flow { display: grid; gap: 0; margin-bottom: 20px; border-top: 1px solid rgba(17, 17, 17, .1); }
.case-flow p { position: relative; margin: 0; padding: 17px 0 17px 28px; color: var(--muted); border-bottom: 1px solid rgba(17, 17, 17, .1); }
.case-flow p::before { position: absolute; top: 21px; left: 0; content: "↓"; color: var(--red); font-size: 13px; }
.case-flow p:first-child::before { content: ""; width: 6px; height: 6px; top: 26px; background: var(--red); border-radius: 50%; }
.case-flow span, .case-grid strong span { display: block; margin-bottom: 4px; color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.case-grid strong { display: block; color: var(--ink); font-size: 15px; }
.case-grid strong em { display: block; font-style: normal; font-size: clamp(23px, 2.2vw, 32px); line-height: 1.06; letter-spacing: -.035em; }

.deliverables { padding: clamp(72px, 7vw, 112px) 0; background: var(--white); }
.deliverables-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 112px); align-items: start; }
.deliverables h2 { max-width: 580px; font-size: clamp(36px, 4.2vw, 58px); }
.deliverables p:not(.eyebrow) { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; }
.deliverables-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin: 10px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(17, 17, 17, .12); }
.deliverables-list li { display: flex; gap: 18px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(17, 17, 17, .12); font-size: clamp(18px, 1.55vw, 22px); font-weight: 720; line-height: 1.18; letter-spacing: -.025em; }
.deliverables-list span { color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .13em; }

.process { padding: clamp(76px, 8vw, 118px) 0; background: var(--paper); }
.process-intro { max-width: 760px; margin-bottom: 42px; }
.process-intro h2 { font-size: clamp(38px, 4.7vw, 64px); }
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid #cececc; }
.process-list li { position: relative; min-height: 205px; padding: 22px 20px; border-right: 1px solid #cececc; }
.process-list li:last-child { border-right: 0; }
.process-list li::after { position: absolute; top: -4px; left: 0; width: 7px; height: 7px; content: ""; background: var(--red); border-radius: 50%; }
.process-list span { display: block; margin-bottom: 56px; color: var(--red); font-size: 11px; font-weight: 850; }
.process-list h3 { margin-bottom: 10px; font-size: 26px; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

.support { padding: clamp(70px, 7vw, 108px) 0; background: var(--white); }
.support-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(48px, 8vw, 116px); align-items: start; padding-top: 36px; border-top: 1px solid rgba(17, 17, 17, .12); }
.support-copy h2 { max-width: 620px; font-size: clamp(34px, 4vw, 56px); }
.support-copy p:not(.eyebrow) { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; }
.support-cards { display: grid; gap: 12px; }
.support-cards article { padding: 24px; background: var(--paper); border: 1px solid rgba(17, 17, 17, .09); border-radius: 2px; }
.support-cards span { display: block; margin-bottom: 18px; color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.support-cards p { margin: 0; color: var(--muted); font-size: 16px; }

.work { padding: clamp(62px, 6.5vw, 96px) 0; background: var(--white); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: stretch; }
.work-panel { position: relative; padding: clamp(26px, 3vw, 34px); background: var(--white); border: 1px solid rgba(17, 17, 17, .11); border-radius: 2px; }
.work-panel h2 { max-width: 560px; font-size: clamp(34px, 3.7vw, 54px); }
.work-panel > p:not(.eyebrow) { max-width: 560px; margin: 0 0 30px; color: var(--muted); font-size: 17px; }
.work-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(17, 17, 17, .11); }
.work-list li { padding: 14px 0; border-bottom: 1px solid rgba(17, 17, 17, .11); font-size: 16px; font-weight: 720; line-height: 1.2; letter-spacing: -.02em; }
.anchor-target { position: absolute; top: -100px; }
.compact-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(17, 17, 17, .11); }
.compact-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(17, 17, 17, .11); }
.compact-steps span { color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.compact-steps h3 { margin-bottom: 6px; font-size: 19px; line-height: 1.15; letter-spacing: -.025em; }
.compact-steps p { margin: 0; color: var(--muted); font-size: 14px; }

.collaboration { background: var(--white); }
.collaboration-head { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: clamp(24px, 3vw, 42px); align-items: stretch; margin-bottom: 22px; padding: clamp(24px, 3vw, 34px); background: var(--paper); border: 1px solid rgba(17, 17, 17, .1); border-radius: 4px 4px 40px 4px; }
.collaboration-head > div { position: relative; align-self: center; }
.collaboration-head .eyebrow { margin-bottom: 14px; }
.collaboration-head h2 { max-width: 620px; margin-bottom: 14px; font-size: clamp(32px, 3.2vw, 46px); }
.collaboration-head p:not(.eyebrow) { max-width: 620px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.collaboration-visual { width: 100%; min-height: 170px; margin: 0; overflow: hidden; background: var(--white); border-radius: 3px 3px 28px 3px; box-shadow: none; }
.collaboration-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1); }
.collaboration-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(17, 17, 17, .13); border-left: 1px solid rgba(17, 17, 17, .13); }
.collaboration-steps li { min-height: 176px; padding: 20px; border-right: 1px solid rgba(17, 17, 17, .13); border-bottom: 1px solid rgba(17, 17, 17, .13); }
.collaboration-steps li.is-final { background: rgba(216, 11, 28, .035); }
.collaboration-steps span { display: block; margin-bottom: 28px; color: var(--red); font-size: 16px; font-weight: 850; letter-spacing: .1em; }
.collaboration-steps h3 { margin-bottom: 10px; font-size: clamp(20px, 1.65vw, 25px); line-height: 1.08; }
.collaboration-steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.meta-choice { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(26px, 4vw, 56px); align-items: start; margin-top: 34px; padding-top: 30px; border-top: 1px solid rgba(17, 17, 17, .12); }
.meta-choice h3 { max-width: 620px; margin-bottom: 14px; font-size: clamp(28px, 3vw, 44px); line-height: 1.04; }
.meta-choice > div > p { max-width: 620px; margin: 0; color: var(--muted); }
.meta-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.meta-choice-grid article { padding: 22px; background: var(--paper); border: 1px solid rgba(17, 17, 17, .1); border-radius: 3px 3px 28px 3px; }
.meta-choice-grid h4 { margin: 0 0 10px; font-size: 20px; line-height: 1.08; }
.meta-choice-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.meta-choice-note { grid-column: 1 / -1; margin: -4px 0 0; color: var(--ink); font-size: 14px; font-weight: 760; }
.pre-contact { margin-top: 34px; padding: 26px 0; border-top: 1px solid rgba(17, 17, 17, .12); }
.pre-contact h3 { max-width: 620px; margin-bottom: 12px; font-size: clamp(28px, 3vw, 42px); line-height: 1.04; }
.pre-contact p { max-width: 760px; margin: 0; color: var(--muted); font-size: 16px; }
.faq-block { margin-top: clamp(54px, 6vw, 82px); padding: clamp(28px, 3.5vw, 42px); background: var(--paper); border: 1px solid rgba(17, 17, 17, .1); border-radius: 4px 4px 46px 4px; }
.faq-intro { max-width: 720px; margin-bottom: 22px; }
.faq-intro h2 { margin-bottom: 0; font-size: clamp(32px, 3.6vw, 52px); }
.faq-list { display: grid; border-top: 1px solid rgba(17, 17, 17, .12); }
.faq-item { border-bottom: 1px solid rgba(17, 17, 17, .12); }
.faq-item h3 { margin: 0; font-size: 18px; letter-spacing: -.02em; }
.faq-item button { position: relative; width: 100%; padding: 19px 42px 19px 0; text-align: left; background: transparent; border: 0; cursor: pointer; font-weight: 780; }
.faq-item button::after { position: absolute; top: 50%; right: 4px; content: "+"; color: var(--red); font-size: 24px; transform: translateY(-50%); }
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 180ms ease; }
.faq-item.is-open .faq-answer { max-height: 320px; }
.faq-answer p { max-width: 760px; margin: -2px 0 20px; color: var(--muted); }

.request-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 6vw, 96px); margin-top: 0; padding: clamp(34px, 5vw, 66px); color: var(--white); background: var(--ink); border-radius: 4px 4px 64px 4px; }
.request-copy h2 { max-width: 600px; font-size: clamp(38px, 4.7vw, 62px); }
.request-copy p:not(.eyebrow) { max-width: 560px; margin: 0; color: #b8b8b8; font-size: 17px; }
.request-pricing { max-width: 560px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .18); }
.request-pricing span { display: block; margin-bottom: 10px; color: #ff6571; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.request-pricing p { margin: 0; color: #b8b8b8; font-size: 15px; line-height: 1.58; }
.request-followup { max-width: 560px !important; margin: -2px 0 0 !important; color: #d4d4d4 !important; font-size: 13px !important; }
.request-form .btn { justify-self: start; }

.contact { padding: clamp(72px, 7vw, 102px) 0 clamp(56px, 6vw, 86px); background: var(--paper); }
.faq-section { padding-top: clamp(54px, 6vw, 82px); background: var(--paper); }
.faq-section .faq-block { margin-top: 0; }
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 140px); padding: clamp(42px, 6vw, 82px); color: var(--white); background: var(--ink); border-radius: 4px 4px 72px 4px; }
.contact-copy h2 { font-size: clamp(42px, 5vw, 68px); }
.contact-copy > p:not(.eyebrow) { color: #b8b8b8; font-size: 17px; }
.contact-email { display: inline-flex; gap: 12px; margin-top: 28px; padding-bottom: 3px; border-bottom: 1px solid #777; font-weight: 700; }
.contact-email span { color: #ff6571; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 18px; align-content: start; }
.netlify-hidden { position: absolute; overflow: hidden; width: 1px; height: 1px; margin: -1px; padding: 0; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.contact-form label { display: grid; gap: 9px; }
.contact-form label > span { color: #aaa; font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.contact-form label > span small { color: #777; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 14px 0; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid #555; border-radius: 0; outline: none; resize: vertical; }
.contact-form select { color-scheme: dark; cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, #aaa 50%), linear-gradient(135deg, #aaa 50%, transparent 50%); background-position: calc(100% - 14px) 22px, calc(100% - 8px) 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.contact-form select:invalid { color: #707070; }
.contact-form select option { color: var(--ink); background: var(--white); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #ff6571; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #707070; }
.contact-form textarea { min-height: 122px; }
.contact-form .full { grid-column: 1 / -1; }
.optional-field input { border-bottom-color: #444; }
.field-error { margin: -2px 0 0; color: #ff8a93; font-size: 12px; line-height: 1.35; }
.contact-form label.has-error input, .contact-form label.has-error textarea, .contact-form label.has-error select { border-color: #ff6571; }
.btn-white { color: var(--ink); background: var(--white); }
.btn-white:hover { color: var(--white); background: var(--red); }
.btn[disabled] { opacity: .65; cursor: wait; transform: none; }
.request-form .btn { margin-top: 6px; }
.form-note { min-height: 18px; margin: -6px 0 0; color: #cfcfcf; font-size: 13px; }
.form-note.is-success { color: #9bd89f; }
.form-note.is-error { color: #ff8a93; }
.gdpr-note { margin: -8px 0 0; color: #9d9d9d; font-size: 11px; line-height: 1.45; }
.form-comfort { margin: -8px 0 0; color: #c7c7c7; font-size: 12px; line-height: 1.45; }

.site-footer { padding: clamp(30px, 3.8vw, 48px) 0 clamp(22px, 2.8vw, 34px); background: #f7f7f5; border-top: 1px solid #dededb; }
.footer-grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.footer-main { display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, 320px); gap: clamp(38px, 8vw, 118px); align-items: center; }
.footer-identity { display: grid; gap: 9px; align-content: start; justify-items: start; }
.footer-brand { padding: 0; }
.footer-brand img { width: min(100%, 238px); height: auto; max-height: 50px; object-fit: contain; object-position: left center; }
.footer-identity p { max-width: 430px; margin: 0; color: var(--muted); font-size: clamp(13px, .95vw, 15px); line-height: 1.4; letter-spacing: -.012em; }
.footer-contact { display: grid; gap: 10px; justify-self: end; }
.footer-contact-link { display: grid; grid-template-columns: 28px auto auto; gap: 12px; align-items: center; color: var(--ink); font-size: clamp(14px, 1.05vw, 16px); font-weight: 650; letter-spacing: -.012em; }
.footer-contact-link:hover { color: var(--red); }
.footer-contact-link span:first-child { display: grid; place-items: center; width: 28px; height: 28px; color: var(--ink); }
.footer-contact-link svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.linkedin-mark { width: 23px !important; height: 23px !important; border: 1.6px solid currentColor; border-radius: 4px; font-size: 14px; font-weight: 780; line-height: 1; letter-spacing: -.04em; }
.footer-contact-link em { font-style: normal; font-size: 18px; line-height: 1; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: clamp(16px, 2vw, 22px); border-top: 1px solid #d0d0cd; }
.footer-bottom small, .footer-bottom span { color: var(--muted); font-size: 13px; line-height: 1.3; letter-spacing: -.01em; }
.footer-bottom small { white-space: nowrap; }
.footer-bottom span { display: inline-flex; gap: 12px; align-items: center; }
.footer-bottom em { font-style: normal; font-size: 18px; line-height: 1; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.lightbox-panel { position: relative; width: min(86vw, 460px); max-height: 86vh; overflow: visible; color: var(--white); background: #050505; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 24px 80px rgba(0,0,0,.42); }
.lightbox-close { position: absolute; z-index: 2; top: -14px; right: -14px; width: 34px; height: 34px; padding: 0; color: var(--white); background: rgba(10,10,10,.92); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: 20px; cursor: pointer; }
.lightbox-close:hover { background: var(--red); border-color: var(--red); }
.lightbox-frame { display: grid; place-items: center; background: #050505; border-radius: inherit; overflow: hidden; }
.lightbox-frame video { width: 100%; max-height: 82vh; background: #000; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .wrap { width: min(var(--max), calc(100% - 44px)); }
  .site-header { padding-inline: 22px; }
  .hero-grid { grid-template-columns: 1.05fr .58fr; gap: 42px; }
  .trust-grid { flex-wrap: wrap; gap: 12px 22px; }
  .trust-grid p:nth-child(3)::before { display: none; }
  .problem h2 { font-size: clamp(38px, 5vw, 56px); }
  .problem-experience-copy { max-width: 760px; }
  .ad-fatigue-map { grid-template-columns: 1fr; }
  .ad-fatigue-map::before { top: 20%; right: auto; bottom: 20%; left: 32px; width: 1px; height: auto; background: linear-gradient(180deg, rgba(216, 11, 28, .1), rgba(17, 17, 17, .14), rgba(216, 11, 28, .18)); transform: none; }
  .fatigue-flow { grid-template-columns: repeat(3, 1fr); }
  .fatigue-signal, .fatigue-reset, .fatigue-flow article { min-height: 210px; }
  .work-grid { grid-template-columns: 1fr; }
  .collaboration-head, .request-panel { grid-template-columns: 1fr; gap: 30px; }
  .contact-form { grid-template-columns: 1fr 1fr; }
  .collaboration-visual { width: min(100%, 300px); margin-left: 0; }
  .collaboration-steps { grid-template-columns: repeat(3, 1fr); }
  .compact-service-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { grid-template-columns: repeat(3, 1fr); }
  .meta-choice { grid-template-columns: 1fr; gap: 24px; }
  .signal-grid { grid-template-columns: repeat(6, 1fr); }
  .signal-grid article { grid-column: span 2; }
  .signal-grid article:nth-child(4), .signal-grid article:nth-child(5) { grid-column: span 3; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .video-card video { aspect-ratio: 9 / 12; }
  .deliverables-grid, .support-grid { grid-template-columns: 1fr; gap: 36px; }
  .deliverables-list { margin-top: 0; }
  .process-list { grid-template-columns: repeat(6, 1fr); border-left: 1px solid #cececc; }
  .process-list li { grid-column: span 2; border-bottom: 1px solid #cececc; }
  .process-list li:nth-child(4), .process-list li:nth-child(5) { grid-column: span 3; }
  .contact-shell { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .section { padding: 68px 0; }
  .site-header { grid-template-columns: auto 1fr auto; min-height: 68px; padding: 7px 16px; }
  .brand img { width: 136px; max-height: 34px; }
  .header-cta { display: none; }
  .nav-toggle { display: block; grid-column: 3; }
  .site-nav { position: fixed; z-index: 45; top: 68px; right: 0; left: 0; display: none; flex-direction: column; align-items: flex-start; gap: 6px; padding: 28px 20px 38px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a { width: 100%; padding: 11px 0; font-size: 22px; }
  .mobile-nav-cta { display: inline-flex !important; justify-content: center; margin-top: 10px; padding: 14px 18px !important; color: var(--white); background: var(--ink); border-radius: 999px; font-size: 15px !important; }
  .mobile-nav-cta::after { display: none; }
  .hero { min-height: auto; }
  .grid-lines { background-size: 48px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; min-height: auto !important; padding-top: 0; padding-bottom: 24px; }
  .hero-copy { padding-top: 28px; }
  h1 { font-size: clamp(42px, 12vw, 60px); }
  h2 { font-size: clamp(38px, 11vw, 54px); }
  .hero-trigger { font-size: 19px; }
  .hero-lead { font-size: 16px; }
  .hero-visual-mobile { display: grid; justify-content: center; margin: 24px 0 20px; }
  .hero-visual-mobile .hero-frame { width: min(54%, 218px); margin: 0 auto; }
  .button-row { align-items: stretch; flex-direction: column; margin-top: 0; }
  .btn { width: 100%; }
  .hero-visual { display: none; }
  .trust-strip { padding: 16px 0; }
  .trust-grid { display: grid; grid-template-columns: 1fr 1fr; justify-content: stretch; gap: 10px 18px; }
  .trust-grid p { display: grid; gap: 2px; white-space: normal; }
  .trust-grid p::before { display: none; }
  .trust-grid strong { font-size: 18px; }
  .trust-grid span { font-size: 12px; }
  .split-intro, .showcase-intro, .deliverables-grid, .support-grid, .work-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-intro { margin-bottom: 46px; }
  .problem-solution { padding: 28px 0 44px; }
  .problem-panel { padding: 24px 18px; border-radius: 3px 3px 32px 3px; }
  .problem-solution-head { margin-bottom: 24px; }
  .problem-solution-head h2 { margin-bottom: 14px; font-size: clamp(31px, 9vw, 43px); }
  .problem-solution-head > p:last-child { font-size: 16px; }
  .diagnosis-grid { grid-template-columns: 1fr; gap: 18px; padding-top: 20px; }
  .diagnosis-grid article { min-height: 0; padding: 0; }
  .diagnosis-solution { margin: 0; padding: 18px !important; }
  .diagnosis-grid h3 { margin-bottom: 14px; font-size: 23px; }
  .diagnosis-arrow { width: 30px; margin: -6px auto; transform: rotate(90deg); }
  .diagnosis-arrow::before { display: none; }
  .problem-experience { padding: 28px 0 52px; }
  .problem-experience-panel { padding: 24px 18px; border-radius: 3px 3px 36px 3px; }
  .problem-experience-copy { margin-bottom: 26px; }
  .problem-experience-copy h2 { font-size: clamp(30px, 8.2vw, 40px); }
  .problem-experience-copy > p { font-size: 16px; }
  .ad-fatigue-map { gap: 12px; }
  .ad-fatigue-map::before { display: none; }
  .fatigue-signal, .fatigue-reset, .fatigue-flow article { min-height: 0; padding: 20px 18px; }
  .fatigue-flow { grid-template-columns: 1fr; }
  .fatigue-flow article:first-child, .fatigue-flow article:last-child { border-radius: 0; }
  .fatigue-flow article:last-child { border-radius: 0 0 30px 0; }
  .fatigue-signal strong, .fatigue-reset strong { margin: 24px 0 12px; font-size: clamp(25px, 8vw, 34px); }
  .fatigue-flow h3 { margin: 28px 0 9px; font-size: 23px; }
  .reset-tags { margin-top: 18px; }
  .problem { padding: 74px 0; }
  .problem .section-intro { margin-bottom: 28px; }
  .problem h2 { font-size: clamp(34px, 10vw, 48px); }
  .problem-copy { font-size: 16px; }
  .problem-flow { display: none; }
  .section-intro > p:last-child { font-size: 16px; }
  .signal-grid { grid-template-columns: 1fr; gap: 10px; }
  .signal-grid article { display: block; min-height: 0; padding: 18px 20px; border-right: 1px solid rgba(17, 17, 17, .085); }
  .signal-grid article:nth-child(4), .signal-grid article:nth-child(5) { grid-column: auto; }
  .signal-grid span { margin-bottom: 16px; }
  .signal-grid h3 { font-size: 19px; }
  .service-grid { grid-template-columns: 1fr; }
  .compact-service-grid { grid-template-columns: 1fr; }
  .services { padding-top: 74px; }
  .services .section-intro { margin-bottom: 34px; }
  .service-grid article { min-height: 0; padding: 22px 20px; }
  .service-icon { margin-bottom: 34px; }
  .showcase-intro { gap: 22px; }
  .video-group + .video-group { margin-top: 68px; }
  .video-group-ai { margin-top: 68px; }
  .video-grid { grid-template-columns: 1fr 1fr; gap: 34px 10px; }
  .video-card video { aspect-ratio: 9 / 13; }
  .play-icon { width: 44px; height: 44px; }
  .video-card h4 { font-size: 15px; }
  .video-card > div { padding-top: 12px; }
  .showcase-cta { grid-template-columns: 1fr; padding: 22px; }
  .showcase-cta .btn { grid-row: auto; grid-column: auto; }
  .proof-stats, .case-grid, .meta-choice, .meta-choice-grid { grid-template-columns: 1fr; }
  .proof-stats p, .case-grid article { padding: 22px 20px; }
  .result-panel { padding: 22px 18px; }
  .result-panel-label { margin-bottom: 16px; }
  .result-panel-grid { grid-template-columns: 1fr; }
  .result-panel-grid article { padding: 20px 0; }
  .result-panel-grid article:first-child { padding-top: 0; }
  .result-panel-grid article:last-child { padding-bottom: 0; }
  .result-panel-grid article + article { border-top: 1px solid rgba(17, 17, 17, .1); }
  .result-panel-grid article + article::before { display: none; }
  .result-panel-grid strong { margin-bottom: 8px; font-size: clamp(34px, 11vw, 48px); white-space: normal; }
  .result-panel-grid p { font-size: 18px; }
  .result-panel-grid small { font-size: 12px; }
  .result-panel-note { font-size: 13px; }
  .meta-choice { margin-top: 28px; padding-top: 26px; }
  .meta-choice-grid article { padding: 20px; }
  .pre-contact { margin-top: 28px; padding: 24px 0; }
  .faq-block { padding: 24px 18px; border-radius: 3px 3px 34px 3px; }
  .faq-item button { padding: 17px 36px 17px 0; }
  .deliverables { padding: 70px 0; }
  .deliverables h2 { font-size: clamp(34px, 10vw, 48px); }
  .deliverables-list { grid-template-columns: 1fr; gap: 0; }
  .deliverables-list li { padding: 16px 0; font-size: 19px; }
  .process { padding: 74px 0; }
  .process-intro { margin-bottom: 34px; }
  .process-intro h2 { font-size: clamp(34px, 10vw, 48px); }
  .process-list { display: block; border-left: 0; }
  .process-list li { display: grid; grid-template-columns: 48px 1fr; min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid #cececc; }
  .process-list li::after { top: -4px; }
  .process-list span { grid-row: 1 / 3; margin: 0; }
  .process-list h3 { margin: 0 0 7px; }
  .support { padding: 68px 0; }
  .support-grid { padding-top: 30px; }
  .support-copy h2 { font-size: clamp(32px, 9vw, 46px); }
  .support-cards article { padding: 20px; }
  .work { padding: 62px 0; }
  .collaboration-head { margin-bottom: 30px; }
  .collaboration-head h2 { font-size: clamp(34px, 10vw, 48px); }
  .collaboration-head p:not(.eyebrow) { font-size: 16px; }
  .collaboration-visual { display: none; }
  .collaboration-steps { grid-template-columns: 1fr; border-left: 0; }
  .collaboration-steps li { min-height: 0; padding: 22px 0; border-right: 0; }
  .collaboration-steps span { margin-bottom: 16px; }
  .request-panel { margin-top: 0; padding: 34px 20px; border-radius: 0; }
  .request-copy h2 { font-size: clamp(34px, 10vw, 48px); }
  .work-panel { padding: 22px 20px; }
  .work-panel h2 { font-size: clamp(32px, 9vw, 46px); }
  .work-panel > p:not(.eyebrow) { font-size: 16px; }
  .work-list { grid-template-columns: 1fr; }
  .compact-steps li { grid-template-columns: 38px 1fr; gap: 14px; }
  .contact { padding: 54px 0 32px; }
  .contact .wrap { width: 100%; }
  .contact-shell { padding: 52px 20px; border-radius: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .lightbox { padding: 18px; }
  .lightbox-panel { width: min(88vw, 390px); border-radius: 16px; }
  .lightbox-close { top: -12px; right: -10px; width: 32px; height: 32px; font-size: 18px; }
  .lightbox-frame video { max-height: 78vh; }
  .site-footer { padding: 30px 0 24px; }
  .footer-grid { gap: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 18px; }
  .footer-brand img { width: min(100%, 220px); max-height: 48px; }
  .footer-identity { gap: 8px; }
  .footer-identity p { font-size: 14px; }
  .footer-contact { justify-self: start; gap: 9px; }
  .footer-contact-link { grid-template-columns: 28px auto auto; gap: 10px; font-size: 15px; }
  .footer-contact-link span:first-child { width: 28px; height: 28px; }
  .footer-contact-link svg { width: 24px; height: 24px; }
  .linkedin-mark { width: 23px !important; height: 23px !important; font-size: 14px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; padding-top: 16px; }
  .footer-bottom small, .footer-bottom span { font-size: 13px; }
}

@media (max-width: 430px) {
  .hero-visual-mobile .hero-frame { width: min(58%, 205px); }
  .video-grid { grid-template-columns: 1fr; gap: 42px; }
  .video-card video { aspect-ratio: 9 / 12; }
}

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