:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #6f6f6f;
  --soft: #a9a9a9;
  --line: #e1e1e1;
  --line-strong: #bdbdbd;
  --wash: #ffffff;
  --blue: #2590bd;
  --gm-grid-bg: #ffffff;
  --gm-grid-color: #e8e8e8;
  --gm-grid-size: 60px;
  --gm-grid-opacity: 0.36;
  --gm-grid-line: rgb(232 232 232 / var(--gm-grid-opacity));
  --gm-grid-pattern:
    linear-gradient(var(--gm-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--gm-grid-line) 1px, transparent 1px);
  --radius: 6px;
  --max: 1180px;
  --side: clamp(20px, 4vw, 56px);
  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "YuGothic", "Hiragino Sans", Meiryo, sans-serif;
  --font-display: "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 46px;
}

section[id] {
  scroll-margin-top: 46px;
}

#company {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-screenshot-mode,
body.is-screenshot-mode *,
body.is-screenshot-mode *::before,
body.is-screenshot-mode *::after {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(37, 144, 189, 0.58);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--side);
  background: rgba(251, 251, 250, 0.92);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
  backdrop-filter: blur(18px);
  transition: padding 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  border-color: var(--line);
}

.brand,
.global-nav a,
.section-kicker,
.service-name,
.text-link,
.button,
.footer-brand,
.footer-bottom,
.filter-bar button {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.brand {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.global-nav a {
  color: rgba(23, 23, 23, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  transition: color 0.2s ease;
}

.global-nav a:hover {
  color: #111;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(340px, 0.98fr) minmax(460px, 1.02fr);
  gap: clamp(24px, 4.2vw, 64px);
  align-items: center;
  padding: 110px var(--side) 68px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: var(--gm-grid-bg);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 92px var(--side) 50px;
  border: 1px solid rgba(23, 23, 23, 0.075);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image: var(--gm-grid-pattern);
  background-size: var(--gm-grid-size) var(--gm-grid-size);
  background-position: 0 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: clamp(0px, 2vw, 22px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(46px, 4.75vw, 72px);
  line-height: 1.48;
  font-weight: 300;
  letter-spacing: 0.065em;
  font-feature-settings: "palt";
}

.hero h1 span,
.hero-lead span {
  display: block;
}

.hero h1 span {
  white-space: nowrap;
}

.hero h1 .hero-title-part {
  display: inline;
}

.hero-lead {
  max-width: 510px;
  margin: 32px 0 0;
  color: #666;
  font-size: clamp(13px, 1.12vw, 16px);
  line-height: 1.95;
}

.hero-actions,
.section-heading.with-action,
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
  gap: 10px;
}

.hero .button {
  min-height: 44px;
  padding-inline: 22px;
  border-color: rgba(23, 23, 23, 0.86);
  font-size: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--ink);
}

.button-ghost {
  background: transparent;
}

.button.large {
  min-width: min(100%, 280px);
  min-height: 54px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(530px, 55vw, 630px);
  display: grid;
  place-items: center;
  justify-self: stretch;
  overflow: hidden;
  isolation: isolate;
  transform: translateX(clamp(0px, 0.25vw, 4px));
}

.eye-frame {
  position: relative;
  z-index: 2;
  width: min(42.5vw, 590px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 23, 23, 0.84);
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.18) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.18) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.06) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(-45deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.06) 50%, transparent calc(50% + 0.5px)),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(23,23,23,0.02) 30px 31px),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(23,23,23,0.02) 30px 31px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.8) inset,
    0 0 0 1px rgba(23,23,23,0.035);
}

.eye-frame::before,
.eye-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: none;
}

.eye-frame::before {
  animation: none;
}

.eye-frame::after {
  animation: none;
}

.color-field {
  display: none;
}

.calibration-square {
  position: absolute;
  z-index: 1;
  inset: 12.5%;
  border: 1px solid rgba(23, 23, 23, 0.34);
  background:
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(23,23,23,0.05) 59px 60px),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(23,23,23,0.05) 59px 60px);
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  animation: none;
}

.calibration-square::before,
.calibration-square::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.calibration-square::before {
  background:
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.08) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(-45deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.08) 50%, transparent calc(50% + 0.5px));
}

.calibration-square::after {
  border: 1px solid rgba(255,255,255,0.55);
  inset: 1px;
}

.frame-label {
  position: absolute;
  z-index: 3;
  color: rgba(23, 23, 23, 0.46);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.label-a1 { top: -18px; left: 8px; }
.label-b1 { top: -18px; right: 8px; }
.label-a2 { bottom: -24px; left: 8px; }
.label-b2 { bottom: -24px; right: 8px; }

.corner {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: rgba(23,23,23,0.6);
}

.corner::before {
  width: 1px;
  height: 27px;
}

.corner::after {
  width: 27px;
  height: 1px;
}

.top-left {
  top: 16px;
  left: 16px;
}

.top-right {
  top: 16px;
  right: 16px;
}

.bottom-left {
  bottom: 16px;
  left: 16px;
}

.bottom-right {
  bottom: 16px;
  right: 16px;
}

.top-right::before,
.bottom-right::before {
  right: 0;
}

.top-right::after,
.bottom-right::after {
  right: 0;
}

.bottom-left::before,
.bottom-right::before {
  bottom: 0;
}

.bottom-left::after,
.bottom-right::after {
  bottom: 0;
}

.frame-link {
  position: absolute;
  z-index: 2;
  width: 17.7%;
  height: 1px;
  background: rgba(23,23,23,0.18);
  pointer-events: none;
}

.frame-link-tl {
  top: 0;
  left: 0;
  transform: rotate(45deg);
  transform-origin: left center;
}

.frame-link-tr {
  top: 0;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.frame-link-bl {
  bottom: 0;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.frame-link-br {
  right: 0;
  bottom: 0;
  transform: rotate(45deg);
  transform-origin: right center;
}

.eye-orbit {
  position: absolute;
  z-index: 3;
  inset: 28.5%;
  border: 1px solid rgba(23, 23, 23, 0.34);
  border-radius: 50%;
  animation: none;
}

.eye-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.12) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.12) 50%, transparent calc(50% + 0.5px));
  opacity: 1;
  animation: none;
}

.eye-diamond {
  position: absolute;
  inset: 12%;
  border: 1.2px solid rgba(26, 135, 181, 0.9);
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  animation: diamondRotate 120s linear infinite;
}

.eye-diamond-echo {
  display: none;
}

.eye-lid {
  position: absolute;
  left: -14%;
  right: -14%;
  top: 50%;
  height: 36%;
  pointer-events: none;
}

.eye-lid-top {
  border-top: 1px solid rgba(26, 135, 181, 0.5);
  border-radius: 100% 100% 0 0;
  transform: translateY(-59%);
}

.eye-lid-bottom {
  border-bottom: 1px solid rgba(26, 135, 181, 0.46);
  border-radius: 0 0 100% 100%;
  transform: translateY(-41%);
}

.eye-line {
  display: none;
}

.iris-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(26, 135, 181, 0.74);
  background:
    radial-gradient(circle at 50% 50%, rgba(26, 135, 181, 0.08) 0 28%, transparent 29%);
  transform: translate(-50%, -50%);
  box-shadow: none;
}

.eye-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a87b5;
  transform: translate(-50%, -50%);
  box-shadow: none;
  animation: none;
}

.pupil {
  display: none;
}

.catchlight {
  display: none;
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.92);
}

.node-a { top: -5px; left: 50%; transform: translateX(-50%); }
.node-b { top: 50%; right: -5px; transform: translateY(-50%); }
.node-c { bottom: -5px; left: 50%; transform: translateX(-50%); }
.node-d { top: 50%; left: -5px; transform: translateY(-50%); }

.hero-balanced .eye-frame-balanced .eye-orbit {
  inset: 25.8%;
  border-color: rgba(23,23,23,0.32);
}

.hero-balanced .eye-frame-balanced .eye-orbit::before,
.hero-balanced .eye-frame-balanced .eye-orbit::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 24%;
  height: 1px;
  pointer-events: none;
}

.hero-balanced .eye-frame-balanced .eye-orbit::before {
  left: -38%;
  background: linear-gradient(90deg, transparent, rgba(26,135,181,0.48));
  transform: translateY(-50%) rotate(-4deg);
  transform-origin: right center;
}

.hero-balanced .eye-frame-balanced .eye-orbit::after {
  right: -38%;
  background: linear-gradient(90deg, rgba(26,135,181,0.48), transparent);
  transform: translateY(-50%) rotate(4deg);
  transform-origin: left center;
}

.hero-balanced .eye-frame-balanced .eye-halo {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.15) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.15) 50%, transparent calc(50% + 0.5px));
}

.hero-balanced .eye-frame-balanced .eye-lid {
  left: -33%;
  right: -33%;
  top: 50%;
  height: 49%;
  pointer-events: none;
}

.hero-balanced .eye-frame-balanced .eye-lid-top {
  border-top-color: rgba(26,135,181,0.6);
  transform: translateY(-65%);
}

.hero-balanced .eye-frame-balanced .eye-lid-bottom {
  border-bottom-color: rgba(26,135,181,0.56);
  transform: translateY(-35%);
}

.hero-balanced .eye-frame-balanced .eye-lid::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  height: 100%;
  pointer-events: none;
}

.hero-balanced .eye-frame-balanced .eye-lid-top::after {
  top: -4px;
  border-top: 1px solid rgba(23,23,23,0.17);
  border-radius: 100% 100% 0 0;
}

.hero-balanced .eye-frame-balanced .eye-lid-bottom::after {
  bottom: -4px;
  border-bottom: 1px solid rgba(23,23,23,0.14);
  border-radius: 0 0 100% 100%;
}

.hero-balanced .eye-frame-balanced .eye-diamond {
  inset: 9.8%;
  border-color: rgba(26,135,181,0.78);
  border-width: 1.1px;
  transform: rotate(37deg);
}

.hero-balanced .eye-frame-balanced .iris-ring {
  width: 32%;
  border-color: rgba(26,135,181,0.72);
}

.hero-balanced .eye-frame-balanced .eye-core {
  width: 16px;
  height: 16px;
}

.hero-balanced .eye-frame-balanced .node {
  width: 9px;
  height: 9px;
}

.hero-balanced .eye-frame-balanced .node-a {
  top: -5px;
}

.hero-balanced .eye-frame-balanced .node-b {
  right: -5px;
}

.hero-balanced .eye-frame-balanced .node-c {
  bottom: -5px;
}

.hero-balanced .eye-frame-balanced .node-d {
  left: -5px;
}

.ticker {
  position: absolute;
  z-index: 0;
  left: -8%;
  right: -18vw;
  bottom: clamp(34px, 5.8vw, 82px);
  overflow: hidden;
  color: rgba(23, 23, 23, 0.035);
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.88;
  white-space: nowrap;
  pointer-events: none;
}

.ticker-track {
  display: inline-flex;
  gap: 0.34em;
  width: max-content;
  transform: translateX(0);
  animation: ticker 46s linear infinite;
}

.ticker span::after {
  content: "・";
  color: rgba(37, 144, 189, 0.42);
  padding-left: 0.34em;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes squareOrbit {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes orbitFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0.8%, -0.6%, 0); }
}

@keyframes diamondRotate {
  from { transform: rotate(45deg) scale(1); }
  to { transform: rotate(405deg) scale(1); }
}

@keyframes diamondCounterRotate {
  from { transform: rotate(45deg) scale(1); }
  to { transform: rotate(-315deg) scale(1); }
}

@keyframes corePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 30px rgba(37, 144, 189, 0.024), 0 0 0 56px rgba(37, 144, 189, 0.01); }
  50% { transform: translate(-50%, -50%) scale(1.045); box-shadow: 0 0 0 34px rgba(37, 144, 189, 0.032), 0 0 0 62px rgba(202, 119, 190, 0.01); }
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.34; transform: scale(0.98); }
  50% { opacity: 0.52; transform: scale(1.018); }
}

@keyframes auraBreathe {
  0%, 100% { opacity: 0.22; transform: scale(0.98) rotate(0deg); }
  50% { opacity: 0.36; transform: scale(1.025) rotate(5deg); }
}

@keyframes colorDrift {
  0%, 100% { transform: translateX(-1.5%) rotate(-5deg); opacity: 0.18; }
  50% { transform: translateX(2.5%) rotate(-3deg); opacity: 0.32; }
}

@keyframes prismDrift {
  0%, 100% { transform: translateX(-1%) rotate(-5deg); opacity: 0.26; }
  50% { transform: translateX(1.8%) rotate(-3deg); opacity: 0.4; }
}

@keyframes prismTurn {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section {
  padding: clamp(62px, 8vw, 108px) var(--side);
  border-bottom: 1px solid var(--line);
}

.section-grid,
.section-heading,
.case-index,
.case-detail-layout,
.footer-grid,
.sub-hero,
.related-section {
  max-width: var(--max);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 92px);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.18;
  font-weight: 520;
  letter-spacing: 0;
}

body[data-page="home"] .section h2 {
  font-family: var(--font-serif);
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  text-wrap: balance;
}

body[data-page="home"] .philosophy-section h2 {
  font-size: clamp(34px, 4.6vw, 66px);
}

body[data-page="home"] .contact-section h2 {
  font-size: clamp(29px, 3.8vw, 54px);
  line-height: 1.28;
}

h3 {
  margin: 0;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
  font-weight: 560;
}

.section-body p,
.section-heading p,
.philosophy-copy p,
.contact-note,
.case-index-head p,
.sub-hero p {
  color: #4c4c4c;
  font-size: 16px;
}

.section-body p + p,
.philosophy-copy p + p {
  margin-top: 22px;
}

.about-title-line {
  display: inline;
}

.about-pc-break {
  display: none;
}

.u-jp-nowrap {
  white-space: nowrap;
}

@media (min-width: 981px) {
  .about-section .section-grid {
    grid-template-columns: minmax(500px, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: clamp(48px, 6vw, 88px);
  }

  .about-section h2 {
    font-size: clamp(48px, 3.75vw, 58px);
    line-height: 1.34;
    letter-spacing: 0.035em;
  }

  .about-title-line {
    display: block;
    white-space: nowrap;
  }

  .about-copy {
    max-width: 720px;
    padding-top: clamp(22px, 2vw, 32px);
  }

  .about-copy p {
    line-height: 2.08;
    letter-spacing: 0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .about-pc-break {
    display: block;
  }
}

@media (max-width: 980px) {
  .about-section h2 {
    text-wrap: auto;
  }
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-heading p {
  max-width: 760px;
  margin: 16px 0 0;
}

.services-heading-sketch {
  display: none;
}

.services-section {
  scroll-margin-top: 92px;
  background: #fff;
}

@media (min-width: 981px) {
  .services-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) clamp(260px, 24vw, 340px);
    align-items: center;
    gap: clamp(34px, 5vw, 68px);
  }

  .services-heading-sketch {
    position: relative;
    display: grid;
    width: clamp(320px, 29vw, 430px);
    min-height: clamp(260px, 24vw, 340px);
    margin: clamp(-18px, -1.2vw, -8px) 0 clamp(-20px, -1.4vw, -10px);
    justify-self: end;
    place-items: center;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .services-heading-sketch::before {
    content: none;
  }

  .services-heading-sketch picture {
    display: block;
    width: 100%;
  }

  .services-heading-sketch img {
    display: block;
    width: min(100%, 440px);
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: none;
    mix-blend-mode: multiply;
    opacity: 0.82;
    transform: translateY(2px) rotate(-1deg);
  }
}

@media (max-width: 980px) {
  .services-heading {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(388px, 104vw, 470px);
    padding: clamp(18px, 4vw, 28px) 0 clamp(44px, 10vw, 62px);
  }

  .services-heading::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: -18px -18px -10px;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 6% 30%, rgba(251,251,250,0.98) 0%, rgba(251,251,250,0.82) 30%, rgba(251,251,250,0.18) 53%, transparent 78%),
      linear-gradient(90deg, rgba(251,251,250,0.9) 0%, rgba(251,251,250,0.62) 29%, rgba(251,251,250,0.12) 54%, transparent 84%),
      linear-gradient(180deg, rgba(251,251,250,0.08) 0%, transparent 70%, rgba(251,251,250,0.42) 100%);
  }

  .services-heading-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-shadow:
      0 0 12px rgba(251,251,250,0.94),
      0 0 24px rgba(251,251,250,0.82);
  }

  .services-heading-sketch {
    position: absolute;
    z-index: 0;
    top: clamp(2px, 2vw, 10px);
    right: clamp(-76px, -14vw, -42px);
    display: block;
    width: clamp(440px, 116vw, 540px);
    margin: 0;
    pointer-events: none;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .services-heading-sketch::before {
    content: none;
  }

  .services-heading-sketch img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(1) contrast(1.18) brightness(1);
    mix-blend-mode: multiply;
    opacity: 0.54;
    transform: translateY(-10px) rotate(-1.2deg);
    transform-origin: center top;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 92%, rgba(0,0,0,0.86) 97%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 92%, rgba(0,0,0,0.86) 97%, transparent 100%);
  }
}

.services-options-page {
  background:
    linear-gradient(rgba(23,23,23,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,23,0.016) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
}

.services-options-intro h1 {
  max-width: 1040px;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.16;
}

.services-options {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) clamp(80px, 10vw, 132px);
}

.services-option {
  scroll-margin-top: 92px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
}

.services-option + .services-option {
  margin-top: 28px;
}

.services-option-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.services-option-label span,
.services-option-context span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.5;
  text-transform: uppercase;
}

.services-option-label p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

.services-option-preview {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(23,23,23,0.1);
  background:
    linear-gradient(135deg, transparent 0 49.7%, rgba(23,23,23,0.032) 50%, transparent 50.3%),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(23,23,23,0.018) 32px 33px),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(23,23,23,0.016) 32px 33px),
    rgba(255,255,255,0.68);
}

.services-options-page .services-option-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.services-options-page .services-heading h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.24;
}

.services-option-context {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services-option-context span {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.64);
  color: #555;
  text-align: center;
}

@media (min-width: 981px) {
  .services-option-a .services-option-heading {
    grid-template-columns: minmax(0, 1fr) clamp(196px, 18vw, 260px);
    gap: clamp(34px, 5vw, 70px);
  }

  .services-option-a .services-option-visual {
    height: clamp(136px, 12vw, 174px);
    margin-bottom: 6px;
    border-color: rgba(23,23,23,0.15);
    background:
      linear-gradient(135deg, transparent 0 49.7%, rgba(23,23,23,0.042) 50%, transparent 50.3%),
      repeating-linear-gradient(90deg, transparent 0 24px, rgba(23,23,23,0.02) 24px 25px),
      repeating-linear-gradient(0deg, transparent 0 24px, rgba(23,23,23,0.018) 24px 25px),
      rgba(255,255,255,0.7);
  }

  .services-option-a .services-option-visual img {
    height: 90%;
    max-width: 94%;
    filter: grayscale(1) contrast(0.92) brightness(1.12);
    opacity: 0.58;
    transform: translateY(1px) scale(1.18);
  }

  .services-option-b .services-option-heading {
    grid-template-columns: minmax(0, 1.04fr) clamp(260px, 24vw, 340px);
    align-items: center;
    gap: clamp(34px, 5vw, 68px);
  }

  .services-option-b .services-heading-copy {
    max-width: 720px;
  }

  .services-option-b .services-option-visual {
    height: clamp(198px, 19vw, 260px);
    margin: 0;
    border-color: rgba(23,23,23,0.16);
    background:
      linear-gradient(135deg, transparent 0 49.7%, rgba(23,23,23,0.038) 50%, transparent 50.3%),
      repeating-linear-gradient(90deg, transparent 0 28px, rgba(23,23,23,0.02) 28px 29px),
      repeating-linear-gradient(0deg, transparent 0 28px, rgba(23,23,23,0.018) 28px 29px),
      rgba(255,255,255,0.72);
  }

  .services-option-b .services-option-visual::before {
    inset: 14px;
  }

  .services-option-b .services-option-visual img {
    height: 88%;
    max-width: 92%;
    filter: grayscale(1) contrast(0.96) brightness(1.08);
    opacity: 0.64;
    transform: translateY(2px) scale(1.08);
  }

  .services-option-c .services-option-preview {
    min-height: 354px;
  }

  .services-option-c .services-option-heading {
    display: block;
    min-height: clamp(250px, 24vw, 320px);
    padding-right: clamp(340px, 40vw, 520px);
  }

  .services-option-c .services-heading-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
  }

  .services-option-c .services-option-visual {
    position: absolute;
    z-index: 0;
    top: clamp(28px, 4vw, 52px);
    right: clamp(18px, 4vw, 58px);
    width: clamp(340px, 36vw, 500px);
    height: clamp(220px, 24vw, 330px);
    margin: 0;
    border-color: rgba(23,23,23,0.08);
    background:
      linear-gradient(135deg, transparent 0 49.7%, rgba(23,23,23,0.024) 50%, transparent 50.3%),
      repeating-linear-gradient(90deg, transparent 0 30px, rgba(23,23,23,0.014) 30px 31px),
      repeating-linear-gradient(0deg, transparent 0 30px, rgba(23,23,23,0.012) 30px 31px),
      rgba(255,255,255,0.36);
  }

  .services-option-c .services-option-visual::before {
    inset: 18px;
    border-color: rgba(23,23,23,0.06);
  }

  .services-option-c .services-option-visual img {
    height: 92%;
    max-width: 98%;
    filter: grayscale(1) contrast(0.88) brightness(1.18);
    opacity: 0.3;
    transform: translateY(4px) scale(1.16);
  }
}

@media (max-width: 980px) {
  .services-option-label {
    display: block;
  }

  .services-option-label p {
    margin-top: 6px;
    text-align: left;
  }

  .services-option-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .services-options {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-options-intro h1 {
    font-size: clamp(34px, 9.2vw, 40px);
    line-height: 1.2;
    line-break: anywhere;
  }

  .services-option {
    padding: 18px;
  }

  .services-option-preview {
    padding: 22px;
  }

  .services-options-page .services-heading h2 {
    font-size: clamp(25px, 7.2vw, 32px);
    line-height: 1.34;
    line-break: anywhere;
    word-break: break-all;
  }

  .services-options-page .services-title-phrase {
    display: inline;
  }

  .services-options-page .section-heading p {
    font-size: 13px;
    line-height: 1.9;
  }

  .services-option-context {
    grid-template-columns: 1fr;
  }
}

.service-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services-title-phrase {
  display: inline-block;
}

.service-card {
  min-height: 470px;
  padding: clamp(22px, 3.4vw, 36px);
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--gm-grid-pattern);
  background-size: var(--gm-grid-size) var(--gm-grid-size);
  background-position: 0 0;
  opacity: 0.72;
}

