:root {
  --paper: #ffffff;
  --paper-soft: #f6f4f1;
  --sand: #ebe8e2;
  --ink: #050505;
  --muted: #6d6d6d;
  --faint: rgba(5, 5, 5, 0.1);
  --dark: #050505;
  --dark-line: rgba(255, 255, 255, 0.2);
  --white-soft: rgba(255, 255, 255, 0.64);
  --orange: #ff5a1f;
  --orange-dark: #ea4d16;
  --max: 1184px;
  --wide: 1264px;
  --gutter: clamp(18px, 5.4vw, 74px);
  --section: clamp(76px, 10vw, 136px);
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --font: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: auto;
  background: var(--paper);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  overflow: hidden;
  pointer-events: none;
}

.page-transition span {
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateY(100%);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(142px, 0.9fr) minmax(230px, 0.72fr) minmax(360px, 1fr) auto;
  gap: 30px;
  align-items: start;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 40px var(--gutter) 20px;
}

.detail-header {
  padding-bottom: 20px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  font-size: 25px;
  font-weight: 640;
  line-height: 1;
  letter-spacing: 0;
}

.brand__lustra {
  color: var(--ink);
}

.brand__studio {
  color: var(--orange);
}

.brand i {
  position: relative;
  width: 13px;
  height: 13px;
  margin-left: 3px;
  transform: translateY(-8px);
}

.brand i::before,
.brand i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--orange);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand i::before {
  width: 13px;
  height: 3px;
}

.brand i::after {
  width: 3px;
  height: 13px;
}

.tagline {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.36;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 21px 38px;
  color: #686868;
  font-size: 16px;
  font-weight: 500;
}

.site-nav a {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  transition: color 320ms var(--ease), transform 320ms var(--ease);
}

.site-nav a::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.site-nav a:hover {
  color: var(--ink);
  transform: translateX(5px);
}

.pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  padding: 5px 7px 5px 21px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
  transition: transform 420ms var(--ease), background 420ms var(--ease), color 420ms var(--ease);
}

.pill span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  transition: transform 420ms var(--ease);
}

.pill:hover {
  transform: translateY(-3px);
}

.pill:hover span {
  transform: rotate(45deg);
}

.pill--orange {
  background: var(--orange);
  color: var(--paper);
}

.pill--orange:hover {
  background: var(--orange-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.eyebrow--light {
  color: var(--paper);
}

.section-space {
  padding: var(--section) var(--gutter);
}

.hero {
  position: relative;
  --hero-card-height: clamp(500px, calc(100svh - clamp(110px, 18svh, 172px)), 790px);
  overflow: clip;
}

.hero__media {
  position: relative;
  min-height: var(--hero-card-height);
  height: var(--hero-card-height);
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  filter: none;
  isolation: isolate;
  transform: none;
  will-change: auto;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.05) 78%, rgba(0, 0, 0, 0.02)),
    radial-gradient(circle at 50% 44%, rgba(255, 90, 31, 0.08), transparent 26%);
}

.hero__shade::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 18%;
  width: min(680px, 64vw);
  height: min(470px, 48vw);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  filter: blur(44px);
}

.cursor-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.cursor-mesh-label {
  position: absolute;
  left: var(--mesh-label-x, 50%);
  top: var(--mesh-label-y, 50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.78);
  pointer-events: none;
  opacity: 0;
  transform: translate(18px, -50%);
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease);
  will-change: left, top, opacity, transform;
}

.cursor-mesh-label.is-active {
  opacity: 1;
  transform: translate(24px, -50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  min-height: inherit;
  max-width: var(--max);
  align-items: end;
  gap: clamp(38px, 7vw, 110px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) var(--gutter) clamp(58px, 7vw, 96px);
}

.hero__copy {
  align-self: center;
  max-width: 960px;
}

.hero__lead {
  max-width: 580px;
  margin: clamp(22px, 2.4vw, 32px) 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 680;
  line-height: 1.18;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.68);
}

.hero-title {
  max-width: 980px;
  margin: 28px 0 0;
  color: var(--paper);
  font-size: clamp(66px, 7.8vw, 136px);
  font-weight: 820;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.62), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title__accent,
.hero-title .line-mask:nth-child(2) > span,
.hero-title .line-mask:nth-child(4) > span {
  color: var(--orange);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 90, 31, 0.28);
}

.hero-title .line-mask > span > span {
  font-size: 0.52em;
  vertical-align: super;
}

.line-mask {
  display: block;
  overflow: hidden;
}

.hero-title .line-mask + .line-mask {
  margin-top: 0.07em;
}

.line-mask > span {
  display: block;
}

.hero-services {
  width: min(252px, 100%);
  color: var(--paper);
  align-self: end;
  justify-self: end;
  padding: 18px 0 4px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.64);
}

.hero-services p {
  margin: 0 0 18px;
  font-weight: 830;
}

.hero-services a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 18px;
  font-weight: 760;
  transition: color 280ms var(--ease), transform 280ms var(--ease);
}

.hero-services a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-services a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.hero-services em {
  font-style: normal;
}

.about,
.impact {
  display: grid;
  grid-template-columns: minmax(140px, 0.27fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 118px);
  max-width: var(--max);
  margin: 0 auto;
}

.impact {
  max-width: min(1288px, calc(100vw - (var(--gutter) * 2)));
}

.about__statement,
.impact__statement,
.detail-copy__intro .word-reveal,
.article-body .word-reveal {
  margin: 0;
  max-width: 910px;
  color: rgba(5, 5, 5, 0.26);
  font-size: clamp(28px, 3.25vw, 45px);
  font-weight: 650;
  line-height: 1.12;
}

.word {
  display: inline-block;
  color: rgba(5, 5, 5, 0.28);
  will-change: color, opacity, transform;
}

.logo-strip {
  overflow: hidden;
  padding: 8px 0 72px;
  color: rgba(0, 0, 0, 0.24);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  animation: logoMarquee 26s linear infinite;
}

.logo-track span {
  flex: 0 0 auto;
  font-size: clamp(18px, 2vw, 29px);
  font-weight: 780;
  line-height: 1;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 42px;
}

.project-head,
.generation-head,
.blog-head {
  display: grid;
  grid-template-columns: minmax(140px, 0.25fr) minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
}

.project-head h2,
.compact-head h2,
.generation-head h2,
.blog-head h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 790;
  line-height: 0.96;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: clamp(74px, 8vw, 118px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.project-card {
  position: relative;
  display: grid;
  gap: 18px;
  isolation: isolate;
}

.project-card--one {
  grid-column: 1 / 3;
}

.project-card--two {
  grid-column: 3 / 5;
}

.project-card--three {
  grid-column: 5 / 7;
  grid-row: auto;
}

.project-card--four {
  grid-column: 1 / 4;
  margin-top: 98px;
}

.project-card--five {
  grid-column: 4 / 7;
  margin-top: 98px;
}

.sticky-visual {
  position: relative;
  top: auto;
  z-index: 1;
}

.project-card__media,
.blog-card__image,
.impact__image,
.testimonial-photo,
.service-media,
.mockup-card,
.contact-row i,
.detail-hero__media,
.detail-gallery div,
.contact-card div {
  background-position: center;
  background-size: cover;
}

.project-card__media {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transform: translate3d(0, var(--media-y, 0), 0) scale(1.015);
  transition: transform 680ms var(--ease), filter 680ms var(--ease);
  will-change: transform;
}

.project-card--three .project-card__media {
  min-height: 350px;
}

.project-card--four .project-card__media,
.project-card--five .project-card__media {
  min-height: 410px;
}

.project-card__media span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 820;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 360ms var(--ease), transform 420ms var(--ease);
}

.project-card:hover .project-card__media,
.blog-card:hover .blog-card__image {
  transform: translate3d(0, var(--media-y, 0), 0) scale(1.055);
  filter: saturate(1.12);
}

.project-card:hover .project-card__media span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-card__meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  background: var(--paper);
}

.project-card h3,
.blog-card h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 780;
  line-height: 1.02;
}

time {
  color: var(--muted);
  font-size: 15px;
}

.generation-reveal {
  border: 0;
}

.generation-reveal [data-generation-reveal-label] {
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  transform: none;
}

.generation-reveal:hover [data-generation-reveal-label] {
  transform: none;
}

.generation-reveal i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-style: normal;
}

.generation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.generation-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--soft);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.generation-card--one {
  grid-row: span 2;
  min-height: clamp(620px, 61vw, 860px);
}

.generation-card__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(0.72) brightness(0.76);
  transform: scale(1.08);
  transition: filter 560ms var(--ease), transform 720ms var(--ease);
  will-change: filter, transform;
}

.generation-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.58));
  pointer-events: none;
  z-index: 1;
}

.generation-card__overlay,
.generation-card__meta {
  position: absolute;
  z-index: 2;
  color: var(--paper);
}

.generation-card__overlay {
  inset: 22px 22px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}

.generation-card__overlay span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.generation-card__overlay p,
.generation-card__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.generation-card__overlay p {
  max-width: 160px;
  font-size: 14px;
  font-weight: 720;
  text-align: right;
}

.generation-card__meta {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.generation-card__meta h3 {
  margin: 0 0 8px;
  max-width: 620px;
  font-size: clamp(30px, 4.1vw, 58px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.92;
}

.generation-card__meta p {
  max-width: 430px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.2;
}

.generations.is-revealed .generation-card__media {
  filter: none;
  transform: scale(1);
}

.generations.is-revealed .generation-card__overlay {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.generation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
}

.process {
  max-width: min(1420px, calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 242, 0.98));
  color: var(--ink);
}

.process-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  margin-bottom: clamp(46px, 6vw, 86px);
}

.process-head h2 {
  margin: 0;
  max-width: 1120px;
  color: rgba(5, 5, 5, 0.28);
  font-size: clamp(54px, 7vw, 126px);
  font-weight: 820;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-head .line-mask:nth-child(2) > span {
  color: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.process-card {
  position: relative;
  display: flex;
  min-height: clamp(360px, 31vw, 500px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(24px, 2vw, 34px);
  box-shadow: 0 22px 70px rgba(5, 5, 5, 0.06);
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.process-card::after {
  content: "";
  position: absolute;
  right: clamp(18px, 2vw, 32px);
  bottom: clamp(18px, 2vw, 32px);
  width: clamp(80px, 8vw, 126px);
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 58% 38%, rgba(67, 211, 228, 0.82) 0 11%, transparent 12%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.01));
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.06), 0 18px 42px rgba(5, 5, 5, 0.08);
  opacity: 0.72;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 90, 31, 0.44);
  box-shadow: 0 28px 84px rgba(5, 5, 5, 0.12);
}

.process-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.process-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 790;
  line-height: 0.94;
}

.process-card__top span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 860;
  line-height: 1;
}

.process-card p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: clamp(26px, 3vw, 58px) 0 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 560;
  line-height: 1.28;
}

.process-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: clamp(28px, 4vw, 72px) 0 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  color: rgba(5, 5, 5, 0.68);
  font-size: 14px;
  font-weight: 720;
}

