:root {
  --ink: #0a1f44;
  --ink-2: #17345f;
  --paper: #ffffff;
  --paper-2: #f4f7fb;
  --white: #ffffff;
  --acid: #c3a266;
  --orange: #c3a266;
  --blue: #0a1f44;
  --muted: #52647f;
  --line: rgba(10, 31, 68, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --content: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; box-shadow: 0 0 0 6px var(--ink); }
::selection { color: var(--ink); background: var(--acid); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.preview-flag {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 6px 20px;
  color: var(--ink);
  background: var(--acid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
}

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--ink);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  width: min(calc(100% - 48px), var(--content));
  min-height: 82px;
  margin: 0 auto;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; width: 185px; }
.brand img { width: 185px; height: auto; }
.global-nav { display: flex; justify-content: center; gap: clamp(20px, 3vw, 46px); }
.global-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.header-action:hover { color: var(--ink); background: var(--acid); }
.nav-toggle { display: none; }

.shell { width: min(calc(100% - 48px), var(--content)); margin: 0 auto; }
.section { padding: clamp(88px, 11vw, 154px) 0; }
.section-tight { padding: clamp(66px, 8vw, 104px) 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-white { background: var(--paper-2); }
.rule-top { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-family: Arial Narrow, "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 3px; background: var(--orange); content: ""; }
.eyebrow-light::before { background: var(--acid); }
.display {
  max-width: 930px;
  margin: 0;
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .99;
}
.display em, .section-title em {
  color: var(--ink);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: .1em;
  text-underline-offset: .08em;
}
.section-dark .display em, .section-dark .section-title em { color: var(--acid); }
.section-title {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.section-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--ink-2);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.95;
}
.section-dark .section-lead { color: rgba(255, 255, 255, .72); }
.micro {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  line-height: 1.4;
  transition: color .2s, background .2s, transform .2s var(--ease);
  gap: 28px;
}
.button::after { content: "↗"; font-size: 20px; transition: transform .28s var(--ease); }
.button:hover { color: var(--ink); background: var(--acid); transform: translateY(-3px); }
.button:hover::after { transform: translate(3px, -3px); }
.button-acid { border-color: var(--acid); color: var(--ink); background: var(--acid); }
.button-acid:hover { border-color: var(--white); background: var(--white); }
.button-ghost { color: var(--ink); background: transparent; }
.button-ghost:hover { color: var(--white); background: var(--ink); }
.button-white { border-color: var(--white); color: var(--ink); background: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(10,31,68,.08) 1px);
  background-size: calc(100% / 6) 100%;
  pointer-events: none;
  content: "";
}
.hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--acid);
  opacity: 0;
  pointer-events: none;
  content: "";
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: center;
  width: min(calc(100% - 48px), var(--content));
  min-height: 820px;
  margin: 0 auto;
  gap: clamp(48px, 6vw, 96px);
}
.hero-copy { padding: 74px 0 82px; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 5.25vw, 76px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: 1.02;
}
.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}
.hero h1 .marker {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
.hero h1 .marker::after {
  position: absolute;
  z-index: -1;
  right: -.02em;
  bottom: .04em;
  left: -.02em;
  height: .22em;
  background: var(--acid);
  content: "";
}
.hero-seo { color: var(--ink-2); }
.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 650;
  line-height: 1.95;
}
.hero-lead strong { color: var(--ink); font-weight: 900; }
.hero-answer {
  max-width: 610px;
  margin-top: 28px;
  padding: 20px 22px 21px;
  border-left: 5px solid var(--acid);
  color: var(--white);
  background: var(--ink);
}
.hero-answer > span {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
  font-family: Arial Narrow, "Roboto Condensed", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.hero-answer strong { display: block; font-size: clamp(20px, 2vw, 27px); letter-spacing: -.025em; line-height: 1.4; }
.hero-answer p { margin: 8px 0 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; margin-top: 38px; gap: 12px; }
.hero-note { display: flex; flex-wrap: wrap; margin-top: 28px; color: var(--muted); font-size: 12px; font-weight: 700; gap: 8px 20px; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note span::before { width: 7px; height: 7px; background: var(--orange); content: ""; }

.hero-stage { position: relative; min-height: 620px; perspective: 1100px; }
.stage-label {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: -8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  transform: rotate(3deg);
}
.browser-frame {
  position: absolute;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 var(--ink);
}
.browser-frame::before {
  display: block;
  height: 28px;
  border-bottom: 2px solid var(--ink);
  background: radial-gradient(circle at 14px 50%, var(--orange) 0 4px, transparent 4.5px), radial-gradient(circle at 30px 50%, rgba(195,162,102,.48) 0 4px, transparent 4.5px), radial-gradient(circle at 46px 50%, rgba(10,31,68,.32) 0 4px, transparent 4.5px), var(--paper-2);
  content: "";
}
.browser-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s var(--ease), filter .8s var(--ease); }
.hero-stage:hover .frame-main img { transform: scale(1.018); }
.hero-stage:hover .frame-left img { transform: scale(1.028); }
.hero-stage:hover .frame-right img { transform: scale(1.024); }
.frame-main { z-index: 2; top: 96px; right: 0; width: 92%; height: 390px; transform: translate3d(var(--stage-x, 0), var(--stage-y, 0), 0) rotate(1.5deg); transition: transform .55s var(--ease); }
.frame-left { z-index: 3; bottom: 42px; left: -16px; width: 58%; height: 230px; transform: translate3d(var(--stage-x-reverse, 0), var(--stage-y, 0), 24px) rotate(-4deg); transition: transform .65s var(--ease); }
.frame-right { z-index: 4; right: -10px; bottom: -8px; width: 52%; height: 210px; transform: translate3d(var(--stage-x, 0), var(--stage-y-reverse, 0), 42px) rotate(4deg); transition: transform .72s var(--ease); }
.stage-caption {
  position: absolute;
  z-index: 6;
  right: 12px;
  bottom: 8px;
  max-width: 230px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.manifesto-strip { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--orange); }
.manifesto-track {
  display: flex;
  width: max-content;
  padding: 15px 0;
  animation: marquee 30s linear infinite;
}
.manifesto-track span {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: Arial Narrow, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  white-space: nowrap;
}
.manifesto-track span::after { margin: 0 26px; color: var(--ink); content: "◆"; opacity: .5; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .manifesto-track { animation: none; } }

.proof-rail { border-bottom: 1px solid var(--line); background: var(--white); }
.proof-rail-grid { display: grid; grid-template-columns: 1.45fr .72fr .72fr 1.1fr; border-left: 1px solid var(--line); }
.proof-fact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  transition: color .2s, background .2s;
}
a.proof-fact:hover { color: var(--white); background: var(--ink); }
.proof-fact > span { color: var(--muted); font-family: Arial Narrow, "Roboto Condensed", sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
a.proof-fact:hover > span, a.proof-fact:hover small { color: rgba(255,255,255,.68); }
.proof-fact strong { margin: auto 0 12px; font-size: clamp(28px, 3vw, 48px); font-weight: 900; letter-spacing: -.05em; line-height: 1.08; }
.proof-fact-featured strong { font-size: clamp(23px, 2.3vw, 34px); line-height: 1.25; }
.proof-fact small { color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.55; }

.why-heading { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 64px; }
.why-heading .section-lead { margin: 0 0 4px; }
.why-visual-grid { display: grid; grid-template-columns: repeat(12, 1fr); margin-top: 72px; gap: 18px; }
.why-proof { grid-column: span 5; border-top: 4px solid var(--ink); background: var(--white); }
.why-proof-wide { grid-column: span 7; }
.why-proof figure { overflow: hidden; margin: 0; aspect-ratio: 5 / 4; background: var(--ink); }
.why-proof-wide figure { aspect-ratio: 16 / 9; }
.why-proof img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .65s var(--ease); }
.why-proof:hover img { transform: scale(1.025); }
.why-proof > div { display: grid; grid-template-columns: 112px 1fr; padding: 24px 0 30px; border-bottom: 1px solid var(--line); gap: 20px; }
.why-proof span { padding-top: 7px; color: var(--muted); font-family: Arial Narrow, "Roboto Condensed", sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.why-proof h3 { margin: 0; font-size: clamp(24px, 3vw, 39px); letter-spacing: -.045em; line-height: 1.14; }
.why-proof p { grid-column: 2; margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.85; }

.problem-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.problem-intro { display: flex; flex-direction: column; justify-content: space-between; min-height: 440px; padding: 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-intro strong { font-size: clamp(34px, 4vw, 58px); letter-spacing: -.05em; line-height: 1.08; }
.problem-list { display: grid; grid-template-columns: 1fr 1fr; }
.problem-item { min-height: 220px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-item span { color: var(--ink); font-family: Arial Narrow, sans-serif; font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.problem-item h3 { margin: 46px 0 0; font-size: clamp(19px, 2vw, 26px); letter-spacing: -.025em; line-height: 1.45; }

.system-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 76px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.system-grid-three { grid-template-columns: repeat(3, 1fr); }
.system-step { min-height: 440px; padding: 34px 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.system-step .num { display: block; color: var(--acid); font-family: Arial Narrow, sans-serif; font-size: 60px; font-weight: 900; line-height: 1; }
.system-step h3 { margin: 92px 0 18px; font-size: clamp(23px, 2.4vw, 34px); letter-spacing: -.04em; line-height: 1.2; }
.system-step p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.9; }

.difference-board { display: grid; grid-template-columns: .85fr 1.15fr; margin-top: 72px; border: 1px solid var(--line-dark); }
.difference-side { min-height: 470px; padding: clamp(30px, 4vw, 52px); }
.difference-side + .difference-side { border-left: 1px solid var(--line-dark); }
.difference-kicker { display: block; color: rgba(255,255,255,.52); font-family: Arial Narrow, "Roboto Condensed", sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.difference-side h3 { margin: 48px 0 0; font-size: clamp(28px, 3.5vw, 48px); letter-spacing: -.045em; line-height: 1.18; }
.difference-split { background: rgba(255,255,255,.035); }
.difference-split h3 { color: rgba(255,255,255,.72); }
.split-flow { display: grid; grid-template-columns: 1fr 28px 1fr 28px 1fr; align-items: center; margin-top: 62px; }
.split-flow span { display: grid; place-items: center; min-height: 96px; padding: 12px 8px; border: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.72); font-size: 13px; font-weight: 900; text-align: center; }
.split-flow small { display: block; margin-top: 7px; color: rgba(255,255,255,.44); font-size: 10px; font-weight: 600; }
.split-flow i { color: var(--acid); font-size: 20px; font-style: normal; text-align: center; }
.difference-vonds { color: var(--ink); background: var(--acid); }
.difference-vonds .difference-kicker { color: rgba(10,31,68,.62); }
.vonds-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 46px; border-top: 2px solid var(--ink); border-left: 1px solid rgba(10,31,68,.28); }
.vonds-flow span { min-height: 108px; padding: 16px 12px; border-right: 1px solid rgba(10,31,68,.28); border-bottom: 1px solid rgba(10,31,68,.28); font-size: 12px; font-weight: 900; }
.vonds-flow b { display: block; margin-bottom: 28px; font-family: Arial Narrow, sans-serif; font-size: 12px; }
.difference-answer { max-width: 970px; margin: 42px 0 0 auto; padding-left: 28px; border-left: 4px solid var(--acid); color: rgba(255,255,255,.72); font-size: clamp(16px,1.5vw,19px); line-height: 1.9; }
.difference-answer strong { color: var(--white); }

.diagnosis-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); align-items: start; gap: clamp(40px,7vw,100px); }
.diagnosis-sticky { position: sticky; top: 132px; }
.diagnosis-panel { border: 2px solid var(--ink); background: var(--paper-2); box-shadow: 14px 14px 0 var(--ink); }
.diagnosis-panel fieldset { margin: 0; padding: 0; border: 0; }
.diagnosis-panel legend { width: 100%; padding: 24px 28px; border-bottom: 2px solid var(--ink); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.check-row { position: relative; display: block; border-bottom: 1px solid var(--line); cursor: pointer; }
.check-row input { position: absolute; opacity: 0; pointer-events: none; }
.check-content { display: grid; grid-template-columns: 48px 1fr; align-items: center; min-height: 96px; padding: 18px 26px; transition: color .2s, background .2s; gap: 18px; }
.check-box { display: grid; place-items: center; width: 42px; height: 42px; border: 2px solid var(--ink); font-size: 0; }
.check-row input:checked + .check-content { background: var(--acid); }
.check-row input:checked + .check-content .check-box::after { content: "✓"; font-size: 23px; font-weight: 900; }
.check-row input:focus-visible + .check-content { outline: 3px solid var(--ink); outline-offset: -5px; }
.check-copy strong { display: block; font-size: 16px; line-height: 1.45; }
.check-copy small { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.diagnosis-result { display: grid; grid-template-columns: 120px 1fr; align-items: center; min-height: 150px; padding: 26px; background: var(--ink); gap: 26px; }
.result-score { color: var(--acid); font-family: Arial Narrow, sans-serif; font-size: 48px; font-weight: 900; line-height: 1; }
.result-score small { display: block; margin-bottom: 7px; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .14em; }
.result-copy { margin: 0; color: var(--white); font-size: 14px; line-height: 1.8; }

.works-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 60px; }
.works-heading .section-lead { margin: 0 0 4px auto; }
.works-grid { display: grid; grid-template-columns: 1.16fr .84fr; margin-top: 70px; gap: 18px; }
.work-card { position: relative; overflow: hidden; min-height: 330px; color: var(--white); background: var(--ink); }
.work-card:first-child { grid-row: span 2; min-height: 680px; }
.work-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .7s var(--ease); }
.work-card::after { position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(10,31,68,.94)); content: ""; }
.work-card:hover img { transform: scale(1.035); }
.work-meta { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; align-items: end; padding: 30px; gap: 20px; }
.work-meta h3 { margin: 0; font-size: clamp(21px, 2.5vw, 34px); line-height: 1.2; }
.work-meta p { margin: 7px 0 0; color: rgba(255,255,255,.72); font-size: 12px; }
.work-link { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.8); font-size: 22px; }
.work-link::before { content: "↗"; }