.service-card p {
  margin: 0;
  color: #505050;
}

.service-card a,
.text-link {
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.service-card a {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

.service-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 2px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
}

.service-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.72);
}

.service-role {
  max-width: 220px;
  text-align: right;
}

.service-name {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.service-card h3,
.service-copy {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.36;
  font-feature-settings: "palt";
}

.service-copy {
  max-width: 560px;
  line-height: 1.9;
}

.service-diagram,
.sketch-perspective {
  position: relative;
  z-index: 1;
  height: clamp(156px, 15.6vw, 190px);
  margin-bottom: 10px;
  border: 1px solid rgba(23,23,23,0.19);
  background-color: #fff;
  background-image: var(--gm-grid-pattern);
  background-size: var(--gm-grid-size) var(--gm-grid-size);
  background-position: 0 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.82) inset;
  overflow: hidden;
}

.service-diagram::before,
.sketch-perspective::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(23,23,23,0.15);
  pointer-events: none;
}

.service-diagram::after,
.sketch-perspective::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 9px;
  border-top: 1px solid rgba(23,23,23,0.22);
  border-bottom: 1px solid rgba(23,23,23,0.22);
  background: repeating-linear-gradient(90deg, rgba(23,23,23,0.36) 0 1px, transparent 1px 8px);
  opacity: 0.72;
  pointer-events: none;
}

.service-diagram span,
.sketch-perspective span {
  position: absolute;
}

.diagram-rent .rent-line {
  animation: rentValueDrift 7.6s ease-in-out infinite;
}

.diagram-rent .rent-arrow {
  animation: rentArrowNudge 7.6s ease-in-out infinite;
}

.diagram-rent .rent-arrow::after {
  animation: serviceLabelBreath 7.6s ease-in-out infinite;
}

.diagram-rent .rent-room-sub {
  transform-origin: 50% 50%;
  animation: serviceBoxBreath 8.4s ease-in-out infinite;
}

.diagram-clinic .clinic-scan {
  animation: clinicScanDrift 8.2s ease-in-out infinite;
}

.diagram-clinic .clinic-cross-v::after {
  animation: serviceLabelBreath 8.2s ease-in-out infinite;
}

.diagram-clinic .clinic-sheet-after::after {
  animation: clinicCheckSoft 8.2s ease-in-out infinite;
}

.relocate-perspective img {
  --relocate-sketch-scale: 1.26;
  animation: relocateSketchFloat 9s ease-in-out infinite;
}

.diagram-sourcing .sourcing-path-a {
  animation: sourcingPathA 8.8s ease-in-out infinite;
}

.diagram-sourcing .sourcing-path-b {
  animation: sourcingPathB 8.8s ease-in-out infinite;
}

.diagram-sourcing .sourcing-node-rebuild {
  animation: sourcingRebuildBreath 8.8s ease-in-out infinite;
}

.rent-room,
.clinic-sheet,
.sourcing-node {
  border: 1px solid var(--ink);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.72) inset;
}

.rent-room-main {
  width: 37%;
  height: 44%;
  left: 13%;
  bottom: 19%;
  background:
    linear-gradient(90deg, transparent 43%, rgba(23,23,23,0.28) 43% calc(43% + 1px), transparent calc(43% + 1px)),
    linear-gradient(0deg, transparent 53%, rgba(23,23,23,0.22) 53% calc(53% + 1px), transparent calc(53% + 1px)),
    rgba(255,255,255,0.82);
}

.rent-room-main::before {
  content: "";
  position: absolute;
  left: 17%;
  bottom: -1px;
  width: 22%;
  height: 22%;
  border-top: 1px solid rgba(23,23,23,0.5);
  border-right: 1px solid rgba(23,23,23,0.5);
  border-radius: 0 100% 0 0;
}

.rent-room-main::after {
  content: "";
  position: absolute;
  right: 14%;
  top: 18%;
  width: 18%;
  height: 1px;
  background: rgba(23,23,23,0.42);
  box-shadow: 0 13px 0 rgba(23,23,23,0.22), 0 26px 0 rgba(23,23,23,0.16);
}

.rent-room-sub {
  width: 25%;
  height: 31%;
  left: 40%;
  bottom: 45%;
  border-color: rgba(37,144,189,0.92);
  background:
    linear-gradient(90deg, transparent 56%, rgba(37,144,189,0.3) 56% calc(56% + 1px), transparent calc(56% + 1px)),
    rgba(255,255,255,0.84);
}

.rent-room-sub::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(37,144,189,0.3);
}

.rent-base {
  width: 70%;
  height: 1px;
  left: 12%;
  bottom: 17%;
  background: var(--ink);
}

.rent-base::before,
.rent-base::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 1px;
  height: 11px;
  background: rgba(23,23,23,0.58);
}

.rent-base::before {
  left: 0;
}

.rent-base::after {
  right: 0;
}

.rent-line {
  width: 45%;
  height: 1px;
  right: 12%;
  top: 48%;
  background: rgba(37,144,189,0.84);
  transform: rotate(-24deg);
  transform-origin: right center;
  box-shadow: 0 8px 0 rgba(37,144,189,0.2);
}

.rent-arrow {
  width: 14px;
  height: 14px;
  right: 11%;
  top: 33%;
  border-top: 1px solid rgba(37,144,189,0.94);
  border-right: 1px solid rgba(37,144,189,0.94);
  transform: rotate(-20deg);
}

.rent-arrow::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 1px;
  border-top: 1px dashed rgba(37,144,189,0.38);
  transform: rotate(18deg);
  transform-origin: right center;
}

.rent-arrow::after {
  content: "VALUE";
  position: absolute;
  right: 24px;
  top: -13px;
  color: rgba(37,144,189,0.88);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: rotate(20deg);
}

.rentup-iso-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: clamp(178px, 42%, 216px);
  height: auto;
  overflow: visible;
  transform: translate(-50%, -49%);
}

.diagram-rent {
  border: 0;
  background: var(--paper);
  box-shadow: none;
  overflow: visible;
}

.diagram-rent::before,
.diagram-rent::after {
  content: none;
  display: none;
}

.rentup-iso-draw {
  fill: none;
  stroke: #334155;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.rentup-iso-svg .ds1-2 {
  stroke: rgba(51,65,85,0.9);
}

.rentup-iso-svg .ds1-3 {
  stroke: rgba(51,65,85,0.94);
}

.rentup-iso-svg .ds1-4 {
  stroke: rgba(37,144,189,0.76);
}

.rentup-iso-svg .ds1-a {
  fill: rgba(37,144,189,0.1);
  fill-opacity: 1;
  stroke: rgba(37,144,189,0.9);
  stroke-width: 2.55;
}

.diagram-rent.is-diagram-pending .rentup-iso-draw {
  opacity: 0.28;
  stroke-dashoffset: 1;
  transform: translateY(3px);
}

.diagram-rent.is-diagram-pending .rentup-iso-svg .ds1-a {
  fill-opacity: 0;
}

.diagram-rent.is-diagram-pending.is-diagram-visible .rentup-iso-draw {
  animation: svgDraw 1.32s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, rentupIsoLift 0.72s ease-out forwards;
}

.diagram-rent.is-diagram-pending.is-diagram-visible .ds1-1 {
  animation-delay: 0.1s;
}

.diagram-rent.is-diagram-pending.is-diagram-visible .ds1-2 {
  animation-delay: 0.38s;
}

.diagram-rent.is-diagram-pending.is-diagram-visible .ds1-3 {
  animation-delay: 0.66s;
}

.diagram-rent.is-diagram-pending.is-diagram-visible .ds1-4 {
  animation-delay: 0.94s;
}

.diagram-rent.is-diagram-pending.is-diagram-visible .ds1-a {
  animation: svgDraw 1.34s cubic-bezier(0.2, 0.8, 0.2, 1) 1.28s forwards, rentupIsoLift 0.72s ease-out 1.28s forwards, rentupIsoFillIn 0.5s ease-out 1.98s forwards;
}

body.is-screenshot-mode .rentup-iso-draw {
  opacity: 1;
  stroke-dashoffset: 0;
  transform: none;
}

body.is-screenshot-mode .rentup-iso-svg .ds1-a {
  fill-opacity: 1;
}

@media (max-width: 640px) {
  .rentup-iso-svg {
    width: 170px;
    transform: translate(-50%, -47%);
  }
}

.diagram-clinic {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--paper);
  box-shadow: none;
  overflow: visible;
}

.diagram-clinic::before,
.diagram-clinic::after {
  content: none;
  display: none;
}

.ec-mini {
  --ec-mini-ink: #334155;
  --ec-mini-muted: #a8b3bf;
  --ec-mini-blue: #4aa3d8;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: auto;
  height: min(100%, 176px);
  overflow: visible;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transform-box: border-box;
  transform-origin: center;
}

.ec-mini-line,
.ec-mini-soft,
.ec-mini-blue {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ec-mini-line {
  stroke: var(--ec-mini-ink);
  stroke-width: 2.2;
}

.ec-mini-soft {
  stroke: var(--ec-mini-muted);
  stroke-width: 1.2;
}

.ec-mini-blue {
  stroke: var(--ec-mini-blue);
  stroke-width: 2.1;
}

.ec-mini-draw {
  stroke-dasharray: var(--dash, 560);
  stroke-dashoffset: 0;
}

.ec-mini-fade,
.ec-mini-shine {
  opacity: 1;
}

.diagram-clinic.is-diagram-pending .ec-mini-draw {
  stroke-dashoffset: var(--dash, 560);
}

.diagram-clinic.is-diagram-pending .ec-mini-fade,
.diagram-clinic.is-diagram-pending .ec-mini-shine {
  opacity: 0;
}

.ec-mini.is-playing .ec-mini-draw {
  animation: ecMiniDraw 0.72s cubic-bezier(0.25, 0.75, 0.25, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.ec-mini.is-playing .ec-mini-fade {
  animation: ecMiniFade 0.4s ease forwards;
  animation-delay: var(--delay, 0s);
}

.ec-mini.is-playing .ec-mini-shine {
  animation: ecMiniShine 1.35s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

body.is-screenshot-mode .ec-mini-draw,
body.is-screenshot-mode .ec-mini-fade,
body.is-screenshot-mode .ec-mini-shine {
  opacity: 1;
  stroke-dashoffset: 0;
}

@media (max-width: 640px) {
  .ec-mini {
    height: min(100%, 142px);
  }
}

.diagram-relocatebuddy {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--paper);
  box-shadow: none;
  overflow: visible;
}

.diagram-relocatebuddy::before,
.diagram-relocatebuddy::after {
  content: none;
  display: none;
}

.rb-shop {
  --rb-shop-ink: #334155;
  --rb-shop-muted: #a8b3bf;
  --rb-shop-blue: #4aa3d8;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: min(100%, 580px);
  height: auto;
  overflow: visible;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transform-box: border-box;
  transform-origin: center;
}

.rb-shop-line,
.rb-shop-soft,
.rb-shop-blue,
.rb-shop-dashed {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rb-shop-line {
  stroke: var(--rb-shop-ink);
  stroke-width: 2.15;
}

.rb-shop-soft {
  stroke: var(--rb-shop-muted);
  stroke-width: 1.15;
}

.rb-shop-blue {
  stroke: var(--rb-shop-blue);
  stroke-width: 2.05;
}

.rb-shop-dashed {
  stroke: var(--rb-shop-blue);
  stroke-width: 1.7;
  stroke-dasharray: 6 8;
}

.rb-shop-text-blue {
  fill: var(--rb-shop-blue);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.rb-shop-small {
  font-size: 9px;
}

.rb-shop-draw {
  stroke-dasharray: var(--dash, 560);
  stroke-dashoffset: 0;
}

.rb-shop-fade,
.rb-shop-float,
.rb-shop-flow,
.rb-shop-shine {
  opacity: 1;
  translate: 0 0;
}

.diagram-relocatebuddy.is-diagram-pending .rb-shop-draw {
  stroke-dashoffset: var(--dash, 560);
}

.diagram-relocatebuddy.is-diagram-pending .rb-shop-fade,
.diagram-relocatebuddy.is-diagram-pending .rb-shop-shine {
  opacity: 0;
}

.rb-shop.is-playing .rb-shop-draw {
  animation: rbShopDraw 0.74s cubic-bezier(0.25, 0.75, 0.25, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.rb-shop.is-playing .rb-shop-fade {
  animation: rbShopFade 0.42s ease forwards;
  animation-delay: var(--delay, 0s);
}

.rb-shop.is-playing .rb-shop-float {
  animation: rbShopFloat 1.45s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.rb-shop.is-playing .rb-shop-flow {
  animation: rbShopFlow 1.25s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.rb-shop.is-playing .rb-shop-shine {
  animation: rbShopShine 1.35s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

body.is-screenshot-mode .rb-shop-draw,
body.is-screenshot-mode .rb-shop-fade,
body.is-screenshot-mode .rb-shop-float,
body.is-screenshot-mode .rb-shop-flow,
body.is-screenshot-mode .rb-shop-shine {
  opacity: 1;
  stroke-dashoffset: 0;
  translate: 0 0;
}

@media (max-width: 640px) {
  .rb-shop {
    width: min(108%, 360px);
  }
}

.diagram-sourcing {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--paper);
  box-shadow: none;
  overflow: visible;
}

.diagram-sourcing::before,
.diagram-sourcing::after {
  content: none;
  display: none;
}

.ps-mini {
  --ps-mini-ink: #334155;
  --ps-mini-muted: #a8b3bf;
  --ps-mini-blue: #4aa3d8;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: min(104%, 600px);
  height: auto;
  overflow: visible;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transform-box: border-box;
  transform-origin: center;
}

.ps-mini-line,
.ps-mini-soft,
.ps-mini-blue {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ps-mini-line {
  stroke: var(--ps-mini-ink);
  stroke-width: 2.15;
}

.ps-mini-soft {
  stroke: var(--ps-mini-muted);
  stroke-width: 1.2;
}

.ps-mini-blue {
  stroke: var(--ps-mini-blue);
  stroke-width: 2.05;
}

.ps-mini-text-ink,
.ps-mini-text-blue {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ps-mini-text-ink {
  fill: var(--ps-mini-ink);
}

.ps-mini-text-blue {
  fill: var(--ps-mini-blue);
}

.ps-mini-label {
  font-size: 12px;
}

.ps-mini-small {
  font-size: 9px;
}

.ps-mini-draw {
  stroke-dasharray: var(--dash, 560);
  stroke-dashoffset: 0;
}

.ps-mini-fade,
.ps-mini-float,
.ps-mini-flow,
.ps-mini-shine {
  opacity: 1;
  translate: 0 0;
}

.diagram-sourcing.is-diagram-pending .ps-mini-draw {
  stroke-dashoffset: var(--dash, 560);
}

.diagram-sourcing.is-diagram-pending .ps-mini-fade,
.diagram-sourcing.is-diagram-pending .ps-mini-shine {
  opacity: 0;
}

.ps-mini.is-playing .ps-mini-draw {
  animation: psMiniDraw 0.72s cubic-bezier(0.25, 0.75, 0.25, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.ps-mini.is-playing .ps-mini-fade {
  animation: psMiniFade 0.42s ease forwards;
  animation-delay: var(--delay, 0s);
}

.ps-mini.is-playing .ps-mini-float {
  animation: psMiniFloat 1.45s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.ps-mini.is-playing .ps-mini-flow {
  animation: psMiniFlow 1.25s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.ps-mini.is-playing .ps-mini-shine {
  animation: psMiniShine 1.35s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

body.is-screenshot-mode .ps-mini-draw,
body.is-screenshot-mode .ps-mini-fade,
body.is-screenshot-mode .ps-mini-float,
body.is-screenshot-mode .ps-mini-flow,
body.is-screenshot-mode .ps-mini-shine {
  opacity: 1;
  stroke-dashoffset: 0;
  translate: 0 0;
}

@media (max-width: 640px) {
  .ps-mini {
    width: min(112%, 420px);
  }
}

.clinic-sheet-before {
  width: 33%;
  height: 45%;
  left: 14%;
  top: 24%;
  background:
    linear-gradient(0deg, transparent 30%, rgba(23,23,23,0.13) 30% calc(30% + 1px), transparent calc(30% + 1px) 60%, rgba(23,23,23,0.1) 60% calc(60% + 1px), transparent calc(60% + 1px)),
    rgba(255,255,255,0.8);
}

.clinic-sheet-after {
  width: 35%;
  height: 45%;
  right: 13%;
  bottom: 20%;
  border-color: rgba(37,144,189,0.92);
  background:
    linear-gradient(90deg, transparent 31%, rgba(37,144,189,0.17) 31% calc(31% + 1px), transparent calc(31% + 1px) 62%, rgba(37,144,189,0.14) 62% calc(62% + 1px), transparent calc(62% + 1px)),
    linear-gradient(0deg, transparent 43%, rgba(23,23,23,0.15) 43% calc(43% + 1px), transparent calc(43% + 1px)),
    rgba(255,255,255,0.84);
}

.clinic-sheet::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 12px;
  height: 1px;
  background: rgba(23,23,23,0.28);
  box-shadow: 0 12px 0 rgba(23,23,23,0.16), 0 24px 0 rgba(23,23,23,0.12);
}

.clinic-sheet-before::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: 20%;
  width: 40%;
  height: 1px;
  background: rgba(23,23,23,0.42);
  transform: rotate(-23deg);
  box-shadow: 18px -13px 0 rgba(23,23,23,0.2);
}

.clinic-sheet-after::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: 18%;
  width: 26px;
  height: 12px;
  border-left: 1px solid rgba(37,144,189,0.9);
  border-bottom: 1px solid rgba(37,144,189,0.9);
  transform: rotate(-45deg);
}

.clinic-scan {
  width: 20%;
  height: 1px;
  left: 41%;
  top: 53%;
  background: rgba(23,23,23,0.56);
  transform: rotate(-12deg);
  transform-origin: right center;
}

.clinic-scan::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(23,23,23,0.56);
  border-right: 1px solid rgba(23,23,23,0.56);
  transform: rotate(45deg);
}

.clinic-cross {
  background: rgba(37,144,189,0.82);
}

.clinic-cross-h {
  width: 30px;
  height: 1px;
  right: 23%;
  top: 36%;
}

.clinic-cross-v {
  width: 1px;
  height: 30px;
  right: calc(23% + 15px);
  top: calc(36% - 15px);
}

.clinic-cross-v::after {
  content: "READY";
  position: absolute;
  left: 8px;
  top: 18px;
  color: rgba(37,144,189,0.88);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.sketch-perspective {
  min-height: 216px;
  background:
    repeating-linear-gradient(154deg, transparent 0 15px, rgba(23,23,23,0.04) 15px 16px),
    repeating-linear-gradient(26deg, transparent 0 21px, rgba(23,23,23,0.028) 21px 22px),
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(37,144,189,0.035)),
    #fbfbfa;
}

.sketch-perspective::before {
  inset: 16px;
  border-color: rgba(23,23,23,0.1);
  transform: skewX(-3deg);
}

.relocate-perspective {
  display: grid;
  place-items: center;
  padding: 10px 16px 12px;
  background:
    linear-gradient(135deg, transparent 0 49.7%, rgba(23,23,23,0.045) 50%, transparent 50.3%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(23,23,23,0.022) 24px 25px),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(23,23,23,0.02) 24px 25px),
    #fbfbfa;
}

.relocate-perspective::before,
.relocate-perspective::after {
  z-index: 2;
}

.relocate-perspective::before {
  inset: 12px;
  border-color: rgba(23,23,23,0.12);
  transform: none;
}

.relocate-perspective img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 94%;
  height: calc(100% - 20px);
  max-height: 196px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04) brightness(1.04);
  mix-blend-mode: multiply;
  opacity: 0.86;
  transform: translateY(2px) scale(var(--relocate-sketch-scale));
}

.shop-grid {
  width: 1px;
  height: 120%;
  top: -10%;
  background: rgba(23,23,23,0.14);
}

.shop-grid-left {
  left: 23%;
  transform: rotate(57deg);
}

.shop-grid-right {
  right: 20%;
  transform: rotate(-57deg);
}

.shop-wall {
  border: 1px solid rgba(23,23,23,0.68);
  background: rgba(255,255,255,0.42);
}

.shop-wall-back {
  width: 52%;
  height: 43%;
  left: 24%;
  top: 12%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(23,23,23,0.15) 48% calc(48% + 1px), transparent calc(48% + 1px)),
    linear-gradient(0deg, transparent 54%, rgba(23,23,23,0.12) 54% calc(54% + 1px), transparent calc(54% + 1px)),
    rgba(255,255,255,0.46);
  transform: skewX(-13deg);
}

.shop-floor {
  width: 76%;
  height: 43%;
  left: 12%;
  bottom: 5%;
  border: 1px solid rgba(23,23,23,0.7);
  background:
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(23,23,23,0.08) 16px 17px),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(23,23,23,0.06) 14px 15px),
    rgba(255,255,255,0.34);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.shop-counter {
  width: 28%;
  height: 24%;
  left: 35%;
  bottom: 26%;
  border: 1px solid rgba(23,23,23,0.74);
  background: repeating-linear-gradient(0deg, transparent 0 8px, rgba(23,23,23,0.12) 8px 9px);
  transform: skewX(-12deg) rotate(-1deg);
}

.shop-counter::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: -13px;
  height: 13px;
  border: 1px solid rgba(23,23,23,0.55);
  background: rgba(255,255,255,0.45);
  transform: skewX(22deg);
}

.shop-shelf {
  width: 22%;
  height: 36%;
  right: 18%;
  top: 25%;
  border: 1px solid rgba(23,23,23,0.66);
  background:
    linear-gradient(0deg, transparent 31%, rgba(23,23,23,0.22) 31% 32%, transparent 32% 64%, rgba(23,23,23,0.22) 64% 65%, transparent 65%),
    linear-gradient(90deg, transparent 50%, rgba(23,23,23,0.14) 50% calc(50% + 1px), transparent calc(50% + 1px));
  transform: skewY(-3deg);
}

.shop-flow {
  width: 45%;
  height: 28%;
  left: 24%;
  bottom: 24%;
  border: 1px solid rgba(37,144,189,0.5);
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 0 0 70% 0;
  transform: rotate(-7deg);
}

.shop-flow::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 3px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(37,144,189,0.72);
  border-right: 1px solid rgba(37,144,189,0.72);
  transform: rotate(18deg);
}

.sourcing-node-buy {
  width: 24%;
  height: 44%;
  left: 11%;
  top: 32%;
}

.sourcing-node-rebuild {
  width: 25%;
  height: 38%;
  left: 38%;
  top: 21%;
  border-color: rgba(37,144,189,0.94);
  background:
    linear-gradient(90deg, transparent 48%, rgba(37,144,189,0.27) 48% calc(48% + 1px), transparent calc(48% + 1px)),
    rgba(255,255,255,0.84);
}

.sourcing-node-exit {
  width: 22%;
  height: 50%;
  right: 11%;
  bottom: 18%;
  background:
    linear-gradient(0deg, transparent 42%, rgba(23,23,23,0.15) 42% calc(42% + 1px), transparent calc(42% + 1px)),
    rgba(255,255,255,0.82);
}

.sourcing-node::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 12px;
  height: 1px;
  background: rgba(23,23,23,0.25);
  box-shadow: 0 12px 0 rgba(23,23,23,0.17);
}

.sourcing-node::after {
  position: absolute;
  left: 10px;
  bottom: 9px;
  color: rgba(23,23,23,0.64);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.sourcing-node-buy::after {
  content: "BUY";
}

.sourcing-node-rebuild::after {
  content: "REBUILD";
  color: rgba(37,144,189,0.92);
}

.sourcing-node-exit::after {
  content: "EXIT";
}

.sourcing-path {
  height: 1px;
  background: rgba(23,23,23,0.68);
  transform-origin: right center;
}

.sourcing-path::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.sourcing-path-a {
  width: 21%;
  left: 31%;
  top: 52%;
  color: rgba(23,23,23,0.68);
  transform: rotate(-8deg);
}

.sourcing-path-b {
  width: 24%;
  right: 28%;
  top: 53%;
  color: rgba(37,144,189,0.84);
  background: currentColor;
  transform: rotate(11deg);
}

@keyframes rentValueDrift {
  0%, 100% {
    transform: rotate(-24deg) scaleX(0.97);
    opacity: 0.82;
  }
  50% {
    transform: rotate(-24deg) scaleX(1.04);
    opacity: 1;
  }
}

@keyframes rentArrowNudge {
  0%, 100% {
    transform: rotate(-20deg) translate(0, 0);
  }
  50% {
    transform: rotate(-20deg) translate(3px, -2px);
  }
}

@keyframes serviceLabelBreath {
  0%, 100% {
    opacity: 0.54;
  }
  50% {
    opacity: 0.94;
  }
}

@keyframes serviceBoxBreath {
  0%, 100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.018);
    opacity: 1;
  }
}

@keyframes clinicScanDrift {
  0%, 100% {
    transform: rotate(-12deg) translateX(-2px);
    opacity: 0.68;
  }
  50% {
    transform: rotate(-12deg) translateX(5px);
    opacity: 1;
  }
}

@keyframes clinicCheckSoft {
  0%, 100% {
    transform: rotate(-45deg) scale(0.96);
    opacity: 0.48;
  }
  50% {
    transform: rotate(-45deg) scale(1.04);
    opacity: 1;
  }
}

@keyframes relocateSketchFloat {
  0%, 100% {
    transform: translateY(1px) scale(var(--relocate-sketch-scale));
  }
  50% {
    transform: translateY(4px) scale(var(--relocate-sketch-scale));
  }
}

@keyframes sourcingPathA {
  0%, 100% {
    transform: rotate(-8deg) translateX(-1px);
    opacity: 0.72;
  }
  50% {
    transform: rotate(-8deg) translateX(4px);
    opacity: 1;
  }
}

@keyframes sourcingPathB {
  0%, 100% {
    transform: rotate(11deg) translateX(-1px);
    opacity: 0.78;
  }
  50% {
    transform: rotate(11deg) translateX(4px);
    opacity: 1;
  }
}

@keyframes sourcingRebuildBreath {
  0%, 100% {
    border-color: rgba(37,144,189,0.74);
    opacity: 0.9;
  }
  50% {
    border-color: rgba(37,144,189,0.9);
    opacity: 1;
  }
}

@keyframes svgDraw {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rentupIsoLift {
  from {
    opacity: 0.28;
    transform: translateY(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rentupIsoFillIn {
  from {
    fill-opacity: 0;
  }

  to {
    fill-opacity: 1;
  }
}

@keyframes ecMiniDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ecMiniFade {
  to {
    opacity: 1;
  }
}

@keyframes ecMiniShine {
  0% {
    opacity: 0;
    transform: scale(0.84);
  }

  52% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.78;
    transform: scale(1);
  }
}

@keyframes rbShopDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rbShopFade {
  to {
    opacity: 1;
  }
}

@keyframes rbShopFloat {
  0% {
    translate: 0 0;
  }

  54% {
    translate: 0 -3px;
  }

  100% {
    translate: 0 0;
  }
}

@keyframes rbShopFlow {
  0% {
    translate: 0 0;
  }

  54% {
    translate: 6px 0;
  }

  100% {
    translate: 0 0;
  }
}

@keyframes rbShopShine {
  0% {
    opacity: 0;
    transform: scale(0.84);
  }

  52% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.74;
    transform: scale(1);
  }
}

@keyframes psMiniDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes psMiniFade {
  to {
    opacity: 1;
  }
}

@keyframes psMiniFloat {
  0% {
    translate: 0 0;
  }

  54% {
    translate: 0 -3px;
  }

  100% {
    translate: 0 0;
  }
}

@keyframes psMiniFlow {
  0% {
    translate: 0 0;
  }

  54% {
    translate: 6px 0;
  }

  100% {
    translate: 0 0;
  }
}

@keyframes psMiniShine {
  0% {
    opacity: 0;
    transform: scale(0.84);
  }

  52% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.74;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .diagram-rent .rent-line,
  .diagram-rent .rent-arrow,
  .diagram-rent .rent-arrow::after,
  .diagram-rent .rent-room-sub,
  .diagram-rent .rentup-iso-draw,
  .diagram-clinic .ec-mini-draw,
  .diagram-clinic .ec-mini-fade,
  .diagram-clinic .ec-mini-shine,
  .diagram-relocatebuddy .rb-shop-draw,
  .diagram-relocatebuddy .rb-shop-fade,
  .diagram-relocatebuddy .rb-shop-float,
  .diagram-relocatebuddy .rb-shop-flow,
  .diagram-relocatebuddy .rb-shop-shine,
  .diagram-sourcing .ps-mini-draw,
  .diagram-sourcing .ps-mini-fade,
  .diagram-sourcing .ps-mini-float,
  .diagram-sourcing .ps-mini-flow,
  .diagram-sourcing .ps-mini-shine,
  .diagram-clinic .clinic-scan,
  .diagram-clinic .clinic-cross-v::after,
  .diagram-clinic .clinic-sheet-after::after,
  .relocate-perspective img,
  .diagram-sourcing .sourcing-path-a,
  .diagram-sourcing .sourcing-path-b,
  .diagram-sourcing .sourcing-node-rebuild {
    animation: none;
  }

  .diagram-rent .rentup-iso-draw {
    opacity: 1;
    stroke-dashoffset: 0;
    transform: none;
  }

  .diagram-rent .rentup-iso-svg .ds1-a {
    fill-opacity: 1;
  }

  .diagram-clinic .ec-mini-draw,
  .diagram-clinic .ec-mini-fade,
  .diagram-clinic .ec-mini-shine {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .diagram-relocatebuddy .rb-shop-draw,
  .diagram-relocatebuddy .rb-shop-fade,
  .diagram-relocatebuddy .rb-shop-float,
  .diagram-relocatebuddy .rb-shop-flow,
  .diagram-relocatebuddy .rb-shop-shine {
    opacity: 1;
    stroke-dashoffset: 0;
    translate: 0 0;
  }

  .diagram-sourcing .ps-mini-draw,
  .diagram-sourcing .ps-mini-fade,
  .diagram-sourcing .ps-mini-float,
  .diagram-sourcing .ps-mini-flow,
  .diagram-sourcing .ps-mini-shine {
    opacity: 1;
    stroke-dashoffset: 0;
    translate: 0 0;
  }
}

.case-preview-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.works-section {
  background:
    linear-gradient(180deg, transparent 0, rgba(242,242,239,0.58) 100%);
}

.works-section .section-heading.with-action {
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
}

.works-heading-copy {
  max-width: 690px;
}

.works-title-phrase {
  display: inline-block;
}

body[data-page="home"] .works-section #works-title {
  overflow-wrap: normal;
  word-break: keep-all;
}

@media (max-width: 620px) {
  body[data-page="home"] .works-section .works-title-phrase {
    display: block;
  }
}

.works-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.works-focus-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.64);
  color: #5c5c5c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.works-section > .section-heading .text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.72);
  text-decoration: none;
  white-space: nowrap;
}

.case-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  padding: clamp(18px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.works-section .case-preview-list {
  gap: 20px;
  counter-reset: work-card;
}

.works-section .case-row {
  position: relative;
  grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  min-height: 0;
  padding: clamp(26px, 3.4vw, 42px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.93)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(23,23,23,0.016) 38px 39px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(23,23,23,0.014) 38px 39px);
  border-color: var(--line);
  overflow: hidden;
}

.works-section .case-row::before {
  counter-increment: work-card;
  content: "CASE 0" counter(work-card);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 7px 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.works-section .case-row::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(37,144,189,0.036) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.34), transparent 38%);
  opacity: 0.82;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 180px;
  border: 1px solid var(--line);
}

.works-section .before-after {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 218px;
  background:
    linear-gradient(180deg, #fff, #f6f6f2);
  border-color: var(--line);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.76) inset;
}

.works-section .before-after::after {
  content: "VISUAL RECORD";
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 2;
  color: rgba(23,23,23,0.36);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.case-card .before-after {
  position: relative;
}

.case-card .before-after::after {
  content: "VISUAL RECORD";
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 2;
  color: rgba(23,23,23,0.36);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.case-record {
  position: relative;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,247,243,0.95));
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.76) inset;
}

