@font-face {
  font-family: "Inter";
  src: url("assets/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #000;
  --white: #f4f6f7;
  --body: #b8bfc2;
  --label: #8d969a;
  --rule: rgba(244, 246, 247, 0.18);
  --gutter: clamp(18px, 2.3vw, 44px);
  --micro: clamp(10px, 0.68vw, 13px);
  --display: clamp(52px, 5.55vw, 106px);
  --headline: clamp(43px, 6.1vw, 117px);
  --section-space: clamp(100px, 12vw, 220px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--body);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

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

a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 5px;
}

::selection {
  color: var(--black);
  background: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus-visible {
  width: auto;
  height: auto;
  min-height: 44px;
  overflow: visible;
  padding: 10px 14px;
  clip-path: none;
  color: var(--black);
  background: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.micro {
  color: var(--label);
  font-size: var(--micro);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
}

.solid-header {
  position: relative;
  background: var(--black);
  border-bottom: 1px solid var(--rule);
}

.site-nav {
  display: grid;
  min-height: 88px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-inline: var(--gutter);
  color: rgba(244, 246, 247, 0.65);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand,
.nav-links,
.nav-contact,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 44px;
  white-space: nowrap;
}

.brand-symbol {
  display: block;
  width: auto;
  height: 32px;
}

.brand span {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.nav-links {
  justify-self: center;
  gap: clamp(22px, 3vw, 58px);
}

.nav-contact {
  gap: 8px;
  white-space: nowrap;
}

.site-nav a,
.footer-links a,
.footer-brand,
.hero-contact,
.contact-link,
.text-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.hero-contact:hover,
.hero-contact:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-media,
.hero-poster,
.hero-poster img,
.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  background: var(--black);
}

.hero-poster img,
.hero-video {
  object-fit: contain;
  object-position: center;
}

.hero-video {
  z-index: 1;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.12) 66%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 21%;
  right: var(--gutter);
  left: var(--gutter);
}

.hero-kicker,
.section-label {
  margin-bottom: 18px;
}

.section-label {
  display: flex;
  gap: 16px;
}

.section-label span {
  min-width: 2.4ch;
  color: var(--white);
}

.hero h1 {
  max-width: 14ch;
  color: var(--white);
  font-size: var(--display);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.052em;
}

.hero-title-surface {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

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

.hero-subtitle {
  max-width: 58ch;
  margin-top: clamp(24px, 3vh, 36px);
  color: var(--white);
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1.42;
}

.hero-contact {
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--white);
}

.hero-footage {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 28px;
  left: var(--gutter);
  color: rgba(244, 246, 247, 0.76);
}

.text-section {
  display: flex;
  min-height: 76svh;
  align-items: center;
  background: var(--black);
}

.section-inner {
  width: 100%;
  padding: var(--section-space) var(--gutter);
}

.text-section h2 {
  max-width: 12ch;
  color: var(--white);
  font-size: var(--headline);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.gap-copy,
.proof-copy {
  display: grid;
  max-width: 1260px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 96px);
  margin-top: clamp(48px, 6vw, 96px);
  padding-top: clamp(26px, 3vw, 44px);
  border-top: 1px solid var(--rule);
}

.gap-copy p,
.proof-copy p {
  max-width: 45ch;
  color: var(--body);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.48;
}

.opposition {
  display: grid;
  max-width: 1260px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 128px);
  border-top: 1px solid var(--rule);
}

.opposition article {
  min-width: 0;
  padding: clamp(28px, 3vw, 48px) clamp(20px, 4vw, 72px) 0 0;
}

.opposition article + article {
  padding-right: 0;
  padding-left: clamp(20px, 4vw, 72px);
  border-left: 1px solid var(--rule);
}

.opposition h3 {
  margin-bottom: 32px;
  color: var(--white);
  font-size: clamp(24px, 2.2vw, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}

.opposition p {
  max-width: 30ch;
  padding-block: 15px;
  border-top: 1px solid var(--rule);
  color: var(--body);
  font-size: clamp(17px, 1.2vw, 22px);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 110px);
  margin-top: clamp(64px, 8vw, 140px);
  border-top: 1px solid var(--rule);
}

.method-grid article {
  padding-top: clamp(28px, 3vw, 48px);
}

.method-grid h3 {
  color: var(--white);
  font-size: clamp(32px, 3.2vw, 62px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.method-grid p {
  max-width: 26ch;
  margin-top: 24px;
}

.image-band {
  position: relative;
  width: 100%;
  height: clamp(340px, 43vw, 760px);
  overflow: hidden;
  background: var(--black);
}

.image-band picture,
.image-band picture img,
.image-band > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.image-band img {
  object-fit: cover;
}

.shock-band img {
  object-position: center;
  filter: contrast(1.28) brightness(0.94);
}

.mesh-band > img {
  left: -100%;
  width: 300%;
  max-width: none;
  object-fit: cover;
  filter: contrast(1.22) brightness(1.06);
}

.image-band figcaption {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 26px;
  left: var(--gutter);
  width: fit-content;
  max-width: calc(100% - (2 * var(--gutter)));
  color: rgba(244, 246, 247, 0.78);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.95);
}

.proof h2 {
  max-width: 10ch;
}

.work-section {
  background: var(--black);
  border-top: 1px solid var(--rule);
}

.work-section h2 {
  max-width: 11ch;
  color: var(--white);
  font-size: var(--headline);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(20px, 2.8vw, 54px);
  row-gap: clamp(66px, 8vw, 138px);
  margin-top: clamp(76px, 10vw, 168px);
}

.case-card {
  display: block;
  min-width: 0;
  color: var(--body);
}

.case-visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b0c0d;
}

.case-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 246, 247, 0.12);
  content: "";
  pointer-events: none;
}

