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

:root {
  --black: #080808;
  --white: #ffffff;
  --paper: #f5f5f7;
  --silver: #d2d2d7;
  --muted: #6e6e73;
  --lime: #b8f500;
  --lime-deep: #497400;
  --line: rgba(8, 8, 8, 0.14);
  --display:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  --text:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--white);
  font-family: var(--text);
  font-size: 16px;
  letter-spacing: 0;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: var(--text);
}

img {
  display: block;
  width: 100%;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 18px 0;
  pointer-events: none;
}

.nav-shell {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 18px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px rgba(8, 8, 8, 0.06);
  backdrop-filter: blur(24px) saturate(150%);
  pointer-events: auto;
}

.brand,
.footer-brand {
  width: fit-content;
  font-size: 21px;
  font-weight: 500;
  white-space: nowrap;
}

.brand > span,
.footer-brand > span {
  color: var(--lime);
  font-weight: 800;
}

.brand strong,
.footer-brand strong {
  color: var(--lime-deep);
  font-weight: 500;
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(8, 8, 8, 0.62);
  font-size: 14px;
}

.page-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.page-nav a:hover,
.site-footer nav a:hover {
  color: var(--lime-deep);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--lime);
  color: var(--black);
}

.page-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--lime);
}

.service-hero {
  position: relative;
  min-height: 760px;
  height: 92svh;
  max-height: 980px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px 5vw 82px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-arrive 1200ms cubic-bezier(0.2, 0.7, 0, 1) both;
}

.hero-copy {
  width: min(750px, 61vw);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--lime-deep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(68px, 7.2vw, 116px);
  font-weight: 600;
  line-height: 0.91;
}

.hero-copy h1 span,
.section-head h2 span,
.process-head h2 span,
.fit-head h2 span,
.seo-bridge h2 span,
.final-cta h2 span,
.intro-copy h2 span {
  display: block;
  color: var(--lime-deep);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(8, 8, 8, 0.66);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button-dark:hover {
  background: var(--lime);
  color: var(--black);
}

.button-light {
  border-color: rgba(8, 8, 8, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.button-light:hover {
  border-color: var(--black);
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(8, 8, 8, 0.56);
  font-size: 12px;
}

.scroll-cue span:last-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 8, 8, 0.18);
  border-radius: 50%;
}

.result-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  color: var(--white);
}

.result-band p {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
  padding: 0 4vw;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--display);
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 600;
}

.result-band p:last-child {
  border-right: 0;
}

.result-band span {
  color: var(--lime);
  font-family: var(--text);
  font-size: 11px;
  font-weight: 600;
}

.intro-section,
.deliverables,
.fit-section,
.faq {
  padding: 140px 5vw;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.38fr 1.62fr;
  gap: 7vw;
}

.section-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.section-label span:first-child {
  color: var(--black);
  font-weight: 600;
}

.intro-copy h2,
.section-head h2,
.process-head h2,
.fit-head h2,
.seo-bridge h2,
.faq-head h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(56px, 6.6vw, 104px);
  font-weight: 600;
  line-height: 0.95;
}

.intro-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  max-width: 920px;
  margin-top: 48px;
}

.intro-text p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.system-visual {
  margin: 0;
  padding: 0 5vw 140px;
}