.case-record::after {
  content: attr(data-record-label);
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 2;
  padding: 4px 6px;
  color: rgba(23,23,23,0.48);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23,23,23,0.08);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.case-record img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.case-record--preview {
  aspect-ratio: 4 / 3;
  min-height: 180px;
}

.case-record--preview img {
  height: 100%;
}

.case-record--contain img {
  object-fit: contain;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,247,243,0.9));
}

.works-section .case-record--preview {
  grid-column: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  z-index: 1;
  align-self: start;
  min-height: 218px;
}

.case-card .case-record--preview {
  margin-bottom: 20px;
}

.case-field-record {
  display: grid;
  gap: 18px;
  padding: 0 0 38px;
  border-bottom: 1px solid var(--line);
}

.case-field-record-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.case-field-record-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.38;
  font-feature-settings: "palt";
}

.case-record-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.case-record-tabs a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(23,23,23,0.16);
  background: rgba(255,255,255,0.82);
  color: rgba(23,23,23,0.68);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.case-record-tabs a:hover,
.case-record-tabs a:focus-visible {
  border-color: rgba(23,23,23,0.32);
  background: #fff;
  color: var(--ink);
}

.case-record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-record-scroll-hint {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.case-record-scroll-cue {
  display: none;
}

.case-record--detail {
  display: flex;
  flex-direction: column;
}

.case-record--detail::after {
  top: 12px;
  bottom: auto;
}

.case-record--detail img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.case-record--wide {
  grid-column: 1 / -1;
}

.case-record figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 12px 14px 14px;
  background: rgba(255,255,255,0.86);
  border-top: 1px solid rgba(222,222,217,0.78);
}

.case-record figcaption small {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.case-record figcaption span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.case-record figcaption p {
  margin: 0;
  color: #555;
  font-size: 12px;
  line-height: 1.65;
}

.before-after div {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  background:
    linear-gradient(135deg, transparent 0 49.6%, rgba(23,23,23,0.12) 50%, transparent 50.4%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(23,23,23,0.035) 22px 23px),
    var(--wash);
}

.works-section .before-after div {
  min-height: 216px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.08) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.06) 50%, transparent calc(50% + 0.5px)),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(23,23,23,0.02) 30px 31px),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(23,23,23,0.018) 30px 31px),
    #f4f4f0;
}

.works-section .before-after div::before {
  content: "";
  position: absolute;
  inset: 38px 28px 32px;
  border: 1px solid rgba(23,23,23,0.18);
  background:
    linear-gradient(90deg, transparent 39%, rgba(23,23,23,0.11) 39% calc(39% + 1px), transparent calc(39% + 1px)),
    linear-gradient(0deg, transparent 52%, rgba(23,23,23,0.09) 52% calc(52% + 1px), transparent calc(52% + 1px));
}

.works-section .before-after div::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 20%;
  bottom: 30%;
  height: 1px;
  background: rgba(23,23,23,0.24);
  transform: rotate(-14deg);
  box-shadow:
    16px -28px 0 rgba(23,23,23,0.08),
    -14px 30px 0 rgba(23,23,23,0.07);
}

.before-after div + div {
  border-left: 1px solid var(--line);
  background:
    linear-gradient(45deg, transparent 0 49.6%, rgba(37,144,189,0.22) 50%, transparent 50.4%),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(37,144,189,0.045) 22px 23px),
    #f8fbfc;
}

.works-section .before-after div + div::before {
  border-color: rgba(37,144,189,0.24);
  background:
    linear-gradient(90deg, transparent 44%, rgba(37,144,189,0.1) 44% calc(44% + 1px), transparent calc(44% + 1px)),
    linear-gradient(0deg, transparent 48%, rgba(37,144,189,0.09) 48% calc(48% + 1px), transparent calc(48% + 1px));
}

.works-section .before-after div + div::after {
  background: rgba(37,144,189,0.34);
  transform: rotate(11deg);
  box-shadow:
    14px -24px 0 rgba(37,144,189,0.08),
    -16px 28px 0 rgba(37,144,189,0.07);
}

.before-after span {
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.works-section .before-after span {
  z-index: 1;
  padding: 4px 6px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23,23,23,0.08);
}

.before-after.case-visual {
  position: relative;
  isolation: isolate;
}

.before-after.case-visual .visual-panel {
  overflow: hidden;
}

.before-after.case-visual .visual-panel::before,
.before-after.case-visual .visual-panel::after,
.before-after.case-visual .visual-mark,
.before-after.case-visual .visual-mark::before {
  position: absolute;
  display: block;
  pointer-events: none;
}

.before-after.case-visual .visual-panel::before,
.before-after.case-visual .visual-panel::after,
.before-after.case-visual .visual-mark::before {
  content: "";
}

.before-after.case-visual .visual-mark {
  z-index: 2;
  margin: 0;
  color: inherit;
  font-size: 0;
  line-height: 1;
}

.case-visual-rentup-1r .visual-panel::before {
  inset: 30% 18% 23%;
  border: 1px solid rgba(23,23,23,0.24);
  background:
    linear-gradient(90deg, transparent 46%, rgba(23,23,23,0.13) 46% calc(46% + 1px), transparent calc(46% + 1px)),
    linear-gradient(0deg, transparent 54%, rgba(23,23,23,0.1) 54% calc(54% + 1px), transparent calc(54% + 1px)),
    rgba(255,255,255,0.3);
}

.case-visual-rentup-1r .visual-before::after {
  left: 30%;
  right: 28%;
  bottom: 30%;
  height: 1px;
  background: rgba(23,23,23,0.28);
  transform: rotate(6deg);
}

.case-visual-rentup-1r .visual-after::before {
  border-color: rgba(37,144,189,0.32);
  background:
    linear-gradient(90deg, transparent 42%, rgba(37,144,189,0.12) 42% calc(42% + 1px), transparent calc(42% + 1px)),
    linear-gradient(0deg, transparent 50%, rgba(37,144,189,0.1) 50% calc(50% + 1px), transparent calc(50% + 1px)),
    rgba(255,255,255,0.36);
}

.case-visual-rentup-1r .visual-after::after {
  left: 24%;
  right: 18%;
  bottom: 34%;
  height: 1px;
  background: rgba(37,144,189,0.62);
  transform: rotate(-18deg);
  box-shadow:
    22px -13px 0 rgba(37,144,189,0.18),
    46px -25px 0 rgba(37,144,189,0.16);
}

.case-visual-clinic-apartment .visual-panel::before {
  inset: 26% 19% 28%;
  border: 1px solid rgba(23,23,23,0.22);
  background:
    linear-gradient(0deg, transparent 30%, rgba(23,23,23,0.12) 30% calc(30% + 1px), transparent calc(30% + 1px)),
    linear-gradient(0deg, transparent 52%, rgba(23,23,23,0.1) 52% calc(52% + 1px), transparent calc(52% + 1px)),
    linear-gradient(0deg, transparent 74%, rgba(23,23,23,0.08) 74% calc(74% + 1px), transparent calc(74% + 1px)),
    rgba(255,255,255,0.34);
}

.case-visual-clinic-apartment .visual-before::after {
  left: 28%;
  right: 23%;
  top: 57%;
  height: 1px;
  background: rgba(23,23,23,0.28);
  transform: rotate(-16deg);
}

.case-visual-clinic-apartment .visual-after::before {
  border-color: rgba(37,144,189,0.32);
}

.case-visual-clinic-apartment .visual-after::after {
  left: 42%;
  top: 52%;
  width: 34px;
  height: 17px;
  border-left: 1px solid rgba(37,144,189,0.72);
  border-bottom: 1px solid rgba(37,144,189,0.72);
  transform: rotate(-44deg);
}

.case-visual-clinic-apartment .mark-a {
  left: 43%;
  right: 43%;
  top: 50%;
  height: 1px;
  background: rgba(37,144,189,0.42);
}

.case-visual-relocate-salon .visual-panel::before {
  inset: 24% 17% 21%;
  border: 1px solid rgba(23,23,23,0.2);
  background:
    linear-gradient(90deg, transparent 30%, rgba(23,23,23,0.11) 30% calc(30% + 1px), transparent calc(30% + 1px)),
    linear-gradient(90deg, transparent 68%, rgba(23,23,23,0.1) 68% calc(68% + 1px), transparent calc(68% + 1px)),
    linear-gradient(0deg, transparent 44%, rgba(23,23,23,0.1) 44% calc(44% + 1px), transparent calc(44% + 1px)),
    rgba(255,255,255,0.3);
}

.case-visual-relocate-salon .visual-before::after {
  left: 24%;
  right: 30%;
  top: 58%;
  height: 1px;
  background: rgba(23,23,23,0.24);
  transform: rotate(12deg);
}

.case-visual-relocate-salon .visual-after::before {
  border-color: rgba(37,144,189,0.28);
  background:
    linear-gradient(90deg, transparent 36%, rgba(37,144,189,0.12) 36% calc(36% + 1px), transparent calc(36% + 1px)),
    linear-gradient(90deg, transparent 66%, rgba(37,144,189,0.1) 66% calc(66% + 1px), transparent calc(66% + 1px)),
    linear-gradient(0deg, transparent 48%, rgba(37,144,189,0.1) 48% calc(48% + 1px), transparent calc(48% + 1px)),
    rgba(255,255,255,0.36);
}

.case-visual-relocate-salon .visual-after::after {
  left: 24%;
  right: 20%;
  top: 54%;
  height: 1px;
  background: rgba(37,144,189,0.58);
  transform: rotate(-9deg);
  box-shadow:
    20px 14px 0 rgba(37,144,189,0.2),
    47px -12px 0 rgba(37,144,189,0.16);
}

.case-visual-relocate-salon .mark-a {
  right: 24%;
  top: 39%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(37,144,189,0.6);
  border-radius: 50%;
  background: rgba(255,255,255,0.78);
}

.case-visual-sourcing-resale .visual-panel::before {
  inset: 33% 24% 32%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,23,23,0.24);
  background: rgba(255,255,255,0.42);
  color: rgba(23,23,23,0.56);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.case-visual-sourcing-resale .visual-before::before {
  content: "BUY";
}

.case-visual-sourcing-resale .visual-after::before {
  content: "EXIT";
  border-color: rgba(37,144,189,0.28);
  color: #3c7185;
}

.case-visual-sourcing-resale .visual-panel::after {
  left: 40%;
  right: 40%;
  top: 50%;
  height: 1px;
  background: rgba(23,23,23,0.22);
}

.case-visual-sourcing-resale .mark-a {
  left: calc(50% - 38px);
  top: calc(50% - 14px);
  width: 76px;
  height: 28px;
  border: 1px solid rgba(37,144,189,0.38);
  background: rgba(255,255,255,0.72);
}

.case-visual-sourcing-resale .mark-a::before {
  content: "REBUILD";
  inset: 0;
  display: grid;
  place-items: center;
  color: #3c7185;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.case-visual-sourcing-resale .mark-b,
.case-visual-sourcing-resale .mark-c {
  top: 50%;
  width: 16%;
  height: 1px;
  background: rgba(37,144,189,0.42);
}

.case-visual-sourcing-resale .mark-b {
  left: 31%;
  transform: rotate(-8deg);
}

.case-visual-sourcing-resale .mark-c {
  right: 31%;
  transform: rotate(8deg);
}

.case-row-content {
  display: grid;
  gap: 14px;
}

.works-section .case-row-content {
  grid-column: 2;
  min-width: 0;
  position: relative;
  z-index: 1;
  align-content: start;
  gap: 13px;
}

.works-section .case-row-content::before {
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.72);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.works-section .case-row:nth-child(1) .case-row-content::before {
  content: "VACANCY / RENT VALUE";
}

.works-section .case-row:nth-child(2) .case-row-content::before {
  content: "RESTORATION / RE-LEASING";
}

.works-section .case-row:nth-child(3) .case-row-content::before {
  content: "SHOP / OPERATION";
}

.case-meta {
  color: var(--muted);
  font-size: 13px;
}

.case-row-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.works-section .case-meta {
  color: #666;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
  margin: 0;
}

.case-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  color: #555;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.works-section .case-status {
  border-color: rgba(37,144,189,0.34);
  color: #3c7185;
}

.case-row p,
.case-card p,
.detail-section p,
.detail-aside dd {
  color: #4f4f4f;
}

.works-section .case-row h3 {
  max-width: 760px;
  margin-top: 2px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.44;
  font-feature-settings: "palt";
}

.works-section .case-summary {
  max-width: 680px;
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
}

.works-section .case-facts {
  gap: 8px;
  margin-top: 4px;
  border: 0;
}

.case-facts span {
  min-height: 40px;
  padding: 9px 12px;
  background: var(--wash);
  border: 1px solid var(--line);
  color: #404040;
  font-size: 13px;
}

.case-facts small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.works-section .case-facts span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 54px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(222,222,217,0.86);
  line-height: 1.55;
}

.works-section .case-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 0;
}

