:root {
  --color-white: #ffffff;
  --color-paper: #f7f8f7;
  --color-ash: #eef1ef;
  --color-cloud: #e5e9e6;
  --color-silver: #cfd6d2;
  --color-mist: #8d9792;
  --color-graphite: #2a2f2c;
  --color-charcoal: #171a18;
  --color-ink: #070807;
  --color-green-900: #10251a;
  --color-green-700: #215f43;
  --color-green-500: #3f8b62;
  --color-line-dark: rgba(229, 233, 230, 0.16);
  --color-line-light: rgba(7, 8, 7, 0.1);
  --color-glass: rgba(255, 255, 255, 0.72);
  --font-display: "Noto Sans JP", system-ui, sans-serif;
  --font-body: "Noto Sans JP", system-ui, sans-serif;
  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-pill: 999px;
  --section-pad: 144px;
  --gutter: 24px;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --duration-slow: 1500ms;
  --duration-base: 680ms;
  --duration-fast: 240ms;

  /* Compatibility aliases while the prototype is being refactored. */
  --moss-950: var(--color-ink);
  --moss-900: var(--color-charcoal);
  --moss-800: var(--color-green-900);
  --moss-700: var(--color-green-700);
  --moss-600: var(--color-green-700);
  --moss-500: var(--color-green-500);
  --moss-300: var(--color-mist);
  --moss-100: var(--color-paper);
  --citron-500: var(--color-green-700);
  --citron-300: var(--color-green-500);
  --ivory: var(--color-white);
  --bark: var(--color-ink);
  --clay: var(--color-graphite);
  --line: var(--color-line-dark);
  --glass: var(--color-glass);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-white);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.85;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  gap: 22px;
  place-content: center;
  justify-items: center;
  color: var(--color-ink);
  background: var(--color-white);
  transition:
    opacity 980ms var(--ease-out),
    visibility 980ms var(--ease-out);
}

.site-loader__mark {
  width: min(320px, 62vw);
  text-align: center;
  transform: translateY(10px);
  animation: loaderMark 1400ms var(--ease-out) both;
}

.site-loader__mark img,
.brand img,
.footer-brand img,
.ticker-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-loader__line {
  width: 220px;
  height: 2px;
  overflow: hidden;
  background: var(--color-ash);
}

.site-loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-green-700);
  transform-origin: left;
  animation: loaderLine 1900ms var(--ease-out) both;
}

body.is-ready .site-loader {
  visibility: hidden;
  opacity: 0;
}

@keyframes loaderMark {
  to {
    transform: translateY(0);
  }
}

@keyframes loaderLine {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: radial-gradient(rgba(7, 8, 7, 0.16) 0.65px, transparent 0.65px);
  background-size: 8px 8px;
  mix-blend-mode: multiply;
}

.sprout-canvas {
  position: fixed;
  inset: 0;
  z-index: 13;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.site-cursor {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 1px;
  height: 1px;
  color: var(--color-white);
  filter: drop-shadow(0 1px 2px rgba(7, 8, 7, 0.34));
  pointer-events: none;
  transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0);
}

.site-cursor__ring,
.site-cursor__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
}

.site-cursor__ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 1px rgba(7, 8, 7, 0.58),
    0 0 18px rgba(255, 255, 255, 0.28),
    inset 0 0 16px rgba(255, 255, 255, 0.1);
  opacity: 0.84;
  transition:
    width var(--duration-fast) var(--ease-out),
    height var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

.site-cursor__dot {
  width: 4px;
  height: 4px;
  background: var(--color-white);
  box-shadow:
    0 0 0 1px rgba(7, 8, 7, 0.72),
    0 0 10px rgba(255, 255, 255, 0.42);
  transition:
    width var(--duration-fast) var(--ease-out),
    height var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

body.has-custom-cursor .site-cursor {
  display: block;
}

body.is-cursor-active .site-cursor__ring {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 0 0 1px rgba(7, 8, 7, 0.68),
    0 0 22px rgba(255, 255, 255, 0.34),
    inset 0 0 18px rgba(255, 255, 255, 0.12);
  opacity: 1;
}

body.is-cursor-active .site-cursor__dot {
  width: 3px;
  height: 3px;
  background: var(--color-white);
}

body.is-cursor-hidden .site-cursor {
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(7, 8, 7, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: clamp(104px, 10vw, 142px);
  align-items: center;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a,
.menu-panel a {
  position: relative;
}

.desktop-nav a::after,
.menu-panel a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.desktop-nav a:hover::after,
.menu-panel a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  grid-area: 1 / 1;
  background: currentColor;
  transition: transform var(--duration-base) var(--ease-out);
}

.menu-button span:first-child {
  transform: translateY(-5px);
}

.menu-button span:last-child {
  transform: translateY(5px);
}

.menu-button.is-open span:first-child {
  transform: rotate(28deg);
}

.menu-button.is-open span:last-child {
  transform: rotate(-28deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: none;
  place-items: center;
  color: var(--color-ink);
  background: var(--color-white);
  clip-path: circle(0% at calc(100% - 42px) 42px);
  transition: clip-path 680ms var(--ease-out);
}

.menu-panel.is-open {
  clip-path: circle(145% at calc(100% - 42px) 42px);
}

.menu-panel nav {
  display: grid;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.2;
}

main,
.site-footer {
  position: relative;
  z-index: 3;
}

section {
  position: relative;
}

.section-dark {
  color: var(--color-white);
}

.hero {
  display: grid;
  min-height: 100svh;
  padding: 144px clamp(20px, 6vw, 80px) 64px;
  color: var(--color-ink);
  overflow: hidden;
  background: var(--color-white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: -8% -4% -8% -18%;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 74% 48%, rgba(63, 139, 98, 0.24), transparent 46%),
    radial-gradient(circle at 24% 52%, rgba(255, 255, 255, 0.7), transparent 42%);
  opacity: 0.74;
  filter: saturate(1.06) contrast(1.04);
  mix-blend-mode: multiply;
  transform: scale(1.08);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  opacity: 0.86;
  filter: saturate(0.88) contrast(1.02) brightness(1.08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: saturate(1.02) contrast(1.04);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28) 34%, transparent 56%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.54) 42%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.56) 100%);
}

.growth-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.hero-copy[data-reveal] {
  transition-duration: 1760ms;
}

.hero-copy .eyebrow,
.hero h1 span,
.hero-copy p:last-child {
  opacity: 0;
  transform: translateY(34px);
}

body.is-ready .hero-copy.is-visible .eyebrow,
body.is-ready .hero-copy.is-visible h1 span,
body.is-ready .hero-copy.is-visible p:last-child {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1500ms var(--ease-out),
    transform 1500ms var(--ease-out);
}

body.is-ready .hero-copy.is-visible h1 span:first-child {
  transition-delay: 190ms;
}

body.is-ready .hero-copy.is-visible h1 span:last-child {
  transition-delay: 380ms;
}

body.is-ready .hero-copy.is-visible p:last-child {
  transition-delay: 600ms;
}

.eyebrow,
.section-kicker,
.work-meta,
.service-number {
  margin: 0 0 18px;
  color: var(--color-green-700);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.hero h1,
.concept h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 {
  display: grid;
  gap: 4px;
  font-size: clamp(118px, 10.8vw, 148px);
}

.hero-copy p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--color-graphite);
  font-size: 17px;
}

.hero-word {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 38px;
  z-index: 0;
  width: clamp(260px, 38vw, 720px);
  margin: 0;
  line-height: 1;
  opacity: 0.075;
}

.hero-word img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: flex;
  width: max-content;
  overflow: hidden;
  color: rgba(33, 95, 67, 0.075);
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 172px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
  pointer-events: none;
  transform: translateY(0.08em);
  animation: heroTicker 54s linear infinite;
  user-select: none;
  white-space: nowrap;
}

