:root {
  --void: #050b14;
  --navy-deep: #0a1628;
  --navy-mid: #14253d;
  --navy-glow: #1e3a5f;
  --white: #fafbfc;
  --steel: #8fa3b8;
  --graphite: #2a3b52;
  --amber: #d4a857;
  --amber-glow: #f0c674;
  --cyan-trace: #4dd0e1;
  --line: rgba(143, 163, 184, 0.22);
  --panel: rgba(13, 24, 40, 0.78);
  --panel-solid: #0d1828;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --container: min(1280px, calc(100vw - 56px));
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --header-h: 86px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(77, 208, 225, 0.08), transparent 24%),
    radial-gradient(circle at top left, rgba(212, 168, 87, 0.12), transparent 18%),
    linear-gradient(180deg, #04070e 0%, #050b14 24%, #08101b 58%, #050b14 100%);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

a,
button {
  color: inherit;
  cursor: none;
}

a {
  text-decoration: none;
}

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

button {
  font: inherit;
  border: 0;
  background: transparent;
}

canvas {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.mono,
.section-heading__eyebrow,
.hero__eyebrow,
.wordmark,
.site-nav a,
.button,
.button--ghost,
.button--secondary,
.menu-toggle,
.stat-card__value,
.service-card__index,
.process-panel__index,
.contact__meta,
.footer-geo,
.page-loader__percent,
.section-indicator,
.hero__meta {
  font-family: "JetBrains Mono", monospace;
}

.wordmark {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
.hero__title,
.section-title,
.copy-block p strong,
.process-panel h3,
.contact-panel h3,
.site-footer .wordmark,
.section-heading h2,
.stats .section-heading h2 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.04em;
}

.section {
  position: relative;
}

.section-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-deep), rgba(10, 22, 40, 0.96));
  transform-origin: left center;
  pointer-events: none;
  z-index: 4;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--amber-glow));
  box-shadow: 0 0 16px rgba(212, 168, 87, 0.7);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: #02060c;
  display: grid;
  place-items: center;
}

.page-loader__brand {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-loader__wordmark {
  width: min(720px, calc(100vw - 80px));
  height: auto;
}

.page-loader__wordmark text {
  fill: transparent;
  stroke: var(--white);
  stroke-width: 1.2;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  font-family: "Fraunces", serif;
  font-size: 92px;
  letter-spacing: 20px;
}

.page-loader__percent {
  margin-top: 18px;
  color: var(--steel);
  font-size: 0.84rem;
  letter-spacing: 0.24em;
}

.page-loader__curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0), rgba(5, 11, 20, 1));
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 150;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor--inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(212, 168, 87, 0.9);
}

.cursor--outer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(240, 198, 116, 0.75);
  box-shadow: 0 0 24px rgba(212, 168, 87, 0.16);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(5, 11, 20, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.55);
}

.header-row {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
}

.site-nav a,
.mobile-menu a {
  position: relative;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250, 251, 252, 0.82);
}

.site-nav a::after,
.mobile-menu a::after,
.contact-panel h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.mobile-menu a:hover::after,
.mobile-menu a:focus-visible::after,
.contact-panel:hover h3::after,
.contact-panel:focus-visible h3::after {
  transform: scaleX(1);
}

.button,
.button--secondary,
.button--ghost {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  min-height: 54px;
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.button::before,
.button--secondary::before,
.button--ghost::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--amber));
  transform: translateY(102%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.button span,
.button--secondary span,
.button--ghost span {
  position: relative;
  display: inline-block;
}

.button:hover::before,
.button:focus-visible::before,
.button--secondary:hover::before,
.button--secondary:focus-visible::before,
.button--ghost:hover::before,
.button--ghost:focus-visible::before {
  transform: translateY(0%);
}

.button {
  background: rgba(212, 168, 87, 0.14);
  border: 1px solid rgba(240, 198, 116, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 30px rgba(212, 168, 87, 0.12);
}

.button:hover,
.button:focus-visible,
.button--secondary:hover,
.button--secondary:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--void);
  transform: translateY(-2px);
}

