:root {
  --ink: #11120f;
  --ink-soft: #1b1d18;
  --paper: #f1f0e9;
  --paper-deep: #e6e4dc;
  --white: #ffffff;
  --lime: #d9ff43;
  --lime-dark: #b7dc28;
  --muted: #6f716b;
  --line: rgba(17, 18, 15, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --container: 1240px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 24px 80px rgba(17, 18, 15, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 18, 15, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.brand-dot {
  color: var(--lime);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

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

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  transition: transform 200ms ease, background-color 200ms ease;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--white);
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 170px 0 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 40%, rgba(217, 255, 67, 0.11), transparent 25%),
    var(--ink);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(217, 255, 67, 0.16);
  border-radius: 50%;
}

.orbit-one {
  top: -320px;
  right: -280px;
  width: 900px;
  height: 900px;
}

.orbit-two {
  right: 80px;
  bottom: -460px;
  width: 720px;
  height: 720px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: 74px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--lime);
}

.hero-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4.4rem, 7.8vw, 7.65rem);
  font-weight: 800;
  letter-spacing: -0.073em;
  line-height: 0.86;
}

.title-line {
  display: block;
}

.title-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lime);
}

.lime-dot {
  color: var(--lime);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 52px;
}

.hero-bottom > p {
  max-width: 510px;
  margin: 0;
  color: #c8cac3;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

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

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

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.4);
  transform: rotate(2.4deg);
}