.hero-ticker div {
  display: flex;
  gap: clamp(28px, 5vw, 76px);
  padding-right: clamp(28px, 5vw, 76px);
}

.hero-ticker span {
  display: flex;
  align-items: center;
}

.hero-ticker .ticker-logo {
  width: clamp(260px, 42vw, 620px);
  opacity: 0.72;
}

.work-meta--logo {
  width: 92px;
}

.work-meta--logo img {
  display: block;
  width: 100%;
  height: auto;
}

.scroll-cue {
  z-index: 1;
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 6vw, 80px);
  width: 1px;
  height: 88px;
  overflow: hidden;
  background: rgba(7, 8, 7, 0.16);
}

.scroll-cue::after {
  display: block;
  width: 100%;
  height: 42px;
  content: "";
  background: var(--color-green-700);
  animation: growLine 2900ms ease-in-out infinite;
}

@keyframes growLine {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(100px);
  }
}

@keyframes heroTicker {
  to {
    transform: translate(-50%, 0.08em);
  }
}

.impact-visual {
  position: relative;
  display: grid;
  min-height: 78svh;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  isolation: isolate;
}

.impact-visual__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.86) contrast(1.02) blur(10px);
  transform: scale(1.12) translate3d(0, 34px, 0);
  transform-origin: 58% 52%;
  will-change: opacity, filter, transform;
}

.impact-visual[data-background-reveal] .impact-visual__image {
  opacity: 0;
  transform: scale(1.12) translate3d(0, 34px, 0);
  transition: none;
}

.impact-visual.is-background-visible .impact-visual__image {
  animation:
    impactImageReveal 1900ms var(--ease-out) both,
    impactImageDrift 22000ms ease-in-out 1900ms infinite alternate;
}

.impact-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 72% 42%, rgba(63, 139, 98, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.9));
}

.impact-visual::after {
  position: absolute;
  inset: auto clamp(20px, 6vw, 80px) 40px;
  z-index: 1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(33, 95, 67, 0.58), rgba(33, 95, 67, 0));
  transform-origin: left;
  animation: impactRule 4200ms var(--ease-out) infinite;
}

.impact-visual__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(100%, 1180px);
  min-height: 78svh;
  padding: 96px clamp(20px, 6vw, 80px) 84px;
}

.impact-visual h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.1vw, 42px);
  font-weight: 700;
  line-height: 1.22;
}

.impact-visual__copy > p:last-child {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--color-graphite);
  font-size: 17px;
}

.impact-visual__word {
  position: absolute;
  right: -0.06em;
  bottom: 0.14em;
  z-index: 1;
  margin: 0;
  color: rgba(33, 95, 67, 0.08);
  font-family: var(--font-display);
  font-size: clamp(78px, 14vw, 188px);
  font-weight: 700;
  line-height: 0.82;
  white-space: nowrap;
}

@keyframes impactImageDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-1.5%, -1.2%, 0);
  }
}

@keyframes impactImageReveal {
  0% {
    opacity: 0;
    filter: saturate(0.78) contrast(1) blur(10px);
    transform: scale(1.12) translate3d(0, 34px, 0);
  }
  100% {
    opacity: 1;
    filter: saturate(0.9) contrast(1.03) blur(0);
    transform: scale(1.04) translate3d(0, 0, 0);
  }
}

@keyframes impactRule {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  46% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

.concept {
  padding: clamp(88px, 10vw, 124px) clamp(20px, 6vw, 80px);
  color: var(--color-ink);
  background:
    linear-gradient(180deg, var(--color-white), var(--color-paper));
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.concept-copy {
  display: grid;
  align-content: center;
  min-height: 420px;
}

.concept h2,
.section-heading h2,
.contact h2 {
  font-size: 54px;
}

.concept-statement {
  max-width: 560px;
}

.concept-statement p {
  margin: 0 0 24px;
}

.thrive-diagram {
  position: relative;
  justify-self: end;
  width: min(100%, 680px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.thrive-diagram img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
  opacity: 0.92;
  filter: saturate(0.94) contrast(1.02);
}

.brand-story {
  position: relative;
  --story-orbit-opacity: 0.18;
  --story-orbit-scale: 0.84;
  --story-logo-opacity: 1;
  --story-logo-shift: 0px;
  --story-logo-scale: 1;
  --story-e-left: 82%;
  --story-e-scale: 0.78;
  --story-bar-scale: 0.62;
  --story-line-offset: 1;
  --story-node-offset: 28px;
  --story-node-scale: 0.9;
  --story-caption-offset: 18px;
  min-height: 240svh;
  padding: 0 clamp(20px, 6vw, 80px);
  overflow: clip;
  background:
    radial-gradient(circle at 82% 24%, rgba(33, 95, 67, 0.08), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(63, 139, 98, 0.07), transparent 28%),
    linear-gradient(180deg, var(--color-white) 0%, #fbfcfb 46%, var(--color-paper) 100%);
}

.brand-story::before,
.brand-story::after {
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 520px;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 52% 18%, rgba(33, 95, 67, 0.34) 0 3px, transparent 4px),
    radial-gradient(ellipse at 42% 34%, rgba(33, 95, 67, 0.22) 0 9px, transparent 10px),
    radial-gradient(ellipse at 62% 54%, rgba(33, 95, 67, 0.2) 0 7px, transparent 8px),
    linear-gradient(130deg, transparent 0 44%, rgba(33, 95, 67, 0.34) 45%, transparent 47% 100%);
  filter: blur(0.2px);
}

.brand-story::before {
  top: 16%;
  left: -120px;
  transform: rotate(-18deg);
}

.brand-story::after {
  right: -132px;
  bottom: 10%;
  transform: scaleX(-1) rotate(-22deg);
}

.brand-story__inner {
  position: sticky;
  top: 72px;
  z-index: 1;
  min-height: calc(100svh - 72px);
  padding-block: clamp(52px, 7vh, 76px);
}

.brand-story__copy {
  position: relative;
  z-index: 2;
  min-height: auto;
}

.brand-story__lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--color-graphite);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 2;
}

.brand-story__steps {
  display: grid;
  gap: 14px;
  max-width: 600px;
  margin-top: 34px;
}

.brand-story__step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  color: var(--color-graphite);
  border-top: 1px solid rgba(33, 95, 67, 0.13);
  opacity: 0.52;
  transition:
    opacity 520ms var(--ease-out),
    transform 520ms var(--ease-out),
    color 520ms var(--ease-out);
}

.brand-story__step.is-active {
  color: var(--color-ink);
  opacity: 1;
  transform: translateX(8px);
}

.brand-story__step span {
  color: var(--color-green-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.brand-story__step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
}

.brand-story__visual {
  position: relative;
  min-height: min(68vw, 640px);
}

.brand-story__canvas {
  position: relative;
  width: min(100%, 760px);
  min-height: min(68vw, 640px);
  margin-inline: auto 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62) 42%, transparent 74%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(238, 241, 239, 0.42));
  border: 1px solid rgba(33, 95, 67, 0.1);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(16, 37, 26, 0.08);
}

.brand-story__canvas::before {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(33, 95, 67, 0.12);
  border-radius: 999px;
  opacity: var(--story-orbit-opacity);
  transform: rotate(-8deg) scale(var(--story-orbit-scale));
}

.brand-story__ornament {
  position: absolute;
  width: 280px;
  height: 280px;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 30% 34%, rgba(33, 95, 67, 0.25) 0 7px, transparent 8px),
    radial-gradient(ellipse at 48% 58%, rgba(33, 95, 67, 0.18) 0 5px, transparent 6px),
    linear-gradient(125deg, transparent 0 48%, rgba(33, 95, 67, 0.28) 49%, transparent 51% 100%);
}

.brand-story__ornament--left {
  bottom: 8%;
  left: -8%;
  transform: rotate(-22deg);
}