.process-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--orange);
}

.process-card--accent {
  background: var(--orange);
  color: var(--paper);
}

.process-card--accent p,
.process-card--accent li,
.process-card--accent .process-card__top span,
.process-card--accent li::before {
  color: rgba(255, 255, 255, 0.86);
}

.process-card--accent::after {
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 255, 255, 0.94) 0 11%, transparent 12%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 42px rgba(0, 0, 0, 0.1);
}

.services {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--dark);
  color: var(--paper);
  padding: clamp(78px, 9vw, 132px) var(--gutter);
}

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

.service-title {
  display: grid;
  grid-template-columns: minmax(140px, 0.25fr) minmax(0, 1fr);
  gap: 36px;
  margin-bottom: 58px;
}

.service-title h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 77px);
  font-weight: 790;
  line-height: 1;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 58px;
  align-items: center;
}

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

.service-item {
  display: grid;
  grid-template-columns: 92px 1fr 60px;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid var(--dark-line);
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.44);
  text-align: left;
  cursor: pointer;
  transition: color 320ms var(--ease), border-color 320ms var(--ease);
}

.service-item span,
.service-item strong {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 780;
  line-height: 1;
}

.service-item i {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 25px;
  font-style: normal;
  transition: transform 320ms var(--ease), background 320ms var(--ease), color 320ms var(--ease);
}

.service-item:hover,
.service-item.is-active {
  color: var(--paper);
}

.service-item.is-active {
  border-bottom-color: var(--orange);
}

.service-item.is-active i {
  background: var(--orange);
  color: var(--paper);
  transform: rotate(45deg);
}

.service-media-wrap {
  position: relative;
  min-height: 280px;
}

.service-media {
  min-height: 250px;
  border-radius: 10px;
  opacity: 0.86;
  transform: translate3d(0, var(--media-y, 0), 0);
  transition: opacity 280ms var(--ease), transform 600ms var(--ease);
}

.mockup-card {
  position: absolute;
  right: 14%;
  bottom: -72px;
  display: grid;
  width: min(330px, 74%);
  min-height: 155px;
  place-items: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  transform: translate3d(0, var(--media-y, 0), 0);
}

.mockup-card span {
  color: var(--paper);
  font-size: 28px;
  font-weight: 820;
  text-shadow: 0 7px 24px rgba(0, 0, 0, 0.35);
}

.impact__content {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(520px, 596px) minmax(420px, 1fr);
  gap: clamp(44px, 5vw, 72px);
  margin-top: 54px;
  align-items: center;
}

.impact__image {
  min-height: clamp(360px, 24vw, 410px);
  border-radius: var(--radius-sm);
  filter: grayscale(1);
  transform: translate3d(0, var(--media-y, 0), 0);
}

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

.stats-grid strong {
  display: block;
  font-size: clamp(58px, 4.8vw, 82px);
  font-weight: 820;
  line-height: 0.92;
}

.stats-grid p {
  max-width: 190px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.28;
}

.faq,
.blog {
  max-width: min(1420px, calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
}

.testimonials {
  max-width: none;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.1), transparent 23%),
    linear-gradient(135deg, #101010, #242424 52%, #111);
  color: var(--paper);
}

.impact.section-space {
  padding-bottom: clamp(44px, 5vw, 76px);
}

.testimonials.section-space {
  padding: clamp(76px, 8vw, 128px) var(--gutter);
}

.faq.section-space {
  padding-top: clamp(32px, 3.5vw, 54px);
  padding-bottom: clamp(32px, 3.5vw, 54px);
}

.blog.section-space {
  padding-top: clamp(34px, 3.8vw, 58px);
}

.compact-head {
  max-width: 780px;
  margin: 14px 0 38px 8%;
}

.faq > .eyebrow {
  margin-left: 8%;
}

.testimonials > .eyebrow {
  display: flex;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.testimonials .compact-head {
  width: min(var(--max), 100%);
  max-width: none;
  margin: 18px auto clamp(38px, 5vw, 72px);
  text-align: center;
}

.testimonials .compact-head h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(48px, 6.8vw, 112px);
  font-weight: 820;
  line-height: 0.88;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(18px, 2vw, 28px);
  width: min(var(--max), 100%);
  max-width: none;
  margin: 0 auto;
}

.testimonial-card,
.testimonial-photo {
  min-height: 420px;
  border-radius: var(--radius-sm);
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(28px, 3vw, 46px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.testimonial-card::before {
  content: "\201C";
  color: var(--orange);
  font-size: clamp(64px, 6vw, 96px);
  font-weight: 900;
  line-height: 0.8;
}

.testimonial-person {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}

.testimonial-person img {
  width: 86px;
  height: 86px;
  border-radius: 7px;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0;
  color: var(--paper);
  font-size: 21px;
  line-height: 1;
}

.testimonial-card span,
.testimonial-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.32;
}

.testimonial-card b {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  letter-spacing: 2px;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 620;
  line-height: 1.16;
}

.testimonial-photo {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, var(--media-y, 0), 0);
}

.testimonial-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 60%);
}

.testimonial-photo span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  color: var(--paper);
  font-size: 42px;
  font-weight: 820;
  line-height: 0.95;
}

.faq-list {
  width: min(980px, 92%);
  max-width: none;
  margin-left: 8%;
}

.faq-item {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 4px;
  background: #f4f2ef;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.18;
}

.faq-item span::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 0.8;
  transition: transform 300ms var(--ease);
}

.faq-item em {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
  line-height: 1.43;
  opacity: 0;
  transition: max-height 470ms var(--ease), margin-top 470ms var(--ease), opacity 280ms var(--ease);
}

.faq-item.is-open span::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-item.is-open em {
  max-height: 150px;
  margin-top: 17px;
  opacity: 1;
}

.blog-head {
  width: min(1220px, 92%);
  max-width: none;
  margin: 0 0 34px 8%;
  grid-template-columns: 1fr auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 92%);
  max-width: none;
  margin-left: 8%;
}

.blog-card {
  display: grid;
  gap: 10px;
}

.blog-card__image {
  min-height: clamp(220px, 17vw, 270px);
  border-radius: var(--radius-sm);
  transform: translate3d(0, var(--media-y, 0), 0) scale(1.015);
  transition: transform 640ms var(--ease), filter 640ms var(--ease);
}

.blog-card time {
  font-size: 13px;
}

.blog-card h3 {
  font-size: 20px;
  line-height: 1.08;
}

.footer {
  position: relative;
  overflow: hidden;
  min-height: 840px;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 91px var(--gutter) 44px;
  background: var(--dark);
  color: var(--paper);
}

.footer--compact {
  min-height: 660px;
}

.footer__label {
  display: flex;
  justify-content: center;
}

.contact-marquee {
  position: relative;
  display: grid;
  gap: 34px;
  margin: 54px -13vw 94px;
}

.footer--compact .contact-marquee {
  margin-bottom: 64px;
}

.contact-row {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
}

.contact-row--one {
  animation: contactOne 34s linear infinite;
}

.contact-row--two {
  animation: contactTwo 30s linear infinite;
}

.contact-row span {
  font-size: clamp(76px, 9vw, 154px);
  font-weight: 820;
  line-height: 0.84;
}

.contact-row i {
  width: clamp(112px, 10vw, 160px);
  height: clamp(76px, 7vw, 110px);
  flex: 0 0 auto;
  border-radius: 13px;
  filter: grayscale(0.25);
}

.round-cta {
  position: absolute;
  left: 14%;
  top: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
  transform: translateY(-50%);
}

.round-cta span {
  position: absolute;
  inset: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
  animation: spinText 16s linear infinite;
}

.round-cta em {
  font-size: 42px;
  font-style: normal;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(150px, 0.55fr));
  gap: 44px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}

.footer-grid h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.newsletter form {
  display: flex;
  width: min(314px, 100%);
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 16px 20px;
  outline: none;
}

.newsletter button {
  width: 52px;
  color: var(--orange);
  cursor: pointer;
}

.newsletter p,
.footer-grid a,
.footer-grid span {
  display: block;
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.42;
}

address {
  font-style: normal;
}

.copyright {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px var(--gutter);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.scroll-button {
  position: fixed;
  right: 178px;
  bottom: 22px;
  z-index: 55;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.86);
  transition: opacity 320ms var(--ease), transform 420ms var(--ease), background 320ms var(--ease);
}

.scroll-button.is-visible,
.scroll-button[data-state="visible"] {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-button:hover {
  background: var(--orange-dark);
  transform: translateY(-3px) scale(1.03);
}

.scroll-button svg,
.scroll-button span {
  grid-area: 1 / 1;
}

.scroll-button svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-button__track,
.scroll-button__progress {
  fill: none;
  stroke-width: 3;
}

.scroll-button__track {
  stroke: rgba(255, 255, 255, 0.25);
}

.scroll-button__progress {
  stroke: var(--paper);
  stroke-dasharray: 157;
  stroke-dashoffset: calc(157 * (1 - var(--scroll-progress, 0)));
  transition: stroke-dashoffset 120ms linear;
}

.scroll-button span {
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.detail-main {
  overflow: clip;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(140px, 0.24fr) minmax(0, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px var(--gutter) 28px;
}

.detail-hero__copy h1,
.contact-hero h1 {
  margin: 0;
  font-size: clamp(66px, 9vw, 142px);
  font-weight: 830;
  line-height: 0.92;
}

.detail-hero__copy p,
.contact-hero p {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.12;
}

.detail-meta {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 0;
}

.detail-meta div {
  border-top: 1px solid var(--faint);
  padding-top: 14px;
}

.detail-meta dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.detail-meta dd {
  margin: 7px 0 0;
  font-size: 18px;
  font-weight: 760;
}

.detail-hero__media {
  grid-column: 1 / -1;
  min-height: clamp(380px, 56vw, 670px);
  margin-top: 38px;
  border-radius: var(--radius-lg);
  transform: translate3d(0, var(--media-y, 0), 0);
}

.detail-copy {
  max-width: var(--max);
  margin: 0 auto;
}

.detail-copy__intro {
  display: grid;
  grid-template-columns: minmax(140px, 0.24fr) minmax(0, 1fr);
  gap: 40px;
}

.detail-blocks {
  display: grid;
  max-width: 910px;
  margin: 68px 0 0 auto;
  gap: 42px;
}

.detail-blocks article {
  border-top: 1px solid var(--faint);
  padding-top: 28px;
}

.detail-blocks h2,
.article-body h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 0.98;
}

.detail-blocks p,
.detail-blocks li,
.article-body p {
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.38;
}

.detail-blocks ul {
  margin: 0;
  padding-left: 22px;
}

.detail-case-study {
  display: grid;
  gap: 14px;
  max-width: 1120px;
  margin: clamp(44px, 6vw, 86px) 0 0 auto;
}

.detail-case-study[hidden] {
  display: none;
}

.detail-case-study article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  border-top: 1px solid var(--faint);
  padding: clamp(24px, 3vw, 42px) 0;
}

.detail-case-study h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 48px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.detail-case-study p,
.detail-case-study li {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.32;
}

.detail-case-study p {
  margin: 0;
}

.detail-case-study ul {
  grid-column: 2;
  display: grid;
  gap: 10px;
  margin: -4px 0 0;
  padding-left: 18px;
}

.detail-video {
  display: grid;
  grid-template-columns: minmax(180px, 270px) minmax(280px, 440px);
  gap: clamp(34px, 5vw, 72px);
  max-width: 910px;
  margin: 76px 0 0 auto;
  align-items: start;
}

.detail-video[hidden] {
  display: none;
}

.detail-video h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 830;
  line-height: 0.94;
}

