:root {
  --ink: #101110;
  --ink-soft: #292b28;
  --paper: #f3f3ed;
  --paper-warm: #e9e9e1;
  --line: rgba(16, 17, 16, 0.18);
  --muted: #666960;
  --lime: #c8ff3d;
  --lime-deep: #4f7000;
  --focus: #678d0b;
  --shell: min(1200px, calc(100vw - 64px));
  --display: "Arial Narrow", "Roboto Condensed", "PingFang SC", "Microsoft YaHei", sans-serif;
  --body: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image: linear-gradient(rgba(16, 17, 16, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 17, 16, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 9px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 12vw, 168px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 1px solid var(--ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1,
h2 {
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 78px);
}

h1 em,
h2 em {
  color: var(--lime-deep);
  font-style: normal;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 243, 237, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 6px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-mark::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
}

.brand-mark i {
  top: 0;
  left: 50%;
  width: 50%;
  height: 50%;
  background: var(--lime);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 13px;
  font-weight: 650;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 10px 13px 10px 16px;
  border: 1px solid var(--ink);
  background: var(--lime);
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--lime);
}

.menu-button {
  display: none;
}

.hero {
  min-height: 100svh;
  padding-top: 150px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.hero-copy {
  padding-bottom: 28px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 38px;
  font-size: clamp(70px, 9vw, 126px);
}

.hero-intro {
  max-width: 580px;
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  letter-spacing: 0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding: 12px 18px 12px 20px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button span {
  font-size: 18px;
}

.button-primary {
  background: var(--lime);
}

.button-primary:hover {
  box-shadow: 6px 6px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  aspect-ratio: 0.77;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(200, 255, 61, 0.78) 46% 47.2%, transparent 47.2%),
    radial-gradient(circle at 74% 22%, rgba(200, 255, 61, 0.72) 0 5%, transparent 5.3%),
    radial-gradient(circle at 28% 74%, #61655e 0 12%, transparent 12.3%),
    linear-gradient(142deg, #171917 0 34%, #30332f 34% 55%, #0f100f 55% 73%, #252824 73%);
  box-shadow: 16px 16px 0 var(--paper-warm);
}

.visual-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.48;
  background: repeating-linear-gradient(90deg, transparent 0 50px, rgba(255, 255, 255, 0.07) 50px 51px);
}

.visual-frame::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  content: "";
}

.visual-meta,
.visual-caption {
  position: absolute;
  z-index: 2;
  right: 42px;
  left: 42px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.visual-meta {
  top: 42px;
}

.visual-caption {
  bottom: 40px;
  align-items: flex-end;
}

.visual-caption strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.visual-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(76%, 370px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.orbit-ring,
.orbit-core {
  position: absolute;
  border-radius: 50%;
}

.orbit-ring {
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.ring-one {
  inset: 0;
}

.ring-two {
  inset: 17%;
}

.orbit-core {
  inset: 34%;
  border: 1px solid var(--lime);
  background: rgba(16, 17, 16, 0.55);
}

.orbit-core::before,
.orbit-core::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: var(--lime);
  transform: translate(-50%, -50%);
}

.orbit-core::before {
  width: 150%;
  height: 1px;
}

.orbit-core::after {
  width: 1px;
  height: 150%;
}

.orbit-core i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--lime);
  transform: translate(-50%, -50%) rotate(45deg);
}

.lime-tab {
  position: absolute;
  right: -18px;
  bottom: 70px;
  width: 38px;
  height: 96px;
  border: 1px solid var(--ink);
  background: var(--lime);
}

.hero-marquee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 50px 32px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-marquee i {
  width: 4px;
  height: 4px;
  background: var(--ink);
  transform: rotate(45deg);
}

.statement {
  display: grid;
  grid-template-columns: minmax(80px, 0.27fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.section-index {
  padding-top: 48px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}

.statement-content h2 {
  max-width: 1020px;
}

.statement-content h2 span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.statement-content h2 span::after {
  position: absolute;
  right: -8px;
  bottom: 3px;
  left: -5px;
  z-index: -1;
  height: 22%;
  content: "";
  background: var(--lime);
}

.statement-content > p:last-child {
  max-width: 690px;
  margin: 46px 0 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

.services {
  background: var(--ink);
  color: var(--paper);
}

.services .eyebrow,
.services .section-heading > p {
  color: #a7aaa2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.service-card {
  display: grid;
  grid-template-columns: 0.15fr minmax(250px, 0.8fr) 1.25fr 0.8fr;
  gap: 30px;
  align-items: center;
  min-height: 230px;
  padding-block: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-number {
  color: var(--lime);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.service-title h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.04em;
}

.service-card > p {
  max-width: 420px;
  margin: 0;
  color: #c3c5bf;
  font-size: 14px;
}

.service-card ul {
  margin: 0;
  padding: 0;
  color: #a7aaa2;
  font-size: 12px;
  line-height: 2.15;
  list-style: none;
}

.service-card li::before {
  margin-right: 9px;
  color: var(--lime);
  content: "+";
}

.service-icon {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid #5f625b;
}

.service-icon::before,
.service-icon::after,
.service-icon i,
.service-icon b {
  position: absolute;
  content: "";
}

.icon-strategy::before {
  inset: 9px;
  border: 1px solid var(--lime);
  border-radius: 50%;
}

.icon-strategy::after {
  top: 23px;
  left: 6px;
  width: 35px;
  height: 1px;
  background: #fff;
  transform: rotate(-35deg);
}

.icon-content::before {
  inset: 10px 20px 10px 9px;
  background: var(--lime);
}

.icon-content::after {
  inset: 14px 8px 14px 27px;
  border: 1px solid #fff;
}

.icon-operation::before,
.icon-operation::after {
  top: 50%;
  left: 50%;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.icon-operation::before {
  width: 29px;
  height: 29px;
}

.icon-operation::after {
  width: 12px;
  height: 12px;
  background: var(--lime);
}

.approach {
  background: var(--paper-warm);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 11vw, 160px);
}

.approach-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 40px 0 34px;
  color: var(--muted);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  min-height: 184px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.process-number {
  padding-top: 5px;
  color: var(--lime-deep);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 16px;
  font-size: 31px;
  line-height: 1;
}

.process-list p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.scenes {
  border-bottom: 1px solid var(--line);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.scene-grid article {
  position: relative;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.scene-grid article::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transition: transform 220ms ease;
}

.scene-grid article:hover {
  background: var(--ink);
  color: var(--paper);
}

.scene-grid article:hover::after {
  border-color: var(--lime);
  transform: scale(1.25);
}

.scene-label {
  display: inline-block;
  margin-bottom: 90px;
  padding: 3px 9px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.scene-grid h3 {
  max-width: 240px;
  margin-bottom: 20px;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.scene-grid p {
  max-width: 290px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.scene-grid article:hover p {
  color: #b9bcb4;
}

.scene-arrow {
  position: absolute;
  right: 30px;
  bottom: 24px;
  z-index: 1;
  color: var(--lime-deep);
  font-size: 24px;
}

.about {
  padding-bottom: clamp(110px, 14vw, 190px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: center;
}

.about-frame {
  position: relative;
  aspect-ratio: 0.94;
  overflow: hidden;
  border: 1px solid var(--ink);
  background:
    radial-gradient(circle at 72% 32%, rgba(200, 255, 61, 0.95) 0 10%, transparent 10.4%),
    linear-gradient(42deg, transparent 0 47%, rgba(243, 243, 237, 0.2) 47% 48%, transparent 48%),
    linear-gradient(142deg, #20221f 0 28%, #51554e 28% 43%, #171917 43% 71%, #333630 71%);
}

.about-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
}

.frame-corner {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-color: #fff;
  border-style: solid;
}

.corner-a { top: 24px; left: 24px; border-width: 1px 0 0 1px; }
.corner-b { top: 24px; right: 24px; border-width: 1px 1px 0 0; }
.corner-c { right: 24px; bottom: 24px; border-width: 0 1px 1px 0; }
.corner-d { bottom: 24px; left: 24px; border-width: 0 0 1px 1px; }

.about-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about-shape::before,
.about-shape::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.about-shape::before {
  inset: 18%;
  border: 1px solid var(--lime);
}

.about-shape::after {
  inset: 40%;
  background: var(--lime);
}

.about-shape i,
.about-shape b {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -20%;
  width: 140%;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.64);
}

.about-shape b {
  transform: rotate(90deg);
}

.about-coordinates {
  position: absolute;
  right: 42px;
  bottom: 36px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.about-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.about-copy > p + p:not(.eyebrow) {
  margin-top: 18px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
}

.values-list div {
  padding: 22px 18px 0 0;
}

.values-list dt {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
}

.values-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.contact::before {
  position: absolute;
  top: -280px;
  right: -240px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(200, 255, 61, 0.28);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 100px rgba(200, 255, 61, 0.025), 0 0 0 200px rgba(200, 255, 61, 0.02);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  color: #afb1aa;
}

.contact h2 {
  max-width: 960px;
  margin-bottom: 42px;
  font-size: clamp(50px, 8vw, 108px);
}

.contact h2 em {
  display: inline-block;
  color: var(--lime);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 40px;
  color: #b8bab3;
}

.button-large {
  min-width: 210px;
  color: var(--ink);
}

.contact .button-primary:hover {
  box-shadow: 6px 6px 0 var(--paper);
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 95px;
  color: #777b72;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-note i {
  width: 4px;
  height: 4px;
  background: var(--lime);
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .js .menu-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 9px 0 9px 12px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
  }

  .menu-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 15px;
  }

  .menu-icon i {
    position: absolute;
    right: 0;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-icon i:first-child { top: 3px; }
  .menu-icon i:last-child { top: 11px; }
  .menu-button[aria-expanded="true"] .menu-icon i:first-child { top: 7px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-icon i:last-child { top: 7px; transform: rotate(-45deg); }

  .js .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 110px max(28px, calc((100vw - 760px) / 2));
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, visibility 160ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .js .site-nav a {
    font-family: var(--display);
    font-size: clamp(30px, 7vw, 46px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.25;
  }

  .js .site-nav .nav-cta {
    margin-top: 15px;
    font-family: var(--body);
    font-size: 14px;
    letter-spacing: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  html:not(.js) .site-header {
    position: static;
    border-bottom: 1px solid var(--line);
  }

  html:not(.js) .header-inner {
    flex-wrap: wrap;
    gap: 16px 28px;
    padding-block: 18px;
  }

  html:not(.js) .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 136px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(100%, 600px);
    margin-left: auto;
  }

  .visual-frame {
    min-height: 0;
    aspect-ratio: 1.15;
  }

  .section-heading,
  .approach-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 34px;
  }

  .service-card {
    grid-template-columns: 60px minmax(220px, 0.9fr) 1.1fr;
  }

  .service-card ul {
    display: none;
  }

  .approach-copy {
    position: static;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .scene-grid article {
    min-height: 300px;
  }

  .scene-label {
    margin-bottom: 54px;
  }

  .about-visual {
    width: min(100%, 600px);
  }

  .about-grid {
    gap: 75px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  html {
    scroll-padding-top: 74px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 88px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-name {
    font-size: 11px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(58px, 19vw, 86px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 26px;
  }

  .button {
    gap: 34px;
  }

  .visual-frame {
    aspect-ratio: 0.92;
    box-shadow: 9px 9px 0 var(--paper-warm);
  }

  .visual-frame::after {
    inset: 15px;
  }

  .visual-meta,
  .visual-caption {
    right: 28px;
    left: 28px;
  }

  .visual-meta { top: 28px; }
  .visual-caption { bottom: 28px; }
  .lime-tab { right: -9px; width: 26px; height: 70px; }

  .hero-marquee {
    gap: 9px;
    padding-top: 42px;
    font-size: 9px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-index {
    display: none;
  }

  .statement-content > p:last-child {
    margin-top: 34px;
    font-size: 15px;
  }

  h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .service-card {
    grid-template-columns: 36px 1fr;
    gap: 24px 14px;
    min-height: 0;
    padding-block: 34px;
  }

  .service-number {
    align-self: start;
    padding-top: 16px;
  }

  .service-title {
    gap: 16px;
  }

  .service-title h3 {
    font-size: 25px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-card > p {
    grid-column: 2;
  }

  .approach-grid {
    gap: 70px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    min-height: 160px;
    padding-block: 32px;
  }

  .scene-grid article {
    min-height: 310px;
    padding: 28px;
  }

  .about-grid {
    gap: 60px;
  }

  .values-list {
    gap: 9px;
  }

  .values-list div {
    padding-right: 3px;
  }

  .values-list dt {
    font-size: 21px;
  }

  .values-list dd {
    font-size: 10px;
    line-height: 1.65;
  }

  .contact::before {
    top: -100px;
    right: -300px;
  }

  .contact h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .contact-note {
    margin-top: 70px;
  }
}

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

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

@media (forced-colors: active) {
  .eyebrow > span,
  .brand-mark i,
  .hero-marquee i,
  .contact-note i {
    background: CanvasText;
  }

  .visual-frame,
  .about-frame {
    background: Canvas;
  }
}