.button--secondary,
.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.button--ghost {
  padding-inline: 22px;
}

.button:focus-visible,
.button--secondary:focus-visible,
.button--ghost:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.contact-panel:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 28px; }

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(5, 11, 20, 0.98);
  backdrop-filter: blur(20px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--transition);
  z-index: 90;
}

body.menu-open .mobile-menu {
  clip-path: inset(0 0 0 0);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: clip;
}

.hero__backdrop,
#hero-canvas,
#footer-canvas {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  background:
    radial-gradient(circle at 15% 22%, rgba(212, 168, 87, 0.14), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(77, 208, 225, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.2), rgba(5, 11, 20, 0.76));
}

#hero-canvas,
#footer-canvas {
  z-index: 0;
}

.hero__content,
.contact__grid,
.site-footer__inner,
.stats .container,
.services .container,
.expertise .container,
.process .container {
  position: relative;
  z-index: 6;
}

.hero__content {
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 130px;
  display: grid;
  align-content: center;
  min-height: 100vh;
  justify-items: center;
  text-align: center;
}

.hero__eyebrow,
.section-heading__eyebrow {
  margin: 0 0 24px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-glow);
  overflow: hidden;
  white-space: nowrap;
}

.hero__title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(3.5rem, 8.2vw, 8.7rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero__title .char {
  display: inline-block;
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
}

.hero__lead {
  max-width: 590px;
  margin: 30px auto 0;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.7;
  color: var(--steel);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

.hero__meta {
  position: absolute;
  bottom: 40px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 251, 252, 0.72);
  z-index: 8;
}

.hero__meta--left { left: max(28px, calc((100vw - min(1280px, calc(100vw - 56px))) / 2)); }
.hero__meta--right { right: max(28px, calc((100vw - min(1280px, calc(100vw - 56px))) / 2)); }

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(212, 168, 87, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(212, 168, 87, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(212, 168, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 168, 87, 0); }
}

.marquee-strip {
  position: relative;
  z-index: 6;
  border-top: 1px solid rgba(42, 59, 82, 0.5);
  border-bottom: 1px solid rgba(42, 59, 82, 0.5);
  overflow: hidden;
  background: rgba(5, 11, 20, 0.65);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 16px 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: rgba(143, 163, 184, 0.62);
  text-transform: uppercase;
  animation: marquee 34s linear infinite;
}

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

.stats {
  padding: 140px 0 90px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 44px;
}

.section-heading h2,
.section-title {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 5.2rem);
  line-height: 0.98;
  max-width: 12ch;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(42, 59, 82, 0.65);
  border-bottom: 1px solid rgba(42, 59, 82, 0.65);
}

.stat-card {
  padding: 42px 38px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(42, 59, 82, 0.7);
}

.stat-card__value {
  font-size: clamp(3rem, 7vw, 5.6rem);
  letter-spacing: -0.05em;
  color: var(--amber);
}

.stat-card__value::after {
  content: "+";
  margin-left: 4px;
}

.stat-card:nth-child(2) .stat-card__value::after {
  content: "h";
}

.stat-card:nth-child(3) .stat-card__value::after {
  content: "";
}

.stat-card p {
  margin: 10px 0 0;
  max-width: 14ch;
  font-size: 1.12rem;
  color: var(--white);
  font-family: "Fraunces", serif;
}

.trace-wrap {
  position: relative;
  z-index: 5;
}

.trace {
  width: 100%;
  height: auto;
  opacity: 0.88;
}

.trace path,
.process-line path {
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--amber);
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.trace path:nth-child(2),
.trace path:nth-child(3),
.process-line path {
  stroke: var(--cyan-trace);
}

.services {
  padding: 80px 0 110px;
}