.brand-story__ornament--right {
  top: 8%;
  right: -8%;
  transform: scaleX(-1) rotate(-18deg);
}

.brand-story__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(58vw, 520px);
  max-width: 76%;
  height: auto;
  opacity: var(--story-logo-opacity);
  filter: drop-shadow(0 16px 30px rgba(16, 37, 26, 0.08));
  transform:
    translate(calc(-50% + var(--story-logo-shift)), -50%)
    scale(var(--story-logo-scale));
  transition: filter 240ms var(--ease-out);
}

.brand-story__e-focus {
  position: absolute;
  top: 50%;
  left: var(--story-e-left);
  z-index: 3;
  width: clamp(122px, 17vw, 204px);
  opacity: var(--story-focus);
  transform:
    translate(-50%, -50%)
    scale(var(--story-e-scale));
  filter: drop-shadow(0 18px 28px rgba(16, 37, 26, 0.12));
}

.brand-story__e-image {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: left center;
  transform: scaleX(var(--story-bar-scale));
}

.brand-story__links {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: var(--story-lines);
}

.brand-story__link {
  fill: none;
  stroke: rgba(33, 95, 67, 0.52);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--story-line-offset);
  vector-effect: non-scaling-stroke;
}

.brand-story__value {
  position: absolute;
  right: clamp(24px, 5vw, 56px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(116px, 15vw, 158px);
  aspect-ratio: 1;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.98), rgba(247, 248, 247, 0.94));
  border: 1px solid rgba(33, 95, 67, 0.28);
  border-radius: 50%;
  box-shadow:
    0 18px 34px rgba(16, 37, 26, 0.12),
    inset 0 0 0 9px rgba(33, 95, 67, 0.04);
  opacity: var(--story-nodes);
  transform: translateX(var(--story-node-offset)) scale(var(--story-node-scale));
}

.brand-story__value::before {
  position: absolute;
  left: -11px;
  width: 16px;
  aspect-ratio: 1;
  content: "";
  background: var(--color-white);
  border: 3px solid #80c56d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(128, 197, 109, 0.12);
}

.brand-story__value--top {
  top: 9%;
}

.brand-story__value--middle {
  top: 50%;
  transform: translateY(-50%) translateX(var(--story-node-offset)) scale(var(--story-node-scale));
}

.brand-story__value--bottom {
  bottom: 9%;
}

.brand-story__value b {
  color: var(--color-green-700);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.9;
}

.brand-story__value strong {
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1;
}

.brand-story__value span {
  font-size: 13px;
  font-weight: 600;
}

.brand-story__caption {
  position: absolute;
  bottom: clamp(24px, 4vw, 42px);
  left: clamp(26px, 5vw, 56px);
  max-width: 240px;
  margin: 0;
  color: var(--color-green-700);
  font-weight: 700;
  line-height: 1.7;
  opacity: var(--story-nodes);
  transform: translateY(var(--story-caption-offset));
}

@media (max-width: 980px) {
  .brand-story {
    min-height: auto;
    padding-block: 96px;
    --story-progress: 1 !important;
    --story-focus: 1 !important;
    --story-expand: 1 !important;
    --story-lines: 1 !important;
    --story-nodes: 1 !important;
    --story-orbit-opacity: 0.6 !important;
    --story-orbit-scale: 0.96 !important;
    --story-logo-opacity: 0.2 !important;
    --story-logo-shift: 0px !important;
    --story-logo-scale: 0.9 !important;
    --story-e-left: 24% !important;
    --story-e-scale: 1.24 !important;
    --story-bar-scale: 1 !important;
    --story-line-offset: 0 !important;
    --story-node-offset: 0px !important;
    --story-node-scale: 1 !important;
    --story-caption-offset: 0px !important;
  }

  .brand-story__inner {
    position: relative;
    top: auto;
    min-height: auto;
    padding-block: 0;
  }

  .brand-story__copy {
    gap: 0;
  }

  .brand-story__lead {
    margin-top: 24px;
  }

  .brand-story__visual {
    min-height: 560px;
    margin-top: 40px;
  }

  .brand-story__canvas {
    width: 100%;
    min-height: 560px;
    margin-inline: 0;
  }

  .brand-story__logo {
    top: 18%;
    left: 50%;
    width: min(72vw, 440px);
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .brand-story__e-focus {
    top: 50%;
  }

  .brand-story__value {
    right: 24px;
  }
}

@media (max-width: 560px) {
  .brand-story {
    padding-block: 76px;
  }

  .brand-story__step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .brand-story__visual {
    min-height: 620px;
  }

  .brand-story__canvas {
    min-height: 620px;
  }

  .brand-story__e-focus {
    top: 42%;
    left: 50%;
    width: 132px;
  }

  .brand-story__links {
    display: none;
  }

  .brand-story__value {
    right: auto;
    left: 50%;
    width: 90px;
    transform: translateX(-50%) scale(1);
  }

  .brand-story__value b {
    font-size: 26px;
  }

  .brand-story__value strong {
    font-size: 13px;
  }

  .brand-story__value span {
    font-size: 11px;
  }

  .brand-story__value::before {
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand-story__value--top {
    top: 58%;
    left: 22%;
  }

  .brand-story__value--middle {
    top: 58%;
    left: 50%;
    transform: translate(-50%, 0) scale(1);
  }

  .brand-story__value--bottom {
    top: 58%;
    right: 22%;
    bottom: auto;
    left: auto;
    transform: translateX(50%) scale(1);
  }

  .brand-story__caption {
    right: 24px;
    bottom: 28px;
    left: 24px;
    max-width: none;
    text-align: center;
  }
}

.service,
.works {
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
  color: var(--color-ink);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(238, 241, 239, 0.78)),
    var(--color-ash);
}

.service {
  min-height: auto;
}

.service::before,
.works::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.28;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
}

.service::before {
  background-image:
    linear-gradient(90deg, rgba(238, 241, 239, 0.92), rgba(238, 241, 239, 0.5)),
    url("./assets/hero-growth.png");
  background-position: center right;
}

.works::before {
  background-image:
    linear-gradient(90deg, rgba(247, 248, 247, 0.88), rgba(247, 248, 247, 0.62)),
    url("./assets/work-brand.jpg");
  background-position: center;
}

.service .section-heading,
.service-stack,
.works .section-heading,
.works-grid {
  position: relative;
  z-index: 1;
}

.section-heading {
  position: relative;
  max-width: 860px;
  margin-bottom: 72px;
}

.section-heading::after {
  position: absolute;
  bottom: -26px;
  left: 0;
  width: min(160px, 42vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(33, 95, 67, 0.72), rgba(33, 95, 67, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1760ms var(--ease-out) 680ms;
}

.section-heading.is-visible::after {
  transform: scaleX(1);
}

.section-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(247, 248, 247, 0.76);
}

.service .section-note,
.approach .section-note {
  color: rgba(7, 8, 7, 0.62);
}

.service-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: stretch;
  margin-bottom: 28px;
  padding: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 90px rgba(7, 8, 7, 0.08);
}

.service-feature::before,
.service-card::before,
.metric-primary::after,
.work-item::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.62) 42%, transparent 68%);
  opacity: 0;
  transform: translateX(-72%);
}

.service-feature.is-visible::before,
.service-card.is-visible::before,
.metric-primary.is-visible::after,
.work-item.is-visible::before {
  animation: revealSheen 1900ms var(--ease-out) 420ms both;
}

.service-feature img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: saturate(0.8) contrast(1.04);
}

.service-feature > div {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 52px);
}

.service-feature h3 {
  max-width: 620px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.16;
}

.service-feature p:last-child {
  max-width: 520px;
  margin: 0;
}

.service-carousel,
.works-carousel {
  position: relative;
  z-index: 1;
  margin-inline: calc(clamp(20px, 6vw, 80px) * -1);
  padding-inline: clamp(20px, 6vw, 80px);
}