.case-flow-step {
  min-height: 76px;
  padding: 11px 12px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(222,222,217,0.78);
}

.case-flow-step span {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.case-flow-step p {
  margin: 6px 0 0;
  color: #505050;
  font-size: 12px;
  line-height: 1.55;
}

.works-section .case-row .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  width: fit-content;
  margin-top: 4px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.62);
  text-decoration: none;
}

.value-section {
  background: #fff;
}

.value-section .section-grid {
  align-items: start;
}

.value-lead {
  max-width: 500px;
  margin: 24px 0 0;
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.9;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metrics-grid article {
  position: relative;
  min-height: 220px;
  padding: clamp(22px, 3.4vw, 34px);
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.metrics-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(23,23,23,0.014) 34px 35px),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(23,23,23,0.012) 34px 35px);
}

.metrics-grid article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-right: 1px solid rgba(37,144,189,0.22);
  border-bottom: 1px solid rgba(37,144,189,0.22);
}

.metrics-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.7vw, 62px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.metrics-grid span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.value-card-head,
.value-number,
.value-axis,
.value-status,
.value-signal,
.metrics-grid article p:not(.value-axis) {
  position: relative;
  z-index: 1;
}

.value-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.metrics-grid .value-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  margin: 0;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.68);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.value-axis {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.5;
}

.metrics-grid .value-status {
  margin: 12px 0 0;
  color: #363636;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.value-signal {
  width: min(132px, 100%);
  height: 56px;
  margin-top: 18px;
  border: 1px solid rgba(37,144,189,0.2);
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(37,144,189,0.04) 18px 19px),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(23,23,23,0.025) 18px 19px),
    rgba(255,255,255,0.58);
  overflow: hidden;
}

.metrics-grid .value-signal span {
  position: absolute;
  display: block;
  margin: 0;
  color: inherit;
  font-size: 0;
  line-height: 1;
}

.signal-axis {
  background: rgba(23,23,23,0.2);
}

.signal-axis-x {
  left: 13px;
  right: 13px;
  bottom: 14px;
  height: 1px;
}

.signal-axis-y {
  top: 10px;
  bottom: 14px;
  left: 15px;
  width: 1px;
}

.value-rent-line {
  height: 1px;
  background: rgba(37,144,189,0.62);
  transform-origin: left center;
}

.value-rent-line-a {
  left: 24px;
  bottom: 27px;
  width: 27px;
  transform: rotate(-10deg);
}

.value-rent-line-b {
  left: 50px;
  bottom: 31px;
  width: 31px;
  transform: rotate(-18deg);
}

.value-rent-line-c {
  left: 80px;
  bottom: 41px;
  width: 30px;
  transform: rotate(-8deg);
}

.asset-block {
  bottom: 12px;
  width: 20px;
  border: 1px solid rgba(23,23,23,0.22);
  background: rgba(37,144,189,0.08);
}

.asset-block-a {
  left: 18px;
  height: 13px;
}

.asset-block-b {
  left: 42px;
  height: 21px;
}

.asset-block-c {
  left: 66px;
  height: 29px;
  border-color: rgba(37,144,189,0.34);
}

.asset-block-d {
  left: 90px;
  height: 37px;
  border-color: rgba(37,144,189,0.42);
}

.time-line {
  left: 15px;
  right: 15px;
  top: 28px;
  height: 1px;
  background: rgba(23,23,23,0.24);
}

.time-dot {
  top: 23px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(37,144,189,0.46);
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
}

.time-dot-a {
  left: 20px;
}

.time-dot-b {
  left: calc(50% - 5px);
  background: rgba(37,144,189,0.12);
}

.time-dot-c {
  right: 20px;
}

.trust-ring {
  border: 1px solid rgba(23,23,23,0.18);
  border-radius: 50%;
}

.trust-ring-a {
  inset: 11px 47px 11px 23px;
}

.trust-ring-b {
  inset: 11px 23px 11px 47px;
  border-color: rgba(37,144,189,0.28);
}

.trust-node {
  top: 25px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23,23,23,0.62);
}

.trust-node-a {
  left: 43px;
}

.trust-node-b {
  right: 43px;
  background: rgba(37,144,189,0.72);
}

.trust-link {
  left: 51px;
  right: 51px;
  top: 29px;
  height: 1px;
  background: rgba(37,144,189,0.36);
}

.metrics-grid article p:not(.value-axis) {
  margin: 9px 0 0;
  color: #4f4f4f;
  font-size: 13px;
  line-height: 1.7;
}

.value-options-page {
  background:
    linear-gradient(180deg, var(--bg) 0, rgba(242,242,239,0.72) 100%);
}

.value-options {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) clamp(80px, 10vw, 132px);
}

.value-options-note {
  margin: 0 0 30px;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}

.value-options-list {
  display: grid;
  gap: 24px;
}

.value-option {
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
}

.value-option.recommended {
  border-color: rgba(23,23,23,0.38);
}

.value-option-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: start;
  margin-bottom: 28px;
}

.value-option h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.22;
}

.value-option-head p {
  margin: 0;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.9;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.option-metric {
  min-height: 190px;
  padding: 20px;
  background:
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(23,23,23,0.012) 32px 33px),
    var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.option-metric small,
.option-report-label {
  display: block;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.option-metric strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(31px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.option-metric .metric-slot {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 0 10px;
  border: 1px solid rgba(37,144,189,0.24);
  color: #315f70;
  background: rgba(255,255,255,0.64);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.option-metric p {
  margin: 12px 0 0;
  color: #505050;
  font-size: 13px;
  line-height: 1.7;
}

.option-report {
  border: 1px solid var(--line);
  background: var(--paper);
}

.option-report-row {
  display: grid;
  grid-template-columns: minmax(108px, 0.25fr) minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.option-report-row:last-child {
  border-bottom: 0;
}

.option-report-row strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
}

.option-report-row p {
  margin: 0;
  color: #4f4f4f;
  font-size: 13px;
  line-height: 1.75;
}

.philosophy-section {
  text-align: center;
}

.philosophy-section h2 {
  max-width: 880px;
  margin: 0 auto;
}

.philosophy-copy {
  max-width: 780px;
  margin: 42px auto 0;
  text-align: left;
}

.partner-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-card {
  display: block;
  min-height: 280px;
  padding: clamp(26px, 4vw, 42px);
  color: inherit;
  text-decoration: none;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  background: rgba(255,255,255,0.96);
  border-color: rgba(23,23,23,0.26);
  box-shadow: 0 12px 26px rgba(0,0,0,0.035);
  transform: translateY(-2px);
}

.partner-card:focus-visible {
  outline: 2px solid rgba(23,23,23,0.38);
  outline-offset: -6px;
}

.partner-grid p {
  margin: 0 0 60px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.partner-grid h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}

.partner-grid span {
  display: block;
  margin-top: 18px;
  color: #555;
}

.contact-section {
  text-align: center;
}

.contact-section .section-heading {
  text-align: center;
}

.contact-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  max-width: 760px;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.contact-options span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #4c4c4c;
  font-size: 13px;
}

.contact-form {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  text-align: left;
}

.contact-required-note {
  margin: 0;
  color: #555;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.contact-form .required-mark {
  margin-left: 0.15em;
  color: #111;
  letter-spacing: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.7;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  border-color: rgba(23,23,23,0.42);
  box-shadow: 0 0 0 4px rgba(23,23,23,0.045);
}

.contact-form .button {
  justify-self: center;
  margin-top: 4px;
  cursor: pointer;
  font-family: var(--font-display);
}

.contact-privacy-note {
  margin: 0;
  text-align: center;
  color: #555;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.8;
}

.contact-privacy-note a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #171717;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 1px;
}

.contact-privacy-note a:focus-visible {
  outline: 2px solid rgba(23, 23, 23, 0.42);
  outline-offset: 4px;
}

.contact-note {
  max-width: 560px;
  margin: 20px auto 0;
}

.site-footer {
  color: #f4f4f1;
  background: #111;
  padding: clamp(50px, 8vw, 96px) var(--side) 26px;
}

.footer-statement {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 8vw, 92px);
  font-family: var(--font-display);
  font-size: clamp(42px, 10vw, 132px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 7vw, 82px);
}

.footer-brand {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
}

.footer-grid p,
.company-list dd {
  color: rgba(244,244,241,0.72);
}

.company-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.company-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.company-list dt {
  color: rgba(244,244,241,0.46);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.company-list dd {
  margin: 0;
}

.footer-bottom {
  max-width: var(--max);
  margin: 54px auto 0;
  justify-content: space-between;
  color: rgba(244,244,241,0.48);
  font-size: 11px;
}

.site-footer.simple {
  padding-top: 30px;
}

.site-footer.simple .footer-bottom {
  margin-top: 0;
}

.sub-hero,
.case-detail-hero {
  padding: 154px var(--side) clamp(64px, 8vw, 108px);
}

.sub-hero h1,
.case-detail-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(46px, 8.2vw, 104px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}

.sub-hero p,
.case-detail-hero p {
  max-width: 700px;
}

.case-index {
  padding: 0 var(--side) clamp(80px, 10vw, 132px);
}

.case-index-head {
  display: grid;
  grid-template-columns: minmax(200px, 0.5fr) minmax(0, 1fr);
  gap: 30px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.case-index-head h2 {
  max-width: 8.4em;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.case-index-head h2 span {
  display: block;
  white-space: nowrap;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0;
}

.filter-bar button {
  cursor: pointer;
  min-height: 48px;
  padding: 0 clamp(17px, 1.35vw, 22px);
  border: 1px solid rgba(23,23,23,0.16);
  border-radius: 999px;
  background: rgba(255,255,252,0.92);
  color: rgba(23,23,23,0.68);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.032),
    inset 0 1px 0 rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.filter-bar button:hover {
  transform: translateY(-1px);
  border-color: rgba(23,23,23,0.3);
  background: rgba(255,255,255,0.98);
  color: rgba(23,23,23,0.86);
  box-shadow:
    0 9px 22px rgba(0,0,0,0.048),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.filter-bar button.active,
.filter-bar button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.filter-bar button:focus-visible {
  outline: 2px solid rgba(37,144,189,0.52);
  outline-offset: 4px;
}

.filter-bar button:active {
  transform: translateY(0);
  box-shadow:
    0 3px 10px rgba(0,0,0,0.035),
    inset 0 1px 2px rgba(0,0,0,0.08);
}

.case-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.case-card .before-after {
  margin-bottom: 20px;
}

.case-card h3 {
  margin: 10px 0 10px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.48;
  font-feature-settings: "palt";
}

.case-card .case-facts {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.case-card .text-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 20px;
}

.works-section .case-row .text-link[href*="case-detail"],
.case-card .text-link[href*="case-detail"] {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.78em;
  margin-top: 12px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(23,23,23,0.24);
  background: rgba(252,252,249,0.86);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.74) inset;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.works-section .case-row .text-link[href*="case-detail"]::after,
.case-card .text-link[href*="case-detail"]::after {
  content: "";
  display: block;
  width: 1.45em;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.66;
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.works-section .case-row .text-link[href*="case-detail"]:hover,
.case-card .text-link[href*="case-detail"]:hover {
  border-color: rgba(23,23,23,0.42);
  background: rgba(247,247,243,0.98);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.78) inset,
    0 8px 20px rgba(0,0,0,0.035);
  transform: translateY(-1px);
}

.works-section .case-row .text-link[href*="case-detail"]:hover::after,
.case-card .text-link[href*="case-detail"]:hover::after {
  width: 1.9em;
  opacity: 0.86;
}

.works-section .case-row .text-link[href*="case-detail"]:focus-visible,
.case-card .text-link[href*="case-detail"]:focus-visible {
  outline: 2px solid rgba(23,23,23,0.34);
  outline-offset: 4px;
}

.works-section .case-row .text-link[href*="case-detail"]:active,
.case-card .text-link[href*="case-detail"]:active {
  transform: translateY(0);
  box-shadow: 0 1px 0 rgba(255,255,255,0.68) inset;
}

@media (max-width: 767px) {
  .works-section .case-row .text-link[href*="case-detail"],
  .case-card .text-link[href*="case-detail"] {
    min-height: 54px;
    min-width: 184px;
    padding: 0 24px 0 26px;
    border-color: rgba(23,23,23,0.34);
    background: rgba(255,255,252,0.95);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.82) inset,
      0 6px 18px rgba(0,0,0,0.04);
  }

  .works-section .case-row .text-link[href*="case-detail"]::after,
  .case-card .text-link[href*="case-detail"]::after {
    width: 2.2em;
    opacity: 0.82;
  }

  .works-section .case-row .text-link[href*="case-detail"]:hover::after,
  .case-card .text-link[href*="case-detail"]:hover::after {
    width: 2.45em;
    opacity: 0.9;
  }
}

.case-detail-hero {
  max-width: var(--max);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  margin-bottom: 38px;
}

.case-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 72px);
  padding: 0 var(--side) clamp(70px, 9vw, 128px);
}

.before-after.large {
  min-height: 420px;
}

.before-after.large div {
  min-height: 420px;
}

.detail-section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.detail-section h2,
.detail-aside h2 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.38;
  font-feature-settings: "palt";
}

body[data-page="case-detail"] #related-title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.24;
  font-feature-settings: "palt";
}