.system-image {
  height: min(72vw, 820px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.system-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

.system-visual figcaption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.system-visual figcaption span {
  padding: 20px 0;
}

.system-visual figcaption span:nth-child(2) {
  text-align: center;
}

.system-visual figcaption span:last-child {
  text-align: right;
}

.deliverables {
  padding-top: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 88px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.section-head > p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.deliverable {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable small,
.process-step small {
  color: var(--lime-deep);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.deliverable h3 {
  max-width: 360px;
  margin: auto 0 24px;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 600;
  line-height: 1;
}

.deliverable p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.process {
  padding: 140px 5vw;
  background: var(--black);
  color: var(--white);
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 100px;
}

.process-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -52px;
  color: var(--lime);
}

.process-head h2 span {
  color: var(--lime);
}

.process-head > p:last-child {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.62;
}

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

.process-step {
  display: grid;
  grid-template-columns: 80px minmax(320px, 1fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease;
}

.process-step:hover {
  color: var(--lime);
}

.step-number {
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
}

.process-step h3 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 600;
  line-height: 1;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.6;
}

.fit-section {
  background: var(--paper);
}

.fit-head {
  max-width: 1180px;
  margin-bottom: 100px;
}

.fit-head .eyebrow {
  margin-bottom: 26px;
}

.fit-content {
  max-width: 1060px;
  margin-left: auto;
  border-top: 1px solid var(--black);
}

.fit-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.fit-item > span {
  color: var(--lime-deep);
  font-size: 12px;
  font-weight: 600;
}

.fit-item h3 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 600;
  line-height: 1;
}

.fit-item p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.scope {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 8vw;
  margin-top: 110px;
  padding-top: 28px;
  border-top: 1px solid var(--black);
}

.scope > p {
  color: var(--muted);
  font-size: 13px;
}

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

.scope li {
  position: relative;
  padding: 19px 0 19px 28px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
}

.scope li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.seo-bridge {
  min-height: 72svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5vw;
  background: var(--lime);
}

.seo-bridge .eyebrow {
  color: rgba(8, 8, 8, 0.62);
}

.seo-bridge h2 {
  max-width: 1180px;
}

.seo-bridge h2 span {
  color: var(--black);
}

.seo-bridge > p:not(.eyebrow) {
  max-width: 700px;
  margin: 36px 0 0 auto;
  color: rgba(8, 8, 8, 0.66);
  font-size: 19px;
  line-height: 1.6;
}

.seo-bridge > a {
  width: fit-content;
  margin: 28px 0 0 auto;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.faq {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 9vw;
}

.faq-head h2 {
  font-size: clamp(54px, 6vw, 94px);
}

.faq-list {
  padding-top: 8px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 28px 54px 28px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 3px;
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.final-cta {
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 130px 5vw;
  background: var(--black);
  color: var(--white);
}

.final-cta > div {
  width: 100%;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.final-cta h2 {
  max-width: 1250px;
}

.final-cta h2 span {
  color: var(--lime);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  line-height: 1.6;
}

.button-white {
  margin-top: 34px;
  background: var(--white);
  color: var(--black);
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 5vw;
  background: var(--black);
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}

.site-footer p {
  justify-self: end;
  margin-bottom: 0;
  font-size: 11px;
}

.mobile-project {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .hero-copy {
    width: min(730px, 68vw);
  }

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

  .section-label {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .process-step {
    grid-template-columns: 60px minmax(300px, 1fr) minmax(220px, 0.7fr);
  }

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

  .faq-head {
    max-width: 860px;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    padding: 8px 10px 0;
  }

  .nav-shell {
    min-height: 54px;
    padding: 0 12px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 15px;
    font-size: 12px;
  }

  .service-hero {
    min-height: 730px;
    height: 92svh;
    max-height: none;
    align-items: flex-end;
    padding: 92px 18px 78px;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .hero-copy h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(48px, 13vw, 66px);
    line-height: 0.92;
  }

  .hero-lead {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.48;
  }

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

  .button {
    min-height: 48px;
    padding: 0 17px;
    font-size: 13px;
  }

  .button-light {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .result-band {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    scroll-snap-type: x mandatory;
  }

  .result-band p {
    min-height: 96px;
    padding: 0 18px;
    font-size: 26px;
    scroll-snap-align: start;
  }

  .intro-section,
  .deliverables,
  .fit-section,
  .faq {
    padding: 88px 18px;
  }

  .intro-section {
    gap: 38px;
  }

  .section-label span:last-child {
    display: none;
  }

  .intro-copy h2,
  .section-head h2,
  .process-head h2,
  .fit-head h2,
  .seo-bridge h2,
  .faq-head h2,
  .final-cta h2 {
    font-size: 46px;
    line-height: 0.96;
  }

  .intro-text {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .intro-text p {
    font-size: 16px;
  }

  .system-visual {
    padding: 0 18px 88px;
  }

  .system-image {
    height: 470px;
  }

  .system-image img {
    object-position: 55% center;
  }

  .system-visual figcaption {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .system-visual figcaption span {
    padding: 4px 0;
    text-align: left !important;
  }

  .deliverables {
    padding-top: 0;
  }

  .section-head,
  .process-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 54px;
  }

  .section-head .eyebrow,
  .process-head .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .section-head > p:last-child,
  .process-head > p:last-child {
    font-size: 15px;
  }

  .deliverable-grid {
    display: flex;
    overflow-x: auto;
    border-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .deliverable-grid::-webkit-scrollbar {
    display: none;
  }

  .deliverable {
    min-width: 84vw;
    min-height: 360px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .deliverable h3 {
    font-size: 36px;
  }

  .process {
    padding: 88px 18px;
  }

  .process-head {
    margin-bottom: 54px;
  }

  .process-step {
    grid-template-columns: 34px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .process-step > p {
    grid-column: 2;
    font-size: 14px;
  }

  .process-step h3 {
    font-size: 31px;
  }

  .fit-head {
    margin-bottom: 54px;
  }

  .fit-item {
    grid-template-columns: 34px 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .fit-item h3 {
    font-size: 34px;
  }

  .fit-item p {
    font-size: 15px;
  }

  .scope {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 72px;
  }

  .scope li {
    font-size: 20px;
  }

  .seo-bridge {
    min-height: 660px;
    padding: 88px 18px;
  }

  .seo-bridge > p:not(.eyebrow),
  .seo-bridge > a {
    margin-left: 0;
  }

  .seo-bridge > p:not(.eyebrow) {
    margin-top: 28px;
    font-size: 16px;
  }

  .seo-bridge > a {
    font-size: 14px;
  }

  .faq {
    gap: 54px;
  }

  summary {
    padding: 24px 48px 24px 0;
    font-size: 20px;
  }

  summary::after {
    top: 20px;
  }

  .final-cta {
    min-height: 700px;
    padding: 96px 18px;
  }

  .final-cta p:not(.eyebrow) {
    margin-top: 28px;
    font-size: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 18px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
  }

  .site-footer p {
    grid-column: auto;
  }

  .mobile-project {
    position: fixed;
    z-index: 120;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(8, 8, 8, 0.9);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(20px);
  }
}

@media (max-width: 430px) {
  .nav-cta {
    gap: 8px;
    padding: 0 12px;
  }

  .nav-cta span {
    display: none;
  }

  .service-hero {
    min-height: 720px;
  }

  .hero-copy h1 {
    font-size: 47px;
  }

  .hero-media img {
    object-position: 50% top;
  }

  .system-image {
    height: 430px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