.service-stack {
  position: relative;
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  padding: 8px 0 26px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.service-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3.5);
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 8, 7, 0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 70px rgba(7, 8, 7, 0.06);
  transition:
    transform var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(33, 95, 67, 0.28);
  transform: translateY(-6px);
}

.service-card .service-number {
  margin: 0;
  color: rgba(33, 95, 67, 0.72);
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 700;
  line-height: 0.88;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--color-white);
  cursor: pointer;
  background: rgba(33, 95, 67, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(7, 8, 7, 0.18);
  transform: translateY(-50%);
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
}

.carousel-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 34px;
  line-height: 1;
}

.carousel-arrow:hover {
  background: rgba(20, 75, 48, 0.96);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  transform: translateY(-50%);
}

.service-arrow--prev,
.works-arrow--prev {
  left: clamp(8px, 2vw, 24px);
}

.service-arrow--next,
.works-arrow--next {
  right: clamp(8px, 2vw, 24px);
}

.service-card::after {
  position: absolute;
  right: 22px;
  bottom: -0.28em;
  content: attr(data-label);
  color: rgba(33, 95, 67, 0.06);
  font-family: var(--font-display);
  font-size: 136px;
  font-weight: 700;
  line-height: 1;
}

.service-card::before,
.metric-primary::after,
.work-item::before {
  z-index: 1;
}

.service-card h3,
.work-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.36;
}

.service-card p {
  margin: 0;
  color: var(--color-graphite);
}

.service-card__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--color-green-700);
  font-size: 13px;
  font-weight: 700;
}

.service-card__link::after {
  margin-left: 8px;
  content: "↗";
}

.service-edge {
  position: relative;
  --edge-progress: 0;
  --edge-build: 0;
  --edge-refine: 0;
  --edge-focus: 0;
  --edge-market: 0;
  min-height: 260svh;
  padding: 0 clamp(20px, 6vw, 80px);
  overflow: clip;
  color: var(--color-white);
  background:
    radial-gradient(circle at 78% 18%, rgba(196, 166, 92, 0.22), transparent 23%),
    radial-gradient(circle at 20% 76%, rgba(63, 139, 98, 0.28), transparent 28%),
    linear-gradient(135deg, #06120c 0%, #0d2b1d 52%, #163f2b 100%);
  isolation: isolate;
}

.service-edge::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-position:
    calc(var(--edge-progress) * -42px) calc(var(--edge-progress) * -34px),
    calc(var(--edge-progress) * 28px) calc(var(--edge-progress) * -22px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 13%, #000 84%, transparent);
}

.service-edge::after {
  position: absolute;
  top: 12%;
  right: -24%;
  z-index: -1;
  width: min(78vw, 980px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 58px rgba(255, 255, 255, 0.025),
    inset 0 0 0 136px rgba(196, 166, 92, 0.04),
    0 0 90px rgba(63, 139, 98, 0.2);
  opacity: calc(0.45 + var(--edge-refine) * 0.35);
  transform: rotate(calc(var(--edge-progress) * 32deg)) scale(calc(0.92 + var(--edge-build) * 0.1));
}

.service-edge__inner {
  position: sticky;
  top: 72px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding-block: clamp(52px, 7vh, 76px);
}

.service-edge__heading {
  align-self: center;
  margin-bottom: 0;
}

.service-edge__heading[data-reveal],
.service-edge__heading[data-reveal] > *,
.service-edge__heading[data-reveal] .text-char {
  opacity: 1;
  filter: none;
  transform: none;
}

.service-edge__heading h2 {
  max-width: 620px;
  color: var(--color-white);
}

.service-edge__note {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.service-edge__stages {
  display: grid;
  gap: 10px;
  max-width: 600px;
  margin-top: clamp(26px, 4vw, 44px);
}

.service-edge__stage {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0 18px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  opacity: 0.62;
  transform: translateX(0);
  transition:
    opacity 520ms var(--ease-out),
    color 520ms var(--ease-out),
    transform 520ms var(--ease-out);
}

.service-edge__stage::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(196, 166, 92, 0.9), rgba(196, 166, 92, 0));
  transition: width 560ms var(--ease-out);
}

.service-edge__stage.is-active {
  color: var(--color-white);
  opacity: 1;
  transform: translateX(8px);
}

.service-edge__stage.is-active::before {
  width: min(100%, 430px);
}

.service-edge__stage span {
  grid-row: 1 / span 2;
  color: rgba(196, 166, 92, 0.94);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.service-edge__stage h3 {
  grid-column: 2;
  margin: 0 0 6px;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 700;
  line-height: 1.25;
}

.service-edge__stage p {
  grid-column: 2;
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.85;
}

.service-edge__stage.is-active p {
  color: rgba(255, 255, 255, 0.82);
}

.service-edge__visual {
  position: relative;
  min-height: min(68vw, 640px);
}

.edge-lab {
  position: relative;
  width: min(100%, 820px);
  min-height: min(68vw, 640px);
  margin-inline: auto 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 28% 18%, rgba(196, 166, 92, 0.18), transparent 30%),
    rgba(7, 16, 11, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateX(calc(2deg - var(--edge-build) * 2deg)) rotateY(calc(-5deg + var(--edge-refine) * 5deg));
  transform-origin: center;
}

.edge-lab__grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-position:
    calc(var(--edge-progress) * -68px) calc(var(--edge-progress) * -52px),
    calc(var(--edge-progress) * 54px) calc(var(--edge-progress) * -38px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 52% 50%, #000, transparent 72%);
}

.edge-lab__beam {
  position: absolute;
  left: 8%;
  width: 86%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 166, 92, 0.9), transparent);
  opacity: calc(0.18 + var(--edge-build) * 0.55);
  transform: scaleX(calc(0.32 + var(--edge-build) * 0.68));
  transform-origin: left;
}

.edge-lab__beam--top {
  top: 18%;
}

.edge-lab__beam--bottom {
  bottom: 22%;
  transform-origin: right;
}

.edge-browser {
  position: absolute;
  inset: 10% 7% 14% 9%;
  z-index: 2;
  display: grid;
  grid-template-rows: 44px 1fr;
  overflow: hidden;
  background: rgba(246, 248, 246, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(16, 37, 26, 0.12);
  transform:
    translate3d(calc(-22px + var(--edge-build) * 22px), calc(28px - var(--edge-build) * 28px), 0)
    scale(calc(0.92 + var(--edge-build) * 0.08));
}

.edge-browser__bar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 18px;
  color: rgba(33, 95, 67, 0.58);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(33, 95, 67, 0.12);
}

.edge-browser__bar span {
  width: 9px;
  aspect-ratio: 1;
  background: rgba(33, 95, 67, 0.22);
  border-radius: 50%;
}

.edge-browser__bar p {
  margin: 0 0 0 10px;
  color: rgba(33, 95, 67, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.edge-screen {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(63, 139, 98, 0.18), transparent 32%),
    linear-gradient(135deg, #f9faf8, #edf2ee);
}

.edge-screen::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.58) 42%, transparent 58%);
  opacity: calc(var(--edge-build) * 0.42);
  transform: translateX(calc(-68% + var(--edge-progress) * 126%));
}

.edge-wireframe {
  position: absolute;
  inset: 13% 11%;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 18px;
  opacity: calc(1 - var(--edge-build) * 0.78);
  filter: grayscale(calc(var(--edge-build) * 0.8));
  transform: translateY(calc(var(--edge-build) * -22px));
}

.edge-wireframe__line {
  display: block;
  width: 62%;
  height: 16px;
  background: rgba(33, 95, 67, 0.2);
  border-radius: var(--radius-pill);
  transform: scaleX(calc(0.68 + var(--edge-focus) * 0.32));
  transform-origin: left;
}