.detail-aside {
  align-self: start;
  position: sticky;
  top: 100px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.detail-aside dl {
  margin: 0;
}

.detail-aside div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-aside dt {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.detail-aside dd {
  margin: 0;
}

.case-detail-actions {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) clamp(48px, 7vw, 84px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.case-detail-actions .text-link,
.case-detail-actions .button {
  min-height: 46px;
}

.compact {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

@media (max-width: 980px) {
  .global-nav {
    position: fixed;
    inset: 66px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 6px;
    width: 38px;
    height: 38px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
  }

  .nav-toggle:focus-visible {
    outline-color: rgba(37, 144, 189, 0.62);
    box-shadow: 0 0 0 5px rgba(37, 144, 189, 0.08);
  }

  .nav-toggle span {
    width: 16px;
    height: 1px;
    background: var(--ink);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .hero::before {
    inset: 82px 16px 44px;
  }

  .hero-visual {
    min-height: 420px;
    order: 0;
    transform: none;
  }

  .hero-balanced .hero-visual {
    order: -1;
    min-height: 400px;
  }

  .eye-frame {
    width: min(66vw, 400px);
  }

  .ticker {
    left: -24vw;
    right: -24vw;
    bottom: 34px;
    font-size: clamp(54px, 14vw, 92px);
  }

  .section-grid,
  .footer-grid,
  .case-index-head,
  .case-detail-layout,
  .value-option-head,
  .option-report-row {
    grid-template-columns: 1fr;
  }

  .service-list,
  .partner-grid,
  .case-card-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .case-row {
    grid-template-columns: 1fr;
  }

  .works-section .case-row {
    grid-template-columns: 1fr;
  }

  .works-section .case-record--preview,
  .works-section .case-row-content {
    grid-column: 1;
  }

  .detail-aside {
    position: static;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
    gap: clamp(18px, 3vw, 30px);
    align-items: center;
    min-height: 88svh;
    padding-top: 104px;
    padding-bottom: 58px;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-copy {
    max-width: none;
    padding-top: 0;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced h1 {
    font-size: clamp(42px, 5.8vw, 52px);
    line-height: 1.38;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced h1 .hero-title-part {
    display: block;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-visual {
    order: 0;
    justify-self: end;
    width: min(42vw, 360px);
    min-height: 0;
    overflow: visible;
    transform: translateX(10px);
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-eye-frame {
    width: min(42vw, 360px);
    max-width: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 12px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.4vw, 52px);
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: 0.05em;
  }

  .hero-lead {
    margin-top: 18px;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.85;
  }

  .hero-lead span {
    display: inline;
  }

  .hero-lead span + span::before {
    content: " ";
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero .button {
    min-height: 42px;
    padding-inline: 18px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-balanced {
    gap: 22px;
    padding-top: 96px;
  }

  .hero-balanced .hero-visual {
    min-height: clamp(286px, 76vw, 320px);
  }

  .hero-balanced .eye-frame-balanced .eye-lid {
    left: -28%;
    right: -28%;
    height: 45%;
  }

  .hero-balanced .eye-frame-balanced .eye-orbit::before {
    left: -30%;
    width: 19%;
  }

  .hero-balanced .eye-frame-balanced .eye-orbit::after {
    right: -30%;
    width: 19%;
  }

  .eye-frame {
    width: min(76vw, 300px);
  }

  .frame-label {
    font-size: 9px;
  }

  .label-a1,
  .label-b1 {
    top: -14px;
  }

  .label-a2,
  .label-b2 {
    bottom: -18px;
  }

  .section,
  .sub-hero,
  .case-detail-hero,
  .case-index,
  .case-detail-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .sub-hero,
  .case-detail-hero {
    padding-top: 126px;
    padding-bottom: 58px;
  }

  .value-options {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sub-hero h1,
  .case-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(23px, 6.2vw, 28px);
    line-height: 1.2;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-all;
  }

  .sub-hero p,
  .case-detail-hero p,
  .case-index-head p {
    max-width: 100%;
    font-size: 13px;
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-all;
  }

  .works-section,
  .services-section,
  .value-section,
  .philosophy-section,
  .partner-section,
  .contact-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .service-card {
    min-height: auto;
    padding: 18px;
  }

  .service-card-head {
    align-items: flex-start;
    gap: 12px;
  }

  .service-number {
    width: 34px;
    height: 34px;
  }

  .service-role {
    max-width: 160px;
  }

  .service-diagram,
  .sketch-perspective {
    height: 164px;
    min-height: 164px;
  }

  .sketch-perspective {
    min-height: 184px;
  }

  .relocate-perspective {
    padding: 8px 12px 10px;
  }

  .relocate-perspective img {
    --relocate-sketch-scale: 1.2;
    width: auto;
    max-width: 96%;
    height: calc(100% - 16px);
    max-height: 166px;
    opacity: 0.74;
    transform: translateY(2px) scale(var(--relocate-sketch-scale));
  }

  .case-facts,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid article {
    min-height: auto;
    padding: 20px;
  }

  .value-option {
    padding: 22px;
  }

  .value-option-head {
    gap: 16px;
    margin-bottom: 20px;
  }

  .option-metric {
    min-height: auto;
    padding: 18px;
  }

  .option-report-row {
    gap: 10px;
    padding: 16px;
  }

  .value-card-head {
    margin-bottom: 16px;
  }

  .metrics-grid .value-number {
    width: 34px;
    height: 34px;
  }

  .metrics-grid strong {
    font-size: clamp(34px, 11vw, 52px);
  }

  .value-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .metrics-grid span {
    margin-top: 12px;
  }

  .value-signal {
    width: min(122px, 100%);
    height: 50px;
    margin-top: 14px;
  }

  .metrics-grid article p:not(.value-axis) {
    line-height: 1.65;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .works-section .before-after {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .before-after div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .works-section .before-after div {
    min-height: 108px;
  }

  .works-section .before-after div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .case-flow {
    grid-template-columns: 1fr;
  }

  .case-flow-step {
    min-height: auto;
    padding: 10px 11px;
  }

  .works-section .case-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-section .case-facts span {
    min-height: 52px;
    padding: 9px 10px;
  }

  .works-section .case-row {
    gap: 18px;
    padding: 22px 18px 24px;
  }

  .works-section .case-row-content {
    gap: 11px;
  }

  .works-section .case-summary {
    font-size: 13px;
    line-height: 1.7;
  }

  .works-section .case-row .text-link,
  .back-link,
  .case-card .text-link {
    min-height: 42px;
    align-items: center;
  }

  .footer-bottom a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
  }

  .partner-card {
    min-height: auto;
  }

  .partner-grid p {
    margin-bottom: 42px;
  }

  .contact-options {
    gap: 8px;
    margin-bottom: 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form .button {
    width: 100%;
  }

  .contact-note {
    font-size: 14px;
    line-height: 1.9;
  }

  .before-after.large,
  .before-after.large div {
    min-height: 260px;
  }

  .case-record--preview {
    min-height: 0;
  }

  .works-section .case-record--preview {
    min-height: 0;
  }

  .case-record-grid {
    display: flex;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    gap: 12px;
    margin-right: 0;
    padding: 0 54px 10px 0;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .case-record-scroll-hint {
    margin-right: -16px;
    position: relative;
    min-width: 0;
    max-width: calc(100% + 16px);
    overflow: visible;
  }

  .case-record-scroll-hint::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 10px;
    z-index: 3;
    width: 58px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.94) 78%);
    pointer-events: none;
  }

  .case-record-scroll-hint::before {
    content: "›";
    position: absolute;
    top: 45%;
    right: 14px;
    z-index: 4;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(23,23,23,0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    color: rgba(23,23,23,0.72);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .case-record-scroll-cue {
    position: absolute;
    right: 18px;
    bottom: 26px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(23,23,23,0.56);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
  }

  .case-record-scroll-cue span:last-child {
    font-size: 18px;
    letter-spacing: 0;
    transform: translateY(-1px);
  }

  .case-record--detail {
    flex: 0 0 min(86vw, 520px);
    scroll-snap-align: start;
  }

  .case-record--wide {
    grid-column: auto;
    flex-basis: min(92vw, 640px);
  }

  .case-field-record-head {
    display: grid;
    gap: 8px;
    align-items: start;
  }

  .case-field-record-head h2 {
    font-size: 22px;
  }

  .case-record-tabs {
    flex-wrap: nowrap;
    margin-bottom: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .case-record-tabs a {
    flex: 0 0 auto;
  }

  .case-detail-actions {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: flex-start;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ticker {
    left: -24vw;
    right: -24vw;
    bottom: 26px;
    font-size: clamp(38px, 14vw, 56px);
  }
}

/* FV comparison page */
.fv-options-page {
  background:
    linear-gradient(rgba(23,23,23,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,23,0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
}

.fv-options-main {
  padding-top: 98px;
}

.fv-options-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) var(--side) clamp(36px, 6vw, 72px);
}

.fv-options-intro h1 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.04em;
  overflow-wrap: normal;
}

.fv-options-intro p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #555;
}

.fv-option-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.fv-option {
  scroll-margin-top: 88px;
  padding: clamp(42px, 6vw, 76px) var(--side);
  border-top: 1px solid var(--line);
}

.fv-option-label {
  max-width: var(--max);
  margin: 0 auto 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.fv-option-label span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.fv-option-label p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.fv-option-stage {
  position: relative;
  max-width: var(--max);
  min-height: min(820px, calc(100svh - 120px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23,23,23,0.11);
  background:
    linear-gradient(rgba(23,23,23,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,23,0.018) 1px, transparent 1px),
    rgba(255,255,255,0.62);
  background-size: 34px 34px;
}

.fv-option-copy {
  position: relative;
  z-index: 3;
}

.fv-option-copy h2,
.fv-symbol-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.42;
  font-weight: 300;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}

.fv-option-copy h2 span,
.fv-option-copy p span,
.fv-symbol-copy h2 span {
  display: block;
}

.fv-option-copy h2 span {
  white-space: nowrap;
}

.fv-option-copy p:not(.eyebrow),
.fv-symbol-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: #666;
  font-size: 15px;
  line-height: 1.9;
}

.fv-options-page .hero-actions {
  margin-top: 30px;
}

.fv-option-readable,
.fv-option-hybrid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  padding: clamp(34px, 5vw, 68px);
}

.fv-option-visual {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.fv-options-page .eye-frame {
  width: min(42vw, 580px);
}

.fv-option-ticker {
  position: absolute;
  z-index: 0;
  left: -7vw;
  right: -18vw;
  bottom: 11%;
  display: flex;
  gap: 0.34em;
  color: rgba(23,23,23,0.04);
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.9;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
}

.fv-option-ticker span + span::before {
  content: "・";
  color: rgba(37,144,189,0.38);
  padding: 0 0.34em;
}

.fv-option-symbolic {
  min-height: min(900px, calc(100svh - 100px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(46px, 7vw, 92px) clamp(24px, 5vw, 76px);
  background: rgba(255,255,255,0.72);
}

.fv-option-symbolic::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(23,23,23,0.08);
  pointer-events: none;
}

.fv-symbol-meta {
  position: absolute;
  z-index: 4;
  top: clamp(22px, 3.4vw, 46px);
  left: clamp(20px, 4vw, 58px);
  display: grid;
  gap: 6px;
  color: rgba(23,23,23,0.46);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.fv-symbol-mark {
  position: relative;
  z-index: 3;
  width: min(30vw, 390px);
  min-width: 280px;
  margin-top: clamp(12px, 4vw, 48px);
}

.fv-symbol-mark .eye-frame {
  width: 100%;
}

.fv-symbol-mark .eye-frame-emblem {
  animation: fvSymbolRise 1.4s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.fv-symbol-words {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 14%;
  width: max-content;
  display: grid;
  gap: 0.1em;
  color: rgba(23,23,23,0.12);
  font-family: var(--font-display);
  font-size: clamp(76px, 11vw, 176px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.16em;
  white-space: nowrap;
  transform: translateX(-47%);
  pointer-events: none;
}

.fv-symbol-words span:nth-child(2) {
  color: rgba(23,23,23,0.07);
  transform: translateX(-10vw);
}

.fv-symbol-words span:nth-child(3) {
  color: rgba(23,23,23,0.055);
  transform: translateX(8vw);
}

.fv-symbol-words span::after {
  content: "・";
  color: rgba(37,144,189,0.34);
  padding-left: 0.24em;
}

.fv-symbol-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-top: auto;
  text-align: center;
}

.fv-symbol-copy h2 {
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.35;
}

.fv-symbol-copy p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.fv-symbol-copy .hero-actions {
  justify-content: center;
}

.fv-symbol-scroll {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4vw, 58px);
  bottom: clamp(22px, 3.4vw, 46px);
  margin: 0;
  color: rgba(23,23,23,0.44);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
}

.fv-symbol-scroll::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 54px;
  margin-top: 12px;
  background: rgba(23,23,23,0.28);
}

.fv-option-hybrid .fv-option-visual {
  min-height: 590px;
}

.fv-option-hybrid .fv-option-ticker {
  bottom: 8%;
  font-size: clamp(66px, 8vw, 126px);
}

@media (max-width: 980px) {
  .fv-options-main {
    padding-top: 76px;
  }

  .fv-option-label {
    display: block;
  }

  .fv-option-label p {
    margin-top: 6px;
  }

  .fv-option-stage {
    min-height: auto;
  }

  .fv-option-readable,
  .fv-option-hybrid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px 38px;
  }

  .fv-option-visual {
    min-height: 420px;
  }

  .fv-options-page .eye-frame {
    width: min(68vw, 420px);
  }

  .fv-option-copy h2,
  .fv-symbol-copy h2 {
    font-size: clamp(36px, 9vw, 54px);
    line-height: 1.34;
  }

  .fv-option-symbolic {
    min-height: calc(100svh - 80px);
    padding: 70px 20px 48px;
  }

  .fv-symbol-mark {
    width: min(62vw, 360px);
    min-width: 230px;
    margin-top: 18px;
  }

  .fv-symbol-words {
    bottom: 22%;
    font-size: clamp(54px, 17vw, 92px);
    letter-spacing: 0.14em;
    transform: translateX(-44%);
  }

  .fv-symbol-copy {
    margin-top: clamp(180px, 34vw, 260px);
  }

  .fv-option-hybrid .fv-option-visual {
    order: -1;
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .fv-options-intro,
  .fv-option {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fv-options-intro h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .fv-option-readable,
  .fv-option-hybrid {
    padding: 28px 16px 32px;
  }

  .fv-option-copy h2,
  .fv-symbol-copy h2 {
    font-size: clamp(34px, 10.5vw, 47px);
  }

  .fv-option-copy p:not(.eyebrow),
  .fv-symbol-copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.8;
  }

  .fv-option-nav {
    gap: 12px;
  }

  .fv-options-page .button {
    min-height: 42px;
    padding-inline: 18px;
  }

  .fv-option-visual {
    min-height: 330px;
  }

  .fv-options-page .eye-frame {
    width: min(78vw, 300px);
  }

  .fv-option-ticker {
    left: -34vw;
    bottom: 8%;
    font-size: clamp(42px, 15vw, 64px);
  }

  .fv-option-symbolic {
    min-height: 760px;
    padding: 76px 16px 38px;
  }

  .fv-option-symbolic::before {
    inset: 14px;
  }

  .fv-symbol-meta {
    top: 28px;
    left: 26px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .fv-symbol-mark {
    width: min(66vw, 300px);
    min-width: 0;
  }

  .fv-symbol-words {
    bottom: 31%;
    gap: 0.22em;
    font-size: clamp(48px, 18vw, 72px);
    letter-spacing: 0.13em;
  }

  .fv-symbol-copy {
    margin-top: auto;
  }

  .fv-symbol-copy .hero-actions {
    gap: 8px;
  }

  .fv-symbol-scroll {
    right: 22px;
    bottom: 28px;
  }

  .fv-option-hybrid .fv-option-visual {
    min-height: 360px;
  }
}

/* FV eye detail study */
.fv-options-page .eye-tip {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 22%;
  height: 1px;
  background: rgba(26,135,181,0.46);
  pointer-events: none;
}

.fv-options-page .eye-frame-safe .eye-tip {
  display: none;
}

.fv-options-page .eye-tip-left {
  left: -39%;
  transform: translateY(-50%) rotate(-4deg);
  transform-origin: right center;
}

.fv-options-page .eye-tip-right {
  right: -39%;
  transform: translateY(-50%) rotate(4deg);
  transform-origin: left center;
}

.fv-options-page .eye-frame-balanced .eye-tip {
  width: 23%;
  background: rgba(26,135,181,0.48);
}

.fv-options-page .eye-frame-emblem .eye-tip {
  width: 31%;
  background: rgba(26,135,181,0.58);
}

.fv-options-page .eye-frame-emblem .eye-tip-left {
  left: -55%;
  transform: translateY(-50%) rotate(-5deg);
}

.fv-options-page .eye-frame-emblem .eye-tip-right {
  right: -55%;
  transform: translateY(-50%) rotate(5deg);
}

.fv-options-page .eye-frame-balanced .eye-orbit,
.fv-options-page .eye-frame-emblem .eye-orbit {
  border-color: rgba(23,23,23,0.28);
}

.fv-options-page .eye-frame-emblem .eye-orbit {
  border-color: rgba(23,23,23,0.32);
}

.fv-options-page .eye-frame-balanced .eye-orbit {
  inset: 26.5%;
}

.fv-options-page .eye-frame-emblem .eye-orbit {
  inset: 25%;
}

.fv-options-page .eye-frame-balanced .eye-lid,
.fv-options-page .eye-frame-emblem .eye-lid {
  top: 50%;
  pointer-events: none;
}

.fv-options-page .eye-frame-balanced .eye-lid {
  left: -28%;
  right: -28%;
  height: 47%;
}

.fv-options-page .eye-frame-emblem .eye-lid {
  left: -48%;
  right: -48%;
  height: 52%;
}

.fv-options-page .eye-frame-balanced .eye-lid-top,
.fv-options-page .eye-frame-emblem .eye-lid-top {
  border-top-color: rgba(26,135,181,0.58);
}

.fv-options-page .eye-frame-balanced .eye-lid-bottom,
.fv-options-page .eye-frame-emblem .eye-lid-bottom {
  border-bottom-color: rgba(26,135,181,0.54);
}

.fv-options-page .eye-frame-emblem .eye-lid-top {
  border-top-color: rgba(26,135,181,0.66);
}

.fv-options-page .eye-frame-emblem .eye-lid-bottom {
  border-bottom-color: rgba(26,135,181,0.62);
}

.fv-options-page .eye-frame-balanced .eye-lid-top {
  transform: translateY(-64%);
}

.fv-options-page .eye-frame-balanced .eye-lid-bottom {
  transform: translateY(-36%);
}

.fv-options-page .eye-frame-emblem .eye-lid-top {
  border-top-width: 1.2px;
  transform: translateY(-66%);
}

.fv-options-page .eye-frame-emblem .eye-lid-bottom {
  border-bottom-width: 1.2px;
  transform: translateY(-34%);
}

.fv-options-page .eye-frame-balanced .eye-lid::after,
.fv-options-page .eye-frame-emblem .eye-lid::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  height: 100%;
  pointer-events: none;
}

.fv-options-page .eye-frame-balanced .eye-lid-top::after,
.fv-options-page .eye-frame-emblem .eye-lid-top::after {
  top: -4px;
  border-top: 1px solid rgba(23,23,23,0.14);
  border-radius: 100% 100% 0 0;
}

.fv-options-page .eye-frame-balanced .eye-lid-bottom::after,
.fv-options-page .eye-frame-emblem .eye-lid-bottom::after {
  bottom: -4px;
  border-bottom: 1px solid rgba(23,23,23,0.12);
  border-radius: 0 0 100% 100%;
}

.fv-options-page .eye-frame-emblem .eye-lid-top::after {
  border-top-color: rgba(23,23,23,0.2);
}

.fv-options-page .eye-frame-emblem .eye-lid-bottom::after {
  border-bottom-color: rgba(23,23,23,0.17);
}

.fv-options-page .eye-frame-balanced .eye-diamond {
  inset: 10.5%;
  border-color: rgba(26,135,181,0.76);
  border-width: 1.1px;
  transform: rotate(40deg);
}

.fv-options-page .eye-frame-emblem .eye-diamond {
  inset: 9.5%;
  border-color: rgba(26,135,181,0.78);
  border-width: 1.2px;
  transform: rotate(34deg);
}

.fv-options-page .eye-frame-balanced .iris-ring {
  width: 33%;
  border-color: rgba(26,135,181,0.7);
}

.fv-options-page .eye-frame-emblem .iris-ring {
  width: 31%;
  border-color: rgba(26,135,181,0.72);
}

.fv-options-page .eye-frame-balanced .eye-core {
  width: 16px;
  height: 16px;
}

.fv-options-page .eye-frame-emblem .eye-core {
  width: 15px;
  height: 15px;
}

.fv-options-page .eye-frame-balanced .node {
  width: 9px;
  height: 9px;
}

.fv-options-page .eye-frame-emblem .node {
  width: 10.5px;
  height: 10.5px;
}

.fv-options-page .eye-frame-balanced .node-a,
.fv-options-page .eye-frame-emblem .node-a {
  top: -5px;
}

.fv-options-page .eye-frame-balanced .node-b,
.fv-options-page .eye-frame-emblem .node-b {
  right: -5px;
}

.fv-options-page .eye-frame-balanced .node-c,
.fv-options-page .eye-frame-emblem .node-c {
  bottom: -5px;
}

.fv-options-page .eye-frame-balanced .node-d,
.fv-options-page .eye-frame-emblem .node-d {
  left: -5px;
}

.eye-study-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.eye-study-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(23,23,23,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,23,0.015) 1px, transparent 1px),
    rgba(255,255,255,0.68);
  background-size: 28px 28px;
}

.eye-study-tag {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.eye-study-card h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 560;
}

.eye-study-card p:not(.eye-study-tag) {
  margin: 12px 0 0;
  color: #5d5d5d;
  font-size: 13px;
  line-height: 1.75;
}

.eye-study-figure {
  min-height: 330px;
  margin-top: auto;
  display: grid;
  place-items: center;
  padding-top: 28px;
}

.fv-options-page .eye-study-figure .eye-frame {
  width: min(100%, 310px);
}

@media (max-width: 980px) {
  .eye-study-grid {
    grid-template-columns: 1fr;
  }

  .eye-study-card {
    min-height: auto;
  }

  .fv-options-page .eye-study-figure .eye-frame {
    width: min(66vw, 320px);
  }
}

@media (max-width: 620px) {
  .fv-options-page .eye-frame-balanced .eye-lid {
    left: -26%;
    right: -26%;
  }

  .fv-options-page .eye-frame-emblem .eye-lid {
    left: -42%;
    right: -42%;
  }

  .fv-options-page .eye-frame-emblem .eye-tip {
    width: 25%;
  }

  .fv-options-page .eye-frame-emblem .eye-tip-left {
    left: -43%;
  }

  .fv-options-page .eye-frame-emblem .eye-tip-right {
    right: -43%;
  }

  .eye-study-card {
    padding: 18px;
  }

  .eye-study-figure {
    min-height: 280px;
  }

  .fv-options-page .eye-study-figure .eye-frame {
    width: min(72vw, 280px);
  }
}

@keyframes fvSymbolRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================================================
   C ハイブリッド: 既存の左右分割FVを維持しつつ、
   - 目を eye-snippet.html の SVG に差し替え（自転45sにスローダウン）
   - 1行ティッカーを 2行交差マーキー（52s / 60s）に差し替え
   全クラスは .fv-c- プレフィックス。本番に影響しない
   ========================================================= */

/* 既存の .eye-frame を非表示（HTML側でも既に削除済みだが念のため） */
body[data-page="fv-c-hybrid"] .ticker { display: none; }

/* ---- 目の SVG ラッパ ---- */
.fv-c-eye-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.fv-c-hero-graphic {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  animation: fvCFadeInGraphic 1.8s ease 0.3s forwards;
}

@keyframes fvCFadeInGraphic {
  0%   { opacity: 0; transform: scale(0.92) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1)    rotate(0deg); }
}

/* ひし形自転: 初稿30s → 45s にスローダウン（"余裕のある雰囲気"優先） */
.fv-c-hero-graphic .rotate-diamond {
  animation: fvCRotateDiamond 45s linear infinite;
  transform-origin: 160px 160px;
  /* transform-box は指定しない（デフォルトのview-box基準で正しく自転する） */
}
@keyframes fvCRotateDiamond {
  0%   { transform: rotate(45deg); }
  100% { transform: rotate(405deg); }
}

/* 脈動リング: 初稿どおり 6s（指示変更なし） */
.fv-c-hero-graphic .pulse-ring {
  animation: fvCPulseRing 6s ease-in-out infinite;
  transform-origin: 160px 160px;
}
@keyframes fvCPulseRing {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.03); }
}

.fv-c-hero-graphic {
  overflow: visible;
}

.fv-c-hero-graphic .hero-symbol-bg {
  opacity: 0.42;
  stroke: rgba(23,23,23,0.26);
}

.fv-c-hero-graphic rect.hero-symbol-bg {
  stroke: rgba(23,23,23,0.2);
}

.fv-c-hero-graphic .hero-symbol-note {
  opacity: 0.42;
  fill: rgba(23,23,23,0.52);
}

.fv-c-hero-graphic .hero-symbol-mid {
  opacity: 0.66;
}

.fv-c-hero-graphic .hero-symbol-blue-stroke {
  stroke: rgba(26,135,181,0.66);
}

.fv-c-hero-graphic .hero-symbol-core {
  opacity: 0.9;
  filter: drop-shadow(0 5px 8px rgba(23,23,23,0.035));
}

.fv-c-hero-graphic .rotate-diamond.hero-symbol-core {
  stroke-width: 0.88;
}

.fv-c-hero-graphic .hero-symbol-blue-fill {
  fill: rgba(26,135,181,0.72);
}

.fv-c-hero-graphic .hero-symbol-point {
  fill: rgba(23,23,23,0.86);
}

.fv-c-hero-graphic .hero-symbol-inner-point {
  fill: rgba(23,23,23,0.74);
}

/* ---- 2行交差マーキー（初稿のVita Architecture風） ---- */
.fv-c-marquee {
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(28px, 3.6vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.4vw, 6px);
  pointer-events: none;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.fv-c-marquee-container {
  width: 100%;
  overflow: hidden;
}

.fv-c-marquee-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

/* 上行: 黒、左方向、52s（初稿35s から1.5倍ゆっくり） */
.fv-c-marquee-row-1 {
  animation: fvCMarqueeLeft 52s linear infinite;
}
/* 下行: 薄いグレー、右方向、60s（初稿40s から1.5倍ゆっくり） */
.fv-c-marquee-row-2 {
  animation: fvCMarqueeRight 60s linear infinite;
}

@keyframes fvCMarqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fvCMarqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.fv-c-marquee-text {
  font-family: var(--font-display, "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0 clamp(12px, 1.6vw, 24px);
  line-height: 1.1;
  flex-shrink: 0;
}

/* 上行: 大きく、黒 */
.fv-c-marquee-row-1 .fv-c-marquee-text {
  font-size: clamp(28px, 4.4vw, 64px);
  color: var(--ink, #171717);
}
/* 下行: 同サイズ、グレー（重なってる感を強める） */
.fv-c-marquee-row-2 .fv-c-marquee-text {
  font-size: clamp(28px, 4.4vw, 64px);
  color: rgba(23,23,23,0.22);
}

.fv-c-marquee-sep {
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(10px, 1.4vw, 20px);
  flex-shrink: 0;
}
.fv-c-marquee-sep > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(23,23,23,0.32);
}
.fv-c-marquee-row-2 .fv-c-marquee-sep > span {
  background: rgba(23,23,23,0.18);
}

/* screenshot mode 時はアニメ停止＆出現完了状態で固定（初期位置をずらして
   "流れている途中" の状態でキャプチャできるよう調整） */
body.is-screenshot-mode .fv-c-hero-graphic {
  opacity: 1;
  transform: none;
  animation: none !important;
}
body.is-screenshot-mode .fv-c-hero-graphic .rotate-diamond {
  animation: none !important;
  transform: rotate(45deg);
}
body.is-screenshot-mode .fv-c-hero-graphic .pulse-ring {
  animation: none !important;
  opacity: 0.65;
}
body.is-screenshot-mode .fv-c-marquee-row-1 {
  animation: none !important;
  transform: translateX(-22%);
}
body.is-screenshot-mode .fv-c-marquee-row-2 {
  animation: none !important;
  transform: translateX(-32%);
}

/* スマホ対応（既存のFVレイアウトを尊重しつつ、マーキーは細めに） */
@media (max-width: 720px) {
  .fv-c-eye-frame {
    max-width: 360px;
  }
  .fv-c-marquee-row-1 .fv-c-marquee-text,
  .fv-c-marquee-row-2 .fv-c-marquee-text {
    font-size: 32px;
  }
}

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  .fv-c-hero-graphic,
  .fv-c-hero-graphic .rotate-diamond,
  .fv-c-hero-graphic .pulse-ring,
  .fv-c-marquee-row-1,
  .fv-c-marquee-row-2 {
    animation: none !important;
  }
  .fv-c-hero-graphic { opacity: 1; }
}

/* =========================================================
   C ハイブリッド v2: マーキーを目のフレーム内にオーバーレイ配置
   - A2/B2 ラベルの少し上、ひし形の下半分あたりに配置
   - テキスト内容・速度は v1 と同じ（Glitch Mundo 系黒 52s / 不動産価値向上系グレー 60s）
   - フレーム内に収めるためフォントサイズを小さく、色は薄く（SVGと共存）
   ========================================================= */

.fv-c-eye-frame {
  position: relative;
  overflow: hidden;
}

.fv-c-hero-graphic {
  position: relative;
  z-index: 1;
}

.fv-c-marquee.fv-c-marquee-inframe {
  position: absolute;
  top: 62%;
  left: 0;
  right: 0;
  width: 100%;
  grid-column: auto;
  margin: 0;
  overflow: hidden;
  z-index: 2;
  gap: 0;
  pointer-events: none;
}

.fv-c-marquee-inframe .fv-c-marquee-container {
  width: 100%;
  overflow: hidden;
}

.fv-c-marquee-inframe .fv-c-marquee-row-1 .fv-c-marquee-text {
  font-size: clamp(11px, 1.3vw, 17px);
  letter-spacing: 0.22em;
  color: rgba(23,23,23,0.34);
  padding: 0 clamp(10px, 1.2vw, 18px);
}

.fv-c-marquee-inframe .fv-c-marquee-row-2 .fv-c-marquee-text {
  font-size: clamp(11px, 1.3vw, 17px);
  letter-spacing: 0.22em;
  color: rgba(23,23,23,0.15);
  padding: 0 clamp(10px, 1.2vw, 18px);
}

.fv-c-marquee-inframe .fv-c-marquee-sep {
  padding: 0 clamp(8px, 1vw, 14px);
}
.fv-c-marquee-inframe .fv-c-marquee-sep > span {
  width: 4px;
  height: 4px;
}
.fv-c-marquee-inframe .fv-c-marquee-row-1 .fv-c-marquee-sep > span {
  background: rgba(23,23,23,0.18);
}
.fv-c-marquee-inframe .fv-c-marquee-row-2 .fv-c-marquee-sep > span {
  background: rgba(23,23,23,0.1);
}

@media (max-width: 720px) {
  .fv-c-hero-graphic .hero-symbol-bg {
    opacity: 0.34;
  }

  .fv-c-hero-graphic .hero-symbol-note {
    opacity: 0.28;
  }

  .fv-c-marquee-inframe .fv-c-marquee-row-1 .fv-c-marquee-text,
  .fv-c-marquee-inframe .fv-c-marquee-row-2 .fv-c-marquee-text {
    font-size: 12px;
  }

  .fv-c-marquee-inframe .fv-c-marquee-row-1 .fv-c-marquee-text {
    color: rgba(23,23,23,0.24);
  }

  .fv-c-marquee-inframe .fv-c-marquee-row-2 .fv-c-marquee-text {
    color: rgba(23,23,23,0.11);
  }

  .fv-c-marquee.fv-c-marquee-inframe {
    top: 64%;
  }
}

@media (max-width: 767px) {
  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced {
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
    grid-template-areas:
      "eyebrow visual"
      "title visual"
      "lead lead"
      "actions actions";
    align-items: start;
    column-gap: 0;
    row-gap: 0;
    min-height: 88svh;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-copy {
    display: contents;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .eyebrow {
    grid-area: eyebrow;
    position: relative;
    z-index: 2;
    max-width: 100%;
    align-self: end;
    margin: 0 0 clamp(18px, 5vw, 26px);
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: 0.13em;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced h1 {
    grid-area: title;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(34px, 10.2vw, 44px);
    line-height: 1.34;
    letter-spacing: 0.035em;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced h1 > span,
  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced h1 .hero-title-part {
    display: block;
    white-space: nowrap;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-visual {
    grid-area: visual;
    align-self: center;
    justify-self: end;
    width: min(58vw, 260px);
    height: auto;
    min-height: 0;
    overflow: visible;
    transform: translate(12px, clamp(18px, 6vw, 30px));
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-eye-frame {
    width: min(58vw, 260px);
    max-width: none;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-lead {
    grid-area: lead;
    position: relative;
    z-index: 2;
    margin-top: clamp(24px, 7vw, 36px);
    max-width: 100%;
    font-size: 12px;
    line-height: 1.85;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-actions {
    grid-area: actions;
    position: relative;
    z-index: 2;
    margin-top: 22px;
  }
}

.value-hybrid-preview-page .value-hybrid-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.value-hybrid-preview-page .value-hybrid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(23,23,23,0.025) 47px 48px),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(23,23,23,0.022) 47px 48px);
  opacity: 0.72;
}

.value-hybrid-preview-page .value-hybrid-shell {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.value-hybrid-preview-page .value-hybrid-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 72px;
  align-items: end;
  padding-bottom: 42px;
}

.value-hybrid-preview-page .value-hybrid-title h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
}

.value-hybrid-preview-page .value-hybrid-title h2 span {
  display: block;
}

.value-hybrid-preview-page .value-hybrid-lead-wrap {
  max-width: 520px;
  justify-self: end;
}

.value-hybrid-preview-page .value-hybrid-lead {
  margin: 0;
  color: #4f4f4f;
  font-size: 15px;
  line-height: 2;
}

.value-hybrid-preview-page .value-hybrid-data-note {
  margin: 18px 0 0;
  color: rgba(23,23,23,0.5);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.value-hybrid-preview-page .value-hybrid-metrics,
.value-hybrid-preview-page .value-hybrid-axes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-hybrid-preview-page .value-hybrid-metrics article,
.value-hybrid-preview-page .value-hybrid-axes article {
  position: relative;
  min-width: 0;
  background: rgba(255,255,255,0.88);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.value-hybrid-preview-page .value-hybrid-metrics article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 0 24px 26px;
}

.value-hybrid-preview-page .value-hybrid-metrics article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 49.7%, rgba(23,23,23,0.05) 50%, transparent 50.3%),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(23,23,23,0.018) 35px 36px),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(23,23,23,0.016) 35px 36px);
  opacity: 0.58;
}

.value-hybrid-preview-page .value-hybrid-axis,
.value-hybrid-preview-page .value-hybrid-metrics strong,
.value-hybrid-preview-page .value-hybrid-number-with-note,
.value-hybrid-preview-page .value-hybrid-label,
.value-hybrid-preview-page .value-hybrid-copy,
.value-hybrid-preview-page .value-hybrid-axes span,
.value-hybrid-preview-page .value-hybrid-axes p {
  position: relative;
  z-index: 1;
}

.value-hybrid-preview-page .value-hybrid-axis {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.55;
}

.value-hybrid-preview-page .value-hybrid-metrics strong {
  display: flex;
  align-items: flex-end;
  min-height: 86px;
  margin-top: 24px;
  color: rgba(23,23,23,0.68);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: clamp(68px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-variant-numeric: lining-nums;
}

.value-hybrid-preview-page .value-hybrid-figure {
  gap: 0.05em;
}

.value-hybrid-preview-page .value-hybrid-digit {
  display: inline-block;
}

.value-hybrid-preview-page .value-hybrid-unit {
  display: inline-block;
  margin-bottom: 0.08em;
  color: rgba(23,23,23,0.54);
  font-size: 0.6em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.value-hybrid-preview-page .value-hybrid-unit-ja {
  margin-bottom: 0.12em;
  font-family: var(--font-serif);
  font-size: 0.5em;
}

.value-hybrid-preview-page .value-hybrid-number-with-note {
  display: flex;
  min-height: 86px;
  margin-top: 24px;
  gap: 10px;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.value-hybrid-preview-page .value-hybrid-number-with-note strong {
  min-height: 0;
  margin-top: 0;
}

.value-hybrid-preview-page .value-hybrid-number-with-note > span {
  display: inline-block;
  max-width: 92px;
  margin-bottom: 7px;
  color: rgba(23,23,23,0.48);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  white-space: normal;
}

.value-hybrid-preview-page .value-hybrid-label {
  margin: 20px 0 0;
  color: rgba(23,23,23,0.72);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.value-hybrid-preview-page .value-hybrid-copy {
  margin: 12px 0 0;
  color: #565656;
  font-size: 13px;
  line-height: 1.8;
}

.value-hybrid-preview-page .value-hybrid-axes {
  margin-top: 18px;
}

.value-hybrid-preview-page .value-hybrid-axes article {
  min-height: 154px;
  padding: 22px 20px 20px;
}

.value-hybrid-preview-page .value-hybrid-axes span {
  display: block;
  width: max-content;
  margin-bottom: 16px;
  color: rgba(23,23,23,0.48);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.value-hybrid-preview-page .value-hybrid-axes p:not(.value-hybrid-axis) {
  margin: 12px 0 0;
  color: #3f3f3f;
  font-size: 13px;
  line-height: 1.75;
}

.value-hybrid-preview-page .value-hybrid-footnote {
  max-width: var(--max);
  margin: 18px 0 0;
  color: rgba(23,23,23,0.42);
  font-size: 11px;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .value-hybrid-preview-page .value-hybrid-head {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 34px;
  }

  .value-hybrid-preview-page .value-hybrid-title h2 {
    font-size: 42px;
    line-height: 1.28;
  }

  .value-hybrid-preview-page .value-hybrid-lead-wrap {
    max-width: 680px;
    justify-self: start;
  }

  .value-hybrid-preview-page .value-hybrid-metrics,
  .value-hybrid-preview-page .value-hybrid-axes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .value-hybrid-preview-page .value-hybrid-title h2 {
    font-size: 34px;
    line-height: 1.32;
  }

  .value-hybrid-preview-page .value-hybrid-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .value-hybrid-preview-page .value-hybrid-metrics,
  .value-hybrid-preview-page .value-hybrid-axes {
    grid-template-columns: 1fr;
  }

  .value-hybrid-preview-page .value-hybrid-metrics article {
    min-height: 0;
    padding: 22px;
  }

  .value-hybrid-preview-page .value-hybrid-metrics strong {
    min-height: 76px;
    margin-top: 20px;
    font-size: 62px;
  }

  .value-hybrid-preview-page .value-hybrid-number-with-note {
    min-height: 76px;
    margin-top: 20px;
  }

  .value-hybrid-preview-page .value-hybrid-number-with-note > span {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .value-hybrid-preview-page .value-hybrid-label {
    margin-top: 16px;
    font-size: 15px;
  }

  .value-hybrid-preview-page .value-hybrid-copy {
    font-size: 13px;
  }

  .value-hybrid-preview-page .value-hybrid-axes article {
    min-height: 0;
  }
}

.service-card::before {
  background-image: var(--gm-grid-pattern);
  background-size: var(--gm-grid-size) var(--gm-grid-size);
  background-position: 0 0;
}

.service-diagram,
.sketch-perspective {
  border-color: rgba(23,23,23,0.14);
  background-color: #fff;
  background-image: var(--gm-grid-pattern);
  background-size: var(--gm-grid-size) var(--gm-grid-size);
  background-position: 0 0;
}

.rentup-iso-draw {
  stroke: rgba(55,62,68,0.86);
  stroke-width: 1.62;
}

.rentup-iso-svg .ds1-2,
.rentup-iso-svg .ds1-3 {
  stroke: rgba(55,62,68,0.78);
}

.rentup-iso-svg .ds1-4 {
  stroke: rgba(65,88,98,0.54);
}

.rentup-iso-svg .ds1-a {
  fill: rgba(65,88,98,0.026);
  stroke: rgba(65,88,98,0.56);
  stroke-width: 1.72;
}

.ec-mini {
  --ec-mini-ink: rgba(55,62,68,0.86);
  --ec-mini-muted: rgba(137,137,128,0.62);
  --ec-mini-blue: rgba(65,88,98,0.54);
}

.rb-shop {
  --rb-shop-ink: rgba(55,62,68,0.86);
  --rb-shop-muted: rgba(137,137,128,0.62);
  --rb-shop-blue: rgba(65,88,98,0.54);
}

.ps-mini {
  --ps-mini-ink: rgba(55,62,68,0.86);
  --ps-mini-muted: rgba(137,137,128,0.62);
  --ps-mini-blue: rgba(65,88,98,0.54);
}

.ec-mini-line,
.rb-shop-line,
.ps-mini-line {
  stroke-width: 1.72;
}

.ec-mini-blue,
.rb-shop-blue,
.rb-shop-dashed,
.ps-mini-blue {
  stroke-width: 1.48;
}

.ec-mini-soft,
.rb-shop-soft,
.ps-mini-soft {
  stroke-width: 0.98;
}

.value-hybrid-preview-page .value-hybrid-card-note {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 136px;
  margin: 0 -24px 22px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23,23,23,0.035), transparent 74%),
    linear-gradient(180deg, rgba(23,23,23,0.022), transparent 58%),
    rgba(255,255,255,0.78);
}

.value-hybrid-preview-page .value-hybrid-card-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: min(112px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, rgba(23,23,23,0.36), rgba(23,23,23,0.1));
}

.value-hybrid-preview-page .value-hybrid-card-note span {
  display: block;
  margin-bottom: 12px;
  color: rgba(23,23,23,0.48);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.value-hybrid-preview-page .value-hybrid-card-note .value-hybrid-axis {
  color: rgba(23,23,23,0.62);
}

.value-hybrid-preview-page .value-hybrid-card-note p:not(.value-hybrid-axis) {
  margin: 10px 0 0;
  color: #464646;
  font-size: 13px;
  line-height: 1.7;
}

.value-hybrid-preview-page .value-hybrid-metrics article > .value-hybrid-axis,
.value-hybrid-preview-page .value-hybrid-axes {
  display: none;
}

.works-bridge-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  background:
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(23,23,23,0.02) 47px 48px),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(23,23,23,0.018) 47px 48px),
    #fff;
}

.works-bridge {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.works-bridge-visual,
.works-bridge-copy {
  position: relative;
  min-width: 0;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
}

.works-bridge-visual {
  display: grid;
  place-items: center;
  min-height: clamp(430px, 42vw, 560px);
  padding: clamp(48px, 6.6vw, 76px) clamp(42px, 5.4vw, 66px) clamp(68px, 7.8vw, 94px);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.035);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(248,248,245,0.92)),
    #fff;
}

.works-bridge-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(23,23,23,0.055) 0 0.5px, transparent 0.75px),
    linear-gradient(180deg, rgba(23,23,23,0.018), transparent 36%);
  background-size: 8px 8px, 100% 100%;
  opacity: 0.18;
}

.works-bridge-note {
  position: absolute;
  z-index: 2;
  color: rgba(23,23,23,0.26);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  pointer-events: none;
}

.works-bridge-note--primary {
  top: clamp(20px, 3vw, 32px);
  left: clamp(20px, 3vw, 32px);
}

.works-bridge-note--secondary {
  right: clamp(20px, 3vw, 32px);
  bottom: clamp(24px, 3.6vw, 42px);
}

.works-bridge-image {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23,23,23,0.18);
  background: rgba(255,255,255,0.82);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 10px 22px rgba(0,0,0,0.055);
  transform: translateY(-2px);
}

.works-bridge-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.works-bridge-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.3vw, 50px);
  background: rgba(255,255,255,0.86);
}

.works-bridge-copy h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
}

.works-bridge-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}

.works-bridge-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid rgba(23,23,23,0.18);
}

.works-bridge-flow span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: rgba(23,23,23,0.58);
  font-size: 12px;
  font-weight: 700;
}

.works-bridge-sketch {
  position: absolute;
  inset: 24px;
}

.works-bridge-sketch::before,
.works-bridge-sketch::after,
.works-bridge-plane,
.works-bridge-stair,
.works-bridge-line {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.works-bridge-sketch::before {
  inset: 12% 8% 12% 8%;
  border: 1px solid rgba(23,23,23,0.18);
  transform: skewY(-7deg) rotate(-2deg);
}

.works-bridge-sketch::after {
  left: 18%;
  right: 14%;
  top: 51%;
  height: 1px;
  background: rgba(23,23,23,0.26);
  transform: rotate(-14deg);
  box-shadow:
    24px -42px 0 rgba(23,23,23,0.08),
    -28px 46px 0 rgba(23,23,23,0.07);
}

.works-bridge-plane {
  border: 1px solid rgba(23,23,23,0.24);
  background:
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(23,23,23,0.045) 8px 9px),
    rgba(255,255,255,0.2);
  transform: skewY(-8deg);
}

.works-bridge-plane.plane-a {
  left: 10%;
  top: 18%;
  width: 36%;
  height: 34%;
}

.works-bridge-plane.plane-b {
  right: 10%;
  top: 24%;
  width: 28%;
  height: 28%;
  border-color: rgba(63,104,122,0.24);
}

.works-bridge-plane.plane-c {
  left: 30%;
  bottom: 14%;
  width: 44%;
  height: 26%;
}

.works-bridge-stair {
  left: 44%;
  top: 36%;
  width: 18%;
  height: 34%;
  background:
    repeating-linear-gradient(180deg, rgba(23,23,23,0.24) 0 1px, transparent 1px 9px);
  transform: rotate(-17deg);
}

.works-bridge-line.line-a {
  left: 18%;
  right: 22%;
  bottom: 22%;
  height: 1px;
  background: rgba(63,104,122,0.36);
  transform: rotate(-9deg);
}

.works-bridge-line.line-b {
  left: 58%;
  top: 20%;
  width: 1px;
  height: 58%;
  background: rgba(23,23,23,0.12);
  transform: rotate(14deg);
}

.fv-alt-horizontal .works-bridge-section--case-studies {
  padding-top: clamp(60px, 7vw, 104px);
  padding-bottom: clamp(60px, 7vw, 104px);
  background:
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(23,23,23,0.022) 59px 60px),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(23,23,23,0.018) 59px 60px),
    #fff;
}