.case-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: transform 360ms ease, opacity 240ms ease;
}

.case-document img {
  object-position: center top;
}

.case-card:hover .case-visual img,
.case-card:focus-visible .case-visual img {
  opacity: 0.9;
  transform: scale(1.012);
}

.case-copy {
  display: block;
  min-width: 0;
  padding-top: clamp(22px, 2.2vw, 36px);
  border-top: 1px solid var(--rule);
}

.case-title {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(29px, 2.8vw, 54px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.case-context {
  display: block;
  max-width: 51ch;
  margin-top: 18px;
  color: var(--body);
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.48;
}

.case-page {
  background: var(--black);
}

.case-page-hero {
  position: relative;
  display: flex;
  min-height: min(78svh, 900px);
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #090a0a;
}

.case-page-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.74);
}

.case-page-hero.document-hero > img {
  object-position: center 10%;
  filter: grayscale(1) contrast(1.1) brightness(0.52);
}

.case-page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 15%, rgba(0, 0, 0, 0.94) 100%);
  content: "";
}

.case-page-head {
  width: 100%;
  padding: clamp(140px, 17vw, 300px) var(--gutter) clamp(42px, 6vw, 92px);
}

.case-page-head h1 {
  max-width: 11ch;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(58px, 8.2vw, 158px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.case-page-body {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(56px, 10vw, 190px);
  padding: var(--section-space) var(--gutter);
}

.case-stat {
  min-width: 0;
}

.case-stat-value {
  display: block;
  color: var(--white);
  font-size: clamp(110px, 19vw, 360px);
  font-weight: 500;
  line-height: 0.74;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.case-stat-unit {
  display: block;
  max-width: 28ch;
  margin-top: 36px;
}

.case-stat-value.compact {
  font-size: clamp(82px, 12.5vw, 230px);
}

.case-narrative {
  min-width: 0;
  padding-top: 4px;
}

.case-narrative h2 {
  max-width: 11ch;
  color: var(--white);
  font-size: clamp(42px, 5vw, 96px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.case-narrative p {
  max-width: 58ch;
  margin-top: clamp(28px, 3vw, 48px);
  color: var(--body);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(60px, 7vw, 120px);
  background: var(--rule);
  border: 1px solid var(--rule);
}

.case-facts article {
  min-width: 0;
  padding: clamp(24px, 2.8vw, 46px);
  background: var(--black);
}

.case-facts strong {
  display: block;
  color: var(--white);
  font-size: clamp(26px, 3vw, 58px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.case-facts span {
  display: block;
  margin-top: 15px;
  color: var(--label);
  font-size: 13px;
  line-height: 1.45;
}

.audit-reserve {
  padding: var(--section-space) var(--gutter);
  background: var(--white);
  color: var(--black);
}

.audit-reserve .micro {
  color: #4e5355;
}

.audit-reserve blockquote {
  max-width: 24ch;
  margin: clamp(40px, 5vw, 78px) 0 0;
  color: var(--black);
  font-size: clamp(31px, 4.3vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.047em;
  text-wrap: balance;
}

.audit-reserve code {
  font: inherit;
}

.contact {
  min-height: 68svh;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  align-items: flex-end;
}

.contact h2 {
  max-width: 11ch;
}

.contact-link {
  min-width: min(320px, 38vw);
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-size: clamp(18px, 1.4vw, 26px);
}

.site-footer {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.footer-brand img {
  display: block;
  width: 220px;
  height: auto;
}

.footer-links {
  gap: 30px;
  color: var(--label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  padding-inline: 2px;
}

.legal-page {
  min-height: calc(100svh - 190px);
  padding: clamp(90px, 10vw, 180px) var(--gutter);
}

.legal-intro h1,
.not-found h1 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(52px, 7vw, 128px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.legal-intro > p:last-child {
  margin-top: 36px;
  color: var(--white);
  font-size: clamp(18px, 1.3vw, 24px);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 72px);
  margin-top: clamp(90px, 12vw, 200px);
  padding-top: 30px;
  border-top: 1px solid var(--rule);
}

.legal-grid section {
  min-width: 0;
}

.legal-grid .micro {
  margin-bottom: 26px;
  color: var(--white);
}

.legal-grid p + p {
  margin-top: 22px;
}

.legal-grid strong {
  color: var(--white);
  font-weight: 500;
}

.text-link {
  border-bottom: 1px solid currentColor;
}

.not-found {
  min-height: calc(100svh - 278px);
  padding: clamp(120px, 15vw, 260px) var(--gutter);
}

.not-found > p:nth-of-type(2) {
  margin-top: 32px;
}

.not-found .text-link {
  margin-top: 28px;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .text-section {
    min-height: auto;
  }

  .gap-copy,
  .proof-copy,
  .opposition,
  .method-grid,
  .legal-grid,
  .work-grid,
  .case-page-body {
    grid-template-columns: 1fr;
  }

  .work-grid {
    row-gap: 74px;
  }

  .case-page-hero {
    min-height: 70svh;
  }

  .case-page-body {
    gap: 74px;
  }

  .opposition article + article {
    margin-top: 50px;
    padding-left: 0;
    border-left: 0;
  }

  .method-grid {
    gap: 42px;
  }

  .contact-inner {
    display: block;
  }

  .contact-link {
    width: 100%;
    min-width: 0;
    margin-top: 70px;
  }

  .legal-grid {
    gap: 56px;
  }
}

@media (max-width: 560px) {
  :root {
    --display: clamp(38px, 12vw, 50px);
    --headline: clamp(42px, 14vw, 62px);
    --section-space: 104px;
  }

  .site-nav {
    min-height: 76px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: max(680px, 100svh);
  }

  .hero-copy {
    top: 17%;
  }

  .hero h1 {
    max-width: 9.2ch;
    line-height: 1.24;
  }

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

  .hero-subtitle {
    max-width: 34ch;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-footage {
    bottom: 22px;
    max-width: 28ch;
  }

  .gap-copy,
  .proof-copy {
    gap: 22px;
  }

  .case-visual {
    aspect-ratio: 4 / 3;
  }

  .case-title {
    font-size: clamp(31px, 10.2vw, 45px);
  }

  .case-page-head h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .case-page-body {
    padding-block: 100px;
  }

  .case-stat-value {
    font-size: clamp(112px, 42vw, 170px);
  }

  .case-stat-value.compact {
    font-size: clamp(66px, 19vw, 90px);
  }

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

  .opposition {
    margin-top: 72px;
  }

  .image-band {
    height: 60svh;
    min-height: 390px;
  }

  .shock-band img {
    object-position: center;
  }

  .site-footer {
    min-height: 220px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand img {
    width: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── schéma opératoire, repris de la v14 et traduit dans la palette de cette version ─── */
:root{
  --paper: var(--black);
  --paper-deep: #0d0f10;
  --ink: var(--white);
  --muted: var(--label);
  --node: rgba(244,246,247,0.05);
  --future: rgba(244,246,247,0.14);
}



.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem);
  margin-top: clamp(4rem, 7vw, 8rem);
  border-top: 1px solid var(--rule);
}



.method-grid article {
  padding-top: clamp(1.8rem, 3vw, 3rem);
}



.method-grid h3 {
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.9rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.045em;
}



.method-grid p {
  max-width: 26ch;
  margin-top: 1.4rem;
}



.diagram-wrap {
  margin-top: clamp(7rem, 13vw, 15rem);
}



.diagram-intro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.6fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: end;
  padding-top: 1.3rem;
  border-top: 1px solid var(--rule);
}



.diagram-intro h3 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.055em;
}



.process-diagram {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(4rem, 7vw, 8rem);
  overflow: visible;
}



.process-mobile {
  display: none;
}



.process-diagram .connections path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  marker-end: url("#arrow-desktop");
}



.process-mobile .connections path {
  marker-end: url("#arrow-mobile");
}



.process-diagram marker path {
  fill: var(--ink);
}



.node-fill {
  fill: var(--node);
}



.future .node-fill {
  fill: var(--future);
}



.node-corners {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}



.node-label,
.node-legend,
.verdict-outcomes,
.loop-label {
  fill: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  text-anchor: middle;
}



.node-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}



.node-legend,
.loop-label {
  fill: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
}



.verdict-outcomes {
  fill: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
}



.diagram-node .node-fill,
.diagram-node .node-corners,
.diagram-node .node-label {
  transition: fill 150ms ease, stroke 150ms ease, opacity 150ms ease;
}



.diagram-node:hover .node-fill,
.diagram-node:focus .node-fill {
  fill: var(--ink);
}



.diagram-node:hover .node-label,
.diagram-node:focus .node-label {
  fill: var(--paper);
}



.diagram-node:hover .node-corners,
.diagram-node:focus .node-corners {
  stroke: var(--ink);
}



.stage-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 7rem);
  background: var(--rule);
  border: 1px solid var(--rule);
}



.stage-detail {
  min-width: 0;
  min-height: 17rem;
  padding: clamp(1.6rem, 3vw, 3.2rem);
  scroll-margin-top: calc(var(--header-height) + 1rem);
  background: var(--paper);
}



.stage-detail:target {
  background: var(--paper-deep);
  box-shadow: inset 0 0 0 2px var(--ink);
}



.stage-detail.future-detail {
  background: var(--future);
}



.stage-detail h3 {
  margin-top: 1.6rem;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
}



.stage-detail > p:not(.micro) {
  max-width: 44ch;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.45;
}

@media (max-width: 760px) {
  
  
    .gap-copy,
    .proof-copy,
    .method-grid,
    .opposition,
    .diagram-intro,
    .stage-details,
    .work-grid,
    .case-page-body,
    .legal-grid {
      grid-template-columns: 1fr;
    }
  
  
    .method-grid article + article {
      border-top: 1px solid var(--rule);
    }
  
  
    .diagram-intro {
      align-items: start;
    }
  
  
    .process-desktop {
      display: none;
    }
  
  
    .process-mobile {
      display: block;
    }
  
  
    .stage-detail {
      min-height: 0;
    }
}

@media (max-width: 390px) {
  
  
    .node-label {
      font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
  
  
    .case-visual img,
    .diagram-node .node-fill,
    .diagram-node .node-corners,
    .diagram-node .node-label {
      transition: none;
    }
}