.edge-wireframe__line--long {
  width: 82%;
  height: 24px;
  background: rgba(33, 95, 67, 0.28);
}

.edge-wireframe__line--short {
  width: 44%;
}

.edge-wireframe__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.edge-wireframe__cards span {
  height: clamp(92px, 11vw, 126px);
  background: rgba(33, 95, 67, 0.08);
  border: 1px solid rgba(33, 95, 67, 0.12);
  border-radius: 6px;
  transform: translateY(calc((1 - var(--edge-focus)) * 18px));
}

.edge-product {
  position: absolute;
  inset: 8% 8%;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 14px;
  opacity: var(--edge-build);
  transform:
    translateY(calc((1 - var(--edge-build)) * 34px))
    scale(calc(0.96 + var(--edge-build) * 0.04));
}

.edge-product__hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(9, 35, 23, 0.92), rgba(33, 95, 67, 0.38)),
    url("./assets/service-final-first-hero.png?v=20260507a") center / cover;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.edge-product__hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at calc(20% + var(--edge-refine) * 46%) 28%, rgba(196, 166, 92, 0.42), transparent 28%);
  mix-blend-mode: screen;
}

.edge-product__hero span,
.edge-product__hero strong {
  position: relative;
  z-index: 1;
}

.edge-product__hero span {
  width: fit-content;
  margin-bottom: 8px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
}

.edge-product__hero strong {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.95;
}

.edge-product__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.edge-product__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.edge-product__nav span {
  height: 7px;
  background: rgba(33, 95, 67, 0.18);
  border-radius: var(--radius-pill);
}

.edge-product__cards span {
  display: grid;
  place-items: center;
  min-height: 72px;
  color: rgba(16, 37, 26, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(33, 95, 67, 0.1);
  border-radius: 6px;
  box-shadow: 0 14px 24px rgba(16, 37, 26, 0.08);
  transform: translateY(calc((1 - var(--edge-refine)) * 16px));
}

.edge-product__cards span:nth-child(1) {
  color: rgba(16, 37, 26, calc(0.66 + var(--edge-focus) * 0.24));
  border-color: rgba(196, 166, 92, calc(0.1 + var(--edge-focus) * 0.38));
  transform: translateY(calc((1 - var(--edge-focus)) * 16px));
}

.edge-product__cards span:nth-child(2) {
  opacity: calc(0.48 + var(--edge-build) * 0.52);
  transform: translateY(calc((1 - var(--edge-build)) * 18px));
}

.edge-product__cards span:nth-child(3) {
  opacity: calc(0.42 + var(--edge-refine) * 0.58);
}

.edge-product__cards span:nth-child(4) {
  opacity: calc(0.34 + var(--edge-market) * 0.66);
  border-color: rgba(196, 166, 92, calc(0.08 + var(--edge-market) * 0.4));
  transform: translateY(calc((1 - var(--edge-market)) * 18px));
}

.edge-polish {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: var(--edge-refine);
}

.edge-polish__pin {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 30px;
  color: #143522;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(196, 166, 92, 0.68);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 24px rgba(16, 37, 26, 0.15);
  transform: translateY(calc((1 - var(--edge-refine)) * 18px));
}

.edge-polish__pin::before {
  position: absolute;
  left: -8px;
  width: 10px;
  aspect-ratio: 1;
  content: "";
  background: #c4a65c;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(196, 166, 92, 0.16);
}

.edge-polish__pin--copy {
  top: 23%;
  right: 12%;
}

.edge-polish__pin--ui {
  top: 54%;
  left: 13%;
}

.edge-polish__pin--flow {
  right: 16%;
  bottom: 20%;
}

.edge-prompt {
  position: absolute;
  left: 7%;
  bottom: 7%;
  z-index: 5;
  width: min(68%, 360px);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 16, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  opacity: calc(0.22 + var(--edge-build) * 0.78);
  transform: translateY(calc((1 - var(--edge-build)) * 24px));
}

.edge-prompt span {
  display: block;
  margin-bottom: 6px;
  color: rgba(196, 166, 92, 0.96);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.edge-prompt p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.edge-progress {
  position: absolute;
  top: 7%;
  right: 7%;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.edge-progress span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

.edge-progress span:nth-child(1) {
  color: rgba(255, 255, 255, calc(0.58 + var(--edge-focus) * 0.36));
  border-color: rgba(196, 166, 92, calc(0.12 + var(--edge-focus) * 0.36));
  opacity: calc(0.54 + var(--edge-focus) * 0.46);
}

.edge-progress span:nth-child(2) {
  color: rgba(255, 255, 255, calc(0.5 + var(--edge-build) * 0.42));
  border-color: rgba(196, 166, 92, calc(0.1 + var(--edge-build) * 0.38));
  opacity: calc(0.36 + var(--edge-build) * 0.64);
}

.edge-progress span:nth-child(3) {
  color: rgba(255, 255, 255, calc(0.46 + var(--edge-refine) * 0.4));
  border-color: rgba(196, 166, 92, calc(0.14 + var(--edge-refine) * 0.42));
  opacity: calc(0.32 + var(--edge-refine) * 0.68);
}

.edge-progress span:nth-child(4) {
  color: rgba(255, 255, 255, calc(0.42 + var(--edge-market) * 0.46));
  border-color: rgba(196, 166, 92, calc(0.1 + var(--edge-market) * 0.46));
  opacity: calc(0.28 + var(--edge-market) * 0.72);
}

.approach {
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
  color: var(--color-ink);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(63, 139, 98, 0.16), transparent 24%),
    var(--color-white);
}

.metrics-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-primary {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 440px;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  color: var(--color-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 241, 239, 0.72)),
    var(--color-paper);
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 26px 90px rgba(7, 8, 7, 0.07);
}

.metric-primary::before {
  position: absolute;
  inset: auto -12% -40% auto;
  width: min(44vw, 520px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(33, 95, 67, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 34px rgba(33, 95, 67, 0.035),
    inset 0 0 0 68px rgba(33, 95, 67, 0.025);
}

.metric-label {
  margin: 0;
  color: var(--color-green-700);
  font-size: 14px;
  font-weight: 600;
}

.metric-value {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 28px 0 34px;
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
}

.metric-value span {
  font-size: clamp(112px, 15vw, 210px);
}

.metric-value small {
  padding-bottom: 0.08em;
  font-size: clamp(42px, 6vw, 82px);
}

.metric-primary p:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: var(--color-graphite);
  font-size: 17px;
}

.metric-bar {
  position: relative;
  z-index: 1;
  height: 8px;
  margin-top: 38px;
  overflow: hidden;
  background: rgba(33, 95, 67, 0.1);
  border-radius: var(--radius-pill);
}

.metric-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-green-700), var(--color-green-500));
  border-radius: inherit;
  transform-origin: left;
  transform: scaleX(0);
}

.metric-primary.is-visible .metric-bar span {
  animation: metricBar 2600ms var(--ease-out) 840ms both;
}

.metric-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.metric-support article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  min-height: 150px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius-sm);
}

.metric-support article > span {
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
}

.metric-support strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
}

.metric-support p {
  margin: 0;
  color: var(--color-graphite);
}

@keyframes metricBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes revealSheen {
  0% {
    opacity: 0;
    transform: translateX(-72%);
  }
  34% {
    opacity: 0.54;
  }
  100% {
    opacity: 0;
    transform: translateX(72%);
  }
}

@keyframes serviceEdgeScan {
  0% {
    opacity: 0;
    transform: translateX(-74%);
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(74%);
  }
}

@keyframes serviceBadgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-12px, -10px, 0);
  }
}

.works-grid {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  padding: 8px 0 26px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  overscroll-behavior-x: contain;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.works-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.works-grid.is-dragging .work-item {
  pointer-events: none;
}

.work-item {
  position: relative;
  flex: 0 0 calc((100% - 54px) / 3.5);
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 490px;
  padding: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius-sm);
}