.hero-visual::before {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.visual-topline,
.visual-rank,
.visual-metrics {
  position: relative;
  z-index: 1;
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  background: #dce1d7;
  border-radius: 999px;
}

.live-pill i {
  width: 6px;
  height: 6px;
  background: #42a84b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(66, 168, 75, 0.12);
}

.visual-rank {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 27px;
}

.visual-rank span {
  color: var(--muted);
  font-size: 12px;
}

.visual-rank strong {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.chart-wrap {
  position: relative;
  height: 210px;
  margin-top: 20px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 51px;
}

.chart-wrap svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  transition: stroke-dashoffset 1.8s cubic-bezier(.2,.7,.2,1) 300ms;
}

.hero-visual.is-visible .chart-line {
  stroke-dashoffset: 0;
}

.chart-wrap circle {
  fill: var(--lime);
  stroke: var(--ink);
  stroke-width: 4px;
}

.visual-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visual-metrics > div {
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.visual-metrics span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.visual-metrics strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.floating-keyword {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
  font-size: 11px;
  white-space: nowrap;
}

.floating-keyword b {
  color: var(--lime);
}

.keyword-one {
  top: 33%;
  left: -58px;
  transform: rotate(-5deg);
}

.keyword-two {
  right: -38px;
  bottom: 24%;
  transform: rotate(3deg);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 45px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8f918b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  transform: translateX(-50%);
}

.scroll-line {
  display: block;
  width: 50px;
  height: 1px;
  background: #585a55;
}

.marquee {
  color: var(--ink);
  background: var(--lime);
  border-block: 1px solid var(--ink);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 17px 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  animation: marquee 28s linear infinite;
}

.marquee-track i {
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-label {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  margin-bottom: 66px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label p {
  margin: 0;
}

.section-label-light {
  border-color: var(--line-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  gap: 110px;
}

.display-heading {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 0.96;
}

.display-heading em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.3px currentColor;
}

.intro-copy {
  align-self: end;
}

.intro-copy p {
  color: var(--muted);
}

.intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.dark-link {
  margin-top: 24px;
}

.about-visual {
  position: relative;
  height: 570px;
  margin: 90px 0 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--lime);
  overflow: hidden;
}

.about-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,18,15,.7), transparent 48%, rgba(17,18,15,.08));
  content: "";
  pointer-events: none;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.about-visual:hover img {
  transform: scale(1.025);
}

.about-visual figcaption {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 34px;
  max-width: 420px;
  color: var(--white);
}

.about-visual figcaption span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.about-visual figcaption p {
  margin: 9px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.about-visual-stamp {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  padding: 20px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  transform: rotate(8deg);
}

.about-visual-stamp strong {
  font-size: 24px;
  line-height: 1;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 90px;
}

.principle-card {
  position: relative;
  min-height: 365px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(17,18,15,.08);
  border-radius: var(--radius-md);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.principle-card:nth-child(2) {
  background: var(--lime);
}

.principle-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.card-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.mini-icon {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 46px auto 42px;
}

.target-icon {
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.target-icon::before,
.target-icon::after,
.target-icon i {
  position: absolute;
  inset: 18px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.target-icon::after {
  inset: 37px;
  background: var(--lime);
}

.target-icon i {
  inset: -13px 46px;
  border: 0;
  border-left: 1px solid var(--ink);
  border-radius: 0;
}

.layers-icon i {
  position: absolute;
  width: 70px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: rotate(16deg);
}

.layers-icon i:nth-child(1) { top: 4px; left: 2px; }
.layers-icon i:nth-child(2) { top: 25px; left: 12px; }
.layers-icon i:nth-child(3) { top: 46px; left: 22px; }

.signal-icon {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  padding-bottom: 10px;
}

.signal-icon i {
  width: 11px;
  background: var(--ink);
  border-radius: 999px;
}

.signal-icon i:nth-child(1) { height: 25px; }
.signal-icon i:nth-child(2) { height: 44px; }
.signal-icon i:nth-child(3) { height: 62px; }
.signal-icon i:nth-child(4) { height: 82px; background: var(--lime); }

.principle-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.principle-card:nth-child(2) p {
  color: rgba(17,18,15,.68);
}

.services-heading,
.work-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 84px;
}

.services-heading > p,
.work-heading > p {
  margin: 0 0 7px;
  color: #a9aba5;
}

.work-heading > p {
  color: var(--muted);
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(300px, 1.2fr) minmax(210px, .55fr) 48px;
  align-items: center;
  gap: 30px;
  min-height: 205px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 220ms ease, padding 220ms ease;
}

.service-row:hover {
  color: var(--lime);
  padding-inline: 16px;
}

.service-number {
  align-self: start;
  padding-top: 8px;
  color: #777a72;
  font-size: 11px;
  font-weight: 700;
}

.service-row h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.service-row p {
  max-width: 620px;
  margin: 0;
  color: #a9aba5;
  font-size: 14px;
}

.service-row ul {
  margin: 0;
  padding: 0;
  color: #a9aba5;
  font-size: 12px;
  list-style: none;
}

.service-row li::before {
  margin-right: 8px;
  color: var(--lime);
  content: "→";
}

.service-arrow,
.project-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  min-height: 620px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.project-card:nth-child(3) {
  grid-column: 1 / -1;
}

.project-lime {
  background: var(--lime);
}

.project-dark {
  color: var(--white);
  background: var(--ink);
}

.project-cream {
  background: #dedbd1;
}

.project-image {
  position: relative;
  height: 390px;
  margin: 28px 0;
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(17,18,15,.12);
  border-radius: 24px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.045);
}

.project-image-dark {
  border-color: rgba(255,255,255,.1);
}

.project-image-wide {
  height: 420px;
}

.image-chip {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(17,18,15,.88);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  font-size: 11px;
}

.project-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.map-visual,
.audit-visual,
.cluster-visual {
  position: relative;
  height: 390px;
  margin: 28px 0;
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(17,18,15,.12);
  border-radius: 24px;
  overflow: hidden;
}

.road {
  position: absolute;
  display: block;
  height: 2px;
  background: var(--ink);
  transform-origin: left;
}

.road::after {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  border-block: 1px dashed rgba(17,18,15,.3);
  content: "";
}

.road-a { top: 32%; left: -10%; width: 130%; transform: rotate(18deg); }
.road-b { top: 70%; left: -10%; width: 130%; transform: rotate(-13deg); }
.road-c { top: -10%; left: 45%; width: 110%; transform: rotate(78deg); }

.pin {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: var(--ink);
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 6px 12px rgba(0,0,0,.18);
  transform: rotate(-45deg);
}

.pin-a { top: 24%; left: 22%; }
.pin-b { top: 51%; right: 25%; }
.pin-c { bottom: 14%; left: 39%; }

.map-chip,
.audit-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 11px;
}

.project-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.project-copy h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.project-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.project-dark .project-copy p {
  color: #a9aba5;
}

.audit-visual {
  padding: 34px;
  background: #20231d;
  border-color: rgba(255,255,255,.1);
}

.audit-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9fa19c;
  font-size: 10px;
  letter-spacing: .12em;
}

.audit-score strong {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 28px;
}

.audit-bars {
  display: grid;
  gap: 22px;
  margin-top: 55px;
}

.audit-bars span {
  position: relative;
  display: block;
  height: 9px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}

.audit-bars span::after {
  display: block;
  width: var(--bar);
  height: 100%;
  background: var(--lime);
  border-radius: inherit;
  content: "";
}

.audit-note {
  color: var(--ink);
  background: var(--lime);
}

.cluster-visual {
  height: 420px;
  background: rgba(255,255,255,.32);
}

.cluster-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cluster-visual path {
  fill: none;
  stroke: rgba(17,18,15,.3);
  stroke-dasharray: 5 8;
}

.cluster-main,
.cluster-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 700;
}

.cluster-main {
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 35px rgba(17,18,15,.14);
  font-size: 12px;
  transform: translate(-50%, -50%);
}

.cluster-node {
  width: 84px;
  height: 84px;
  background: var(--paper);
  font-size: 11px;
}

.node-one { top: 11%; left: 10%; }
.node-two { top: 11%; right: 10%; }
.node-three { bottom: 9%; left: 10%; }
.node-four { right: 10%; bottom: 9%; }

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 120px;
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro > p {
  max-width: 490px;
  margin: 28px 0 34px;
  color: var(--muted);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  min-height: 185px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.process-list h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 120px;
}

.faq-intro {
  max-width: 400px;
  color: #a9aba5;
}