.service-list { margin-top: 70px; border-top: 2px solid var(--ink); }
.service-row { display: grid; grid-template-columns: 90px minmax(220px,.75fr) 1fr 50px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line); transition: background .2s; gap: 28px; }
.service-row:hover { background: var(--acid); }
.service-num { font-family: Arial Narrow, sans-serif; font-size: 14px; font-weight: 900; letter-spacing: .12em; }
.service-row h3 { margin: 0; font-size: clamp(25px,3vw,42px); letter-spacing: -.04em; line-height: 1.1; }
.service-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.service-row .arrow { font-size: 28px; }

.service-assets-section { padding: clamp(82px, 10vw, 136px) 0; color: var(--white); background: var(--ink); }
.service-assets-heading { display: grid; grid-template-columns: 1fr minmax(300px, 520px); align-items: end; gap: 52px; }
.service-assets-heading h2 { max-width: 780px; margin: 0; font-size: clamp(38px, 5.8vw, 74px); letter-spacing: -.055em; line-height: 1.05; }
.service-assets-heading h2 em { color: var(--acid); font-style: normal; }
.service-assets-heading > p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.9; }
.service-assets-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-assets-grid a { position: relative; min-height: 250px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: color .22s, background .22s, transform .22s; }
.service-assets-grid a:hover { z-index: 1; color: var(--ink); background: var(--acid); transform: translate(-4px, -4px); box-shadow: 4px 4px 0 var(--white); }
.service-assets-grid span { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.service-assets-grid a:hover span { color: var(--ink); }
.service-assets-grid h3 { margin: 78px 0 8px; font-size: 25px; line-height: 1.35; }
.service-assets-grid p { margin: 0; color: rgba(255,255,255,.57); font-size: 13px; line-height: 1.75; }
.service-assets-grid a:hover p { color: var(--ink-2); }
.service-assets-grid b { position: absolute; top: 24px; right: 26px; font-size: 23px; }
.service-assets-note { margin: 22px 0 0; color: rgba(255,255,255,.5); font-size: 11px; }

.knowledge-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.knowledge-heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
}
.knowledge-intro .section-lead { margin: 0; }
.knowledge-all {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 26px;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
  gap: 18px;
}
.knowledge-all span { font-size: 20px; transition: transform .25s var(--ease); }
.knowledge-all:hover span { transform: translate(3px, -3px); }
.knowledge-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  margin-top: 70px;
  border: 2px solid var(--ink);
  background: var(--white);
}
.knowledge-featured {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  min-height: 570px;
  padding: clamp(34px, 5vw, 64px);
  border-right: 2px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}