.work-visual {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: saturate(0.78) contrast(1.06);
}

.client-voices {
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
  color: var(--color-ink);
  background:
    linear-gradient(180deg, rgba(247, 248, 247, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 82% 18%, rgba(196, 166, 92, 0.14), transparent 30%);
  border-top: 1px solid var(--color-line-light);
}

.client-voice-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  margin-top: 54px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 8, 7, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 76px rgba(7, 8, 7, 0.08);
}

.client-voice-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: saturate(0.86) contrast(1.04);
}

.client-voice-card__body {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(14px, 3vw, 34px);
}

.client-voice-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
}

.client-voice-card blockquote {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: var(--color-green-900);
  border-left: 3px solid var(--color-green-700);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.8;
}

.client-voice-card__body > p:last-of-type {
  max-width: 680px;
  margin: 0;
  color: rgba(7, 8, 7, 0.64);
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--color-green-700);
  font-weight: 700;
}

.text-link::after {
  margin-left: 8px;
  content: "↗";
}

.contact-marquee {
  display: flex;
  gap: 34px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px) 0;
  color: var(--color-green-900);
  background: var(--color-white);
  border-top: 1px solid var(--color-line-light);
}

.contact-marquee__track {
  display: flex;
  flex: 0 0 auto;
  gap: 34px;
  min-width: max-content;
  padding-right: 34px;
  animation: contactMarquee 48s linear infinite;
}

.contact-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 0.22em;
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 700;
  line-height: 0.95;
  color: transparent;
  letter-spacing: 0;
  -webkit-text-stroke: 1px rgba(33, 95, 67, 0.34);
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-marquee__track .marquee-logo {
  display: block;
  width: clamp(220px, 34vw, 520px);
  height: auto;
  opacity: 0.58;
}

.contact-marquee__track span:nth-child(even) {
  color: rgba(33, 95, 67, 0.08);
  -webkit-text-stroke-color: rgba(33, 95, 67, 0.18);
}

@keyframes contactMarquee {
  to {
    transform: translateX(calc(-100% - 34px));
  }
}

.contact {
  padding: clamp(88px, 10vw, 132px) clamp(20px, 6vw, 80px) var(--section-pad);
  color: var(--color-ink);
  background: var(--color-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
}

.contact .eyebrow {
  grid-column: 1 / -1;
  color: var(--color-green-700);
}

.contact-copy {
  max-width: 720px;
}

.contact-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--color-graphite);
  font-size: 17px;
}

.contact-link {
  display: inline-grid;
  grid-template-columns: auto 24px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 56px;
  padding: 0 24px;
  color: var(--color-white);
  background: var(--color-green-700);
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius-pill);
  transition:
    transform var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
}

.contact-link:hover {
  background: var(--color-green-500);
  transform: translateY(-3px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  padding: 64px clamp(20px, 6vw, 80px);
  color: var(--color-ink);
  background: var(--color-paper);
  border-top: 1px solid var(--color-line-light);
}

.site-footer p {
  margin: 0;
  width: min(560px, 78vw);
  line-height: 0.9;
}

.footer-brand img {
  max-width: 100%;
}

.site-footer small {
  display: block;
  margin-top: 16px;
  color: var(--color-graphite);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  justify-items: start;
}

.footer-nav a {
  position: relative;
  color: rgba(7, 8, 7, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-green-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out);
}

.footer-nav a:hover {
  color: var(--color-green-700);
}

.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

[data-reveal] {
  --reveal-index: 0;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 32px, 0) scale(0.985);
  transition:
    opacity 1580ms var(--ease-out) calc(var(--reveal-index) * 130ms),
    filter 1580ms var(--ease-out) calc(var(--reveal-index) * 130ms),
    transform 1580ms var(--ease-out) calc(var(--reveal-index) * 130ms);
  will-change: opacity, filter, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal] > :where(.eyebrow, .section-kicker, .work-meta, .service-number, .metric-label),
[data-reveal] > :where(h2, h3, p, span, strong, small, img, a, .metric-value, .metric-bar),
[data-reveal] > div > :where(.eyebrow, h2, h3, p, strong, small),
[data-reveal] > div > div > :where(strong, p) {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 1320ms var(--ease-out),
    filter 1320ms var(--ease-out),
    transform 1320ms var(--ease-out);
  will-change: opacity, filter, transform;
}

[data-reveal].is-visible > :where(.eyebrow, .section-kicker, .work-meta, .service-number, .metric-label),
[data-reveal].is-visible > :where(h2, h3, p, span, strong, small, img, a, .metric-value, .metric-bar),
[data-reveal].is-visible > div > :where(.eyebrow, h2, h3, p, strong, small),
[data-reveal].is-visible > div > div > :where(strong, p) {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

[data-reveal].is-visible > :where(.eyebrow, .section-kicker, .work-meta, .service-number, .metric-label),
[data-reveal].is-visible > div > :where(.eyebrow) {
  transition-delay: 145ms;
}

[data-reveal].is-visible > :where(h2, h3, img, .metric-value),
[data-reveal].is-visible > div > :where(h2, h3) {
  transition-delay: 300ms;
}

[data-reveal].is-visible > :where(p, span, strong, small, a, .metric-bar),
[data-reveal].is-visible > div > :where(p, strong, small),
[data-reveal].is-visible > div > div > :where(strong, p) {
  transition-delay: 500ms;
}

[data-reveal].is-visible > :where(p:nth-of-type(2)),
[data-reveal].is-visible > div > :where(p:nth-of-type(2)) {
  transition-delay: 680ms;
}

.text-char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 0.72em, 0) rotateX(18deg);
  transform-origin: 50% 100%;
  transition:
    opacity 1160ms var(--ease-out),
    filter 1160ms var(--ease-out),
    transform 1160ms var(--ease-out);
  transition-delay: calc(var(--char-base, 90ms) + var(--char-index) * var(--char-step, 14ms));
  will-change: opacity, filter, transform;
}

.is-visible .text-char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateX(0);
}

.section-heading[data-reveal],
.concept-statement[data-reveal],
.contact-inner[data-reveal] {
  transform: translate3d(0, 26px, 0);
}

.service-card[data-reveal],
.metric-primary[data-reveal],
.metric-support article[data-reveal],
.work-item[data-reveal],
.service-feature[data-reveal] {
  transform: translate3d(0, 36px, 0) scale(0.97);
  transition:
    opacity 1580ms var(--ease-out) calc(var(--reveal-index) * 145ms),
    filter 1580ms var(--ease-out) calc(var(--reveal-index) * 145ms),
    transform 1580ms var(--ease-out) calc(var(--reveal-index) * 145ms),
    box-shadow 1580ms var(--ease-out) calc(var(--reveal-index) * 145ms);
}