.services__intro,
.process__intro {
  margin-bottom: 44px;
}

.services-pin {
  position: relative;
}

.services-stack {
  display: grid;
  gap: 18px;
}

.service-card,
.contact-panel,
.copy-block,
.process-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 59, 82, 0.8);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 168, 87, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(20, 37, 61, 0.2), rgba(10, 22, 40, 0.76));
  box-shadow: var(--shadow);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.service-card:focus-within,
.contact-panel:hover,
.contact-panel:focus-visible,
.copy-block:hover,
.process-panel:hover {
  border-color: rgba(212, 168, 87, 0.9);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 30px rgba(212, 168, 87, 0.12);
}

.service-card {
  padding: 28px 28px 30px;
  min-height: 240px;
  transform: translateY(60px) scale(0.95);
  opacity: 0;
}

.service-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-card__head svg {
  width: 24px;
  height: 24px;
  stroke: var(--steel);
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.35s ease, stroke 0.35s ease;
}

.service-card:hover .service-card__head svg,
.service-card:focus-within .service-card__head svg {
  transform: rotate(45deg);
  stroke: var(--amber);
}

.service-card__index {
  color: var(--amber);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  transition: transform 0.35s ease, color 0.35s ease;
}

.service-card:hover .service-card__index,
.service-card:focus-within .service-card__index {
  transform: translateX(8px);
  color: var(--amber-glow);
}

.service-card h3,
.contact-panel h3,
.process-panel h3 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

.service-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.service-card__grid span {
  position: relative;
  padding-left: 16px;
  color: var(--steel);
  font-size: 0.98rem;
}

.service-card__grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212, 168, 87, 0.82);
}

.expertise {
  padding: 120px 0 120px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.image-panel {
  margin-top: 36px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 59, 82, 0.8);
  box-shadow: var(--shadow);
  background: #0a1628;
}

.image-panel img,
.process-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.32) contrast(1.02) brightness(0.68);
  mix-blend-mode: screen;
}

.copy-block {
  padding: 30px 32px;
}

.copy-block + .copy-block {
  margin-top: 18px;
}

.copy-block span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--amber-glow);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.copy-block p {
  margin: 0;
  color: var(--steel);
  font-size: 1.12rem;
  line-height: 1.72;
}

.process {
  padding: 110px 0 130px;
}

.process-track-wrap {
  position: relative;
  margin-top: 32px;
}

.process-line {
  position: absolute;
  left: 0;
  top: 54px;
  width: calc(100vw + 2000px);
  height: auto;
  opacity: 0.78;
  pointer-events: none;
}

.process-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-top: 100px;
}

.process-panel {
  width: min(88vw, 920px);
  min-height: 70vh;
  display: grid;
  grid-template-columns: 120px 0.72fr 1fr;
  align-items: end;
  overflow: hidden;
}

.process-panel__index {
  align-self: start;
  padding: 36px 0 0 28px;
  font-size: clamp(5rem, 16vw, 15rem);
  line-height: 0.82;
  color: rgba(212, 168, 87, 0.82);
}

.process-panel__body {
  padding: 0 32px 42px 10px;
  align-self: end;
  z-index: 2;
}

.process-panel__body p {
  margin: 0;
  color: var(--steel);
  font-size: 1.08rem;
  line-height: 1.72;
}

.process-panel img {
  min-height: 100%;
}

.contact {
  padding: 140px 0 110px;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.55), rgba(5, 11, 20, 0.96));
  overflow: clip;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.contact__lead {
  max-width: 18ch;
  margin-top: 22px;
  color: var(--steel);
  font-size: 1.14rem;
  line-height: 1.7;
}

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

.contact-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
  min-height: 250px;
  transform-origin: center;
}

.contact-panel__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(212, 168, 87, 0.08);
  border: 1px solid rgba(212, 168, 87, 0.26);
}

.contact-panel__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--amber);
}