.fv-alt-horizontal .works-bridge--case-studies {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 5.8vw, 78px);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(23,23,23,0.12);
  background: rgba(255,255,255,0.72);
}

.fv-alt-horizontal .works-bridge--case-studies .works-bridge-visual,
.fv-alt-horizontal .works-bridge--case-studies .works-bridge-copy {
  border: 0;
  background: transparent;
}

.fv-alt-horizontal .works-bridge--case-studies .works-bridge-visual {
  display: grid;
  min-height: clamp(360px, 32vw, 470px);
  margin: 0;
  padding: clamp(18px, 3.1vw, 42px);
  place-items: center;
  background:
    linear-gradient(135deg, transparent 0 49.8%, rgba(23,23,23,0.045) 50%, transparent 50.2%),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(23,23,23,0.021) 39px 40px),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(23,23,23,0.019) 39px 40px),
    rgba(250,250,248,0.78);
  border: 1px solid rgba(23,23,23,0.08);
}

.fv-alt-horizontal .works-bridge--case-studies .works-bridge-visual::before {
  content: "";
  position: absolute;
  inset: clamp(12px, 2vw, 24px);
  border: 1px solid rgba(23,23,23,0.07);
  pointer-events: none;
}

.fv-alt-horizontal .works-bridge-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
  mix-blend-mode: multiply;
}

.fv-alt-horizontal .works-bridge--case-studies .works-bridge-copy {
  padding: clamp(22px, 4vw, 48px) clamp(10px, 2vw, 22px);
}

.fv-alt-horizontal .works-bridge--case-studies .works-bridge-copy h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.035em;
  font-feature-settings: "palt";
}

.fv-alt-horizontal .works-bridge--case-studies .works-bridge-copy > p:not(.section-kicker) {
  max-width: 620px;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 2;
}

.fv-alt-horizontal .works-bridge--case-studies .works-bridge-flow {
  width: min(100%, 420px);
  margin-top: 30px;
}

.fv-alt-horizontal .works-bridge--case-studies .works-bridge-flow span {
  color: rgba(23,23,23,0.56);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.works-section .case-row:nth-child(4) .case-row-content::before {
  content: "PURCHASE / REBUILD";
}

@media (max-width: 980px) {
  .works-bridge {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .service-card {
    padding: 0;
    gap: 10px;
    background: #fff;
  }

  .service-card::before {
    background-image: var(--gm-grid-pattern);
    background-size: var(--gm-grid-size) var(--gm-grid-size);
    background-position: 0 0;
  }

  .service-diagram,
  .sketch-perspective {
    width: 100%;
    height: clamp(178px, 48vw, 206px);
    min-height: 178px;
    margin: 0 0 8px;
    border: 0;
    border-bottom: 1px solid rgba(23,23,23,0.08);
    background-color: #fff;
    background-image: var(--gm-grid-pattern);
    background-size: var(--gm-grid-size) var(--gm-grid-size);
    background-position: 0 0;
    box-shadow: none;
  }

  .service-diagram::before {
    inset: 18px;
    border-color: rgba(23,23,23,0.09);
  }

  .service-diagram::after {
    opacity: 0.34;
  }

  .service-card-head,
  .service-name,
  .service-card h3,
  .service-copy,
  .service-card a {
    margin-left: 18px;
    margin-right: 18px;
  }

  .service-card-head {
    margin-top: 6px;
  }

  .service-card a {
    margin-bottom: 16px;
  }

  .service-number {
    width: auto;
    height: auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: rgba(23,23,23,0.58);
  }

  .service-role {
    max-width: 190px;
  }

  .service-name {
    margin-top: 2px;
  }

  .service-copy {
    font-size: 13px;
    line-height: 1.86;
  }

  .rentup-iso-svg {
    width: min(64vw, 210px);
  }

  .ec-mini,
  .rb-shop,
  .ps-mini {
    opacity: 0.88;
  }

  .value-hybrid-preview-page .value-hybrid-metrics article {
    display: flex;
    flex-direction: column;
    padding: 0 22px 24px;
  }

  .value-hybrid-preview-page .value-hybrid-card-note {
    display: block;
    margin: 0 -22px 20px;
    padding: 18px 22px 16px;
    border-bottom: 1px solid var(--line);
    background:
      linear-gradient(90deg, rgba(23,23,23,0.032), transparent 72%),
      rgba(255,255,255,0.8);
  }

  .value-hybrid-preview-page .value-hybrid-card-note span {
    display: block;
    margin-bottom: 12px;
    color: rgba(23,23,23,0.48);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
  }

  .value-hybrid-preview-page .value-hybrid-card-note p:not(.value-hybrid-axis) {
    margin: 10px 0 0;
    color: #464646;
    font-size: 13px;
    line-height: 1.7;
  }

  .value-hybrid-preview-page .value-hybrid-metrics article > .value-hybrid-axis {
    display: none;
  }

  .value-hybrid-preview-page .value-hybrid-metrics strong,
  .value-hybrid-preview-page .value-hybrid-number-with-note {
    margin-top: 4px;
  }

  .value-hybrid-preview-page .value-hybrid-axes {
    display: none;
  }

  .value-hybrid-preview-page .value-hybrid-footnote {
    margin-top: 14px;
    font-size: 10px;
    line-height: 1.75;
  }

  .works-bridge-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .works-bridge-visual {
    min-height: 0;
    padding: 28px 22px 42px;
  }

  .works-bridge-image {
    width: min(100%, 336px);
  }

  .works-bridge-note {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .works-bridge-note--primary {
    top: 16px;
    left: 16px;
  }

  .works-bridge-note--secondary {
    right: 16px;
    bottom: 18px;
  }

  .works-bridge-copy {
    padding: 22px;
  }

  .works-bridge-copy h2 {
    font-size: 31px;
    line-height: 1.34;
  }

  .works-bridge-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 0;
  }

  .works-section .case-row {
    padding: 20px 18px 22px;
  }

  .works-section .before-after div {
    min-height: 96px;
  }

  .works-section .case-facts span {
    min-height: 48px;
  }
}

.service-diagram.has-service-image {
  --service-visual-height: clamp(232px, 18vw, 284px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: var(--service-visual-height);
  padding: clamp(14px, 1.8vw, 22px);
  border-color: rgba(23,23,23,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.96)),
    var(--gm-grid-pattern);
  background-color: #fff;
  background-size: auto, var(--gm-grid-size) var(--gm-grid-size);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.82) inset,
    0 10px 22px rgba(0,0,0,0.025);
}

.service-diagram.has-service-image::before {
  inset: clamp(10px, 1.4vw, 16px);
  border-color: rgba(23,23,23,0.085);
}

.service-diagram.has-service-image::after,
.service-diagram.has-service-image > svg {
  display: none;
}

.service-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: stretch;
  gap: clamp(8px, 1vw, 12px);
}

.service-visual--pair {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.service-visual--single {
  grid-template-columns: 1fr;
}

.service-visual-item {
  min-width: 0;
  min-height: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 7px;
  padding: clamp(9px, 1vw, 13px);
  border: 1px solid rgba(23,23,23,0.12);
  background: rgba(255,255,255,0.94);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.86) inset,
    0 8px 18px rgba(0,0,0,0.035);
}

.service-visual--single .service-visual-item {
  grid-template-rows: minmax(0, 1fr);
}

.service-visual-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: clamp(1px, 0.25vw, 3px);
  object-fit: contain;
  object-position: center;
  border: 0;
  background: #fff;
  filter: grayscale(1) contrast(1.1) brightness(1.03);
  opacity: 0.96;
}

.service-diagram .service-visual-arrow {
  position: static;
  align-self: center;
  justify-self: center;
  margin-bottom: 18px;
  color: rgba(23,23,23,0.34);
  font-family: var(--font-display);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 500;
  line-height: 1;
}