.detail-video iframe {
  width: min(440px, 100%);
  aspect-ratio: 9 / 16;
  min-height: 0;
  justify-self: start;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--dark);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.14);
}

.detail-video[data-video-aspect="wide"] {
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  max-width: 1000px;
}

.detail-video[data-video-aspect="wide"] iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 76px auto 0;
}

.detail-gallery div {
  min-height: clamp(270px, 28vw, 410px);
  border-radius: var(--radius);
  transform: translate3d(0, var(--media-y, 0), 0);
}

.article-body {
  max-width: 850px;
  margin: 0 auto;
}

.article-body .word-reveal {
  margin-bottom: 70px;
}

.article-body h2 {
  margin-top: 54px;
}

.contact-main {
  overflow: clip;
}

.contact-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px var(--gutter) 36px;
}

.contact-hero h1 {
  margin-top: 28px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-form,
.contact-card {
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: clamp(22px, 4vw, 46px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 12px;
  background: var(--paper);
  padding: 15px 16px;
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .pill {
  width: max-content;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 20px;
}

.contact-card div {
  min-height: 260px;
  border-radius: var(--radius-sm);
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.28;
}

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

@keyframes contactOne {
  from { transform: translateX(-7%); }
  to { transform: translateX(-49%); }
}

@keyframes contactTwo {
  from { transform: translateX(-47%); }
  to { transform: translateX(-9%); }
}

@keyframes spinText {
  to { transform: rotate(360deg); }
}

/* Reference-style rebuild */
.hero__media {
  background-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.06) 64%, rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 22% 70%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.26) 36%, transparent 62%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 45%);
}

.hero__shade::after {
  left: clamp(10px, 2vw, 32px);
  top: auto;
  bottom: clamp(18px, 4vw, 58px);
  width: min(980px, 68vw);
  height: clamp(360px, 39vw, 560px);
  border-radius: 56px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0));
  filter: blur(28px);
}

.hero__shade::before {
  display: none;
}

.cursor-mesh {
  z-index: 2;
  opacity: 0.9;
  mix-blend-mode: normal;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: block;
  min-height: inherit;
  max-width: none;
  margin: 0 auto;
  padding: clamp(44px, 5vw, 72px) clamp(18px, 2.8vw, 54px);
}

.hero__copy {
  position: absolute;
  left: clamp(18px, 3vw, 58px);
  bottom: clamp(42px, 7vw, 92px);
  max-width: none;
}

.hero-title {
  width: max-content;
  max-width: none;
  margin: clamp(26px, 4vw, 54px) 0 0;
  font-size: clamp(54px, 5.8vw, 104px);
  line-height: 0.86;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.88), 0 2px 10px rgba(0, 0, 0, 0.78);
}

.hero-title .line-mask {
  overflow: visible;
}

.hero-title .line-mask > span {
  white-space: nowrap;
}

.hero-title .line-mask:nth-child(2) > span {
  color: var(--orange);
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.88), 0 0 18px rgba(255, 90, 31, 0.34);
}

.hero-title .line-mask:nth-child(4) > span {
  color: var(--paper);
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.88), 0 2px 10px rgba(0, 0, 0, 0.78);
}