.service-card[data-reveal].is-visible,
.metric-primary[data-reveal].is-visible,
.metric-support article[data-reveal].is-visible,
.work-item[data-reveal].is-visible,
.service-feature[data-reveal].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 980px) {
  :root {
    --section-pad: 96px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 44px;
  }

  .menu-button {
    display: grid;
  }

  .menu-panel {
    display: grid;
  }

  .hero h1 {
    font-size: 82px;
  }

  .hero-word {
    font-size: 118px;
  }

  .impact-visual h2 {
    font-size: 36px;
  }

  .impact-visual,
  .impact-visual__copy {
    min-height: 72svh;
  }

  .concept-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .concept-copy {
    min-height: auto;
  }

  .thrive-diagram {
    justify-self: start;
    width: min(100%, 720px);
  }

  .concept h2,
  .section-heading h2,
  .contact h2 {
    font-size: 42px;
  }

  .service-feature {
    grid-template-columns: 1fr;
  }

  .service-edge {
    min-height: auto;
    padding-block: 96px;
    --edge-progress: 1 !important;
    --edge-build: 1 !important;
    --edge-refine: 1 !important;
    --edge-focus: 1 !important;
    --edge-market: 1 !important;
  }

  .service-edge__inner {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 0;
  }

  .service-edge__visual {
    min-height: 440px;
  }

  .edge-lab {
    width: 100%;
    min-height: 540px;
    margin-inline: 0;
    transform: none;
  }

  .service {
    min-height: auto;
  }

  .service-stack {
    position: relative;
    top: auto;
  }

  .service-feature img {
    height: 380px;
  }

  .service-card {
    position: relative;
    top: auto;
    flex-basis: min(42vw, 360px);
    gap: 18px;
    min-height: auto;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    top: auto;
  }

  .metrics-showcase,
  .metric-support,
  .client-voice-card,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .metric-primary {
    min-height: 360px;
  }

  .work-item,
  .work-item:first-child {
    flex-basis: min(42vw, 360px);
    grid-column: auto;
    min-height: auto;
  }

  .work-item:first-child .work-visual,
  .work-visual {
    height: auto;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 88svh;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-copy p:last-child {
    font-size: 15px;
  }

  .hero-word {
    right: 20px;
    bottom: 22px;
  }

  .hero-ticker {
    font-size: 64px;
  }

  .hero-ticker .ticker-logo {
    width: 240px;
  }

  .impact-visual {
    min-height: 66svh;
  }

  .impact-visual__image {
    object-position: 62% center;
  }

  .impact-visual__copy {
    min-height: 66svh;
    padding: 74px 20px 56px;
  }

  .impact-visual h2 {
    font-size: 28px;
  }

  .impact-visual__copy > p:last-child {
    font-size: 15px;
  }

  .impact-visual__word {
    bottom: 0.22em;
    font-size: 64px;
  }

  .concept h2,
  .section-heading h2,
  .contact h2 {
    font-size: 32px;
  }

  .menu-panel nav {
    font-size: 34px;
  }

  .service-card {
    flex-basis: min(78vw, 340px);
    padding: 24px;
  }

  .service-feature {
    padding: 10px;
  }

  .service-edge {
    padding-block: 88px;
  }

  .service-edge__visual {
    min-height: 520px;
  }

  .service-edge__stage {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .edge-lab {
    min-height: 520px;
  }

  .edge-browser {
    inset: 15% 5% 19%;
    grid-template-rows: 38px 1fr;
  }

  .edge-product {
    inset: 9% 7%;
  }

  .edge-product__hero {
    min-height: 170px;
    padding: 18px;
  }

  .edge-product__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edge-product__cards span {
    min-height: 56px;
    font-size: 11px;
  }

  .edge-prompt {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

  .edge-progress {
    top: 12px;
    right: 12px;
    gap: 5px;
  }

  .edge-progress span {
    padding: 7px 8px;
    font-size: 9px;
  }

  .service-feature img {
    height: 280px;
  }

  .service-feature > div {
    padding: 16px 10px 18px;
  }

  .service-feature h3 {
    font-size: 28px;
  }

  .metric-primary {
    min-height: 320px;
    padding: 26px;
  }

  .metric-value {
    margin: 22px 0 28px;
  }

  .metric-value span {
    font-size: 92px;
  }

  .metric-value small {
    font-size: 38px;
  }

  .metric-primary p:last-of-type,
  .metric-support p {
    font-size: 14px;
  }

  .metric-support article {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 22px;
  }

  .work-item:first-child .work-visual,
  .work-visual {
    height: auto;
  }

  .client-voice-card img {
    min-height: 240px;
  }

  .work-item,
  .work-item:first-child {
    flex-basis: min(78vw, 340px);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p {
    font-size: 54px;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: auto;
  }

  body.has-custom-cursor .site-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .hero-bg {
    filter: saturate(0.72) contrast(1);
  }

  .hero-video {
    display: none;
  }

  .growth-canvas {
    display: none;
  }

  .impact-visual__image,
  .impact-visual::after {
    animation: none;
  }

  .impact-visual[data-background-reveal] .impact-visual__image {
    opacity: 1;
    filter: saturate(0.9) contrast(1.03);
    transform: none;
  }
}

.ds-page {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.035) 1px, transparent 1px),
    var(--color-white);
  background-size: calc((100vw - clamp(40px, 12vw, 160px)) / 12) 100%;
}

.ds-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px clamp(20px, 6vw, 80px);
  color: var(--color-white);
  background: rgba(7, 8, 7, 0.88);
  border-bottom: 1px solid var(--color-line-dark);
  backdrop-filter: blur(18px);
}

.ds-header nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 500;
}

.ds-hero {
  min-height: 82svh;
  padding: 136px clamp(20px, 6vw, 80px) 96px;
  color: var(--color-ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    url("./assets/hero-bg.jpg") center / cover;
  border-bottom: 1px solid var(--color-line-light);
}

.ds-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 112px;
  font-weight: 600;
  line-height: 0.98;
}

.ds-hero h1 span {
  color: var(--color-green-700);
}

.ds-hero > p:last-child {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(7, 8, 7, 0.68);
}

.ds-section {
  padding: 128px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--color-line-dark);
}

.ds-section:nth-of-type(odd) {
  color: var(--color-ink);
  background: var(--color-white);
  border-top-color: var(--color-line-light);
}

.ds-section__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 0.74fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 54px;
}

.ds-section__head h2 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.08;
}

.ds-principle-grid,
.ds-component-grid,
.ds-motion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ds-principle-grid article,
.ds-motion-grid article {
  min-height: 220px;
  padding: 26px;
  color: var(--color-white);
  background: rgba(16, 37, 26, 0.92);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-sm);
}

.ds-section:nth-of-type(odd) .ds-principle-grid article,
.ds-section:nth-of-type(odd) .ds-motion-grid article {
  color: var(--color-ink);
  background: var(--color-paper);
  border-color: var(--color-line-light);
}

.ds-principle-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--color-green-700);
}

.ds-principle-grid h3,
.ds-light-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.32;
}

.ds-color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ds-color-grid article {
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-sm);
}

.ds-section:nth-of-type(odd) .ds-color-grid article {
  background: rgba(40, 32, 24, 0.035);
  border-color: var(--color-line-light);
}

.ds-color-grid span {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  background: var(--swatch);
  border: 1px solid rgba(40, 32, 24, 0.18);
  border-radius: var(--radius-xs);
}

.ds-color-grid strong,
.ds-color-grid p {
  display: block;
  margin: 0;
  font-size: 12px;
}

.ds-color-grid p {
  color: var(--color-mist);
}

.ds-section:nth-of-type(odd) .ds-color-grid p {
  color: rgba(40, 32, 24, 0.62);
}

.ds-ratio {
  display: flex;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-sm);
}

.ds-ratio span {
  display: grid;
  place-items: center;
  width: var(--w);
  min-height: 74px;
  color: var(--color-white);
  background: var(--c);
  font-size: 11px;
  text-align: center;
}

.ds-ratio span:nth-child(1) {
  color: var(--color-ink);
}

.ds-type-specimen {
  display: grid;
  gap: 28px;
  max-width: 980px;
}

.ds-display,
.ds-h2,
.ds-body,
.ds-latin {
  margin: 0;
}

.ds-display {
  font-family: var(--font-display);
  font-size: 112px;
  font-weight: 600;
  line-height: 1.02;
}

.ds-h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.12;
}

.ds-body {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.9;
}

.ds-latin {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
}

.ds-card {
  position: static;
  grid-template-columns: 64px 1fr;
}

.ds-light-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-sm);
}

.ds-work {
  align-content: start;
}

.ds-work .work-visual {
  height: 300px;
}

.ds-motion-grid strong {
  display: block;
  margin-bottom: 64px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
}