.accordion {
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-item button span {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.faq-item button i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid #6c6e68;
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] i {
  background: var(--lime);
  border-color: var(--lime);
}

.faq-item button[aria-expanded="true"] i::before,
.faq-item button[aria-expanded="true"] i::after {
  background: var(--ink);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 58px 28px 0;
}

.faq-answer p {
  margin: 0;
  color: #a9aba5;
}

.contact {
  background: var(--lime);
}

.contact-card {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 100px;
  padding: 66px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--ink);
}

.contact-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: .95;
}

.contact-copy h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.3px var(--ink);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.contact-detail {
  margin-top: 48px;
}

.contact-detail span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.contact-detail a {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid;
}

.contact-form {
  padding: 34px;
  color: var(--white);
  background: var(--ink);
  border-radius: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #a9aba5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #454740;
  border-radius: 0;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
}

.contact-form .button {
  color: var(--ink);
  background: var(--lime);
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--lime);
  font-size: 13px;
}

.site-footer {
  padding: 75px 0 22px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr .55fr .55fr 50px;
  gap: 70px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-grid > div:first-child > p {
  max-width: 370px;
  color: #8f918b;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links span {
  margin-bottom: 8px;
  color: #767872;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.footer-links a {
  color: #c3c5be;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-up {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 21px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 18px;
  color: #6f716b;
  border-top: 1px solid var(--line-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title .reveal:nth-child(2) { transition-delay: 80ms; }
.hero-title .reveal:nth-child(3) { transition-delay: 160ms; }

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    min-height: 1230px;
  }

  .hero-bottom {
    align-items: center;
  }

  .intro-grid,
  .services-heading,
  .work-heading,
  .process-grid,
  .faq-grid,
  .contact-card {
    gap: 60px;
  }

  .service-row {
    grid-template-columns: 55px minmax(260px, 1.1fr) minmax(180px, .55fr) 44px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 32px;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav > a {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
  }

  .primary-nav .nav-cta {
    margin-top: 16px;
    font-size: 20px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 115px;
  }

  .hero-grid {
    gap: 75px;
  }

  .hero-title {
    font-size: clamp(3.7rem, 14vw, 6.8rem);
  }

  .hero-bottom {
    display: block;
  }

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

  .hero-visual {
    width: 94%;
    margin: 0 auto;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid,
  .services-heading,
  .work-heading,
  .process-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 40px;
  }

  .intro-copy {
    max-width: 600px;
  }

  .about-visual {
    height: 480px;
  }

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

  .principle-card {
    min-height: 310px;
  }

  .mini-icon {
    margin: 32px auto;
  }

  .services-heading,
  .work-heading {
    gap: 28px;
    margin-bottom: 56px;
  }

  .service-row {
    grid-template-columns: 45px 1fr 42px;
    gap: 18px;
    min-height: auto;
    padding: 32px 0;
  }

  .service-row ul {
    display: none;
  }

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

  .project-card:nth-child(3) {
    grid-column: auto;
  }

  .process-intro {
    position: static;
  }

  .contact-card {
    padding: 38px;
  }

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

  .footer-up {
    grid-column: 3;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .hero-title {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .hero-bottom > p {
    font-size: 16px;
  }

  .hero-visual {
    width: 100%;
    padding: 20px;
    border-radius: 26px;
    transform: rotate(1deg);
  }

  .chart-wrap {
    height: 160px;
  }

  .keyword-one {
    top: 36%;
    left: -10px;
  }

  .keyword-two {
    right: -10px;
    bottom: 20%;
  }

  .visual-metrics strong {
    font-size: 14px;
  }

  .section-label {
    grid-template-columns: 45px 1fr;
    margin-bottom: 42px;
  }

  .display-heading {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .principles-grid {
    margin-top: 58px;
  }

  .service-row {
    grid-template-columns: 34px 1fr;
  }

  .service-arrow {
    display: none;
  }

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

  .project-card {
    min-height: auto;
    padding: 18px;
    border-radius: 25px;
  }

  .about-visual {
    height: 440px;
    margin-top: 58px;
    border-radius: 25px;
    box-shadow: 7px 7px 0 var(--lime);
  }

  .about-visual img {
    object-position: 65% center;
  }

  .about-visual figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .about-visual-stamp {
    top: 18px;
    right: 18px;
    width: 88px;
    height: 88px;
    padding: 14px;
  }

  .map-visual,
  .audit-visual,
  .cluster-visual,
  .project-image,
  .project-image-wide {
    height: 300px;
  }

  .cluster-node {
    width: 64px;
    height: 64px;
  }

  .cluster-main {
    width: 108px;
    height: 108px;
  }

  .project-copy h3 {
    font-size: 26px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
  }

  .process-list h3 {
    font-size: 28px;
  }

  .faq-item button span {
    font-size: 17px;
  }

  .contact-card {
    padding: 24px;
    border-radius: 25px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .contact-form {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-up {
    grid-column: 2;
    justify-self: end;
  }

  .footer-bottom {
    gap: 20px;
  }

  .footer-bottom span:last-child {
    text-align: right;
  }
}

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

  .chart-line {
    stroke-dashoffset: 0;
  }
}