.hero__lead {
  max-width: 370px;
  margin-top: clamp(14px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 760;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-services {
  position: absolute;
  top: clamp(48px, 6vw, 78px);
  right: clamp(18px, 3vw, 58px);
  width: min(260px, 28vw);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-services p,
.hero-services a {
  font-size: clamp(13px, 1vw, 16px);
}

.hero-rail {
  position: absolute;
  right: calc(var(--gutter) * -0.25);
  bottom: clamp(96px, 15vw, 190px);
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.process {
  max-width: none;
  background: #fbfbfa;
  padding-top: clamp(86px, 9vw, 150px);
  padding-bottom: clamp(78px, 8vw, 132px);
}

.process-head,
.process-grid,
.process-controls {
  width: min(var(--max), calc(100vw - (var(--gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.process-head {
  display: block;
  margin-bottom: clamp(42px, 5vw, 72px);
  text-align: center;
}

.process-head > .eyebrow {
  margin-bottom: 24px;
}

.process-head h2 {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(5, 5, 5, 0.27);
  font-size: clamp(50px, 5.8vw, 94px);
  line-height: 0.86;
}

.process-head .line-mask:nth-child(2) > span {
  color: var(--ink);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.process-card {
  min-height: clamp(430px, 32vw, 560px);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 2px;
  background: #fff;
  padding: clamp(26px, 2.2vw, 38px);
  box-shadow: 0 20px 80px rgba(5, 5, 5, 0.035);
}

.process-card.is-active,
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 31, 0.24);
  box-shadow: 0 28px 90px rgba(5, 5, 5, 0.08);
}

.process-card::after {
  display: none;
}

.process-card h3 {
  font-size: clamp(34px, 3vw, 52px);
}

.process-card p {
  max-width: 270px;
  margin-top: 14px;
  font-size: 14px;
}

.process-model {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(150px, 13vw, 220px);
  margin: clamp(30px, 4vw, 62px) 0;
  transform-style: preserve-3d;
  transition: transform 360ms var(--ease);
}

.process-card:hover .process-model,
.process-card.is-active .process-model {
  transform: rotateX(8deg) rotateZ(-4deg) translateY(-4px);
}

.process-model i {
  position: absolute;
  width: clamp(74px, 7vw, 118px);
  aspect-ratio: 1.35;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #e9e9e6);
  box-shadow: 0 18px 38px rgba(5, 5, 5, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotateX(62deg) rotateZ(-38deg) translateY(var(--model-y, 0));
}

.process-model i:nth-child(1) { --model-y: -30px; opacity: 0.6; }
.process-model i:nth-child(2) { --model-y: 0; }
.process-model i:nth-child(3) {
  --model-y: 30px;
}

.process-model i:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 16%;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #36d8e8;
  box-shadow: 0 0 28px rgba(54, 216, 232, 0.5);
}

.process-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.process-controls button,
.testimonial-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 50%;
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.process-controls button:hover,
.testimonial-controls button:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: rgba(255, 90, 31, 0.08);
}

.testimonials {
  min-height: clamp(620px, 56vw, 860px);
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.15), transparent 24%),
    linear-gradient(120deg, #111, #2d2d2d 52%, #131313);
}

.testimonials.section-space {
  display: grid;
  align-content: center;
  padding-top: clamp(78px, 8vw, 132px);
  padding-bottom: clamp(78px, 8vw, 132px);
}

.testimonials .compact-head {
  margin-bottom: clamp(40px, 5vw, 78px);
}

.testimonial-stage {
  position: relative;
  width: min(1040px, calc(100vw - (var(--gutter) * 2)));
  min-height: clamp(300px, 30vw, 420px);
  margin: 0 auto;
}

.testimonial-quote {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(54px, 8vw, 140px);
  align-items: center;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 420ms var(--ease), transform 520ms var(--ease);
}

.testimonial-quote.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-copy span {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: clamp(64px, 6vw, 92px);
  font-weight: 900;
  line-height: 0.55;
}

.testimonial-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 680;
  line-height: 1.08;
}

.testimonial-copy div {
  margin-top: 32px;
}

.testimonial-copy strong,
.testimonial-copy em {
  display: block;
}

.testimonial-copy strong {
  color: var(--paper);
  font-size: 16px;
}

.testimonial-copy em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-style: normal;
}

.testimonial-quote img {
  width: min(320px, 100%);
  aspect-ratio: 0.78;
  justify-self: end;
  border-radius: 2px;
  object-fit: cover;
  filter: grayscale(0.28);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.testimonial-controls {
  position: absolute;
  left: 50%;
  bottom: -58px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.testimonial-controls button {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--orange);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 28px 20px;
  }

  .tagline,
  .site-nav {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 32px;
    padding: 42px 20px 54px;
  }

  .hero-title {
    font-size: clamp(58px, 13vw, 108px);
  }

  .hero-services {
    width: min(420px, 100%);
    justify-self: start;
  }

  .about,
  .impact,
  .project-head,
  .generation-head,
  .process-head,
  .service-title,
  .service-layout,
  .impact__content,
  .blog-head,
  .footer-grid,
  .detail-hero,
  .detail-copy__intro,
  .detail-video,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .generation-grid,
  .process-grid,
  .testimonial-grid,
  .blog-grid,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

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

  .project-card,
  .project-card--one,
  .project-card--two,
  .project-card--three,
  .project-card--four,
  .project-card--five,
  .generation-card,
  .generation-card--one {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .generation-card,
  .generation-card--one {
    min-height: 560px;
  }

  .sticky-visual {
    position: relative;
    top: auto;
  }

  .compact-head,
  .testimonials > .eyebrow,
  .faq > .eyebrow,
  .testimonial-grid,
  .faq-list,
  .generation-head,
  .generation-grid,
  .process-head,
  .process-grid,
  .blog-head,
  .blog-grid,
  .impact__content,
  .detail-video,
  .detail-blocks {
    margin-left: 0;
  }

  .detail-video {
    max-width: none;
    margin-top: 54px;
  }

  .detail-video[data-video-aspect="wide"] {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .detail-case-study,
  .detail-case-study article {
    grid-template-columns: 1fr;
  }

  .detail-case-study ul {
    grid-column: auto;
  }

  .detail-video iframe {
    width: 100%;
  }

  .compact-head,
  .testimonial-grid,
  .faq-list,
  .generation-head,
  .generation-grid,
  .process-head,
  .process-grid,
  .blog-head,
  .blog-grid {
    width: 100%;
    max-width: none;
  }

  .impact__content,
  .detail-meta,
  .detail-hero__media {
    grid-column: auto;
  }

  .detail-meta {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-media-wrap {
    min-height: 390px;
  }

  .footer-grid {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  .brand {
    font-size: 24px;
  }

  .pill {
    min-height: 42px;
    padding-left: 16px;
    font-size: 14px;
  }

  .pill span {
    width: 32px;
    height: 32px;
  }

  .hero__media {
    position: relative;
    top: auto;
    min-height: 626px;
    background-attachment: scroll;
    border-radius: 16px 16px 0 0;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .hero {
    min-height: auto;
  }

  .hero-title {
    margin-bottom: 0;
    font-size: clamp(32px, calc((100vw - 34px) / 11.6), 48px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .cursor-mesh {
    opacity: 0.84;
  }

  .hero-services {
    width: 100%;
  }

  .process-head h2 {
    font-size: clamp(42px, 13vw, 72px);
  }

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

  .process-card {
    min-height: 330px;
  }

  .section-space,
  .services,
  .footer,
  .detail-hero,
  .contact-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about__statement,
  .impact__statement,
  .detail-copy__intro .word-reveal,
  .article-body .word-reveal {
    font-size: clamp(28px, 8vw, 38px);
  }

  .project-card__media,
  .project-card--three .project-card__media,
  .project-card--four .project-card__media,
  .project-card--five .project-card__media,
  .blog-card__image {
    min-height: 300px;
  }

  .generation-card,
  .generation-card--one {
    min-height: 440px;
  }

  .generation-card__overlay {
    inset: 16px 16px auto;
  }

  .generation-card__meta {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .service-item {
    grid-template-columns: 42px 1fr 46px;
  }

  .service-item span,
  .service-item strong {
    font-size: clamp(22px, 8vw, 34px);
  }

  .service-item i {
    width: 44px;
    height: 44px;
  }

  .mockup-card {
    right: 4%;
    width: 86%;
  }

  .stats-grid,
  .detail-meta {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid,
  .blog-grid {
    gap: 18px;
  }

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

  .faq-item em {
    font-size: 14px;
  }

  .footer {
    min-height: 940px;
  }

  .footer--compact {
    min-height: 610px;
  }

  .contact-marquee {
    margin-left: -54vw;
    margin-right: -54vw;
  }

  .round-cta {
    left: 22%;
    width: 120px;
    height: 120px;
  }

  .scroll-button {
    right: 18px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header > .pill {
    padding-left: 13px;
  }

  .hero-title,
  .detail-hero__copy h1,
  .contact-hero h1 {
    font-size: clamp(52px, 18vw, 74px);
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 44px);
  }

  .project-head h2,
  .compact-head h2,
  .blog-head h2,
  .service-title h2 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .contact-row span {
    font-size: 72px;
  }

  .scroll-button {
    right: 16px;
  }
}

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

  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-parallax],
  .hero__media {
    transform: none !important;
  }

  .page-transition {
    display: none;
  }
}

/* Spector reference sections only - keeps the original hero and site design intact */
.spector-process,
.spector-call,
.spector-expertise,
.spector-pricing,
.pricing-contact {
  --spector-red: #ef3340;
  --spector-line: rgba(5, 5, 5, 0.11);
  --spector-soft: #f7f7f5;
  max-width: none;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.spector-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto clamp(42px, 5vw, 72px);
}

.spector-kicker span {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.spector-kicker span::before,
.spector-kicker span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: var(--spector-red);
  transform: translate(-50%, -50%) rotate(45deg);
}

.spector-kicker span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.spector-kicker p,
.spector-kicker em {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 740;
  font-style: normal;
  letter-spacing: -0.02em;
}

.spector-kicker em {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}

.spector-headline {
  max-width: min(1180px, 100%);
  margin: 0 auto clamp(50px, 7vw, 96px);
  color: rgba(5, 5, 5, 0.32);
  font-size: clamp(54px, 7.5vw, 128px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
}

.spector-headline .line-mask:nth-last-child(-n + 2) > span {
  color: var(--ink);
}

.spector-process__viewport {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.spector-process__viewport.is-dragging {
  cursor: grabbing;
}

.spector-process__rail {
  --spector-x: 0px;
  display: flex;
  width: max-content;
  gap: 10px;
  margin: 0;
  transform: translate3d(var(--spector-x), 0, 0);
  transition: transform 620ms var(--ease);
  will-change: transform;
}

.spector-process__viewport.is-dragging .spector-process__rail {
  transition: none;
}

.spector-step {
  position: relative;
  display: flex;
  min-height: clamp(430px, 37vw, 560px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid rgba(5, 5, 5, 0.065);
  padding: clamp(26px, 2.7vw, 44px);
  flex: 0 0 clamp(310px, 31vw, 392px);
  opacity: 0.52;
  transform: scale(0.96);
  transition: border-color 340ms var(--ease), box-shadow 340ms var(--ease), transform 520ms var(--ease), opacity 520ms var(--ease);
}

.spector-step.is-active {
  border-color: rgba(239, 51, 64, 0.38);
  box-shadow: 0 22px 70px rgba(5, 5, 5, 0.08);
  opacity: 1;
  transform: translateY(-8px) scale(1);
}

.spector-step div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.spector-step h3 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 830;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.spector-step div span {
  color: var(--spector-red);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 850;
  line-height: 1;
}

.spector-step p {
  max-width: 260px;
  margin: 22px 0 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.spector-step small {
  color: rgba(5, 5, 5, 0.42);
  font-size: 15px;
  font-weight: 680;
}

.spector-step figure {
  position: relative;
  min-height: 140px;
  margin: clamp(26px, 3vw, 54px) 0;
}

.spector-step figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #e8e8e5);
  box-shadow: 18px 24px 40px rgba(5, 5, 5, 0.1), inset -5px -6px 12px rgba(5, 5, 5, 0.05);
  transform: translate(-50%, -50%) rotate(45deg);
}

.spector-step figure i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #27c8ea;
  box-shadow: 0 14px 28px rgba(39, 200, 234, 0.34);
  transform: translate(-50%, -50%);
}

.spector-step figure i:nth-child(2) {
  width: 54px;
  height: 12px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.08);
  transform: translate(-120px, -50%);
}

.spector-step figure i:nth-child(3) {
  width: 54px;
  height: 12px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.08);
  transform: translate(66px, -50%);
}

.spector-step ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spector-step li {
  color: rgba(5, 5, 5, 0.64);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.16;
}

.spector-step li::before {
  content: "+";
  margin-right: 8px;
  color: var(--spector-red);
}

.spector-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(28px, 3vw, 44px);
}

.spector-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 50%;
  color: var(--spector-red);
  cursor: pointer;
  transition: border-color 260ms var(--ease), transform 260ms var(--ease);
}

.spector-controls button:hover,
.spector-controls button:focus-visible {
  border-color: var(--orange);
  outline: 0;
  transform: translateY(-2px);
}

.spector-call {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 9vw, 160px);
  align-items: start;
  border-top: 1px solid var(--spector-line);
  border-bottom: 1px solid var(--spector-line);
  padding-top: clamp(78px, 9vw, 132px);
  padding-bottom: clamp(78px, 9vw, 132px);
}

.spector-call__copy {
  max-width: 720px;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.spector-call__copy p,
.spector-pricing__intro p {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 860;
  text-transform: uppercase;
}

.spector-call__copy h2 {
  margin: 0 0 44px;
  font-size: clamp(34px, 4.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.spector-pill,
.spector-price a,
.spector-plans-card a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 66px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  padding: 0 28px;
  color: var(--ink);
  font-size: clamp(19px, 1.5vw, 26px);
  font-weight: 760;
  letter-spacing: -0.045em;
}

.spector-pill span,
.spector-price a span,
.spector-plans-card a span {
  color: var(--spector-red);
}

.spector-call__person {
  margin-right: max(0px, calc((100vw - var(--max)) / 2));
  padding-top: 36px;
}

.spector-call__person > strong {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--spector-red);
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.spector-call__person > strong::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(5, 5, 5, 0.12);
}

.spector-call__person div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 58px;
}

.spector-call__person img {
  width: 68px;
  height: 68px;
  object-fit: cover;
}

.spector-call__person p {
  margin: 0;
}

.spector-call__person b,
.spector-call__person span {
  display: block;
}

.spector-call__person b {
  font-size: 21px;
}

.spector-call__person span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

@keyframes spectorTextureShift {
  0% {
    transform: translate3d(-2.5%, -1%, 0) scale(1.03);
  }

  100% {
    transform: translate3d(2.5%, 1%, 0) scale(1.06);
  }
}

@keyframes spectorControlPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 24px 30px 42px rgba(5, 5, 5, 0.12), inset -8px -9px 16px rgba(5, 5, 5, 0.05);
  }

  50% {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 26px 36px 56px rgba(239, 51, 64, 0.18), inset -8px -9px 16px rgba(5, 5, 5, 0.05);
  }
}

@keyframes spectorTicketFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.testimonials {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 56vw, 860px);
  overflow: hidden;
  background: #151515;
  color: #f5f0e8;
}

.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.testimonials::before {
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 46%, rgba(255, 255, 255, 0.15), transparent 23%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0 36%, rgba(255, 255, 255, 0.07) 36% 62%, rgba(0, 0, 0, 0.32) 62% 100%),
    linear-gradient(180deg, #101010, #303030 48%, #171717);
  animation: spectorTextureShift 9s ease-in-out infinite alternate;
}

.testimonials::after {
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 35% 48%, rgba(255, 255, 255, 0.08), transparent 28%);
  background-size: 82px 82px, 82px 82px, 100% 100%;
  mix-blend-mode: overlay;
}

.testimonials > * {
  position: relative;
  z-index: 1;
}

.spector-headline--lined {
  position: relative;
  padding: 2px 0;
}

.spector-headline--lined .line-mask {
  border-bottom: 1px solid rgba(5, 5, 5, 0.14);
}

.spector-headline--lined .line-mask:first-child {
  border-top: 1px solid rgba(5, 5, 5, 0.14);
}

.spector-expertise {
  position: relative;
  isolation: isolate;
  background: #f7f7f5;
}

.spector-expertise::before,
.spector-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.025) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.48;
}

.spector-bento {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) 64px minmax(180px, 0.72fr) minmax(180px, 0.72fr) minmax(260px, 0.95fr);
  grid-template-rows: minmax(360px, auto) minmax(238px, auto) minmax(170px, auto);
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
}

.spector-bento > * {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #fff;
  border: 1px solid rgba(5, 5, 5, 0.075);
  padding: clamp(24px, 2.4vw, 42px);
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.spector-tile:hover {
  border-color: rgba(239, 51, 64, 0.28);
  box-shadow: 0 28px 90px rgba(5, 5, 5, 0.09);
  transform: translateY(-7px);
}

.spector-founder {
  grid-column: 1;
  grid-row: 1;
}

.spector-strip {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  background: #fbfbfa;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.spector-strip span,
.spector-strip b {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.spector-strip b {
  color: var(--spector-red);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.spector-dark-card {
  grid-column: 3 / span 2;
  grid-row: 1;
}

.spector-control-card {
  grid-column: 5;
  grid-row: 1;
}

.spector-precision-card {
  grid-column: 1;
  grid-row: 2 / span 2;
}

.spector-plans-card {
  grid-column: 3 / span 2;
  grid-row: 2;
}

.spector-metric-card--one {
  grid-column: 3;
  grid-row: 3;
}

.spector-metric-card--two {
  grid-column: 4;
  grid-row: 3;
}

.spector-repeat-card {
  grid-column: 5;
  grid-row: 2 / span 2;
}

.spector-founder h3,
.spector-control-card h3,
.spector-plans-card h3,
.spector-precision-card h3,
.spector-repeat-card h3 {
  margin: 0;
  font-size: clamp(31px, 3.1vw, 54px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.spector-founder p,
.spector-dark-card p,
.spector-control-card p,
.spector-plans-card p,
.spector-precision-card p,
.spector-repeat-card p,
.spector-metric-card p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 560;
  line-height: 1.18;
}

.spector-founder div {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: clamp(46px, 5.3vw, 86px);
}

.spector-founder img {
  width: clamp(108px, 10vw, 144px);
  aspect-ratio: 1;
  object-fit: cover;
}

.spector-founder b,
.spector-founder em {
  display: block;
  font-style: normal;
}

.spector-founder b {
  font-size: clamp(17px, 1.4vw, 22px);
}

.spector-founder em {
  margin-top: 4px;
  color: rgba(5, 5, 5, 0.62);
  font-weight: 650;
}

.spector-dark-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.14), transparent 37%),
    linear-gradient(180deg, #1c1c1c, #111) !important;
  color: #fff;
  text-align: center;
}

.spector-dark-card strong {
  display: block;
  color: #fff;
  font-size: clamp(68px, 7vw, 116px);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.spector-dark-card h3 {
  max-width: 360px;
  margin: 36px auto 0;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 56px);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.spector-dark-card p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
}

.spector-control-card {
  text-align: center;
}

.spector-control-card h3 {
  font-size: clamp(34px, 3.2vw, 58px);
}

.spector-control-card span {
  color: var(--spector-red);
}

.spector-control-card p {
  margin-left: auto;
  margin-right: auto;
}

.spector-control-card i {
  display: block;
  width: clamp(126px, 13.4vw, 196px);
  aspect-ratio: 1.45;
  margin: clamp(32px, 4vw, 64px) auto 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 38%, var(--spector-red) 0 20%, transparent 21%),
    linear-gradient(145deg, #fff, #e8e8e5);
  animation: spectorControlPulse 4.2s ease-in-out infinite;
}

.spector-precision-card figure {
  position: relative;
  width: min(250px, 78%);
  aspect-ratio: 1;
  margin: 0 auto clamp(26px, 3vw, 42px);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(239, 51, 64, 0.18) 0 2px, transparent 2px 24px),
    radial-gradient(circle, rgba(239, 51, 64, 0.1), transparent 60%);
}

.spector-precision-card figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 78%;
  background: linear-gradient(#d8d8d4, #f9f9f8);
  border-radius: 999px;
  box-shadow: 0 22px 36px rgba(5, 5, 5, 0.16);
  transform: translate(-50%, -50%) rotate(62deg);
  transform-origin: center;
}

.spector-precision-card figure span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--spector-red);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(239, 51, 64, 0.08);
}

.spector-plans-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 0.46fr);
  align-items: center;
  gap: 20px;
}