.service-visual-label {
  color: #9a9a9a;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.service-visual--asset .service-visual-item {
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255,255,255,0.95);
}

.diagram-sourcing.has-service-image {
  --service-visual-height: clamp(268px, 20vw, 320px);
}

@media (min-width: 621px) {
  .service-visual--asset .service-visual-item {
    overflow: hidden;
    padding: clamp(12px, 1.4vw, 18px);
  }

  .service-visual--asset .service-visual-item img {
    transform: scale(1.34);
    transform-origin: center;
  }
}

/* FV alternative page: horizontal symbolic geometry */
.fv-alt-horizontal .hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.9fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: center;
  padding-top: clamp(112px, 10vw, 148px);
  padding-bottom: clamp(70px, 8vw, 104px);
  isolation: isolate;
}

.fv-alt-horizontal .hero::before {
  inset: 96px var(--side) 58px;
  z-index: 1;
}

.fv-alt-horizontal .hero::after {
  z-index: 0;
}

.fv-alt-horizontal .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-top: 0;
}

.fv-alt-horizontal .eyebrow,
.fv-alt-horizontal .hero h1,
.fv-alt-horizontal .hero-lead,
.fv-alt-horizontal .hero-actions,
.fv-alt-horizontal .hero .button {
  position: relative;
  z-index: 3;
}

.fv-alt-horizontal .hero .button {
  background-clip: padding-box;
}

.fv-alt-horizontal .hero .button-primary {
  background-color: var(--ink);
}

.fv-alt-horizontal .hero .button-ghost {
  background-color: #fff;
}

.fv-alt-horizontal .hero h1 {
  font-size: clamp(50px, 5.2vw, 84px);
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.fv-alt-horizontal .hero h1 .fv-alt-title-main span {
  display: inline;
  white-space: nowrap;
}

.fv-alt-horizontal .hero-lead {
  max-width: 560px;
  margin-top: 30px;
}

.fv-alt-horizontal .hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center end;
  min-height: clamp(520px, 48vw, 650px);
  overflow: visible;
  pointer-events: none;
}

.fv-alt-horizontal .fv-c-eye-frame {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(520px, 45vw, 660px);
  min-width: min(440px, 100%);
  max-width: 660px;
  margin: 0;
  aspect-ratio: 1;
  place-items: center;
  transform: translateX(clamp(0px, 2vw, 28px));
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.92) 0 24%, rgba(255,255,255,0.58) 50%, transparent 74%),
    linear-gradient(135deg, rgba(37,144,189,0.035), transparent 48%);
}

@media (max-width: 980px) {
  .fv-alt-horizontal .hero {
    grid-template-columns: minmax(0, 1.18fr) minmax(clamp(150px, 38vw, 300px), 0.82fr);
    grid-template-areas:
      "eyebrow symbol"
      "title symbol"
      "lead lead"
      "actions actions";
    gap: 12px clamp(14px, 3.2vw, 28px);
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 70px;
  }

  .fv-alt-horizontal .hero-copy {
    display: contents;
  }

  .fv-alt-horizontal .eyebrow {
    grid-area: eyebrow;
    align-self: end;
    margin-bottom: 6px;
  }

  .fv-alt-horizontal .hero h1 {
    grid-area: title;
    align-self: start;
  }

  .fv-alt-horizontal .hero-lead {
    grid-area: lead;
    max-width: min(100%, 620px);
    margin-top: 14px;
  }

  .fv-alt-horizontal .hero-actions {
    grid-area: actions;
    margin-top: 10px;
  }

  .fv-alt-horizontal .hero-balanced .hero-visual,
  .fv-alt-horizontal .hero-visual {
    grid-area: symbol;
    align-self: center;
    justify-self: stretch;
    order: 0;
    min-height: 0;
  }

  .fv-alt-horizontal .fv-c-eye-frame {
    justify-self: center;
    width: clamp(260px, 54vw, 470px);
    min-width: 0;
    max-width: none;
    transform: translateX(clamp(-34px, -4vw, -14px));
  }
}

@media (max-width: 620px) {
  .fv-alt-horizontal .hero {
    grid-template-columns: minmax(0, 1.16fr) minmax(128px, 0.84fr);
    column-gap: 10px;
    row-gap: 10px;
    padding-top: 100px;
    padding-bottom: 56px;
  }

  .fv-alt-horizontal .hero::before {
    inset: 82px 16px 42px;
  }

  .fv-alt-horizontal .hero h1 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.36;
    letter-spacing: 0.045em;
  }

  .fv-alt-horizontal .hero h1 span {
    white-space: normal;
  }

  .fv-alt-horizontal .hero h1 .fv-alt-title-main span {
    display: block;
    white-space: nowrap;
  }

  .fv-alt-horizontal .hero-lead {
    margin-top: 14px;
  }

  .fv-alt-horizontal .hero-balanced .hero-visual,
  .fv-alt-horizontal .hero-visual {
    min-height: 0;
  }

  .fv-alt-horizontal .fv-c-eye-frame {
    justify-self: center;
    width: clamp(245px, 68vw, 300px);
    transform: translateX(clamp(-112px, -25vw, -86px)) translateY(-4px);
  }
}

@media (max-width: 980px) {
  .fv-alt-horizontal .works-bridge--case-studies {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px;
  }

  .fv-alt-horizontal .works-bridge--case-studies .works-bridge-visual {
    min-height: clamp(300px, 66vw, 420px);
  }

  .fv-alt-horizontal .works-bridge--case-studies .works-bridge-copy {
    padding: 28px 4px 4px;
  }
}

@media (max-width: 620px) {
  .fv-alt-horizontal .works-bridge-section--case-studies {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .fv-alt-horizontal .works-bridge--case-studies {
    padding: 12px;
  }

  .fv-alt-horizontal .works-bridge--case-studies .works-bridge-visual {
    min-height: clamp(246px, 68vw, 292px);
    padding: 14px;
  }

  .fv-alt-horizontal .works-bridge-image img {
    width: min(100%, 340px);
  }

  .fv-alt-horizontal .works-bridge--case-studies .works-bridge-copy {
    padding: 24px 6px 6px;
  }

  .fv-alt-horizontal .works-bridge--case-studies .works-bridge-copy h2 {
    font-size: 30px;
    line-height: 1.38;
  }

  .fv-alt-horizontal .works-bridge--case-studies .works-bridge-copy > p:not(.section-kicker) {
    font-size: 13px;
    line-height: 1.9;
  }
}

@media (max-width: 620px) {
  .service-diagram.has-service-image {
    --service-visual-height: clamp(202px, 54vw, 238px);
    min-height: 202px;
    margin-bottom: 8px;
    padding: 10px;
    border: 1px solid rgba(23,23,23,0.1);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.78) inset,
      0 6px 14px rgba(0,0,0,0.018);
  }

  .service-diagram.has-service-image::before {
    inset: 8px;
    border-color: rgba(23,23,23,0.055);
  }

  .service-visual {
    gap: 5px;
  }

  .service-visual-item {
    gap: 6px;
    padding: 7px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.82) inset,
      0 5px 12px rgba(0,0,0,0.026);
  }

  .service-visual-item img {
    padding: 1px;
    filter: grayscale(1) contrast(1.13) brightness(1.02);
  }

  .service-visual-arrow {
    margin-bottom: 19px;
    font-size: 13px;
  }

  .service-visual-label {
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .diagram-sourcing.has-service-image {
    --service-visual-height: clamp(226px, 60vw, 264px);
  }
}