.knowledge-featured::after {
  position: absolute;
  z-index: -1;
  right: -1px;
  bottom: -1px;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  content: "";
  transform: rotate(45deg) translate(29%, 29%);
  transition: border-color .3s, transform .55s var(--ease);
}
.knowledge-featured:hover::after { border-color: var(--acid); transform: rotate(45deg) translate(23%, 23%); }
.knowledge-kicker { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.knowledge-number {
  position: absolute;
  top: 42px;
  right: 44px;
  color: rgba(255,255,255,.08);
  font-family: Arial Narrow, "Roboto Condensed", sans-serif;
  font-size: clamp(110px, 15vw, 210px);
  font-weight: 900;
  line-height: .8;
}
.knowledge-featured h3 { max-width: 650px; margin: 0; font-size: clamp(39px, 5vw, 68px); letter-spacing: -.055em; line-height: 1.05; }
.knowledge-featured p { max-width: 560px; margin: 26px 0 0; color: rgba(255,255,255,.68); line-height: 1.9; }
.knowledge-read { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--line-dark); font-size: 12px; font-weight: 900; }
.knowledge-read b { color: var(--acid); font-size: 24px; transition: transform .25s var(--ease); }
.knowledge-featured:hover .knowledge-read b { transform: translate(4px, -4px); }
.knowledge-list { display: grid; grid-template-rows: repeat(5, 1fr); }
.knowledge-link {
  display: grid;
  grid-template-columns: 52px 1fr 36px;
  align-items: center;
  min-height: 112px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
  gap: 20px;
}
.knowledge-link:last-child { border-bottom: 0; }
.knowledge-link:hover { color: var(--white); background: var(--ink); }
.knowledge-link > span { color: var(--muted); font-family: Arial Narrow, sans-serif; font-size: 13px; font-weight: 900; }
.knowledge-link small { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.knowledge-link h3 { margin: 5px 0 0; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.45; }
.knowledge-link > b { font-size: 22px; transition: transform .25s var(--ease); }
.knowledge-link:hover > span, .knowledge-link:hover small { color: rgba(255,255,255,.6); }
.knowledge-link:hover > b { color: var(--acid); transform: translate(3px, -3px); }

.truth-grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 650px; }
.truth-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px,8vw,110px) max(24px, calc((100vw - var(--content))/2)); padding-right: clamp(38px,7vw,100px); }
.truth-copy blockquote { margin: 0; font-size: clamp(38px,5.8vw,80px); font-weight: 900; letter-spacing: -.055em; line-height: 1.05; }
.truth-copy blockquote em { color: var(--acid); font-style: normal; }
.truth-copy p { max-width: 620px; margin: 34px 0 0; color: rgba(255,255,255,.7); line-height: 2; }
.truth-photo { position: relative; min-height: 650px; }
.truth-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; filter: saturate(.75) contrast(1.04); }
.truth-photo::after { position: absolute; inset: 0; border: 18px solid var(--acid); pointer-events: none; content: ""; mix-blend-mode: multiply; opacity: .62; }
.truth-label { position: absolute; z-index: 2; right: 0; bottom: 0; padding: 20px 26px; color: var(--ink); background: var(--acid); font-size: 13px; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 70px; border-top: 2px solid var(--ink); }
.process-item { position: relative; min-height: 300px; padding: 30px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-item:last-child { border-right: 0; }
.process-item .num { color: var(--ink); font-family: Arial Narrow, sans-serif; font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.process-item h3 { margin: 86px 0 15px; font-size: 24px; letter-spacing: -.03em; }
.process-item p { margin: 0; color: var(--muted); font-size: 14px; }

.start-panel { display: grid; grid-template-columns: .9fr 1.1fr; border: 2px solid var(--ink); background: var(--paper-2); box-shadow: 18px 18px 0 var(--orange); }
.start-copy { padding: clamp(38px,6vw,76px); border-right: 2px solid var(--ink); }
.start-copy h2 { margin: 0; font-size: clamp(34px,5vw,66px); letter-spacing: -.05em; line-height: 1.08; }
.start-copy p { margin: 26px 0 0; color: var(--muted); line-height: 1.95; }
.start-form { display: grid; align-content: center; padding: clamp(34px,5vw,64px); gap: 20px; }
.field label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 900; letter-spacing: .06em; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 108px; resize: vertical; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.form-status { display: none; padding: 14px 16px; border: 1px solid var(--ink); background: var(--acid); font-weight: 800; }
.form-status.is-visible { display: block; }

.subhero { padding: clamp(76px,10vw,130px) 0 80px; border-bottom: 1px solid var(--line); }
.subhero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; }
.subhero .display { font-size: clamp(48px,7vw,92px); }
.subhero-aside { padding: 24px 0 8px; border-top: 2px solid var(--ink); color: var(--muted); }
.subnav { border-bottom: 1px solid var(--line); background: var(--paper-2); }
.subnav .shell { display: flex; overflow-x: auto; }
.subnav a { flex: 0 0 auto; padding: 16px 22px; border-right: 1px solid var(--line); font-size: 12px; font-weight: 900; }
.service-proof-section { border-bottom: 1px solid var(--line); background: var(--white); }
.service-proof-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-proof-strip figure { margin: 0; border-top: 4px solid var(--ink); }
.service-proof-strip img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.service-proof-strip figcaption { padding: 18px 0 0; }
.service-proof-strip span { display: block; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.service-proof-strip strong { display: block; margin-top: 8px; font-size: 19px; line-height: 1.5; }

.detail-grid { display: grid; grid-template-columns: 280px 1fr; border-top: 1px solid var(--line); }
.detail-label { padding: 38px 24px 38px 0; border-bottom: 1px solid var(--line); font-family: Arial Narrow, sans-serif; font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.detail-body { padding: 38px 0 38px 50px; border-bottom: 1px solid var(--line); }
.detail-body h2, .detail-body h3 { margin: 0 0 20px; font-size: clamp(27px,3.8vw,48px); letter-spacing: -.04em; line-height: 1.2; }
.detail-body p { max-width: 780px; margin: 0; color: var(--muted); line-height: 2; }
.detail-body ul { display: grid; grid-template-columns: 1fr 1fr; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.detail-body li { padding: 18px 18px 18px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.detail-body li::before { margin-right: 10px; color: var(--orange); content: "■"; font-size: 9px; }

.gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.gallery-card { grid-column: span 6; border: 1px solid var(--line); background: var(--paper-2); }
.gallery-card:nth-child(3n+1) { grid-column: span 7; }
.gallery-card:nth-child(3n+2) { grid-column: span 5; }
.gallery-image { overflow: hidden; aspect-ratio: 16 / 10; border-bottom: 1px solid var(--line); }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .7s var(--ease); }
.gallery-card:hover img { transform: scale(1.03); }
.gallery-body { padding: 24px; }
.gallery-body h2, .gallery-body h3 { margin: 0; font-size: 22px; }
.gallery-body p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.works-subhero .subhero-aside strong { display: block; margin-bottom: 12px; color: var(--ink); font-size: 22px; line-height: 1.5; }
.works-subhero .subhero-aside p { margin: 0; }
.case-logic { display: grid; grid-template-columns: .85fr 1.15fr; align-items: end; gap: 70px; }
.case-logic-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.case-logic-grid article { min-height: 240px; padding: 26px 22px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.case-logic-grid span { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.case-logic-grid h3 { margin: 68px 0 12px; font-size: 24px; }
.case-logic-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.8; }
.works-index-heading { display: grid; grid-template-columns: 1fr .72fr; align-items: end; margin-bottom: 66px; gap: 70px; }
.works-index-heading > p { margin: 0 0 6px; color: var(--muted); line-height: 1.95; }
.gallery-cases .gallery-body { position: relative; min-height: 220px; padding: 26px; }
.gallery-cases .gallery-body h2 { margin-top: 9px; font-size: clamp(24px,2.5vw,34px); }
.gallery-cases .gallery-body strong { display: block; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 16px; line-height: 1.7; }
.case-status { color: var(--muted); font-family: Arial Narrow, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.case-read { display: block; margin-top: 22px; color: var(--ink); font-size: 12px; font-weight: 900; }
.gallery-card-link { transition: color .2s, background .2s, transform .25s var(--ease); }
.gallery-card-link:hover { color: var(--white); background: var(--ink); transform: translateY(-5px); }
.gallery-card-link:hover .gallery-body p, .gallery-card-link:hover .case-status { color: rgba(255,255,255,.65); }
.gallery-card-link:hover .gallery-body strong { border-color: var(--line-dark); }
.gallery-card-link:hover .case-read { color: var(--acid); }

.case-breadcrumb { display: flex; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; color: var(--muted); font-size: 11px; gap: 10px; }
.case-breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.case-breadcrumb strong { color: var(--ink); }
.case-hero { overflow: hidden; padding: clamp(72px,9vw,128px) 0; color: var(--white); background: var(--ink); }
.case-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(52px,8vw,110px); }
.case-hero-copy h1 { margin: 0; font-size: clamp(52px,7vw,100px); font-weight: 900; letter-spacing: -.06em; line-height: .99; }
.case-hero-copy h1 em { color: var(--acid); font-style: normal; }
.case-hero-copy > p:last-child { max-width: 760px; margin: 36px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 2; }
.case-facts { margin: 0; border-top: 1px solid var(--line-dark); }
.case-facts > div { display: grid; grid-template-columns: 112px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line-dark); gap: 20px; }
.case-facts dt { color: var(--acid); font-family: Arial Narrow, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.case-facts dd { margin: 0; font-size: 14px; font-weight: 800; line-height: 1.6; }
.case-screen-section { padding: clamp(42px,6vw,84px) 0; background: var(--paper-2); }
.case-screen { margin: 0; }
.case-screen img { width: 100%; border: 1px solid var(--line); background: var(--white); box-shadow: 16px 16px 0 var(--ink); }
.case-screen figcaption { margin-top: 24px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.case-screen-primary img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.case-story { display: grid; grid-template-columns: 200px 1fr; gap: clamp(36px,7vw,90px); }
.case-story-label { padding-top: 8px; border-top: 3px solid var(--ink); }
.case-story-label span { display: block; font-family: Arial Narrow, sans-serif; font-size: 64px; font-weight: 900; line-height: 1; }
.case-story-label p { margin: 16px 0 0; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.case-lead { max-width: 850px; margin: 34px 0 0; color: var(--muted); font-size: 18px; line-height: 2; }
.case-question-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 52px; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.case-question-grid article { min-height: 160px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-question-grid span { color: var(--muted); font-size: 12px; font-weight: 800; }
.case-question-grid strong { display: block; margin-top: 50px; font-size: 24px; }
.case-decisions { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 58px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.case-decisions article { min-height: 310px; padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-decisions span { color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.case-decisions h3 { margin: 84px 0 16px; font-size: 25px; line-height: 1.4; }
.case-decisions p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.case-screen-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.case-screen-pair .case-screen img { box-shadow: 12px 12px 0 var(--acid); }
.case-screen-pair figcaption { color: rgba(255,255,255,.66); }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 56px; border: 2px solid var(--ink); }
.scope-grid > div { padding: clamp(28px,4vw,48px); }
.scope-grid > div + div { border-left: 2px solid var(--ink); }
.scope-grid h3 { margin: 0; font-size: 23px; }
.scope-grid ul { display: grid; margin: 30px 0 0; padding: 0; list-style: none; gap: 12px; }
.scope-grid li { padding-bottom: 12px; border-bottom: 1px solid var(--line); font-weight: 800; }
.scope-grid li::before { margin-right: 10px; color: var(--orange); content: "■"; font-size: 8px; }
.scope-boundary { color: var(--white); background: var(--ink); }
.scope-boundary p { margin: 30px 0 0; color: rgba(255,255,255,.7); line-height: 2; }
.related-cases { display: grid; grid-template-columns: 1fr 1fr; margin-top: 64px; gap: 20px; }
.related-cases a { position: relative; overflow: hidden; min-height: 420px; color: var(--white); background: var(--ink); }
.related-cases img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s var(--ease); }
.related-cases a::after { position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(10,31,68,.92)); content: ""; }
.related-cases span, .related-cases strong { position: absolute; z-index: 2; left: 28px; }
.related-cases span { bottom: 76px; color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.related-cases strong { bottom: 28px; font-size: 30px; }
.related-cases a:hover img { transform: scale(1.035); }
.case-cta { color: var(--white); background: var(--ink); }
.case-cta .shell { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.case-cta h2 { margin: 0; font-size: clamp(42px,6vw,82px); letter-spacing: -.055em; line-height: 1.02; }
.case-cta h2 em { color: var(--acid); font-style: normal; }
.case-cta p:not(.eyebrow) { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,.66); }

.company-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(46px,8vw,110px); }
.company-photo { position: sticky; top: 130px; align-self: start; }
.company-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 58% center; }
.company-message blockquote { margin: 0; font-size: clamp(38px,5vw,70px); font-weight: 900; letter-spacing: -.05em; line-height: 1.08; }
.company-message blockquote em { color: var(--ink); font-style: normal; text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: .1em; text-underline-offset: .08em; }
.company-message p { margin: 34px 0 0; color: var(--muted); line-height: 2.1; }
.company-facts { margin-top: 60px; border-top: 2px solid var(--ink); }
.fact-row { display: grid; grid-template-columns: 150px 1fr; padding: 20px 0; border-bottom: 1px solid var(--line); gap: 30px; }
.fact-row dt { font-size: 12px; font-weight: 900; letter-spacing: .06em; }
.fact-row dd { margin: 0; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,8vw,110px); }
.contact-aside { position: sticky; top: 130px; align-self: start; }
.contact-aside h2 { margin: 0; font-size: clamp(34px,4vw,58px); letter-spacing: -.045em; line-height: 1.12; }
.contact-aside dl { margin: 44px 0 0; }
.contact-aside dt { margin-top: 22px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.contact-aside dd { margin: 4px 0 0; font-weight: 800; }
.contact-form { padding: clamp(30px,5vw,58px); border: 2px solid var(--ink); background: var(--paper-2); }
.contact-form .field + .field { margin-top: 22px; }

.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-weight: 900; cursor: pointer; list-style: none; gap: 24px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; }
.faq details[open] summary::after { content: "−"; }
.faq-answer { max-width: 760px; padding: 0 0 28px; color: var(--muted); }

.site-footer { color: var(--white); background: var(--ink); }
.footer-cta { display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 80px 0; border-bottom: 1px solid var(--line-dark); gap: 50px; }
.footer-cta h2 { max-width: 760px; margin: 0; font-size: clamp(38px,5.5vw,74px); letter-spacing: -.055em; line-height: 1.05; }
.footer-cta h2 em { color: var(--acid); font-style: normal; }
.footer-main { display: grid; grid-template-columns: 1.2fr 1fr 1fr; padding: 54px 0 38px; gap: 60px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 360px; margin: 20px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-col h3 { margin: 0 0 16px; color: var(--acid); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a { display: block; padding: 4px 0; color: rgba(255,255,255,.8); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0 26px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.45); font-size: 11px; }

@media (prefers-reduced-motion: no-preference) {
  .motion-enabled .hero::after { animation: hero-scan 8s 1.2s var(--ease) both; }
  .motion-enabled .hero-title-line {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(.48em);
    animation: hero-line-in .72s var(--ease) both;
  }
  .motion-enabled .hero-title-line:nth-child(2) { animation-delay: 90ms; }
  .motion-enabled .hero-title-line:nth-child(3) { animation-delay: 180ms; }
  .motion-enabled .hero-lead,
  .motion-enabled .hero-answer,
  .motion-enabled .hero-actions,
  .motion-enabled .hero-note {
    opacity: 0;
    animation: hero-copy-in .65s var(--ease) both;
  }
  .motion-enabled .hero-lead { animation-delay: 300ms; }
  .motion-enabled .hero-answer { animation-delay: 390ms; }
  .motion-enabled .hero-actions { animation-delay: 480ms; }
  .motion-enabled .hero-note { animation-delay: 550ms; }
  .motion-enabled .browser-frame,
  .motion-enabled .stage-label,
  .motion-enabled .stage-caption {
    opacity: 0;
    animation: hero-proof-in .8s var(--ease) both;
  }
  .motion-enabled .frame-main { animation-delay: 180ms; }
  .motion-enabled .frame-left { animation-delay: 310ms; }
  .motion-enabled .frame-right { animation-delay: 410ms; }
  .motion-enabled .stage-label { animation-delay: 520ms; }
  .motion-enabled .stage-caption { animation-delay: 610ms; }
  .motion-enabled .reveal-item.is-visible { animation: reveal-in .72s var(--ease) both; }
  .motion-enabled .gallery-card.reveal-item,
  .motion-enabled .work-card.reveal-item,
  .motion-enabled .proof-fact.reveal-item,
  .motion-enabled .why-proof.reveal-item,
  .motion-enabled .system-step.reveal-item,
  .motion-enabled .process-item.reveal-item,
  .motion-enabled .knowledge-link.reveal-item { animation-delay: var(--reveal-delay, 0ms); }
  .motion-enabled .section-title::after {
    transform: scaleX(0);
    transition: transform .8s .12s var(--ease);
  }
  .motion-enabled .section-title.is-visible::after { transform: scaleX(1); }
  @keyframes hero-line-in {
    to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
  }
  @keyframes hero-copy-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes hero-proof-in {
    from { opacity: 0; filter: blur(7px) saturate(.65); }
    to { opacity: 1; filter: blur(0) saturate(1); }
  }
  @keyframes hero-scan {
    0% { opacity: 0; transform: translateX(0); }
    15%, 80% { opacity: .28; }
    100% { opacity: 0; transform: translateX(100vw); }
  }
  @keyframes reveal-in {
    from { opacity: .82; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: .18em;
}
.section-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--acid);
  transform-origin: left center;
  content: "";
}

@media (max-width: 1100px) and (min-width: 961px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 72px; }
  .global-nav, .header-action { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--ink); color: var(--ink); background: transparent; cursor: pointer; gap: 5px; }
  .nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 22px; height: 2px; background: currentColor; content: ""; transition: transform .25s, opacity .25s; }
  .nav-open .nav-toggle span { opacity: 0; }
  .nav-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }
  .global-nav.is-open { position: fixed; inset: 106px 0 0; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; padding: 36px 24px; background: var(--paper); gap: 0; }
  .global-nav.is-open a { padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
}

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 72px; }
  .global-nav, .header-action { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--ink); color: var(--ink); background: transparent; cursor: pointer; }
  .nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 22px; height: 2px; background: currentColor; content: ""; transition: transform .25s, opacity .25s; }
  .nav-toggle { gap: 5px; }
  .nav-open .nav-toggle span { opacity: 0; }
  .nav-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }
  .global-nav.is-open { position: fixed; inset: 106px 0 0; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; padding: 36px 24px; background: var(--paper); gap: 0; }
  .global-nav.is-open a { padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { min-height: 570px; }
  .proof-rail-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid, .diagnosis-layout, .works-heading, .why-heading, .truth-grid, .start-panel, .subhero-grid, .company-layout, .contact-layout, .case-logic, .case-hero-grid, .case-cta .shell { grid-template-columns: 1fr; }
  .why-heading .section-lead { margin-top: 24px; }
  .difference-board { grid-template-columns: 1fr; }
  .difference-side + .difference-side { border-top: 1px solid var(--line-dark); border-left: 0; }
  .problem-intro { min-height: 300px; }
  .system-grid, .system-grid-three, .process-grid { grid-template-columns: 1fr 1fr; }
  .diagnosis-sticky, .company-photo, .contact-aside { position: static; }
  .works-heading .section-lead { margin: 24px 0 0; }
  .truth-photo { min-height: 520px; }
  .start-copy { border-right: 0; border-bottom: 2px solid var(--ink); }
  .service-row { grid-template-columns: 60px .9fr 1.1fr 40px; }
  .detail-grid { grid-template-columns: 190px 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .works-index-heading { grid-template-columns: 1fr; gap: 28px; }
  .case-logic { align-items: start; }
  .case-story { grid-template-columns: 140px 1fr; gap: 42px; }
  .case-screen-pair { gap: 20px; }
  .knowledge-heading, .knowledge-grid { grid-template-columns: 1fr; }
  .service-assets-heading { grid-template-columns: 1fr; }
  .service-assets-grid { grid-template-columns: 1fr 1fr; }
  .knowledge-intro { margin-top: 28px; }
  .knowledge-featured { min-height: 470px; border-right: 0; border-bottom: 2px solid var(--ink); }
}

@media (max-width: 640px) {
  .preview-flag { font-size: 10px; }
  .shell, .header-inner, .hero-inner { width: min(calc(100% - 32px), var(--content)); }
  .header-inner { min-height: 66px; }
  .brand, .brand img { width: 150px; }
  .global-nav.is-open { top: 100px; }
  .section { padding: 82px 0; }
  .section-tight { padding: 62px 0; }
  .display { font-size: clamp(40px, 13vw, 58px); }
  .section-title { font-size: clamp(34px, 11vw, 50px); }
  .section-lead { font-size: 16px; }
  .hero { min-height: auto; }
  .hero::before { background-size: 50% 100%; }
  .hero-inner { min-height: auto; }
  .hero-copy { padding: 66px 0 34px; }
  .hero h1 { font-size: clamp(36px, 10.7vw, 48px); line-height: 1.06; }
  .hero-lead { font-size: 16px; }
  .hero-answer { padding: 18px; }
  .hero-answer strong { font-size: 20px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-stage { min-height: 470px; margin: 0 -6px 30px; }
  .frame-main { top: 62px; width: 96%; height: 280px; }
  .frame-left { left: -4px; bottom: 32px; width: 58%; height: 164px; }
  .frame-right { right: 0; width: 52%; height: 150px; }
  .browser-frame { box-shadow: 9px 9px 0 var(--ink); }
  .stage-caption { max-width: 190px; padding: 10px 12px; font-size: 10px; }
  .proof-rail-grid { grid-template-columns: 1fr; border-left: 0; }
  .proof-fact { min-height: 142px; padding: 24px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-fact strong { margin: 20px 0 8px; font-size: 34px; }
  .proof-fact-featured strong { font-size: 26px; }
  .problem-grid { margin-top: 46px; }
  .why-visual-grid { grid-template-columns: 1fr; margin-top: 46px; gap: 42px; }
  .why-proof, .why-proof-wide { grid-column: auto; }
  .why-proof figure, .why-proof-wide figure { aspect-ratio: 16 / 11; }
  .why-proof > div { grid-template-columns: 1fr; padding: 18px 0 24px; gap: 4px; }
  .why-proof p { grid-column: auto; margin-top: 8px; }
  .problem-intro { min-height: 250px; padding: 28px; }
  .problem-list, .system-grid, .system-grid-three, .process-grid { grid-template-columns: 1fr; }
  .problem-item { min-height: 170px; padding: 26px; }
  .problem-item h3 { margin-top: 28px; }
  .system-step { min-height: 300px; }
  .system-step h3 { margin-top: 58px; }
  .difference-side { min-height: auto; padding: 34px 22px; }
  .difference-side h3 { margin-top: 34px; font-size: 31px; }
  .split-flow { grid-template-columns: 1fr; margin-top: 38px; gap: 7px; }
  .split-flow i { line-height: 1; transform: rotate(45deg); }
  .vonds-flow { grid-template-columns: 1fr 1fr; margin-top: 34px; }
  .vonds-flow span { min-height: 92px; }
  .difference-answer { margin-top: 32px; padding-left: 18px; }
  .diagnosis-panel { box-shadow: 8px 8px 0 var(--ink); }
  .check-content { grid-template-columns: 40px 1fr; min-height: 100px; padding: 16px; gap: 14px; }
  .check-box { width: 38px; height: 38px; }
  .diagnosis-result { grid-template-columns: 90px 1fr; padding: 20px 16px; gap: 14px; }
  .result-score { font-size: 40px; }
  .works-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .work-card, .work-card:first-child { grid-row: auto; min-height: 360px; }
  .work-meta { padding: 22px; }
  .service-row { grid-template-columns: 44px 1fr 34px; min-height: 130px; padding: 20px 0; gap: 14px; }
  .service-row p { display: none; }
  .service-assets-grid { grid-template-columns: 1fr; }
  .service-assets-grid a { min-height: 205px; padding: 24px 20px; }
  .service-assets-grid h3 { margin-top: 58px; }
  .knowledge-grid { margin-top: 46px; }
  .knowledge-featured { min-height: 430px; padding: 30px 22px; }
  .knowledge-number { top: 32px; right: 18px; font-size: 116px; }
  .knowledge-featured h3 { font-size: clamp(34px, 10.5vw, 44px); }
  .knowledge-featured p { font-size: 14px; }
  .knowledge-link { grid-template-columns: 32px 1fr 28px; min-height: 118px; padding: 18px 14px; gap: 12px; }
  .knowledge-link h3 { font-size: 16px; }
  .truth-copy { padding: 76px 16px; }
  .truth-photo { min-height: 480px; }
  .process-item { min-height: 240px; border-right: 0; }
  .process-item h3 { margin-top: 56px; }
  .start-panel { box-shadow: 8px 8px 0 var(--orange); }
  .start-copy, .start-form { padding: 30px 22px; }
  .subhero { padding-top: 72px; }
  .subhero-grid { gap: 34px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-label { padding: 28px 0 8px; border-bottom: 0; }
  .detail-body { padding: 8px 0 32px; }
  .detail-body ul { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:nth-child(3n+1), .gallery-card:nth-child(3n+2) { grid-column: auto; }
  .case-logic-grid, .case-question-grid, .case-decisions, .case-screen-pair, .scope-grid, .related-cases { grid-template-columns: 1fr; }
  .service-proof-strip { grid-template-columns: 1fr; gap: 36px; }
  .case-logic-grid article { min-height: 190px; }
  .case-logic-grid h3 { margin-top: 44px; }
  .works-index-heading { margin-bottom: 42px; }
  .gallery-cases .gallery-body { min-height: 0; }
  .case-breadcrumb { padding-top: 16px; padding-bottom: 16px; }
  .case-hero { padding: 68px 0; }
  .case-hero-copy h1 { font-size: clamp(46px,13vw,62px); }
  .case-hero-copy > p:last-child { font-size: 16px; }
  .case-facts > div { grid-template-columns: 96px 1fr; }
  .case-screen img { box-shadow: 8px 8px 0 var(--ink); }
  .case-story { grid-template-columns: 1fr; gap: 28px; }
  .case-story-label { display: flex; align-items: end; gap: 16px; }
  .case-story-label span { font-size: 48px; }
  .case-story-label p { margin: 0 0 4px; }
  .case-question-grid article { min-height: 130px; }
  .case-question-grid strong { margin-top: 34px; }
  .case-decisions article { min-height: 250px; }
  .case-decisions h3 { margin-top: 58px; }
  .case-screen-pair .case-screen + .case-screen { margin-top: 28px; }
  .scope-grid > div + div { border-top: 2px solid var(--ink); border-left: 0; }
  .related-cases a { min-height: 340px; }
  .case-cta .button { margin-top: 10px; }
  .company-photo img { aspect-ratio: 4 / 4.8; }
  .fact-row { grid-template-columns: 1fr; gap: 6px; }
  .contact-form { padding: 28px 20px; }
  .footer-cta { grid-template-columns: 1fr; padding: 64px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* 2026-08-31: 山梨ホームページ制作の単独検索意図ページ */
.visually-hidden { position: absolute; overflow: hidden; width: 1px; height: 1px; padding: 0; border: 0; margin: -1px; clip: rect(0 0 0 0); white-space: nowrap; }

.service-hero-v2 { overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(105deg, var(--paper) 0 63%, var(--paper-2) 63% 100%); }
.service-hero-v2-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr); align-items: center; min-height: 820px; gap: clamp(50px, 7vw, 100px); }
.service-hero-v2-copy { padding: 84px 0 96px; }
.service-hero-v2 h1 { max-width: 780px; margin: 0; font-size: clamp(46px, 5.2vw, 76px); font-weight: 900; letter-spacing: -.06em; line-height: 1.04; }
.service-hero-v2 h1 span { color: var(--ink-2); }
.service-hero-v2 h1 em { color: var(--ink); font-style: normal; text-decoration: underline; text-decoration-color: var(--acid); text-decoration-thickness: .12em; text-underline-offset: .08em; }
.service-hero-v2-lead { max-width: 700px; margin: 36px 0 0; color: var(--ink-2); font-size: 18px; font-weight: 650; line-height: 2; }
.service-hero-v2-actions { display: flex; flex-wrap: wrap; margin-top: 38px; gap: 12px; }
.service-hero-v2-note { margin: 20px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; }
.service-hero-v2-proof { position: relative; min-height: 620px; }
.service-hero-v2-proof figure { position: absolute; overflow: hidden; margin: 0; border: 2px solid var(--ink); background: var(--white); box-shadow: 12px 12px 0 var(--ink); }
.service-hero-v2-proof figure:first-child { z-index: 1; top: 72px; right: 0; width: 92%; }
.service-hero-v2-proof figure:nth-child(2) { z-index: 2; bottom: 50px; left: -18px; width: 57%; transform: rotate(-3deg); }
.service-hero-v2-proof figure:nth-child(3) { z-index: 3; right: -8px; bottom: 2px; width: 52%; transform: rotate(3deg); }
.service-hero-v2-proof img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.service-hero-v2-proof figcaption { padding: 12px 14px; border-top: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .08em; }

.service-local-facts { border-bottom: 1px solid var(--line); background: var(--ink); }
.service-local-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-local-facts-grid > div { min-height: 175px; padding: 26px; border-left: 1px solid var(--line-dark); color: var(--white); }
.service-local-facts-grid > div:last-child { border-right: 1px solid var(--line-dark); }
.service-local-facts span { display: block; color: var(--acid); font-family: Arial Narrow, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.service-local-facts strong { display: block; margin-top: 42px; font-size: clamp(22px, 2.4vw, 34px); letter-spacing: -.04em; }
.service-local-facts small { display: block; margin-top: 6px; color: rgba(255,255,255,.58); }
.service-local-facts a { color: inherit; text-decoration: underline; text-underline-offset: .2em; }

.service-diagnosis-v2 { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(50px, 8vw, 110px); }
.service-diagnosis-copy { position: sticky; top: 130px; }
.service-diagnosis-result { display: grid; grid-template-columns: 110px 1fr; align-items: center; margin-top: 42px; padding: 22px; border: 2px solid var(--ink); background: var(--paper-2); gap: 20px; }
.service-diagnosis-result span { font-family: Arial Narrow, sans-serif; font-size: 32px; font-weight: 900; }
.service-diagnosis-result p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-diagnosis-list { padding: 0; border: 0; margin: 0; }
.service-diagnosis-list label { display: grid; grid-template-columns: 52px 1fr; align-items: center; min-height: 128px; padding: 20px 24px; border-top: 1px solid var(--line); cursor: pointer; gap: 22px; }
.service-diagnosis-list label:last-child { border-bottom: 1px solid var(--line); }
.service-diagnosis-list label:hover { background: var(--paper-2); }
.service-diagnosis-list input { width: 44px; height: 44px; border: 2px solid var(--ink); accent-color: var(--ink); cursor: pointer; }
.service-diagnosis-list b { display: block; margin-bottom: 7px; color: var(--orange); font-family: Arial Narrow, sans-serif; font-size: 10px; letter-spacing: .13em; }
.service-diagnosis-list strong { display: block; font-size: 17px; line-height: 1.65; }

.service-system-v2 { margin-top: 70px; border-top: 2px solid var(--ink); }
.service-system-v2 article { display: grid; grid-template-columns: 120px minmax(260px, .8fr) minmax(0, 1.2fr); align-items: stretch; border-bottom: 1px solid var(--line); }
.service-system-v2 article > span { padding: 30px 18px 30px 0; color: var(--orange); font-family: Arial Narrow, sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.service-system-v2 figure { overflow: hidden; margin: 0; border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-system-v2 img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; object-position: top; }
.service-system-v2 article > div { padding: 38px 0 38px 46px; }
.service-system-v2 h3 { margin: 0; font-size: clamp(28px, 3.5vw, 46px); letter-spacing: -.045em; }
.service-system-v2 p { max-width: 700px; margin: 18px 0 0; color: var(--muted); line-height: 1.95; }
.service-system-v2 ul { display: flex; flex-wrap: wrap; margin: 24px 0 0; padding: 0; list-style: none; gap: 8px; }
.service-system-v2 li { padding: 8px 12px; border: 1px solid var(--line); font-size: 12px; font-weight: 800; }

.service-work-wall-head { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 70px; }
.service-work-wall-head > p { margin: 0 0 8px; color: var(--muted); line-height: 1.95; }
.service-work-wall-grid { display: grid; grid-template-columns: repeat(12, 1fr); margin-top: 68px; gap: 16px; }
.service-work-tile { position: relative; overflow: hidden; grid-column: span 4; min-height: 290px; border: 1px solid var(--line); background: var(--ink); }
.service-work-tile-featured { grid-column: span 8; grid-row: span 2; min-height: 596px; }
.service-work-tile img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: top; transition: transform .6s var(--ease), opacity .6s var(--ease); }
.service-work-tile::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(10,31,68,.94)); content: ""; }
.service-work-tile span { position: absolute; z-index: 1; right: 22px; bottom: 20px; left: 22px; color: var(--white); font-size: 12px; font-weight: 700; }
.service-work-tile b { display: block; margin-bottom: 5px; color: var(--acid); font-size: 20px; }
.service-work-tile:hover img { opacity: .82; transform: scale(1.025); }

.service-case-v2-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(54px, 8vw, 112px); }
.service-case-v2 .button { margin-top: 34px; }
.service-case-v2-screens { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-case-v2-screens figure { margin: 0; }
.service-case-v2-screens figure:first-child { grid-column: 1 / -1; }
.service-case-v2-screens img { width: 100%; border: 1px solid var(--line-dark); aspect-ratio: 16 / 9; object-fit: cover; object-position: top; }
.service-case-v2-screens figcaption { margin-top: 8px; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 800; letter-spacing: .1em; }

.service-compare-v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 68px 0 0; padding: 0; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); list-style: none; }
.service-compare-v2-grid li { min-height: 300px; padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-compare-v2-grid span { color: var(--orange); font-family: Arial Narrow, sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.service-compare-v2-grid h3 { margin: 62px 0 16px; font-size: 23px; line-height: 1.4; }
.service-compare-v2-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }

.service-scope-v2 { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.service-scope-v2 > div { min-height: 340px; padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-scope-v2 span { color: var(--orange); font-family: Arial Narrow, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.service-scope-v2 h3 { margin: 86px 0 18px; font-size: 23px; line-height: 1.45; }
.service-scope-v2 p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.service-faq-v2 { margin-top: 54px; }

.service-final-v2 { color: var(--white); background: var(--ink); }
.service-final-v2-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.service-final-v2 h2 { margin: 0; font-size: clamp(42px, 6vw, 82px); letter-spacing: -.055em; line-height: 1.04; }
.service-final-v2 h2 em { color: var(--acid); font-style: normal; }
.service-final-v2 p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.64); }

@media (max-width: 960px) {
  .service-hero-v2 { background: var(--paper); }
  .service-hero-v2-grid, .service-diagnosis-v2, .service-work-wall-head, .service-case-v2-grid, .service-final-v2-grid { grid-template-columns: 1fr; }
  .service-hero-v2-grid { min-height: 0; }
  .service-hero-v2-copy { padding-bottom: 20px; }
  .service-local-facts-grid, .service-scope-v2 { grid-template-columns: 1fr 1fr; }
  .service-compare-v2-grid { grid-template-columns: 1fr 1fr; }
  .service-diagnosis-copy { position: static; }
  .service-system-v2 article { grid-template-columns: 90px minmax(220px, .8fr) minmax(0, 1.2fr); }
  .service-system-v2 article > div { padding-left: 30px; }
  .service-work-tile { grid-column: span 6; }
  .service-work-tile-featured { grid-column: 1 / -1; min-height: 520px; }
}

@media (max-width: 640px) {
  .service-hero-v2-copy { padding: 66px 0 14px; }
  .service-hero-v2 h1 { font-size: clamp(39px, 11vw, 49px); line-height: 1.08; }
  .service-hero-v2-lead { font-size: 16px; }
  .service-hero-v2-actions { flex-direction: column; }
  .service-hero-v2-proof { min-height: 470px; margin: 0 -2px 26px; }
  .service-hero-v2-proof figure:first-child { top: 45px; width: 96%; }
  .service-hero-v2-proof figure:nth-child(2) { left: 0; bottom: 42px; width: 58%; }
  .service-hero-v2-proof figure:nth-child(3) { right: 0; bottom: 8px; width: 54%; }
  .service-hero-v2-proof figure { box-shadow: 8px 8px 0 var(--ink); }
  .service-hero-v2-proof figcaption { padding: 8px 9px; font-size: 8px; }
  .service-local-facts-grid { grid-template-columns: 1fr; }
  .service-local-facts-grid > div { min-height: 126px; padding: 22px 16px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .service-local-facts strong { margin-top: 22px; font-size: 27px; }
  .service-diagnosis-result { grid-template-columns: 1fr; }
  .service-diagnosis-list label { grid-template-columns: 44px 1fr; min-height: 118px; padding: 18px 12px; gap: 14px; }
  .service-diagnosis-list input { width: 38px; height: 38px; }
  .service-system-v2 article { grid-template-columns: 1fr; }
  .service-system-v2 article > span { padding: 24px 0 10px; }
  .service-system-v2 figure { border: 0; }
  .service-system-v2 img { min-height: 0; aspect-ratio: 16 / 10; }
  .service-system-v2 article > div { padding: 24px 0 34px; }
  .service-system-v2 h3 { font-size: 32px; }
  .service-work-wall-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .service-work-tile, .service-work-tile-featured { grid-column: auto; grid-row: auto; min-height: 330px; }
  .service-work-tile-featured { min-height: 400px; }
  .service-case-v2-screens { grid-template-columns: 1fr; }
  .service-case-v2-screens figure:first-child { grid-column: auto; }
  .service-scope-v2 { grid-template-columns: 1fr; }
  .service-compare-v2-grid { grid-template-columns: 1fr; }
  .service-compare-v2-grid li { min-height: 240px; }
  .service-compare-v2-grid h3 { margin-top: 46px; }
  .service-scope-v2 > div { min-height: 260px; }
  .service-scope-v2 h3 { margin-top: 54px; }
}

/* 2026-08-31: production-compatible service inheritance routes */
.asset-detail-hero { border-bottom: 1px solid var(--line); background: linear-gradient(112deg, var(--paper) 0 67%, var(--paper-2) 67% 100%); }
.asset-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); align-items: center; min-height: 660px; gap: clamp(60px, 9vw, 130px); }
.asset-detail-grid h1 { max-width: 820px; margin: 0; font-size: clamp(48px, 6.3vw, 94px); font-weight: 900; letter-spacing: -.065em; line-height: 1.03; }
.asset-detail-grid > div > p:not(.eyebrow) { max-width: 720px; margin: 32px 0 0; color: var(--ink-2); font-size: 18px; font-weight: 650; line-height: 1.95; }
.asset-detail-actions { display: flex; flex-wrap: wrap; margin-top: 38px; gap: 12px; }
.asset-detail-grid ol { margin: 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.asset-detail-grid li { display: grid; grid-template-columns: 48px 1fr; align-items: center; min-height: 122px; border-bottom: 1px solid var(--line); gap: 18px; }
.asset-detail-grid li span { color: var(--orange); font-family: Arial Narrow, sans-serif; font-size: 11px; font-weight: 900; }
.asset-detail-grid li strong { font-size: 18px; line-height: 1.55; }
.asset-inheritance-note { color: var(--white); background: var(--ink); }
.asset-inheritance-note .shell { display: grid; grid-template-columns: 190px 1fr auto; align-items: center; min-height: 150px; gap: 36px; }
.asset-inheritance-note strong { color: var(--acid); font-size: 13px; }
.asset-inheritance-note p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.8; }
.asset-inheritance-note a { color: var(--white); font-size: 12px; font-weight: 900; text-decoration: underline; text-underline-offset: .25em; }
.asset-source-section { padding: clamp(78px, 10vw, 150px) 0; background: var(--white); }
.asset-source-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 54px; }
.asset-source-heading h2 { margin: 0; font-size: clamp(42px, 5.7vw, 76px); letter-spacing: -.055em; line-height: 1.05; }
.asset-source-heading h2 em { color: var(--orange); font-style: normal; }
.asset-source-frame { min-height: 340px; border: 1px solid var(--line); background: var(--white); box-shadow: 12px 12px 0 var(--ink); }
.asset-source-frame > .article-loading { min-height: 340px; }
.case-hero-copy h1 { overflow-wrap: anywhere; }

@media (max-width: 960px) {
  .asset-detail-grid { grid-template-columns: 1fr; padding: 88px 0; gap: 56px; }
  .asset-inheritance-note .shell { grid-template-columns: 1fr; padding-top: 28px; padding-bottom: 28px; gap: 10px; }
  .asset-source-heading { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 640px) {
  .asset-detail-hero { background: var(--paper); }
  .asset-detail-grid { min-height: 0; padding: 66px 0; }
  .asset-detail-grid h1 { font-size: clamp(42px, 12vw, 56px); }
  .asset-detail-grid > div > p:not(.eyebrow) { font-size: 16px; }
  .asset-detail-actions { flex-direction: column; }
  .asset-detail-grid li { min-height: 102px; }
  .asset-source-frame { margin-right: 8px; box-shadow: 8px 8px 0 var(--ink); }
}

.form-mail-link{margin-top:14px}.form-status p{margin:0 0 12px}.tracking-consent{position:fixed;right:18px;bottom:18px;z-index:1000;display:flex;max-width:680px;padding:18px;gap:20px;border:1px solid rgba(255,255,255,.2);color:#fff;background:#0a1f44;box-shadow:0 18px 60px rgba(10,31,68,.28)}.tracking-consent[hidden]{display:none}.tracking-consent strong{font-size:14px}.tracking-consent p{margin:4px 0 0;color:rgba(255,255,255,.72);font-size:12px}.tracking-consent-actions{display:flex;align-items:center;gap:8px}.tracking-consent button{min-height:44px;padding:8px 14px;border:1px solid rgba(255,255,255,.5);color:#fff;background:transparent;font:inherit;font-size:12px;font-weight:800;cursor:pointer}.tracking-consent button[data-consent="grant"]{border-color:#c3a266;background:#c3a266;color:#0a1f44}@media(max-width:680px){.tracking-consent{right:10px;bottom:10px;left:10px;display:block}.tracking-consent-actions{margin-top:12px}.tracking-consent button{flex:1}}