.ds-anti ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ds-anti li {
  padding: 18px;
  background: rgba(33, 95, 67, 0.08);
  border: 1px solid rgba(33, 95, 67, 0.2);
  border-radius: var(--radius-sm);
}

.is-subpage .page-main {
  background:
    linear-gradient(180deg, rgba(247, 248, 247, 0.96), rgba(255, 255, 255, 0.98) 42%),
    radial-gradient(circle at 16% 18%, rgba(63, 139, 98, 0.15), transparent 30%);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 68vh;
  overflow: hidden;
  padding: 156px clamp(20px, 6vw, 80px) 104px;
  color: var(--color-white);
  background: var(--color-green-900);
  isolation: isolate;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(16, 37, 26, 0.98), rgba(33, 95, 67, 0.76)),
    url("/assets/concept-branch.jpg?v=20260507a") center / cover fixed;
  filter: saturate(0.9) contrast(1.04);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.46), transparent 58%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.14), transparent 28%);
}

.page-hero__inner {
  display: grid;
  align-content: end;
  width: min(920px, 100%);
}

.page-hero h1 {
  max-width: 980px;
  margin: 14px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero__inner > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.6vw, 19px);
}

.page-hero__word {
  position: absolute;
  right: -0.08em;
  bottom: -0.38em;
  margin: 0;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--font-display);
  font-size: clamp(92px, 20vw, 260px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.page-band {
  position: relative;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 80px);
}

.page-band + .page-band {
  border-top: 1px solid var(--color-line-light);
}

.page-band--dark {
  color: var(--color-white);
  background:
    linear-gradient(120deg, rgba(16, 37, 26, 0.98), rgba(33, 95, 67, 0.86)),
    var(--color-green-900);
}

.page-band__head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 42px;
}

.page-band h2 {
  max-width: 900px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.12;
}

.page-band__head p:last-child {
  margin: 0;
  color: rgba(7, 8, 7, 0.62);
}

.page-band--dark .page-band__head p:last-child,
.page-band--dark .rich-content,
.page-band--dark .info-list {
  color: rgba(255, 255, 255, 0.78);
}

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.page-split img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.rich-content {
  max-width: 920px;
  color: rgba(7, 8, 7, 0.72);
  font-size: 16px;
  line-height: 2.05;
}

.rich-content h2,
.rich-content h3 {
  margin: 48px 0 16px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.35;
}

.rich-content h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.rich-content h3 {
  font-size: clamp(22px, 2.4vw, 34px);
}

.rich-content p {
  margin: 0 0 20px;
}

.rich-content ul,
.rich-content ol {
  display: grid;
  gap: 12px;
  padding-left: 1.4em;
  margin: 20px 0 28px;
}

.rich-content hr {
  height: 1px;
  margin: 48px 0;
  border: 0;
  background: var(--color-line-light);
}

.service-detail {
  width: min(920px, 100%);
  padding: clamp(28px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 8, 7, 0.08);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(18px);
}

.service-group__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.service-group__intro .page-band__head {
  margin-bottom: 0;
}

.service-group__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 8, 7, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 76px rgba(7, 8, 7, 0.1);
}

.service-group__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(33, 95, 67, 0.1), transparent 46%);
  pointer-events: none;
}

.service-group__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.service-group__visual--wide {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-card {
  position: relative;
  display: grid;
  min-height: 280px;
  align-content: end;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 8, 7, 0.08);
  border-radius: var(--radius-sm);
  transition:
    transform var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
}

.page-card::before {
  position: absolute;
  inset: auto 18px 18px auto;
  width: min(240px, 52%);
  aspect-ratio: 1503 / 225;
  content: "";
  background: url("/assets/thrive-logo.png?v=20260629a") center / contain no-repeat;
  opacity: 0.08;
  transform: rotate(-8deg);
}

.page-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(33, 95, 67, 0.28);
}

.page-card span,
.article-row time {
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-card h3 {
  position: relative;
  margin: 48px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 700;
  line-height: 1.28;
}

.page-card p {
  position: relative;
  margin: 0;
  color: rgba(7, 8, 7, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

.article-list {
  display: grid;
  border-top: 1px solid var(--color-line-light);
}

.article-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-line-light);
}

.article-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.28;
}

.article-row span {
  color: var(--color-green-700);
  font-size: 18px;
}

.info-list {
  display: grid;
  max-width: 920px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.info-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.info-list dt {
  color: rgba(255, 255, 255, 0.58);
}

.info-list dd {
  margin: 0;
  color: var(--color-white);
  font-weight: 600;
}

.thrive-form {
  display: grid;
  gap: 22px;
  width: min(760px, 100%);
}

.form-status {
  width: min(760px, 100%);
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.7;
}

.form-status--success {
  color: var(--color-green-700);
  background: rgba(33, 95, 67, 0.1);
  border: 1px solid rgba(33, 95, 67, 0.24);
}

.form-status--error {
  color: #8f1f1f;
  background: rgba(143, 31, 31, 0.08);
  border: 1px solid rgba(143, 31, 31, 0.2);
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thrive-form label {
  display: grid;
  gap: 8px;
  color: rgba(7, 8, 7, 0.72);
  font-weight: 700;
}

.field-label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--color-green-700);
}

.required-badge {
  display: inline-grid;
  min-width: 38px;
  min-height: 22px;
  place-items: center;
  padding: 2px 8px;
  color: var(--color-white);
  background: var(--color-green-700);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.thrive-form input,
.thrive-form textarea,
.thrive-form select {
  width: 100%;
  padding: 16px 18px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 8, 7, 0.12);
  border-radius: var(--radius-sm);
  outline: 0;
}

.thrive-form input:focus,
.thrive-form textarea:focus,
.thrive-form select:focus {
  border-color: rgba(33, 95, 67, 0.58);
  box-shadow: 0 0 0 4px rgba(33, 95, 67, 0.08);
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: center;
  font-size: 14px;
}

.check-row input {
  padding: 0;
}

.thrive-form .check-row__copy {
  color: rgba(7, 8, 7, 0.72);
}

.submit-button,
.back-link {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 24px;
  color: var(--color-white);
  background: var(--color-green-700);
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.back-link {
  margin-top: 34px;
  background: var(--color-ink);
}

.route-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.route-links a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: end;
  padding: 22px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 8, 7, 0.08);
  border-radius: var(--radius-sm);
  transition:
    transform var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
}

.route-links a:hover {
  background: var(--color-white);
  border-color: rgba(33, 95, 67, 0.3);
  transform: translateY(-6px);
}

.route-links span {
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.route-links strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.thrive-form a {
  color: var(--color-green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.empty-note {
  margin: 0;
  color: rgba(7, 8, 7, 0.58);
  font-size: 18px;
}

@media (max-width: 980px) {
  .page-split,
  .service-group__intro,
  .page-card-grid,
  .route-links,
  .article-row,
  .info-list div {
    grid-template-columns: 1fr;
  }

  .page-card {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: 58vh;
    padding-top: 132px;
  }

  .page-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-detail {
    padding: 24px 20px;
  }
}

@media (max-width: 980px) {
  .ds-header,
  .ds-section__head,
  .ds-principle-grid,
  .ds-component-grid,
  .ds-motion-grid,
  .ds-anti ul {
    grid-template-columns: 1fr;
  }

  .ds-header nav {
    display: none;
  }

  .ds-hero h1,
  .ds-display {
    font-size: 76px;
  }

  .ds-section__head h2,
  .ds-h2 {
    font-size: 42px;
  }

  .ds-color-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ds-hero,
  .ds-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ds-hero h1,
  .ds-display {
    font-size: 54px;
  }

  .ds-section__head h2,
  .ds-h2 {
    font-size: 32px;
  }

  .ds-ratio {
    display: grid;
  }

  .ds-ratio span {
    width: 100%;
  }
}