.contact-panel p {
  margin: 0;
  color: var(--steel);
  font-size: 1rem;
}

.contact__meta {
  position: relative;
  z-index: 6;
  margin-top: 28px;
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 251, 252, 0.72);
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(42, 59, 82, 0.65);
  background: rgba(3, 7, 13, 0.94);
  position: relative;
  z-index: 6;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-geo {
  width: 120px;
  height: 120px;
  justify-self: start;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--steel);
}

.site-footer__meta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 251, 252, 0.64);
}

.section-indicator {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 90;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.section-indicator a {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(143, 163, 184, 0.45);
  display: grid;
  place-items: center;
  color: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.section-indicator a span {
  display: none;
}

.section-indicator a::after {
  content: attr(data-label);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  color: var(--steel);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.section-indicator a:hover::after,
.section-indicator a:focus-visible::after,
.section-indicator a.is-active::after {
  opacity: 1;
  transform: translate(-6px, -50%);
}

.section-indicator a.is-active {
  background: var(--amber);
  border-color: var(--amber-glow);
  transform: scale(1.08);
}

.reveal-section {
  clip-path: inset(0 0 0 0);
}

.parallax-media img {
  will-change: transform;
}

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

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

  body {
    cursor: auto;
  }

  .cursor,
  .page-loader,
  .section-curtain,
  .trace,
  .process-line,
  .grain {
    display: none !important;
  }
}

@media (max-width: 1279px) {
  :root {
    --container: min(1120px, calc(100vw - 40px));
  }

  .process-panel {
    width: min(92vw, 860px);
    grid-template-columns: 96px 0.8fr 0.95fr;
  }

  .process-panel__index {
    padding-left: 18px;
  }
}

@media (max-width: 991px) {
  body {
    cursor: auto;
  }

  .cursor,
  .section-indicator,
  .hero__meta--right {
    display: none !important;
  }

  .site-nav,
  .site-header .button--ghost {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-row {
    grid-template-columns: auto 1fr auto;
  }

  .hero__content {
    justify-items: start;
    text-align: left;
    padding-bottom: 90px;
  }

  .hero__title {
    max-width: 10ch;
  }

  .hero__lead,
  .hero__actions {
    justify-content: flex-start;
  }

  .hero__meta--left {
    left: 20px;
  }

  .stats-grid,
  .expertise-grid,
  .contact__grid,
  .contact__panels,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .stat-card {
    padding-inline: 0;
  }

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

  .process-track {
    display: grid;
    width: 100%;
    padding-top: 30px;
  }

  .process-line {
    display: none;
  }

  .process-panel {
    width: 100%;
    min-height: unset;
    grid-template-columns: 1fr;
  }

  .process-panel__index {
    padding: 22px 24px 0;
    font-size: 4.8rem;
  }

  .process-panel__body {
    padding: 0 24px 24px;
  }

  .process-panel img {
    height: 320px;
  }

  .footer-geo {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 767px) {
  :root {
    --container: calc(100vw - 28px);
    --header-h: 74px;
  }

  .page-loader__wordmark text {
    font-size: 54px;
    letter-spacing: 10px;
  }

  .hero__content {
    padding-top: calc(var(--header-h) + 52px);
  }

  .hero__title {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .hero__actions {
    width: 100%;
  }

  .button,
  .button--secondary {
    width: 100%;
  }

  .hero__meta--left {
    bottom: 28px;
    font-size: 0.7rem;
  }

  .stats {
    padding-top: 100px;
  }

  .section-heading h2,
  .section-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .services,
  .expertise,
  .process,
  .contact {
    padding-block: 90px;
  }

  .service-card,
  .copy-block,
  .contact-panel {
    padding: 22px;
  }

  .contact-panel {
    min-height: unset;
  }

  .contact__meta,
  .site-footer__meta {
    font-size: 0.68rem;
    line-height: 1.8;
  }

  .trace-wrap {
    display: none;
  }
}