/* 2026-05-21 P0.5: mobile spacing compression */
@media (max-width: 1024px) {
  body[data-page="home"] .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  body[data-page="home"] .section-grid {
    gap: 26px;
  }

  body[data-page="home"] .section-heading {
    margin-bottom: 30px;
  }

  body[data-page="home"] .section-heading p {
    margin-top: 12px;
  }

  body[data-page="home"] .services-heading {
    min-height: clamp(300px, 72vw, 390px);
    padding: 14px 0 34px;
  }

  body[data-page="home"] .services-heading-sketch {
    top: -10px;
    right: clamp(-92px, -14vw, -54px);
    width: clamp(360px, 88vw, 500px);
  }

  body[data-page="home"] .service-card {
    gap: 9px;
  }

  body[data-page="home"] .service-diagram.has-service-image {
    --service-visual-height: clamp(216px, 29vw, 254px);
    padding: 10px;
  }

  body[data-page="home"] .service-visual {
    gap: 6px;
  }

  body[data-page="home"] .service-visual-item {
    gap: 6px;
    padding: 8px;
  }

  body[data-page="home"] .service-visual--asset .service-visual-item {
    padding: 10px;
  }

  body[data-page="home"] .diagram-sourcing.has-service-image {
    --service-visual-height: clamp(230px, 31vw, 286px);
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-head {
    gap: 22px;
    padding-bottom: 24px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-metrics article {
    min-height: 0;
    padding: 0 18px 20px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-card-note {
    margin: 0 -18px 16px;
    padding: 15px 18px 13px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-metrics strong,
  body[data-page="home"].value-hybrid-preview-page .value-hybrid-number-with-note {
    min-height: 60px;
    margin-top: 8px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-label {
    margin-top: 12px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-copy {
    margin-top: 8px;
  }

  body[data-page="home"] .works-section .section-heading.with-action {
    gap: 18px;
  }

  body[data-page="home"] .works-focus-list {
    gap: 6px;
    margin-top: 14px;
  }

  body[data-page="home"] .works-section .case-preview-list {
    gap: 14px;
  }

  body[data-page="home"] .works-section .case-row {
    gap: 16px;
    padding: 18px 16px 20px;
  }

  body[data-page="home"] .works-section .case-record--preview {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  body[data-page="home"] .works-section .case-row-content {
    gap: 9px;
  }

  body[data-page="home"] .works-section .case-row h3 {
    margin-top: 0;
    line-height: 1.36;
  }

  body[data-page="home"] .works-section .case-summary {
    line-height: 1.62;
  }

  body[data-page="home"] .works-section .case-facts {
    gap: 6px;
    margin-top: 0;
  }

  body[data-page="home"] .works-section .case-facts span {
    min-height: 44px;
    padding: 7px 9px;
  }

  body[data-page="home"] .case-flow {
    gap: 6px;
  }

  body[data-page="home"] .case-flow-step {
    min-height: 0;
    padding: 8px 9px;
  }

  body[data-page="home"] .works-section .case-row .text-link {
    min-height: 34px;
    margin-top: 0;
    padding-inline: 11px;
  }

  body[data-page="home"] .philosophy-copy {
    margin-top: 28px;
  }

  body[data-page="home"] .partner-card {
    min-height: 0;
    padding: 24px;
  }

  body[data-page="home"] .partner-grid p {
    margin-bottom: 28px;
  }

  body[data-page="home"] .partner-grid span {
    margin-top: 12px;
  }

  body[data-page="home"] .contact-options {
    gap: 8px;
    margin-bottom: 20px;
  }

  body[data-page="home"] .contact-form {
    gap: 12px;
  }

  body[data-page="home"] .contact-form input,
  body[data-page="home"] .contact-form select {
    min-height: 44px;
    padding: 10px 12px;
  }

  body[data-page="home"] .contact-form textarea {
    min-height: 128px;
  }

  body[data-page="home"] .contact-note {
    margin-top: 14px;
  }

  body[data-page="home"] .site-footer {
    padding-top: 44px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 42px;
  }

  section[id] {
    scroll-margin-top: 42px;
  }

  body[data-page="home"] .hero {
    min-height: 92svh;
    padding-bottom: 38px;
  }

  body[data-page="home"] .hero-actions {
    margin-top: 20px;
  }

  body[data-page="home"] .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  body[data-page="home"] .about-section {
    padding-top: 30px;
  }

  body[data-page="home"] .section-grid {
    gap: 20px;
  }

  body[data-page="home"] .section-kicker {
    margin-bottom: 10px;
  }

  body[data-page="home"] .section-heading {
    margin-bottom: 22px;
  }

  body[data-page="home"] .section-heading p {
    margin-top: 9px;
  }

  body[data-page="home"] .section-body p + p,
  body[data-page="home"] .philosophy-copy p + p {
    margin-top: 13px;
  }

  body[data-page="home"] .about-copy {
    padding-top: 0;
  }

  body[data-page="home"] .about-copy p {
    line-height: 1.86;
  }

  body[data-page="home"] .services-heading {
    min-height: clamp(238px, 65vw, 300px);
    padding: 4px 0 20px;
  }

  body[data-page="home"] .services-heading::after {
    inset: -12px -12px -4px;
  }

  body[data-page="home"] .services-heading-sketch {
    top: -24px;
    right: clamp(-128px, -32vw, -94px);
    width: clamp(330px, 92vw, 420px);
  }

  body[data-page="home"] .service-list {
    margin-top: -2px;
  }

  body[data-page="home"] .service-card-head,
  body[data-page="home"] .service-name,
  body[data-page="home"] .service-card h3,
  body[data-page="home"] .service-copy,
  body[data-page="home"] .service-card a {
    margin-left: 14px;
    margin-right: 14px;
  }

  body[data-page="home"] .service-card-head {
    margin-top: 2px;
  }

  body[data-page="home"] .service-card h3 {
    line-height: 1.3;
  }

  body[data-page="home"] .service-copy {
    font-size: 12px;
    line-height: 1.68;
  }

  body[data-page="home"] .service-card a {
    min-height: 32px;
    margin-bottom: 12px;
  }

  body[data-page="home"] .service-diagram,
  body[data-page="home"] .sketch-perspective {
    height: clamp(146px, 40vw, 176px);
    min-height: 146px;
    margin-bottom: 6px;
  }

  body[data-page="home"] .service-diagram.has-service-image {
    --service-visual-height: clamp(156px, 42vw, 184px);
    min-height: 156px;
    padding: 8px;
  }

  body[data-page="home"] .service-diagram.has-service-image::before {
    inset: 6px;
  }

  body[data-page="home"] .service-visual-item {
    gap: 5px;
    padding: 5px;
  }

  body[data-page="home"] .service-visual-item img {
    padding: 0;
  }

  body[data-page="home"] .service-diagram .service-visual-arrow {
    margin-bottom: 13px;
  }

  body[data-page="home"] .diagram-sourcing.has-service-image {
    --service-visual-height: clamp(168px, 45vw, 198px);
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-head {
    gap: 14px;
    padding-bottom: 18px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-lead {
    line-height: 1.72;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-data-note {
    margin-top: 10px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-metrics article {
    padding: 0 13px 14px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-card-note {
    min-height: 0;
    margin: 0 -13px 10px;
    padding: 10px 13px 9px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-card-note span {
    margin-bottom: 8px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-card-note p:not(.value-hybrid-axis) {
    margin-top: 6px;
    line-height: 1.55;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-metrics strong,
  body[data-page="home"].value-hybrid-preview-page .value-hybrid-number-with-note {
    min-height: 40px;
    margin-top: 2px;
    font-size: 46px;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-label {
    margin-top: 9px;
    line-height: 1.45;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-copy {
    margin-top: 6px;
    line-height: 1.58;
  }

  body[data-page="home"].value-hybrid-preview-page .value-hybrid-footnote {
    margin-top: 10px;
  }

  body[data-page="home"] .works-focus-list {
    margin-top: 10px;
  }

  body[data-page="home"] .works-section .section-heading.with-action {
    gap: 12px;
  }

  body[data-page="home"] .works-section > .section-heading .text-link {
    min-height: 36px;
    padding-inline: 12px;
  }

  body[data-page="home"] .works-section .case-preview-list {
    gap: 10px;
  }

  body[data-page="home"] .works-section .case-row {
    gap: 12px;
    padding: 16px 14px 17px;
  }

  body[data-page="home"] .works-section .case-record--preview {
    aspect-ratio: 16 / 9;
  }

  body[data-page="home"] .works-section .case-row-content::before {
    padding: 4px 6px;
    font-size: 9px;
  }

  body[data-page="home"] .works-section .case-row h3 {
    font-size: 20px;
  }

  body[data-page="home"] .works-section .case-summary {
    font-size: 12px;
    line-height: 1.58;
  }

  body[data-page="home"] .works-section .case-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .works-section .case-facts span {
    min-height: 38px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.42;
  }

  body[data-page="home"] .case-facts small {
    margin-bottom: 1px;
    font-size: 8px;
  }

  body[data-page="home"] .case-flow-step {
    padding: 6px 7px;
  }

  body[data-page="home"] .works-section .case-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="home"] .case-flow-step p {
    margin-top: 3px;
    font-size: 10.5px;
    line-height: 1.36;
  }

  body[data-page="home"] .case-flow-step span {
    font-size: 11px;
  }

  body[data-page="home"] .philosophy-copy {
    margin-top: 20px;
  }

  body[data-page="home"] .philosophy-copy p {
    line-height: 1.76;
  }

  body[data-page="home"] .partner-card {
    padding: 18px;
  }

  body[data-page="home"] .partner-grid p {
    margin-bottom: 18px;
  }

  body[data-page="home"] .partner-grid h3 {
    line-height: 1.36;
  }

  body[data-page="home"] .partner-grid span {
    margin-top: 9px;
    line-height: 1.62;
  }

  body[data-page="home"] .contact-options {
    gap: 6px;
    margin-bottom: 16px;
  }

  body[data-page="home"] .contact-options span {
    padding: 7px 10px;
    font-size: 12px;
  }

  body[data-page="home"] .contact-form {
    gap: 10px;
  }

  body[data-page="home"] .contact-form label {
    gap: 6px;
  }

  body[data-page="home"] .contact-form input,
  body[data-page="home"] .contact-form select {
    min-height: 42px;
  }

  body[data-page="home"] .contact-form textarea {
    min-height: 112px;
  }

  body[data-page="home"] .contact-form .button {
    min-height: 48px;
    margin-top: 0;
  }

  body[data-page="home"] .contact-note {
    max-width: 320px;
    margin-top: 12px;
    line-height: 1.72;
  }

  body[data-page="home"] .site-footer {
    padding-top: 34px;
  }

  body[data-page="home"] .footer-statement {
    margin-bottom: 28px;
  }
}

@media (max-width: 380px) {
  html {
    scroll-padding-top: 42px;
  }

  section[id] {
    scroll-margin-top: 42px;
  }

  body[data-page="home"] .works-section .case-facts {
    gap: 5px;
  }

  body[data-page="home"] .works-section .case-facts span {
    padding: 6px 7px;
    font-size: 11.5px;
  }

  body[data-page="home"] .case-facts small {
    font-size: 7.8px;
    letter-spacing: 0.1em;
  }

  body[data-page="home"] .works-section .case-flow {
    gap: 5px;
  }

  body[data-page="home"] .case-flow-step {
    padding: 6px 6px;
  }

  body[data-page="home"] .case-flow-step span {
    font-size: 10.5px;
  }

  body[data-page="home"] .case-flow-step p {
    font-size: 10px;
    line-height: 1.34;
  }
}

/* 2026-05-21 final white fix: remove unfinished gray/off-white wash before sharing */
html,
body,
main,
.section,
.sub-hero,
.case-index,
.case-detail-hero,
.case-detail-layout,
.detail-section,
.site-footer {
  background-color: #fff;
}

.site-header {
  background: #fff;
}

.hero,
.services-section,
.value-section,
.value-hybrid-section,
.works-section,
.philosophy-section,
.partner-section,
.contact-section {
  background-color: #fff;
}

@media (max-width: 980px) {
  .services-heading::after {
    background:
      radial-gradient(ellipse at 6% 30%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0.14) 53%, transparent 78%),
      linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.62) 30%, rgba(255,255,255,0.1) 56%, transparent 84%);
  }

  .services-heading-copy {
    text-shadow:
      0 0 12px rgba(255,255,255,0.96),
      0 0 24px rgba(255,255,255,0.86);
  }
}

.service-card,
.service-number,
.service-diagram.has-service-image,
.service-visual-item,
.service-visual--asset .service-visual-item,
.value-hybrid-shell,
.value-hybrid-metrics article,
.value-hybrid-axes article,
.works-section .case-row,
.works-section .before-after,
.works-section .before-after div,
.case-record,
.case-record--contain img,
.case-record figcaption,
.case-card,
.case-facts span,
.works-section .case-facts span,
.case-flow-step,
.filter-bar button,
.contact-form input,
.contact-form select,
.contact-form textarea {
  background-color: #fff;
}

.works-section,
.works-section .case-row,
.works-section .before-after,
.case-record,
.case-record--contain img,
.value-hybrid-metrics article,
.value-hybrid-axes article {
  background-image: none;
}

.works-section .case-row::after {
  background: none;
  opacity: 0;
}

.works-section .before-after div {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.055) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(23,23,23,0.045) 50%, transparent calc(50% + 0.5px)),
    #fff;
}

.works-section .before-after div + div {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(37,144,189,0.06) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(37,144,189,0.05) 50%, transparent calc(50% + 0.5px)),
    #fff;
}

.service-card::before {
  opacity: 0.44;
}

.service-diagram.has-service-image {
  background:
    linear-gradient(180deg, #fff, #fff),
    var(--gm-grid-pattern);
  background-size: auto, var(--gm-grid-size) var(--gm-grid-size);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 7px 16px rgba(0,0,0,0.018);
}

.service-diagram.has-service-image::before {
  border-color: rgba(23,23,23,0.12);
}

.service-visual-item {
  border-color: rgba(23,23,23,0.16);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 6px 14px rgba(0,0,0,0.026);
}

.services-heading-sketch img {
  filter: grayscale(1) contrast(1.24) brightness(0.98);
  opacity: 0.72;
}

.service-visual-item img,
.service-diagram img {
  opacity: 1;
  filter: grayscale(1) contrast(1.18) brightness(0.98);
}

.service-visual--asset .service-visual-item img {
  filter: grayscale(1) contrast(1.24) brightness(0.97);
}

@media (max-width: 620px) {
  .service-visual-item img {
    filter: grayscale(1) contrast(1.48) brightness(1.08);
  }

  .service-visual--asset .service-visual-item {
    overflow: hidden;
  }

  .service-visual--asset .service-visual-item img {
    transform: scale(1.28);
    transform-origin: center;
    filter: grayscale(1) contrast(1.72) brightness(1.12);
  }
}

.case-record--preview,
.case-card .case-record--preview {
  border-color: rgba(23,23,23,0.16);
}

.case-record::after {
  background: #fff;
}

.works-section .case-row .text-link[href*="case-detail"],
.case-card .text-link[href*="case-detail"] {
  background: #fff;
}

.works-section .case-row .text-link[href*="case-detail"]:hover,
.case-card .text-link[href*="case-detail"]:hover {
  background: #fff;
}

/* 2026-05-20: VALUE / OUTCOME card legibility */
.value-hybrid-preview-page .value-hybrid-section {
  color: #1a1a1a;
}

.value-hybrid-preview-page .value-hybrid-lead,
.value-hybrid-preview-page .value-hybrid-copy,
.value-hybrid-preview-page .value-hybrid-card-note p:not(.value-hybrid-axis),
.value-hybrid-preview-page .value-hybrid-axes p:not(.value-hybrid-axis) {
  color: #2f2f2f;
}

.value-hybrid-preview-page .value-hybrid-axis,
.value-hybrid-preview-page .value-hybrid-card-note .value-hybrid-axis,
.value-hybrid-preview-page .value-hybrid-card-note span,
.value-hybrid-preview-page .value-hybrid-number-with-note > span,
.value-hybrid-preview-page .value-hybrid-axes span {
  color: #4a4a4a;
}

.value-hybrid-preview-page .value-hybrid-label {
  color: #1f1f1f;
}

.value-hybrid-preview-page .value-hybrid-metrics strong,
.value-hybrid-preview-page .value-hybrid-figure,
.value-hybrid-preview-page .value-hybrid-digit,
.value-hybrid-preview-page .value-hybrid-unit {
  color: #111;
}

/* 2026-05-20: FV geometry alignment and CTA size parity */
body[data-page="home"] .hero.hero-balanced .hero-visual {
  justify-self: end;
  place-items: center end;
  transform: translateX(clamp(14px, 1.9vw, 30px));
}

body[data-page="home"] .hero.hero-balanced .fv-c-eye-frame {
  margin-left: auto;
}

body[data-page="home"] .hero.hero-balanced .hero-actions {
  gap: 12px;
}

body[data-page="home"] .hero.hero-balanced .hero-actions .button {
  width: 164px;
  min-height: 52px;
  padding-inline: 20px;
}

/* 2026-05-20: restore desktop FV diagram scale without touching mobile */
@media (min-width: 1024px) {
  body[data-page="home"]:not(.fv-alt-horizontal) {
    overflow-x: clip;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-visual {
    width: clamp(460px, 43.5vw, 640px);
    min-height: clamp(540px, 52vw, 680px);
    overflow: hidden;
    transform: translateX(clamp(10px, 1.25vw, 20px));
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-eye-frame {
    width: clamp(460px, 43.5vw, 640px);
    max-width: none;
    overflow: clip;
    contain: paint;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-marquee-inframe,
  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-marquee-container {
    overflow: clip;
    contain: paint;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-marquee-row {
    overflow: clip;
    contain: paint;
  }
}

/* 2026-05-20: recovery for image color and white footer contrast */
.works-section .case-record img,
.works-section .case-record--preview img,
.case-card .case-record img,
.case-card .case-record--preview img,
body[data-page="case-index"] .case-card img,
body[data-page="case-detail"] .case-record img,
body[data-page="case-detail"] .case-record--detail img,
body[data-page="case-detail"] .case-record--preview img,
body[data-page="case-detail"] .case-record--contain img {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

.services-section .service-visual-item img,
.services-section .service-diagram.has-service-image img,
body[data-page="home"] .service-visual-item img,
body[data-page="home"] .service-diagram.has-service-image img {
  opacity: 1;
  filter: grayscale(1) contrast(1.26) brightness(1);
  mix-blend-mode: normal;
}

.services-section .service-visual--asset .service-visual-item img,
body[data-page="home"] .service-visual--asset .service-visual-item img {
  filter: grayscale(1) contrast(1.36) brightness(1.02);
}

/* 2026-05-20: keep Services heading sketch behind the copy */
body[data-page="home"] .services-heading-sketch img {
  opacity: 0.26;
  filter: grayscale(1) contrast(0.82) brightness(1.12);
}

@media (max-width: 620px) {
  .services-section .service-visual-item img,
  .services-section .service-diagram.has-service-image img,
  body[data-page="home"] .service-visual-item img,
  body[data-page="home"] .service-diagram.has-service-image img {
    filter: grayscale(1) contrast(1.62) brightness(1);
    transform: scale(1.08);
    transform-origin: center;
  }

  .services-section .service-visual--asset .service-visual-item img,
  body[data-page="home"] .service-visual--asset .service-visual-item img {
    filter: grayscale(1) contrast(1.72) brightness(1.02);
    transform: scale(1.68);
    transform-origin: center;
  }

  body[data-page="home"] .services-heading-sketch img {
    opacity: 0.16;
    filter: grayscale(1) contrast(0.76) brightness(1.16);
  }
}

/* 2026-05-20: Services card image readability and Asset Rebuild alignment */
body[data-page="home"] .service-list .service-visual-item img {
  opacity: 1;
  filter: grayscale(1) brightness(0.86) contrast(1.55);
  mix-blend-mode: normal;
}

body[data-page="home"] .service-visual--asset .service-visual-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body[data-page="home"] .service-visual--asset .service-visual-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 54%;
  filter: grayscale(1) brightness(0.84) contrast(1.62);
  transform: translateY(8px) scale(1.42);
  transform-origin: center;
}

@media (max-width: 620px) {
  body[data-page="home"] .service-list .service-visual-item img {
    filter: grayscale(1) contrast(1.82) brightness(1);
  }

  body[data-page="home"] .service-visual--asset .service-visual-item img {
    object-position: center 57%;
    filter: grayscale(1) contrast(1.9) brightness(1.02);
    transform: translateY(10px) scale(1.54);
  }
}

.site-footer {
  background: #fff;
  color: #171717;
}

.site-footer .footer-statement {
  color: rgba(23,23,23,0.18);
}

.site-footer .footer-brand,
.site-footer .footer-bottom,
.site-footer .footer-bottom a {
  color: #171717;
}

.site-footer .footer-grid p,
.site-footer .company-list dd {
  color: #2f2f2f;
}

.site-footer .company-list dt {
  color: #555;
}

.site-footer .company-list div {
  border-bottom-color: rgba(23,23,23,0.14);
}

/* 2026-05-20: restore home company footer to black */
body[data-page="home"] .site-footer {
  background: #111;
  color: #f4f4f1;
}

body[data-page="home"] .site-footer .footer-statement {
  color: rgba(255,255,255,0.14);
}

body[data-page="home"] .site-footer .footer-brand {
  color: #fff;
}

body[data-page="home"] .site-footer .footer-grid p,
body[data-page="home"] .site-footer .company-list dd {
  color: rgba(255,255,255,0.78);
}

body[data-page="home"] .site-footer .company-list dt {
  color: rgba(255,255,255,0.56);
}

body[data-page="home"] .site-footer .company-list div {
  border-bottom-color: rgba(255,255,255,0.16);
}

body[data-page="home"] .site-footer .footer-bottom {
  color: rgba(255,255,255,0.62);
}

body[data-page="home"] .site-footer .footer-bottom a {
  color: #fff;
}

@media (min-width: 768px) and (max-width: 980px) {
  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-visual {
    transform: translateX(24px);
  }
}

@media (max-width: 767px) {
  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-visual {
    width: min(46.5vw, 198px);
    transform: translate(clamp(15px, 4vw, 16px), clamp(18px, 6vw, 30px));
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-eye-frame {
    width: min(46.5vw, 198px);
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-marquee-inframe .fv-c-marquee-row-1 .fv-c-marquee-text {
    color: rgba(23,23,23,0.18);
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .fv-c-marquee-inframe .fv-c-marquee-row-2 .fv-c-marquee-text {
    color: rgba(23,23,23,0.08);
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  body[data-page="home"]:not(.fv-alt-horizontal) .hero.hero-balanced .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 10px;
  }
}

/* 2026-05-20: align CASE / WORKS buttons with the FV primary CTA */
body[data-page="home"] .works-section > .section-heading .text-link[href="case-studies.html"],
body[data-page="home"] .works-section .case-row .text-link[href*="case-detail"],
body[data-page="case-index"] .case-card .text-link[href*="case-detail"],
body[data-page="case-detail"] .case-card .text-link[href*="case-detail"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid #151515;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  box-shadow: none;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

body[data-page="home"] .works-section > .section-heading .text-link[href="case-studies.html"] {
  min-width: 196px;
  padding-inline: 34px;
}

body[data-page="home"] .works-section .case-row .text-link[href*="case-detail"],
body[data-page="case-index"] .case-card .text-link[href*="case-detail"],
body[data-page="case-detail"] .case-card .text-link[href*="case-detail"] {
  min-width: 170px;
  gap: 0.86em;
  margin-top: 14px;
}

body[data-page="home"] .works-section .case-row .text-link[href*="case-detail"]::after,
body[data-page="case-index"] .case-card .text-link[href*="case-detail"]::after,
body[data-page="case-detail"] .case-card .text-link[href*="case-detail"]::after {
  background: rgba(255,255,255,0.78);
  opacity: 1;
}

body[data-page="home"] .works-section > .section-heading .text-link[href="case-studies.html"]:hover,
body[data-page="home"] .works-section .case-row .text-link[href*="case-detail"]:hover,
body[data-page="case-index"] .case-card .text-link[href*="case-detail"]:hover,
body[data-page="case-detail"] .case-card .text-link[href*="case-detail"]:hover {
  border-color: #252525;
  background: #252525;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

body[data-page="home"] .works-section .case-row .text-link[href*="case-detail"]:hover::after,
body[data-page="case-index"] .case-card .text-link[href*="case-detail"]:hover::after,
body[data-page="case-detail"] .case-card .text-link[href*="case-detail"]:hover::after {
  background: rgba(255,255,255,0.9);
  opacity: 1;
}

body[data-page="home"] .works-section > .section-heading .text-link[href="case-studies.html"]:focus-visible,
body[data-page="home"] .works-section .case-row .text-link[href*="case-detail"]:focus-visible,
body[data-page="case-index"] .case-card .text-link[href*="case-detail"]:focus-visible,
body[data-page="case-detail"] .case-card .text-link[href*="case-detail"]:focus-visible {
  outline: 2px solid rgba(23,23,23,0.36);
  outline-offset: 4px;
}

@media (max-width: 620px) {
  body[data-page="home"] .works-section > .section-heading .text-link[href="case-studies.html"] {
    min-width: 0;
    width: 100%;
  }

  body[data-page="home"] .works-section .case-row .text-link[href*="case-detail"],
  body[data-page="case-index"] .case-card .text-link[href*="case-detail"],
  body[data-page="case-detail"] .case-card .text-link[href*="case-detail"] {
    min-width: min(100%, 184px);
    min-height: 52px;
    padding-inline: 24px;
  }
}

/* 2026-05-20: lock shared footer to the approved black company profile design */
.site-footer {
  background: #111;
  color: #f4f4f1;
}

.site-footer .footer-statement {
  color: #fff;
}

body[data-page] .site-footer .footer-statement {
  color: #fff;
}

.site-footer .footer-brand {
  color: #fff;
}

.site-footer .footer-grid .footer-brand {
  color: #fff;
}

.site-footer .footer-grid p.footer-brand {
  color: #fff;
}

body[data-page] .site-footer .footer-grid p.footer-brand {
  color: #fff;
}

.site-footer .footer-grid p,
.site-footer .company-list dd {
  color: rgba(255,255,255,0.78);
}

.site-footer .company-list dt {
  color: rgba(255,255,255,0.56);
}

.site-footer .company-list div {
  border-bottom-color: rgba(255,255,255,0.16);
}

.site-footer .footer-bottom {
  color: rgba(255,255,255,0.62);
}

.site-footer .footer-bottom a {
  color: #fff;
}

/* 2026-05-20: strengthen case detail titles on mobile only */
@media (max-width: 767px) {
  body[data-page="case-detail"] .case-detail-hero h1 {
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: clamp(38px, 10.2vw, 52px);
    line-height: 1.13;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #111;
    overflow-wrap: anywhere;
    line-break: strict;
    word-break: normal;
  }
}

/* 2026-05-24: place Partner / Recruit CTA chips below card text */
body[data-page="home"] .partner-section .partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body[data-page="home"] .partner-section .partner-card > h3 {
  order: 1;
}

body[data-page="home"] .partner-section .partner-card > span {
  order: 2;
}

body[data-page="home"] .partner-section .partner-card > p {
  order: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 184px;
  max-inline-size: 100%;
  min-height: 42px;
  margin: clamp(22px, 2.4vw, 30px) 0 0;
  padding: 0 22px;
  border: 1px solid #151515;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="home"] .partner-section .partner-card:hover > p,
body[data-page="home"] .partner-section .partner-card:focus-visible > p {
  border-color: #252525;
  background: #252525;
  color: #fff;
}

@media (max-width: 767px) {
  body[data-page="home"] .partner-section .partner-card > p {
    inline-size: 176px;
    min-height: 40px;
    margin-top: 18px;
    padding: 0 20px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}

/* 2026-05-20: emergency lock for CASE / WORKS CTA buttons */
body[data-page="home"] #works.works-section > .section-heading.with-action > a.text-link[href="case-studies.html"],
body[data-page="home"] #works.works-section .case-row-content > a.text-link[href*="case-detail"],
body[data-page="case-index"] .case-card > a.text-link[href*="case-detail"],
body[data-page="case-detail"] [data-related-cases] .case-card > a.text-link[href*="case-detail"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid #151515;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  box-shadow: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

body[data-page="home"] #works.works-section > .section-heading.with-action > a.text-link[href="case-studies.html"] {
  min-width: 216px;
}

body[data-page="home"] #works.works-section .case-row-content > a.text-link[href*="case-detail"],
body[data-page="case-index"] .case-card > a.text-link[href*="case-detail"],
body[data-page="case-detail"] [data-related-cases] .case-card > a.text-link[href*="case-detail"] {
  min-width: 176px;
  min-height: 54px;
  padding-inline: 32px;
  gap: 0.86em;
}

body[data-page="home"] #works.works-section .case-row-content > a.text-link[href*="case-detail"]::after,
body[data-page="case-index"] .case-card > a.text-link[href*="case-detail"]::after,
body[data-page="case-detail"] [data-related-cases] .case-card > a.text-link[href*="case-detail"]::after {
  background: rgba(255,255,255,0.78);
  opacity: 1;
}

body[data-page="home"] #works.works-section > .section-heading.with-action > a.text-link[href="case-studies.html"]:hover,
body[data-page="home"] #works.works-section .case-row-content > a.text-link[href*="case-detail"]:hover,
body[data-page="case-index"] .case-card > a.text-link[href*="case-detail"]:hover,
body[data-page="case-detail"] [data-related-cases] .case-card > a.text-link[href*="case-detail"]:hover {
  border-color: #252525;
  background: #252525;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

body[data-page="home"] #works.works-section .case-row-content > a.text-link[href*="case-detail"]:hover::after,
body[data-page="case-index"] .case-card > a.text-link[href*="case-detail"]:hover::after,
body[data-page="case-detail"] [data-related-cases] .case-card > a.text-link[href*="case-detail"]:hover::after {
  background: rgba(255,255,255,0.9);
}

@media (max-width: 620px) {
  body[data-page="home"] #works.works-section > .section-heading.with-action > a.text-link[href="case-studies.html"] {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  body[data-page="home"] #works.works-section .case-row-content > a.text-link[href*="case-detail"],
  body[data-page="case-index"] .case-card > a.text-link[href*="case-detail"],
  body[data-page="case-detail"] [data-related-cases] .case-card > a.text-link[href*="case-detail"] {
    min-width: min(100%, 184px);
    min-height: 52px;
    padding-inline: 24px;
  }
}

/* 2026-05-21: tighten only the Asset Rebuild service visual */
body[data-page="home"] .sourcing-card .diagram-sourcing.has-service-image {
  padding: clamp(10px, 1.1vw, 16px);
  overflow: hidden;
  contain: paint;
}

body[data-page="home"] .sourcing-card .service-visual--asset {
  overflow: hidden;
  contain: paint;
}

body[data-page="home"] .sourcing-card .service-visual--asset .service-visual-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 0.75vw, 10px);
  overflow: hidden;
  contain: paint;
}

body[data-page="home"] .sourcing-card .service-visual--asset .service-visual-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 62%;
  transform: translateY(20px) scale(1.58);
  transform-origin: center;
}

@media (max-width: 620px) {
  body[data-page="home"] .sourcing-card .diagram-sourcing.has-service-image {
    width: calc(100% - 32px);
    max-width: 360px;
    margin-inline: auto;
    padding: 8px;
  }

  body[data-page="home"] .sourcing-card .service-visual--asset .service-visual-item {
    padding: 4px;
  }

  body[data-page="home"] .sourcing-card .service-visual--asset .service-visual-item img {
    object-position: center 64%;
    transform: translateY(22px) scale(1.68);
  }
}

/* 2026-05-21: mobile-only case detail spacing compression */
@media (max-width: 767px) {
  body[data-page="case-detail"] .case-detail-hero {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  body[data-page="case-detail"] .case-detail-hero .back-link {
    margin-bottom: 24px;
  }

  body[data-page="case-detail"] .case-detail-hero h1 {
    margin-top: 8px;
    margin-bottom: 14px;
  }

  body[data-page="case-detail"] .case-detail-layout {
    gap: 22px;
    padding-bottom: 46px;
  }

  body[data-page="case-detail"] .case-field-record {
    gap: 14px;
    padding-bottom: 26px;
  }

  body[data-page="case-detail"] .case-field-record-head {
    gap: 6px;
  }

  body[data-page="case-detail"] .case-record-tabs {
    margin-bottom: 8px;
  }

  body[data-page="case-detail"] .case-record-grid {
    padding-bottom: 6px;
  }

  body[data-page="case-detail"] .case-record figcaption {
    padding: 10px 12px 12px;
  }

  body[data-page="case-detail"] .detail-section {
    padding: 28px 0;
  }

  body[data-page="case-detail"] .detail-section h2 {
    margin-bottom: 10px;
  }

  body[data-page="case-detail"] .detail-section p {
    margin: 0;
  }

  body[data-page="case-detail"] .detail-section .case-flow {
    gap: 8px;
  }

  body[data-page="case-detail"] .detail-section .case-flow-step {
    padding: 9px 10px;
  }

  body[data-page="case-detail"] .detail-aside {
    padding: 20px;
  }

  body[data-page="case-detail"] .detail-aside h2 {
    margin-bottom: 10px;
  }

  body[data-page="case-detail"] .detail-aside div {
    padding: 10px 0;
  }

  body[data-page="case-detail"] .case-detail-actions {
    padding-bottom: 42px;
  }
}

/* 2026-05-21: stable primary CTA for CASE / WORKS view-all link */
body[data-page="home"] #works.works-section > .section-heading.with-action > a.case-view-all-button[href="case-studies.html"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 216px;
  max-width: 100%;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid #151515;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

body[data-page="home"] #works.works-section > .section-heading.with-action > a.case-view-all-button[href="case-studies.html"]:hover {
  border-color: #252525;
  background: #252525;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

body[data-page="home"] #works.works-section > .section-heading.with-action > a.case-view-all-button[href="case-studies.html"]:focus-visible {
  outline: 2px solid rgba(23,23,23,0.36);
  outline-offset: 4px;
}

@media (max-width: 620px) {
  body[data-page="home"] #works.works-section > .section-heading.with-action > a.case-view-all-button[href="case-studies.html"] {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }
}

/* 2026-05-23 Vercel release: contact form, legal footer links, mobile service-visual legibility */
.contact-form-status {
  min-height: 1.8em;
  margin: 14px 0 0;
  color: #4b4b4b;
  font-size: 13px;
  line-height: 1.7;
}

.contact-form-status[data-state="success"] {
  color: #171717;
}

.contact-form-status[data-state="error"] {
  color: #8a1f1f;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer .footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
  flex-wrap: wrap;
}

.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 767px) {
  #company {
    scroll-margin-top: 84px;
  }
}

.policy-hero {
  padding-bottom: clamp(54px, 7vw, 86px);
}

.policy-section {
  max-width: min(980px, calc(100vw - 48px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 0 clamp(84px, 9vw, 126px);
}

.policy-panel {
  border-top: 1px solid rgba(23, 23, 23, 0.14);
  padding: clamp(24px, 3vw, 34px) 0;
}

.policy-panel:last-child {
  border-bottom: 1px solid rgba(23, 23, 23, 0.14);
}

.policy-panel h2 {
  margin: 0 0 12px;
  color: #171717;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.policy-panel p {
  margin: 0;
  color: #4b4b4b;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.95;
}

@media (max-width: 767px) {
  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer .footer-links {
    justify-content: flex-start;
    margin-left: 0;
  }

  .policy-section {
    max-width: calc(100vw - 40px);
    padding-block: 22px 76px;
  }

  body[data-page="home"] .services-section .service-list .service-card .service-visual-item img {
    opacity: 1;
    filter: grayscale(1) contrast(2.18) brightness(0.94);
    mix-blend-mode: normal;
  }

  body[data-page="home"] .services-section .service-list .service-card:not(.sourcing-card) .service-visual-item img {
    transform: scale(1.1);
    transform-origin: center;
  }

  body[data-page="home"] .services-section .service-list .sourcing-card .diagram-sourcing.has-service-image {
    width: calc(100% - 42px);
    max-width: 360px;
    margin-inline: auto;
    padding: 12px 14px;
  }

  body[data-page="home"] .services-section .service-list .sourcing-card .service-visual--asset .service-visual-item img {
    filter: grayscale(1) contrast(2.22) brightness(0.94);
    object-position: center 64%;
    transform: translateY(24px) scale(1.7);
    transform-origin: center;
  }
}

/* 2026-05-24: Services mobile line-art image swap support */
body[data-page="home"] .services-section .service-visual-item > picture {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

body[data-page="home"] .services-section .service-visual--asset .service-visual-item > picture {
  flex: 1 1 auto;
}

@media (max-width: 620px) {
  body[data-page="home"] .services-section .service-list .service-card .service-visual-item img {
    opacity: 1;
    filter: grayscale(1) contrast(1.12) brightness(1);
    mix-blend-mode: normal;
    transform: none;
    transform-origin: center;
  }

  body[data-page="home"] .services-section .service-list .service-card:not(.sourcing-card) .service-visual-item img {
    transform: scale(1.04);
  }

  body[data-page="home"] .services-section .service-list .sourcing-card .diagram-sourcing.has-service-image {
    width: calc(100% - 32px);
    max-width: 360px;
    margin-inline: auto;
    padding: 10px 12px;
  }

  body[data-page="home"] .services-section .service-list .sourcing-card .service-visual--asset .service-visual-item img {
    filter: grayscale(1) contrast(1.12) brightness(1);
    object-position: center 50%;
    transform: translateY(0) scale(1.2);
    transform-origin: center;
  }
}