.spector-plans-card a {
  margin-top: clamp(26px, 3vw, 44px);
  min-height: 0;
  border: 0;
  padding: 0;
  font-size: clamp(18px, 1.3vw, 22px);
}

.spector-plan-stack {
  position: relative;
  min-height: 150px;
  margin: 0;
  animation: spectorTicketFloat 5.2s ease-in-out infinite;
}

.spector-plan-stack span,
.spector-ticket {
  position: absolute;
  display: block;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0 8px, transparent 8px 100%),
    linear-gradient(180deg, var(--ticket-color, #36a8ff) 0 36%, #fff 36%);
  box-shadow: 0 18px 34px rgba(5, 5, 5, 0.18);
}

.spector-plan-stack span {
  width: 72px;
  height: 116px;
  left: 50%;
  top: 50%;
}

.spector-plan-stack span:nth-child(1) {
  --ticket-color: #2ba7ff;
  transform: translate(-82%, -45%) rotate(-13deg);
}

.spector-plan-stack span:nth-child(2) {
  --ticket-color: var(--spector-red);
  transform: translate(-38%, -52%) rotate(-3deg);
}

.spector-plan-stack span:nth-child(3) {
  --ticket-color: #111;
  transform: translate(6%, -46%) rotate(9deg);
}

.spector-metric-card {
  padding: 24px;
}

.spector-metric-card h3 {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 780;
  letter-spacing: -0.045em;
}

.spector-metric-card strong {
  display: block;
  margin-top: 18px;
  color: rgba(5, 5, 5, 0.64);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 890;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.spector-metric-card em {
  position: absolute;
  right: 20px;
  bottom: 18px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 999px;
  padding: 4px 8px;
  color: rgba(5, 5, 5, 0.55);
  font-size: 11px;
  font-style: normal;
  font-weight: 780;
}

.spector-repeat-card {
  background: var(--spector-red) !important;
  color: #fff;
}

.spector-repeat-card h3 {
  color: #fff;
}

.spector-repeat-card strong {
  display: block;
  margin-top: clamp(38px, 5vw, 76px);
  color: #fff;
  font-size: clamp(76px, 7.4vw, 122px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.spector-repeat-card p {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.84);
}

.spector-pricing {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--spector-line);
  background: #fff;
}

.spector-pricing__intro {
  max-width: min(980px, calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto 22px;
  padding-left: clamp(0px, 12vw, 190px);
}

.spector-pricing__intro span {
  color: var(--muted);
  font-weight: 650;
}

.spector-price-grid {
  display: grid;
  gap: 10px;
  width: min(1180px, calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
}

.spector-price {
  display: grid;
  grid-template-columns: 86px minmax(170px, 0.72fr) minmax(126px, 0.52fr) minmax(280px, 1fr) minmax(210px, 0.72fr);
  gap: clamp(20px, 3.2vw, 54px);
  align-items: center;
  min-height: 210px;
  background: #f7f7f6;
  border: 1px solid rgba(5, 5, 5, 0.075);
  border-radius: 8px;
  padding: clamp(24px, 3.2vw, 42px);
}

.spector-ticket {
  --ticket-color: #35aaff;
  position: relative;
  width: 54px;
  height: 108px;
  align-self: center;
  justify-self: center;
  transform: rotate(-5deg);
}

.spector-price--advanced .spector-ticket {
  --ticket-color: var(--spector-red);
}

.spector-price--signature .spector-ticket {
  --ticket-color: #151515;
}

.spector-ticket::before,
.spector-ticket::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: rgba(5, 5, 5, 0.28);
}

.spector-ticket::before {
  top: 56px;
  box-shadow: 0 8px 0 rgba(5, 5, 5, 0.16), 0 16px 0 rgba(5, 5, 5, 0.1);
}

.spector-ticket::after {
  bottom: 10px;
  left: 15px;
  right: 15px;
}

.spector-price__plan h3 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 850;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.spector-price__plan strong {
  display: block;
  margin-top: 10px;
  color: rgba(5, 5, 5, 0.58);
  font-size: clamp(32px, 3.4vw, 58px);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.spector-price__plan strong span {
  font-size: 0.62em;
}

.spector-price__meta b {
  display: inline-block;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.spector-price__meta em {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  font-weight: 620;
}

.spector-price ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spector-price li {
  color: rgba(5, 5, 5, 0.74);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.16;
}

.spector-price li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--spector-red);
}

.spector-price__action {
  align-self: center;
}

.spector-price__action a {
  min-height: 48px;
  padding: 0 22px;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.spector-price__action p {
  max-width: 190px;
  margin: 34px 0 0;
  color: rgba(5, 5, 5, 0.58);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.22;
}

.spector-price-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(48px, 11vw, 180px);
  width: min(1180px, calc(100vw - (var(--gutter) * 2)));
  margin: clamp(54px, 7vw, 96px) auto 0;
}

.spector-price-note span,
.spector-price-note strong {
  color: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.spector-price-note p {
  max-width: 430px;
  margin: 8px 0 24px;
  color: #1b1b1b;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.spector-price-note aside strong {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--spector-red);
  letter-spacing: 0.28em;
}

.spector-price-note aside strong::after,
.spector-price-note aside > span {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(5, 5, 5, 0.14);
}

.spector-price-note aside > span {
  display: block;
  margin: 10px 0 34px;
}

.spector-price-note aside p {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  margin: 0;
  font-size: 14px;
  line-height: 1.1;
}

.spector-price-note aside img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.spector-price-note aside b,
.spector-price-note aside em {
  display: block;
  font-style: normal;
}

.spector-price-note aside em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .spector-bento {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .spector-bento > * {
    grid-column: auto;
    grid-row: auto;
  }

  .spector-strip {
    min-height: 64px;
    writing-mode: initial;
    padding: 18px 22px;
  }

  .spector-plans-card,
  .spector-dark-card {
    grid-column: span 2;
  }
}

@media (max-width: 1040px) {
  .spector-call {
    grid-template-columns: 1fr;
  }

  .spector-step,
  .spector-bento > *,
  .spector-price {
    min-height: auto;
  }

  .spector-call__copy,
  .spector-call__person {
    margin-left: 0;
    margin-right: 0;
  }

  .spector-price {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .spector-ticket {
    grid-row: span 2;
  }

  .spector-price ul,
  .spector-price__action {
    grid-column: 2;
  }

  .spector-price-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .spector-process,
  .spector-call,
  .spector-expertise,
  .spector-pricing {
    padding-left: 18px;
    padding-right: 18px;
  }

  .spector-kicker {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .spector-kicker em {
    grid-column: 2;
    margin-left: 0;
  }

  .spector-headline {
    font-size: clamp(42px, 13vw, 64px);
    letter-spacing: -0.03em;
  }

  .spector-step {
    padding: 26px;
  }

  .spector-call__copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .spector-bento,
  .spector-price {
    grid-template-columns: 1fr;
  }

  .spector-bento > *,
  .spector-dark-card,
  .spector-plans-card {
    grid-column: auto;
  }

  .spector-founder div {
    align-items: flex-start;
    flex-direction: column;
  }

  .spector-plans-card {
    grid-template-columns: 1fr;
  }

  .spector-plan-stack {
    min-height: 126px;
  }

  .spector-price {
    gap: 20px;
    padding: 28px;
  }

  .spector-ticket,
  .spector-price ul,
  .spector-price__action {
    grid-column: auto;
    grid-row: auto;
  }

  .spector-ticket {
    justify-self: start;
  }

  .spector-price__action p {
    margin-top: 18px;
  }

  .spector-price-note {
    width: 100%;
  }
}

/* Compact Spector reference correction: Process, Expertise, Pricing only */
.spector-process,
.spector-call,
.spector-expertise,
.spector-pricing {
  --spector-max: 1080px;
  --spector-red: #ef3340;
  --spector-bg: #f4f4f2;
  --spector-line: rgba(10, 10, 10, 0.16);
  background: var(--spector-bg);
  color: #202428;
}

.spector-process.section-space,
.spector-expertise.section-space,
.spector-pricing.section-space {
  padding-top: clamp(70px, 7.5vw, 112px);
  padding-bottom: clamp(70px, 7.5vw, 112px);
}

.spector-kicker {
  max-width: var(--spector-max);
  margin-bottom: clamp(26px, 3vw, 42px);
}

.spector-kicker span {
  width: 12px;
  height: 12px;
}

.spector-kicker span::before,
.spector-kicker span::after {
  width: 12px;
  height: 3px;
}

.spector-kicker p,
.spector-kicker em {
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 820;
  letter-spacing: -0.015em;
}

.spector-kicker em {
  max-width: 180px;
  text-align: right;
}

.spector-headline {
  max-width: var(--spector-max);
  margin-bottom: clamp(38px, 5vw, 70px);
  color: rgba(32, 36, 40, 0.32);
  font-size: clamp(42px, 5.25vw, 70px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.spector-headline--lined .line-mask {
  border-bottom-color: var(--spector-line);
}

.spector-headline--lined .line-mask:first-child {
  border-top-color: var(--spector-line);
}

.spector-headline .line-mask:nth-last-child(-n + 2) > span {
  color: #22272b;
}

.spector-process__viewport {
  max-width: var(--spector-max);
  overflow: visible;
  cursor: default;
}

.spector-process__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: auto;
  gap: 10px;
  transform: none !important;
}

.spector-step {
  min-height: 300px;
  flex-basis: auto;
  border-color: rgba(10, 10, 10, 0.055);
  background: #f8f8f6;
  box-shadow: none;
  opacity: 1;
  padding: clamp(22px, 2.2vw, 30px);
  transform: none;
}

.spector-step.is-active {
  border-color: rgba(239, 51, 64, 0.28);
  box-shadow: none;
  transform: none;
}

.spector-step h3 {
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 780;
  letter-spacing: -0.055em;
}

.spector-step div span {
  font-size: 13px;
  font-weight: 780;
}

.spector-step p {
  max-width: 230px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 640;
  letter-spacing: -0.02em;
}

.spector-step small {
  margin-top: 8px;
  font-size: 11px;
}

.spector-step figure {
  min-height: 96px;
  margin: 22px 0;
}

.spector-step figure::before {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  box-shadow: 12px 16px 24px rgba(5, 5, 5, 0.08), inset -4px -5px 10px rgba(5, 5, 5, 0.04);
}

.spector-step figure i {
  width: 15px;
  height: 15px;
  background: #27c8ea;
  box-shadow: 0 8px 18px rgba(39, 200, 234, 0.28);
}

.spector-step figure i:nth-child(2),
.spector-step figure i:nth-child(3) {
  width: 38px;
  height: 8px;
}

.spector-step figure i:nth-child(2) {
  transform: translate(-86px, -50%);
}

.spector-step figure i:nth-child(3) {
  transform: translate(48px, -50%);
}

.spector-step ul {
  gap: 5px;
}

.spector-step li {
  font-size: 11px;
  font-weight: 620;
}

.spector-controls {
  gap: 12px;
  margin-top: 22px;
}

.spector-controls button {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.spector-call {
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.58fr);
  max-width: var(--spector-max);
  margin: 0 auto;
  gap: clamp(34px, 9vw, 140px);
  border: 0;
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(58px, 6vw, 92px);
}

.spector-call__copy,
.spector-call__person {
  margin-left: 0;
  margin-right: 0;
}

.spector-call__copy p,
.spector-pricing__intro p,
.spector-price-note span {
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: -0.01em;
}

.spector-call__copy h2 {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 760;
  line-height: 0.98;
}

.spector-pill,
.spector-price a,
.spector-plans-card a {
  min-height: 36px;
  gap: 12px;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 760;
}

.spector-call__person {
  padding-top: 8px;
}

.spector-call__person > strong,
.spector-price-note aside strong {
  font-size: 10px;
  letter-spacing: 0.26em;
}

.spector-call__person div {
  gap: 12px;
  margin-top: 34px;
}

.spector-call__person img,
.spector-price-note aside img {
  width: 44px;
  height: 44px;
}

.spector-call__person b {
  font-size: 13px;
}

.spector-call__person span {
  font-size: 9px;
}

.spector-expertise,
.spector-pricing {
  overflow: hidden;
}

.spector-expertise::before,
.spector-pricing::before {
  opacity: 0;
}

.spector-bento {
  grid-template-columns: 1.05fr 44px 0.96fr 0.96fr;
  grid-template-rows: 276px 250px 116px;
  max-width: var(--spector-max);
  gap: 7px;
}

.spector-bento > * {
  border-color: rgba(10, 10, 10, 0.08);
  padding: clamp(18px, 2vw, 26px);
  box-shadow: none;
}

.spector-tile:hover {
  border-color: rgba(239, 51, 64, 0.22);
  box-shadow: none;
  transform: translateY(-3px);
}

.spector-founder {
  grid-column: 1;
  grid-row: 1;
}

.spector-precision-card {
  grid-column: 1;
  grid-row: 2 / span 2;
}

.spector-strip {
  grid-column: 2;
  grid-row: 1 / span 3;
  padding: 15px 0;
}

.spector-dark-card {
  grid-column: 3;
  grid-row: 1;
}

.spector-control-card {
  grid-column: 4;
  grid-row: 1;
}

.spector-plans-card {
  grid-column: 3;
  grid-row: 2;
}

.spector-metric-card--one,
.spector-metric-card--two {
  grid-row: 3;
}

.spector-metric-card--one {
  grid-column: 3;
  width: calc(50% - 4px);
  justify-self: start;
}

.spector-metric-card--two {
  grid-column: 3;
  width: calc(50% - 4px);
  justify-self: end;
}

.spector-repeat-card {
  grid-column: 4;
  grid-row: 2 / span 2;
}

.spector-founder h3,
.spector-control-card h3,
.spector-plans-card h3,
.spector-precision-card h3,
.spector-repeat-card h3 {
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 820;
}

.spector-founder p,
.spector-dark-card p,
.spector-control-card p,
.spector-plans-card p,
.spector-precision-card p,
.spector-repeat-card p,
.spector-metric-card p {
  margin-top: 12px;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 560;
  line-height: 1.22;
}

.spector-founder div {
  gap: 18px;
  margin-top: 28px;
}

.spector-founder img {
  width: 78px;
}

.spector-founder b {
  font-size: 12px;
}

.spector-founder em {
  font-size: 10px;
}

.spector-strip span,
.spector-strip b {
  font-size: 10px;
}

.spector-dark-card strong {
  font-size: clamp(46px, 5.2vw, 70px);
}

.spector-dark-card h3 {
  margin-top: 22px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.spector-control-card h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.spector-control-card i {
  width: clamp(82px, 8.8vw, 112px);
  margin-top: 20px;
  border-radius: 22px;
  animation: spectorControlPulse 4.2s ease-in-out infinite;
}

.spector-precision-card figure {
  width: min(158px, 68%);
  margin-bottom: 24px;
}

.spector-plans-card {
  grid-template-columns: minmax(0, 1fr) 92px;
  align-items: center;
  gap: 10px;
}

.spector-plans-card a {
  margin-top: 12px;
  font-size: 11px;
}

.spector-plan-stack {
  min-height: 86px;
}

.spector-plan-stack span {
  width: 44px;
  height: 70px;
}

.spector-metric-card {
  padding: 14px;
}

.spector-metric-card h3 {
  font-size: 11px;
}

.spector-metric-card strong {
  margin-top: 10px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.spector-metric-card em {
  right: 12px;
  bottom: 10px;
  padding: 3px 6px;
  font-size: 8px;
}

.spector-repeat-card strong {
  margin-top: 36px;
  font-size: clamp(62px, 7vw, 96px);
}

.spector-pricing__intro {
  max-width: 820px;
  margin-bottom: 38px;
  padding-left: 170px;
}

.spector-pricing__intro span {
  display: block;
  padding-top: 9px;
  border-top: 1px solid var(--spector-line);
  font-size: 13px;
}

.spector-price-grid,
.spector-price-note {
  width: min(var(--spector-max), calc(100vw - (var(--gutter) * 2)));
}

.spector-price-grid {
  gap: 8px;
}

.spector-price {
  grid-template-columns: 64px minmax(150px, 0.7fr) minmax(112px, 0.42fr) minmax(250px, 1fr) minmax(170px, 0.58fr);
  gap: clamp(18px, 2.8vw, 42px);
  min-height: 148px;
  border: 0;
  border-radius: 8px;
  background: #f8f8f7;
  padding: clamp(22px, 2.6vw, 32px);
}

.spector-ticket {
  width: 42px;
  height: 84px;
}

.spector-ticket::before {
  top: 44px;
}

.spector-price__plan h3 {
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 760;
}

.spector-price__plan strong {
  margin-top: 9px;
  font-size: clamp(26px, 2.7vw, 40px);
  font-weight: 730;
}

.spector-price__meta b {
  padding: 4px 8px;
  font-size: 8px;
}

.spector-price__meta em {
  margin-top: 20px;
  font-size: 10px;
}

.spector-price ul {
  gap: 7px;
}

.spector-price li {
  font-size: 10px;
  line-height: 1.14;
}

.spector-price li::before {
  margin-right: 7px;
}

.spector-price__action a {
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
}

.spector-price__action p {
  max-width: 150px;
  margin-top: 18px;
  font-size: 10px;
  line-height: 1.18;
}

.spector-price-note {
  grid-template-columns: minmax(0, 0.86fr) minmax(250px, 0.52fr);
  margin-top: clamp(44px, 5vw, 74px);
}

.spector-price-note p {
  max-width: 360px;
  font-size: clamp(20px, 2vw, 27px);
}

@media (max-width: 1180px) {
  .spector-bento {
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .spector-founder,
  .spector-precision-card,
  .spector-dark-card,
  .spector-control-card,
  .spector-plans-card,
  .spector-metric-card--one,
  .spector-metric-card--two,
  .spector-repeat-card {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    transform: none;
  }

  .spector-strip {
    grid-column: 2;
    grid-row: 1 / span 4;
    writing-mode: vertical-rl;
  }
}

@media (max-width: 900px) {
  .spector-process__rail,
  .spector-bento,
  .spector-price,
  .spector-call,
  .spector-price-note {
    grid-template-columns: 1fr;
  }

  .spector-process__rail {
    display: grid;
    width: 100%;
    overflow: visible;
    transform: none !important;
  }

  .spector-step {
    flex-basis: auto;
  }

  .spector-strip,
  .spector-price ul,
  .spector-price__action {
    grid-column: auto;
    grid-row: auto;
  }

  .spector-strip {
    min-height: 46px;
    writing-mode: initial;
    padding: 14px 18px;
  }

  .spector-metric-card--one,
  .spector-metric-card--two {
    width: auto;
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  .spector-process.section-space,
  .spector-expertise.section-space,
  .spector-pricing.section-space {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .spector-headline {
    font-size: clamp(36px, 11.4vw, 52px);
  }

  .spector-bento > * {
    padding: 22px;
  }

  .spector-price {
    gap: 18px;
    padding: 22px;
  }

  .spector-price__action p {
    margin-top: 14px;
  }
}

/* Final scale pass for approved Spector sections and cinematic testimonials */
.spector-process,
.spector-call,
.spector-expertise,
.spector-pricing,
.pricing-contact {
  --spector-max: 1200px;
}

.spector-process.section-space,
.spector-expertise.section-space,
.spector-pricing.section-space,
.pricing-contact.section-space {
  padding-top: clamp(66px, 6.7vw, 98px);
  padding-bottom: clamp(66px, 6.7vw, 98px);
}

.spector-headline {
  font-size: clamp(46px, 5.65vw, 78px);
}

.spector-step {
  min-height: 356px;
}

.spector-step h3 {
  font-size: clamp(28px, 2.55vw, 38px);
}

.spector-bento {
  grid-template-columns: 1.06fr 48px 0.98fr 0.98fr;
  grid-template-rows: 292px 264px 124px;
}

.spector-bento > * {
  padding: clamp(20px, 2vw, 28px);
}

.spector-founder h3,
.spector-control-card h3,
.spector-plans-card h3,
.spector-precision-card h3,
.spector-repeat-card h3 {
  font-size: clamp(27px, 2.85vw, 40px);
}

.spector-founder p,
.spector-dark-card p,
.spector-control-card p,
.spector-plans-card p,
.spector-precision-card p,
.spector-repeat-card p,
.spector-metric-card p {
  font-size: clamp(11px, 0.88vw, 13px);
}

.spector-dark-card strong {
  font-size: clamp(50px, 5.45vw, 76px);
}

.spector-dark-card h3 {
  font-size: clamp(27px, 2.55vw, 38px);
}

.spector-price-grid,
.spector-price-note {
  width: min(var(--spector-max), calc(100vw - (var(--gutter) * 2)));
}

.spector-price {
  min-height: 164px;
  grid-template-columns: 72px minmax(165px, 0.74fr) minmax(124px, 0.44fr) minmax(270px, 1fr) minmax(182px, 0.58fr);
}

.spector-price__plan h3 {
  font-size: clamp(26px, 2.45vw, 35px);
}

.spector-price__plan strong {
  font-size: clamp(30px, 2.9vw, 45px);
}

.pricing-contact {
  width: min(var(--spector-max), calc(100vw - (var(--gutter) * 2)));
  margin-inline: auto;
}

.pricing-contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
  margin-top: clamp(30px, 5vw, 64px);
  border-top: 1px solid var(--spector-line);
  border-bottom: 1px solid var(--spector-line);
  padding: clamp(28px, 4vw, 54px) 0;
}

.pricing-contact__panel p {
  max-width: 680px;
  margin: 0;
  color: #272b2f;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.pricing-contact__panel div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.spector-pill--ghost {
  background: transparent;
  color: rgba(5, 5, 5, 0.72);
}

.testimonials {
  position: relative;
  isolation: isolate;
  min-height: clamp(650px, 52vw, 760px);
  overflow: hidden;
  background: #111;
  color: #f4f1ea;
}

.testimonials::before {
  inset: -8%;
  z-index: -3;
  background:
    radial-gradient(circle at 67% 43%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0 33%, rgba(255, 255, 255, 0.08) 33% 63%, rgba(0, 0, 0, 0.58) 63% 100%),
    linear-gradient(180deg, #0d0d0d, #292929 48%, #121212);
  animation: spectorTextureShift 10s ease-in-out infinite alternate;
}

.testimonials::after {
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.12), transparent 28%);
  background-size: 96px 96px, 96px 96px, 100% 100%;
  mix-blend-mode: overlay;
}

.testimonials .eyebrow {
  display: none;
}

.testimonials.section-space {
  display: grid;
  align-content: start;
  padding: clamp(72px, 7vw, 92px) var(--gutter) clamp(58px, 6vw, 76px);
}

.testimonials .compact-head {
  width: min(1000px, 100%);
  margin: 0 auto clamp(58px, 6vw, 82px);
  text-align: center;
}

.testimonials .compact-head h2 {
  margin: 0;
  color: #f5f2eb;
  font-size: clamp(44px, 5.15vw, 72px);
  font-weight: 830;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.testimonials .compact-head::after {
  content: "THE BRANDS RESPONSE TO OUR END-TO-END";
  display: block;
  margin-top: 16px;
  color: rgba(245, 242, 235, 0.64);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.testimonial-stage {
  width: min(980px, calc(100vw - (var(--gutter) * 2)));
  min-height: 380px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: -46px;
  width: min(390px, 40vw);
  height: 420px;
  background: rgba(0, 0, 0, 0.36);
  pointer-events: none;
}

.testimonial-quote {
  inset: 0;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 252px);
  gap: clamp(72px, 9vw, 140px);
  align-items: center;
  visibility: hidden;
  opacity: 0 !important;
  transform: none;
  pointer-events: none;
  transition: opacity 420ms var(--ease), transform 520ms var(--ease), visibility 0s linear 520ms;
}

.testimonial-quote.is-active {
  visibility: visible;
  opacity: 1 !important;
  transform: none;
  pointer-events: auto;
  transition-delay: 0s;
}

.testimonial-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.testimonial-copy span {
  margin-bottom: 28px;
  color: var(--orange);
  font-size: clamp(54px, 5vw, 78px);
  line-height: 0.45;
}

.testimonial-copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(20px, 1.85vw, 27px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.testimonial-copy div {
  margin-top: 32px;
}

.testimonial-copy strong {
  font-size: 18px;
  color: #fff;
}

.testimonial-copy em {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.testimonial-quote img {
  width: min(252px, 100%);
  aspect-ratio: 0.78;
  justify-self: end;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: none;
  filter: saturate(0.86) contrast(0.98);
}

.testimonial-controls {
  left: 50%;
  bottom: 8px;
  gap: 14px;
}

.testimonial-controls button {
  width: 32px;
  height: 32px;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--orange);
  font-size: 12px;
}

@media (max-width: 900px) {
  .testimonial-stage {
    min-height: 600px;
  }

  .testimonial-stage::before {
    left: 0;
    width: 54%;
    height: 100%;
  }

  .testimonial-quote {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: start;
  }

  .testimonial-quote img {
    order: -1;
    justify-self: center;
    width: min(240px, 72vw);
  }

  .testimonial-copy {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .spector-process,
  .spector-call,
  .spector-expertise,
  .spector-pricing,
  .pricing-contact {
    --spector-max: 100%;
  }

  .spector-headline {
    font-size: clamp(39px, 12.2vw, 56px);
  }

  .spector-step {
    min-height: 318px;
  }

  .testimonials.section-space {
    padding-top: 62px;
    padding-bottom: 70px;
  }

  .testimonials .compact-head {
    margin-bottom: 36px;
  }

  .testimonials .compact-head h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .testimonials .compact-head::after {
    font-size: 10px;
  }

  .testimonial-copy p {
    font-size: clamp(19px, 6vw, 25px);
  }

  .pricing-contact__panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pricing-contact__panel div {
    justify-content: flex-start;
  }

  .pricing-contact__panel .spector-pill {
    min-height: 54px;
    font-size: 18px;
    padding-inline: 20px;
  }
}

/* Production cleanup pass: white sections, stronger scale, safer typography. */
:root {
  --paper-soft: #fff;
  --sand: #fff;
  --section: clamp(82px, 8vw, 118px);
  --max: 1240px;
}

body {
  background: #fff;
}

main > section:not(.hero),
.about,
.impact,
.projects,
.spector-process,
.spector-expertise,
.pricing-contact,
.faq,
.blog,
.footer,
.services {
  background: #fff !important;
}

.line-mask {
  overflow: hidden;
  padding: 0.06em 0 0.12em;
  margin: -0.04em 0 -0.08em;
}

.line-mask > span {
  line-height: inherit;
}

.hero-title,
.spector-headline,
.compact-head h2,
.blog-head h2,
.detail-hero h1,
.contact-hero h1,
.project-card h3,
.blog-card h3,
.spector-founder h3,
.spector-control-card h3,
.spector-plans-card h3,
.spector-precision-card h3,
.spector-repeat-card h3,
.service-title h2,
.service-item strong,
.pricing-contact__panel p {
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.spector-headline {
  font-size: clamp(58px, 6.7vw, 104px);
  line-height: 0.98;
}

.detail-hero h1,
.contact-hero h1 {
  line-height: 1;
}

.projects {
  padding-top: clamp(86px, 8vw, 122px);
}

.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  width: min(1260px, calc(100vw - (var(--gutter) * 2)));
  max-width: none;
}

.project-card--four,
.project-card--five {
  grid-column: auto;
  margin-top: 0;
}

.project-card__media,
.project-card--four .project-card__media,
.project-card--five .project-card__media {
  min-height: clamp(360px, 31vw, 500px);
}

.project-card__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px 24px;
  background: #fff;
}

.project-card h3 {
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.06;
}

.project-card time {
  padding-top: 0.45em;
  font-size: clamp(15px, 1.1vw, 18px);
  white-space: normal;
  text-align: right;
}

.spector-process,
.spector-expertise,
.pricing-contact {
  --spector-max: 1320px;
}

.spector-process.section-space,
.spector-expertise.section-space,
.pricing-contact.section-space {
  padding-top: clamp(72px, 6.5vw, 104px);
  padding-bottom: clamp(72px, 6.5vw, 104px);
}

.spector-kicker {
  max-width: min(var(--spector-max), calc(100vw - (var(--gutter) * 2)));
  margin-bottom: clamp(34px, 4vw, 56px);
}

.spector-process__viewport {
  max-width: min(var(--spector-max), calc(100vw - (var(--gutter) * 2)));
}

.spector-process__rail {
  gap: 16px;
  width: 100%;
}

.spector-step {
  flex: 1 1 0;
  min-height: clamp(500px, 39vw, 620px);
  padding: clamp(28px, 2.8vw, 42px);
  background: #fff;
  opacity: 0.72;
}

.spector-step.is-active {
  transform: translateY(-6px) scale(1.01);
}

.spector-step h3 {
  font-size: clamp(34px, 3.3vw, 50px);
  letter-spacing: 0;
  line-height: 1.02;
}

.spector-step p {
  font-size: clamp(17px, 1.25vw, 21px);
  letter-spacing: 0;
  line-height: 1.25;
}

.spector-step small {
  font-size: 15px;
}

.spector-step__image {
  min-height: clamp(178px, 15vw, 250px);
  margin: clamp(24px, 3vw, 44px) 0;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 60px rgba(5, 5, 5, 0.08);
}

.spector-step__image::before,
.spector-step__image i {
  display: none;
}

.spector-expertise {
  padding-top: clamp(80px, 7vw, 112px);
}

.spector-bento {
  width: min(var(--spector-max), calc(100vw - (var(--gutter) * 2)));
  margin-inline: auto;
  grid-template-columns: 1.08fr 58px 1fr 1fr;
  grid-template-rows: 348px 322px 148px;
}

.spector-bento > * {
  background: #fff;
  padding: clamp(26px, 2.7vw, 38px);
}

.spector-founder h3,
.spector-control-card h3,
.spector-plans-card h3,
.spector-precision-card h3,
.spector-repeat-card h3 {
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.spector-founder p,
.spector-dark-card p,
.spector-control-card p,
.spector-plans-card p,
.spector-precision-card p,
.spector-repeat-card p,
.spector-metric-card p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.32;
  letter-spacing: 0;
}

.spector-dark-card {
  background: #111 !important;
}

.spector-dark-card strong {
  font-size: clamp(66px, 6vw, 96px);
  line-height: 0.9;
}

.spector-repeat-card {
  color: #fff;
  background: var(--spector-red) !important;
}

.spector-repeat-card strong {
  line-height: 0.9;
}

.services {
  color: var(--ink);
  background: #fff !important;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
  border-bottom: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 0;
}

.services__inner {
  max-width: min(1320px, calc(100vw - (var(--gutter) * 2)));
}

.eyebrow--light {
  color: var(--ink);
}

.service-title h2 {
  font-size: clamp(56px, 5.4vw, 88px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.service-item {
  grid-template-columns: 94px 1fr 64px;
  color: rgba(5, 5, 5, 0.48);
  border-bottom: 1px solid rgba(5, 5, 5, 0.13);
}

.service-item:hover,
.service-item.is-active {
  color: var(--ink);
}

.service-item span,
.service-item strong {
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-item i {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(5, 5, 5, 0.12);
}

.service-item.is-active i {
  color: #fff;
  background: var(--orange);
}

.service-layout {
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
  gap: clamp(44px, 5vw, 72px);
}

.service-media-wrap,
.service-media {
  min-height: clamp(360px, 31vw, 500px);
}

.service-media {
  border: 1px solid rgba(5, 5, 5, 0.1);
  opacity: 1;
  box-shadow: 0 28px 70px rgba(5, 5, 5, 0.08);
}

.impact.section-space,
.faq.section-space,
.blog.section-space {
  background: #fff;
}

.impact__image {
  background-color: #fff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  filter: none;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(5, 5, 5, 0.1);
}

.pricing-contact {
  width: min(1320px, calc(100vw - (var(--gutter) * 2)));
}

.pricing-contact__panel {
  grid-template-columns: minmax(0, 0.95fr) auto;
  margin-top: clamp(38px, 5vw, 70px);
  padding: clamp(42px, 5vw, 72px) 0;
}

.pricing-contact__panel p {
  max-width: 840px;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.1;
  letter-spacing: 0;
}

.pricing-contact__panel p .word {
  color: rgba(5, 5, 5, 0.28);
}

.blog-head,
.blog-grid {
  width: min(1280px, calc(100vw - (var(--gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.blog-card__image {
  min-height: clamp(270px, 20vw, 360px);
  background-color: #fff;
  border: 1px solid rgba(5, 5, 5, 0.08);
}

.blog-card h3 {
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.12;
}

.footer {
  color: var(--ink);
  background: #fff;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.footer .eyebrow--light {
  color: var(--ink);
}

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

  .project-card__media,
  .project-card--four .project-card__media,
  .project-card--five .project-card__media {
    min-height: clamp(300px, 58vw, 430px);
  }

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

  .project-card time {
    padding-top: 0;
    text-align: left;
  }

  .spector-process__rail {
    width: max-content;
  }

  .spector-step {
    flex: 0 0 min(82vw, 430px);
  }

  .spector-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

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

  .service-item {
    grid-template-columns: 64px 1fr 52px;
  }

  .pricing-contact__panel {
    grid-template-columns: 1fr;
  }

  .pricing-contact__panel div {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .spector-headline {
    font-size: clamp(40px, 10vw, 58px);
    line-height: 1;
  }

  .spector-step {
    min-height: 500px;
  }

  .spector-step__image {
    min-height: 190px;
  }

  .service-title {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-title h2 {
    font-size: clamp(42px, 11vw, 60px);
  }

  .service-item span,
  .service-item strong {
    font-size: clamp(24px, 7vw, 34px);
  }

  .pricing-contact__panel p {
    font-size: clamp(27px, 7.5vw, 38px);
  }

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

/* Correction: show the first three case studies and scale the process cards up. */
.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1360px, calc(100vw - (var(--gutter) * 2)));
  gap: clamp(18px, 2vw, 28px);
}

.project-card--one,
.project-card--two,
.project-card--three,
.project-card--four,
.project-card--five {
  grid-column: auto;
  margin-top: 0;
}

.project-card--one .project-card__media,
.project-card--two .project-card__media,
.project-card--three .project-card__media {
  min-height: clamp(360px, 27vw, 470px);
}

.project-card h3 {
  font-size: clamp(26px, 2.05vw, 36px);
  line-height: 1.1;
}

.project-card time {
  max-width: 15ch;
  line-height: 1.25;
}

.spector-process {
  --spector-max: 1400px;
}

.spector-process__viewport {
  max-width: min(1400px, calc(100vw - (var(--gutter) * 2)));
}

.spector-step {
  min-height: clamp(620px, 43vw, 720px);
  padding: clamp(34px, 3.2vw, 52px);
}

.spector-step h3 {
  font-size: clamp(42px, 3.8vw, 64px);
  line-height: 1.02;
}

.spector-step p {
  max-width: 25ch;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.3;
}

.spector-step small,
.spector-step li {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.45;
}

.spector-step__image {
  min-height: clamp(240px, 18vw, 320px);
  margin: clamp(30px, 3.6vw, 54px) 0;
}

.service-item > *,
.blog-card,
.project-card,
.project-card__meta {
  min-width: 0;
}

@media (max-width: 1120px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .project-card--one .project-card__media,
  .project-card--two .project-card__media,
  .project-card--three .project-card__media {
    min-height: clamp(310px, 62vw, 460px);
  }

  .spector-process__rail {
    width: max-content;
  }

  .spector-step {
    flex: 0 0 min(88vw, 540px);
    min-height: 610px;
  }

  .spector-step__image {
    min-height: 240px;
  }

  .service-layout,
  .service-list,
  .services__inner,
  .blog,
  .blog-head,
  .blog-grid {
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .spector-step {
    flex-basis: min(90vw, 420px);
    min-height: 570px;
    padding: 28px;
  }

  .spector-step h3 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .spector-step__image {
    min-height: 210px;
  }

  .service-item {
    grid-template-columns: 48px minmax(0, 1fr) 44px;
    gap: 10px;
  }
}

.spector-step figure.spector-step__image {
  min-height: clamp(240px, 18vw, 320px);
  height: auto;
  margin: clamp(30px, 3.6vw, 54px) 0;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 60px rgba(5, 5, 5, 0.08);
}

.spector-step figure.spector-step__image::before,
.spector-step figure.spector-step__image::after,
.spector-step figure.spector-step__image i {
  display: none;
  content: none;
}

@media (max-width: 900px) {
  .spector-step figure.spector-step__image {
    min-height: 250px;
  }
}

@media (max-width: 680px) {
  .spector-step figure.spector-step__image {
    min-height: 220px;
  }
}

/* Production header and founder text cleanup. */
.site-header {
  width: min(var(--wide), calc(100vw - (var(--gutter) * 2)));
  max-width: none;
  margin: 18px auto 0;
  padding: 18px clamp(18px, 2.4vw, 30px);
  align-items: center;
  color: #fff;
  background: rgba(5, 5, 5, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(5, 5, 5, 0.18);
}

.site-header .brand__lustra,
.site-header .tagline,
.site-header .site-nav a {
  color: #fff;
}

.site-header .brand__studio {
  color: var(--orange);
}

.site-header .tagline,
.site-header .site-nav a {
  opacity: 0.78;
}

.site-header .site-nav a:hover {
  color: #fff;
  opacity: 1;
}

.spector-founder__text {
  margin-top: clamp(28px, 3vw, 44px);
}

.spector-founder__text span {
  display: grid;
  gap: 4px;
}

.spector-founder__text b,
.spector-founder__text em {
  display: block;
}

.spector-founder__text b {
  font-size: clamp(17px, 1.25vw, 21px);
}

.spector-founder__text em {
  color: rgba(5, 5, 5, 0.62);
  font-size: clamp(14px, 1vw, 17px);
  font-style: normal;
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100vw - 28px);
    margin-top: 14px;
  }
}

/* Restore original header shape and dark footer contrast. */
.site-header {
  width: auto;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 40px var(--gutter) 20px;
  align-items: start;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header .brand__lustra,
.site-header .tagline,
.site-header .site-nav a {
  color: var(--ink);
  opacity: 1;
}

.site-header .brand__studio {
  color: var(--orange);
}

.hero .site-header,
body[data-page="home"] .site-header {
  color: var(--ink);
}

.footer {
  color: var(--paper) !important;
  background: var(--dark) !important;
  border-top: 0;
}

.footer-grid h2,
.footer .newsletter h2,
.footer address h2 {
  color: #fff;
}

.footer .newsletter p,
.footer-grid a,
.footer-grid span,
.footer address span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid a:hover {
  color: #fff;
}

.newsletter form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter input {
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 28px 20px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Prevent mid-word clipping/splitting across cards and detail pages. */
body,
h1,
h2,
h3,
h4,
p,
a,
span,
strong,
em,
li,
dd,
dt,
button {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-title,
.spector-headline,
.compact-head h2,
.blog-head h2,
.detail-hero h1,
.contact-hero h1,
.project-card h3,
.blog-card h3,
.spector-founder h3,
.spector-control-card h3,
.spector-plans-card h3,
.spector-precision-card h3,
.spector-repeat-card h3,
.service-title h2,
.service-item strong,
.pricing-contact__panel p,
.detail-copy h2,
.article-body h2,
.detail-copy p,
.article-body p,
.detail-case-study {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.spector-plans-card h3 {
  max-width: 9.5ch;
  font-size: clamp(30px, 3vw, 46px);
}

.spector-plans-card p {
  max-width: 28ch;
}

.detail-hero__copy,
.detail-copy__intro,
.detail-blocks article,
.article-body,
.contact-panel,
.spector-tile {
  min-width: 0;
}

.footer-grid a,
.contact-card h2,
.pricing-contact__panel a,
.detail-meta dd {
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .spector-plans-card h3 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
  }
}

html,
body {
  overflow-x: hidden;
}

.logo-strip {
  overflow: hidden;
}

.spector-plans-card {
  grid-template-columns: minmax(220px, 1fr) 76px;
  gap: clamp(12px, 1.8vw, 24px);
}

.spector-plans-card h3 {
  max-width: none;
  font-size: clamp(28px, 2.55vw, 40px);
  line-height: 1.06;
}

.spector-plans-card p {
  max-width: 30ch;
}

.spector-plan-stack {
  width: 76px;
  min-width: 76px;
}

@media (max-width: 680px) {
  .spector-plans-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .spector-plans-card h3 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .spector-plan-stack {
    width: 92px;
  }
}
