@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url("assets/fonts/archivo-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-latin-600.woff2") format("woff2");
}

:root {
  --ink: #111412;
  --ink-soft: #1b201c;
  --concrete: #f3f2ea;
  --paper: #ffffff;
  --signal: #c8ff3d;
  --steel: #667069;
  --line: rgba(17, 20, 18, 0.17);
  --line-light: rgba(255, 255, 255, 0.18);
  --shell: 1540px;
  --gutter: clamp(22px, 4.6vw, 76px);
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--concrete);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  font-variation-settings: "wdth" 100;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(92px, 11vw, 170px);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--signal);
  color: var(--ink);
  font-weight: 700;
}

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

.scroll-progress {
  position: fixed;
  z-index: 250;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--signal);
  will-change: transform;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--steel);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow--signal {
  color: var(--signal);
}

.statement {
  max-width: 1130px;
}

.statement h2 {
  margin-bottom: 24px;
  font-size: clamp(52px, 7.4vw, 118px);
  font-weight: 760;
  letter-spacing: -0.073em;
  line-height: 0.9;
}

.statement > p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--steel);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.45;
}

.statement--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: end;
}

.statement--split h2 {
  margin-bottom: 0;
}

.statement--split > p {
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.55;
}

.statement--dark {
  color: var(--concrete);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 15px 18px;
  border: 1px solid transparent;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(3px, -3px);
}

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

.button--signal:hover,
.button--signal:focus-visible {
  background: var(--concrete);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--concrete);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  border-color: var(--signal);
  color: var(--signal);
}

.button--dark {
  min-width: min(100%, 390px);
  background: var(--ink);
  color: var(--signal);
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

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

.text-link--light {
  color: var(--concrete);
}

.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 12px var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--concrete);
  transition: min-height 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 20, 18, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand__front {
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.2vw, 38px);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
  color: #d4d8d3;
}

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

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

.nav-cta {
  padding: 12px 15px;
  background: var(--signal);
  color: var(--ink);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--concrete);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--concrete);
}

.hero__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: clamp(48px, 5.2vw, 82px) clamp(48px, 5.2vw, 82px);
  mask-image: linear-gradient(90deg, black 0%, black 52%, transparent 96%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -4%;
  width: min(72vw, 1050px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 61, 0.15), transparent 66%);
  filter: blur(12px);
}

.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  padding-top: calc(var(--header-height) + 52px);
  padding-bottom: 96px;
}

.hero__copy-block {
  position: relative;
  z-index: 3;
}

.hero__brand {
  margin-bottom: clamp(32px, 4.5vh, 54px);
  font-size: clamp(78px, 9.2vw, 150px);
  font-weight: 850;
  letter-spacing: -0.088em;
  line-height: 0.72;
}

.hero__brand span {
  font-weight: 500;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.7vw, 74px);
  font-weight: 690;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero__copy {
  margin-bottom: 30px;
  color: #b9c0ba;
  font-size: clamp(17px, 1.5vw, 22px);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #858d86;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 770px;
  justify-self: end;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #e7e8e0;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.42);
}

.browser--hero {
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-product:hover .browser--hero {
  transform: rotateY(0) rotateX(0) translateY(-7px);
}

.browser__bar {
  height: 44px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(17, 20, 18, 0.14);
  background: #f5f5ef;
  color: #687069;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
}

.browser__dots {
  display: flex;
  gap: 5px;
}

.browser__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aeb3ae;
}

.browser__address {
  justify-self: center;
}

.browser__status {
  justify-self: end;
  color: #33402e;
}

.browser__status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #69c941;
}

.demo-site {
  position: relative;
  min-height: clamp(440px, 44vw, 650px);
  overflow: hidden;
  background: var(--concrete);
  color: var(--ink);
}

.demo-site__nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 2.2vw, 34px);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(7px, 0.7vw, 10px);
  text-transform: uppercase;
}

.demo-site__logo {
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(17px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: none;
}

.demo-site__logo span,
.demo-site__body em {
  color: #5f8f00;
}

.demo-site__body {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vw, 84px) clamp(22px, 4vw, 62px) 78px;
}

.demo-site__kicker,
.demo-site__button {
  display: inline-block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(7px, 0.72vw, 10px);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.demo-site__kicker {
  margin-bottom: 20px;
}

.demo-site__body strong {
  display: block;
  margin-bottom: clamp(28px, 4vw, 52px);
  font-size: clamp(46px, 5.3vw, 84px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.demo-site__body em {
  font-style: normal;
}

.demo-site__button {
  padding: 13px 15px;
  background: var(--ink);
  color: var(--signal);
}

.demo-site__shape {
  position: absolute;
  right: -13%;
  bottom: 4%;
  width: 44%;
  aspect-ratio: 1;
  animation: shape-float 7s ease-in-out infinite;
}

.demo-site__shape span {
  position: absolute;
  inset: 0;
  border: clamp(9px, 1.2vw, 17px) solid var(--ink);
  transform: rotate(45deg);
}

.demo-site__shape span:nth-child(2) {
  inset: 18%;
  border-color: var(--signal);
}

.demo-site__shape span:nth-child(3) {
  inset: 38%;
  background: var(--ink);
  border: 0;
}

.demo-site__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 12px 0;
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.demo-site__ticker span {
  display: inline-block;
  min-width: max-content;
  animation: ticker 14s linear infinite;
}

.browser__scan {
  position: absolute;
  z-index: 5;
  right: 0;
  left: 0;
  height: 1px;
  top: 44px;
  background: var(--signal);
  box-shadow: 0 0 16px var(--signal);
  opacity: 0;
  animation: scan 5.5s ease-in-out 1.2s infinite;
}

.hero-product__orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(200, 255, 61, 0.28);
  border-radius: 50%;
}

.hero-product__orbit--one {
  top: -12%;
  right: -10%;
  width: 54%;
  aspect-ratio: 1;
  animation: orbit 18s linear infinite;
}

.hero-product__orbit--two {
  bottom: -13%;
  left: -8%;
  width: 36%;
  aspect-ratio: 1;
  animation: orbit 13s linear infinite reverse;
}

.hero-product__orbit::after {
  content: "";
  position: absolute;
  top: 46%;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--signal);
}

.hero-product__note {
  position: absolute;
  z-index: 6;
  padding: 9px 11px;
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-product__note--top {
  top: 12%;
  left: -6%;
}

.hero-product__note--bottom {
  right: -4%;
  bottom: 12%;
}

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

@keyframes scan {
  0%, 16% { top: 44px; opacity: 0; }
  24% { opacity: 0.8; }
  68% { top: 96%; opacity: 0.8; }
  76%, 100% { top: 96%; opacity: 0; }
}

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

@keyframes shape-float {
  50% { transform: translate(-10px, -12px) rotate(3deg); }
}

.js .hero-enter {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.js .hero-enter--1 { animation-delay: 70ms; }
.js .hero-enter--2 { animation-delay: 140ms; }
.js .hero-enter--3 { animation-delay: 220ms; }
.js .hero-enter--4 { animation-delay: 300ms; }
.js .hero-enter--5 { animation-delay: 380ms; }
.js .hero-enter--visual { animation-delay: 260ms; }

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Transformation */
.transformation {
  background: var(--concrete);
}

.compare {
  position: relative;
  min-height: clamp(520px, 57vw, 830px);
  margin-top: clamp(58px, 8vw, 112px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #d9d8d0;
  cursor: ew-resize;
  user-select: none;
}

.compare__screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.compare__screen--after {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare__divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-50%);
  background: var(--signal);
  pointer-events: none;
}

.compare__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 20px;
  box-shadow: 0 8px 28px rgba(17, 20, 18, 0.22);
}

.compare__range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare__label {
  position: absolute;
  z-index: 4;
  top: 20px;
  padding: 10px 12px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.compare__label--before {
  right: 20px;
  background: #e7e5dc;
  color: #444a45;
}

.compare__label--after {
  left: 20px;
  background: var(--signal);
  color: var(--ink);
}

.old-site,
.new-site {
  width: 100%;
  height: 100%;
}

.old-site {
  padding: 5% 6%;
  background: #d4d0c3;
  color: #313833;
  font-family: Arial, sans-serif;
}

.old-site__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid #858981;
  background: #f0eee7;
  font-size: clamp(8px, 0.9vw, 13px);
}

.old-site__header b {
  color: #245580;
  font-family: Georgia, serif;
  font-size: clamp(17px, 2.2vw, 34px);
}

.old-site__hero {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 5%;
  align-items: center;
  min-height: 58%;
  padding: 5% 4%;
  border-right: 1px solid #858981;
  border-left: 1px solid #858981;
  background: #fff;
}

.old-site__hero strong {
  display: block;
  color: #244d73;
  font-family: Georgia, serif;
  font-size: clamp(25px, 3.6vw, 54px);
  line-height: 1.06;
}

.old-site__hero p {
  font-size: clamp(10px, 1.1vw, 16px);
  line-height: 1.5;
}

.old-site__hero button {
  padding: 9px 14px;
  border: 1px outset #999;
  background: linear-gradient(#f7f7f7, #b9b9b9);
  font-size: 10px;
}

.old-site__photo {
  aspect-ratio: 1.25;
  display: grid;
  place-items: center;
  border: 7px solid white;
  outline: 1px solid #a4a49d;
  background: linear-gradient(135deg, #87917f, #36433a);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.old-site__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
  padding: 2%;
  border: 1px solid #858981;
  background: #eee;
}

.old-site__boxes span {
  padding: 5% 4%;
  border: 1px solid #aaa;
  background: #fff;
  color: #244d73;
  font-family: Georgia, serif;
  font-size: clamp(10px, 1.3vw, 18px);
  font-weight: bold;
}

.new-site {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--concrete);
}

.new-site::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 68px 68px;
}

.new-site__header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 2.5vw, 38px) clamp(22px, 3.5vw, 54px);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(7px, 0.75vw, 10px);
}

.new-site__header b {
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: -0.05em;
}

.new-site__header b span {
  color: var(--signal);
}

.new-site__hero {
  position: relative;
  z-index: 1;
  min-height: 69%;
  padding: clamp(54px, 8vw, 120px) clamp(28px, 5vw, 78px) 70px;
}

.new-site__hero > span {
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(8px, 0.8vw, 11px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.new-site__hero strong {
  display: block;
  margin: 20px 0 34px;
  font-size: clamp(52px, 8.5vw, 136px);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.new-site__hero i {
  display: inline-block;
  padding: 13px 15px;
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.new-site__art {
  position: absolute;
  right: -3%;
  bottom: 6%;
  width: 34%;
  aspect-ratio: 1;
}

.new-site__art span {
  position: absolute;
  inset: 0;
  border-top: clamp(8px, 1.2vw, 18px) solid var(--signal);
  border-left: clamp(8px, 1.2vw, 18px) solid var(--signal);
}

.new-site__art span:last-child {
  inset: 25% 0 0 25%;
  border: 0;
  border-right: clamp(8px, 1.2vw, 18px) solid var(--concrete);
  border-bottom: clamp(8px, 1.2vw, 18px) solid var(--concrete);
}

.new-site__footer {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px clamp(22px, 3.5vw, 54px);
  border-top: 1px solid rgba(255,255,255,0.18);
  color: #9da59e;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(7px, 0.7vw, 9px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.transformation__points p {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 24px 2px;
  font-size: clamp(16px, 1.45vw, 21px);
}

.transformation__points p + p {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.transformation__points span {
  color: var(--steel);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
}

/* Offer */
.offer {
  overflow: hidden;
  background: var(--ink);
  color: var(--concrete);
}

.offer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(50px, 10vw, 160px);
}

.offer__intro h2 {
  max-width: 950px;
  margin-bottom: 30px;
  font-size: clamp(54px, 7.3vw, 112px);
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.offer__intro > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: #aab1ab;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.5;
}

.offer__price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: clamp(28px, 3.6vw, 52px);
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: rotate(1.2deg);
  transition: transform 350ms ease;
}

.offer__price:hover {
  transform: rotate(0);
}

.offer__price strong {
  display: block;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(56px, 6.7vw, 104px);
  letter-spacing: -0.08em;
  line-height: 0.8;
  text-transform: none;
}

.offer__price small {
  display: block;
  margin-bottom: 14px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.offer__scope {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.offer__scope > div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px clamp(18px, 2.5vw, 38px);
}

.offer__scope > div + div {
  border-left: 1px solid var(--line-light);
}

.offer__scope span {
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
}

.offer__scope p {
  max-width: 360px;
  margin-bottom: 0;
  color: #aab1ab;
  font-size: 15px;
  line-height: 1.45;
}

.offer__scope strong {
  display: block;
  margin-bottom: 5px;
  color: var(--concrete);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.offer__inner > .button {
  grid-column: 1 / -1;
  justify-self: start;
}

/* Work */
.work {
  background: var(--paper);
}

.featured-work {
  margin-top: clamp(62px, 9vw, 126px);
}

.featured-work__topline,
.featured-work__bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured-work__canvas {
  position: relative;
  min-height: clamp(480px, 58vw, 870px);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--concrete);
}

.featured-work__canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: clamp(52px, 6vw, 90px) clamp(52px, 6vw, 90px);
}

.featured-work__word {
  position: relative;
  z-index: 2;
  font-size: clamp(82px, 15.5vw, 248px);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.75;
  transition: letter-spacing 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.featured-work__canvas:hover .featured-work__word {
  letter-spacing: -0.065em;
}

.featured-work__word span {
  font-weight: 500;
}

.featured-work__canvas img {
  position: absolute;
  z-index: 3;
  top: 8%;
  right: 6%;
  width: clamp(90px, 14vw, 210px);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.featured-work__canvas:hover img {
  transform: translate(-8px, 9px) rotate(3deg);
}

.featured-work__canvas p {
  position: absolute;
  z-index: 2;
  bottom: 6%;
  left: 5%;
  max-width: 360px;
  margin: 0;
  color: #aab1ab;
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.4;
}

.featured-work__chip {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 6%;
  padding: 12px 14px;
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-work__bottom {
  align-items: center;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  text-transform: none;
}

.featured-work__bottom h3 {
  max-width: 850px;
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(26px, 3.5vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.next-project {
  display: grid;
  grid-template-columns: 0.3fr 1.5fr 0.5fr;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}

.next-project__number,
.next-project > span:last-child {
  color: var(--steel);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.next-project p {
  margin: 0;
  font-size: clamp(23px, 3vw, 44px);
  letter-spacing: -0.04em;
}

/* Process */
.process {
  background: var(--ink);
  color: var(--concrete);
}

.process-story {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.9fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
  margin-top: clamp(70px, 9vw, 130px);
}

.process-visual {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line-light);
  background: #1a1f1b;
}

.process-visual__top {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-light);
  color: #8e968f;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-visual__screen {
  position: relative;
  min-height: clamp(440px, 42vw, 650px);
  overflow: hidden;
  background: var(--concrete);
  color: var(--ink);
}

.process-visual__wire {
  position: absolute;
  inset: 7%;
}

.process-visual__wire span {
  position: absolute;
  display: block;
  background: #d5d5cd;
  transition: background-color 350ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-visual__wire span:nth-child(1) { top: 0; left: 0; width: 22%; height: 4%; }
.process-visual__wire span:nth-child(2) { top: 0; right: 0; width: 36%; height: 4%; }
.process-visual__wire span:nth-child(3) { right: 0; bottom: 0; width: 31%; height: 32%; }
.process-visual__wire span:nth-child(4) { bottom: 0; left: 0; width: 51%; height: 4%; }

.process-visual__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 9%;
  left: 9%;
  transform: translateY(-50%);
}

.process-visual__kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-visual__content strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(56px, 7vw, 106px);
  letter-spacing: -0.08em;
  line-height: 0.82;
  transition: opacity 180ms ease, transform 300ms ease;
}

.process-visual__content i {
  display: block;
  width: 34%;
  height: 12px;
  margin-top: 36px;
  background: var(--signal);
  transition: width 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-visual__cursor {
  position: absolute;
  z-index: 3;
  right: 12%;
  bottom: 18%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--signal);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-visual__progress {
  height: 4px;
  background: #2b322c;
}

.process-visual__progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--signal);
  transition: width 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-visual[data-active="2"] .process-visual__wire span:nth-child(-n+2),
.process-visual[data-active="3"] .process-visual__wire span:not(:last-child),
.process-visual[data-active="4"] .process-visual__wire span {
  background: var(--signal);
}

.process-visual[data-active="2"] .process-visual__content i { width: 52%; }
.process-visual[data-active="3"] .process-visual__content i { width: 72%; }
.process-visual[data-active="4"] .process-visual__content i { width: 100%; }
.process-visual[data-active="2"] .process-visual__cursor { transform: translate(-55%, -160%); }
.process-visual[data-active="3"] .process-visual__cursor { transform: translate(-280%, -50%); }
.process-visual[data-active="4"] .process-visual__cursor { transform: translate(-360%, -260%); }

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

.process-steps li {
  min-height: 40vh;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-content: center;
  padding: clamp(38px, 5vw, 72px) 0;
  border-top: 1px solid var(--line-light);
  opacity: 0.32;
  outline: none;
  cursor: pointer;
  transition: opacity 300ms ease, transform 300ms ease;
}

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

.process-steps li.is-active,
.process-steps li:hover,
.process-steps li:focus-visible {
  opacity: 1;
}

.process-steps li.is-active {
  transform: translateX(-8px);
}

.process-steps > li > span {
  padding-top: 9px;
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
}

.process-steps h3 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 60px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.process-steps p {
  max-width: 530px;
  margin-bottom: 0;
  color: #aab1ab;
  font-size: 16px;
  line-height: 1.5;
}

/* Fit */
.fit {
  background: var(--signal);
}

.fit__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(60px, 11vw, 180px);
  align-items: start;
}

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

.fit .statement h2 {
  font-size: clamp(54px, 7vw, 104px);
}

.fit-switch {
  border-top: 1px solid rgba(17,20,18,0.35);
}

.fit-switch__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(17,20,18,0.35);
}

.fit-switch__tabs button {
  padding: 19px 8px;
  border: 0;
  background: transparent;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.fit-switch__tabs button + button {
  border-left: 1px solid rgba(17,20,18,0.35);
}

.fit-switch__tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--signal);
}

.fit-switch__panel {
  min-height: 410px;
  padding: clamp(32px, 5vw, 72px) 0 0;
  animation: panel-in 280ms ease both;
}

.fit-switch__panel > span {
  display: block;
  margin-bottom: clamp(38px, 6vw, 82px);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-switch__panel h3 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(35px, 4.6vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.fit-switch__panel p {
  max-width: 590px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.5;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
}

/* About */
.about {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--concrete);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(60px, 11vw, 180px);
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: clamp(470px, 48vw, 720px);
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.about__visual img {
  width: min(60%, 400px);
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about__visual:hover img {
  transform: rotate(4deg) scale(1.04);
}

.about__visual span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.about__copy h2 {
  margin-bottom: 36px;
  font-size: clamp(54px, 7vw, 108px);
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.about__copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 34px;
  color: #aab1ab;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.48;
}

/* FAQ */
.faq {
  background: var(--concrete);
}

.faq__inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}

.faq h2 {
  margin-bottom: 0;
  font-size: clamp(54px, 7.8vw, 120px);
  letter-spacing: -0.075em;
  line-height: 0.88;
}

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

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

.faq summary {
  position: relative;
  padding: 27px 50px 27px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 650;
  letter-spacing: -0.03em;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq details p {
  max-width: 710px;
  margin-bottom: 28px;
  color: var(--steel);
  font-size: 16px;
  line-height: 1.6;
}

/* Contact and footer */
.contact {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding-bottom: clamp(150px, 16vw, 240px);
  background: var(--signal);
}

.contact__inner h2 {
  max-width: 1200px;
  margin-bottom: 30px;
  font-size: clamp(76px, 13vw, 205px);
  letter-spacing: -0.085em;
  line-height: 0.77;
}

.contact__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 40px;
  font-size: clamp(19px, 2vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

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

.contact__marquee {
  position: absolute;
  right: -2%;
  bottom: 3%;
  left: -2%;
  overflow: hidden;
  padding: 20px 0;
  transform: rotate(-2deg);
  background: var(--ink);
  color: var(--concrete);
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.8;
  white-space: nowrap;
}

.contact__marquee span {
  display: inline-block;
  min-width: max-content;
  animation: ticker 22s linear infinite;
}

.site-footer {
  padding-block: 52px 30px;
  background: var(--ink);
  color: var(--concrete);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__top {
  padding-bottom: 46px;
}

.brand--footer {
  font-size: clamp(34px, 4vw, 58px);
}

.site-footer__top p {
  margin-bottom: 0;
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #929a93;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__bottom div {
  display: flex;
  gap: 22px;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--signal);
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Legal pages */
.legal-body {
  background: var(--concrete);
}

.legal-header {
  position: static;
  background: var(--ink);
}

.legal-main {
  min-height: 72svh;
  padding-block: clamp(70px, 9vw, 130px);
}

.legal-main__inner {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(44px, 8vw, 130px);
}

.legal-main h1 {
  margin-bottom: 0;
  font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.legal-content {
  max-width: 840px;
}

.legal-notice {
  margin-bottom: 42px;
  padding: 18px 20px;
  background: var(--signal);
  font-weight: 650;
  line-height: 1.45;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #39403b;
  font-size: 16px;
  line-height: 1.62;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

.placeholder {
  background: rgba(200, 255, 61, 0.55);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.9em;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .hero__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero__brand {
    font-size: clamp(72px, 10vw, 116px);
  }

  .hero h1 {
    font-size: clamp(39px, 5vw, 58px);
  }

  .offer__inner,
  .fit__inner,
  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .process-story {
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-block: 11px;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 96px var(--gutter) 36px;
    transform: translateY(-100%);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease, visibility 220ms;
  }

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

  .site-nav a:not(.nav-cta) {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-family: "Archivo", Arial, sans-serif;
    font-size: clamp(30px, 8vw, 48px);
    font-weight: 680;
    letter-spacing: -0.05em;
    text-transform: none;
  }

  .nav-cta {
    margin-top: 28px;
    padding: 16px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 130px;
  }

  .hero__copy-block {
    max-width: 760px;
  }

  .hero__brand {
    font-size: clamp(78px, 16vw, 136px);
  }

  .hero h1 {
    font-size: clamp(45px, 8vw, 72px);
  }

  .hero-product {
    max-width: 760px;
    justify-self: center;
  }

  .statement--split,
  .offer__inner,
  .fit__inner,
  .about__inner,
  .faq__inner,
  .legal-main__inner {
    grid-template-columns: 1fr;
  }

  .statement--split {
    gap: 28px;
  }

  .statement--split > p {
    max-width: 600px;
  }

  .offer__price {
    min-height: 300px;
    transform: none;
  }

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

  .process-visual {
    position: sticky;
    top: 86px;
    z-index: 2;
    max-width: 700px;
  }

  .process-visual__screen {
    min-height: 420px;
  }

  .process-steps {
    max-width: 700px;
  }

  .process-steps li {
    min-height: 32vh;
    background: var(--ink);
  }

  .about__visual {
    max-width: 720px;
  }

  .faq header {
    max-width: 700px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-block: 82px;
  }

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

  .hero__inner {
    gap: 46px;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 120px;
  }

  .hero__brand {
    margin-bottom: 32px;
    font-size: clamp(66px, 20vw, 102px);
  }

  .hero h1 {
    font-size: clamp(39px, 11.5vw, 58px);
  }

  .hero__copy {
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    font-size: 7.5px;
  }

  .hero__foot span:last-child {
    grid-column: 1 / -1;
  }

  .hero-product__note {
    display: none;
  }

  .browser__bar {
    height: 36px;
  }

  .demo-site {
    min-height: 380px;
  }

  .demo-site__nav {
    padding: 18px;
  }

  .demo-site__links {
    display: none;
  }

  .demo-site__body {
    padding: 50px 22px 70px;
  }

  .demo-site__body strong {
    font-size: clamp(42px, 12.7vw, 66px);
  }

  .demo-site__shape {
    right: -14%;
    bottom: 10%;
    width: 42%;
    opacity: 0.7;
  }

  .browser__scan {
    top: 36px;
  }

  .compare {
    min-height: 540px;
  }

  .old-site {
    padding: 5% 4%;
  }

  .old-site__header span,
  .new-site__header > span {
    display: none;
  }

  .old-site__hero {
    grid-template-columns: 1fr;
  }

  .old-site__photo {
    display: none;
  }

  .old-site__hero strong {
    font-size: clamp(26px, 8vw, 42px);
  }

  .old-site__boxes {
    grid-template-columns: 1fr;
  }

  .old-site__boxes span {
    padding: 8px;
  }

  .new-site__hero {
    padding: 75px 24px 70px;
  }

  .new-site__hero strong {
    font-size: clamp(54px, 16vw, 82px);
  }

  .new-site__art {
    right: -18%;
    bottom: 10%;
    width: 58%;
    opacity: 0.55;
  }

  .new-site__footer span:nth-child(2) {
    display: none;
  }

  .compare__label {
    top: 12px;
  }

  .compare__label--before { right: 12px; }
  .compare__label--after { left: 12px; }

  .compare__divider span {
    width: 50px;
    height: 50px;
  }

  .transformation__points,
  .offer__scope {
    grid-template-columns: 1fr;
  }

  .transformation__points p + p,
  .offer__scope > div + div {
    padding-left: 2px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .offer__intro h2 {
    font-size: clamp(49px, 14vw, 72px);
  }

  .offer__scope > div {
    min-height: 150px;
    padding-inline: 0;
  }

  .offer__inner > .button {
    width: 100%;
  }

  .featured-work__topline span:nth-child(2) {
    display: none;
  }

  .featured-work__canvas {
    min-height: 500px;
  }

  .featured-work__word {
    font-size: clamp(66px, 21vw, 100px);
  }

  .featured-work__canvas img {
    top: 7%;
    right: 7%;
    width: 112px;
  }

  .featured-work__canvas p {
    right: 6%;
    bottom: 17%;
    left: 6%;
  }

  .featured-work__chip {
    right: auto;
    bottom: 6%;
    left: 6%;
  }

  .featured-work__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .next-project > span:last-child {
    grid-column: 2;
  }

  .process-visual {
    top: 78px;
  }

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

  .process-visual__content strong {
    font-size: clamp(48px, 15vw, 72px);
  }

  .process-visual__cursor {
    display: none;
  }

  .process-steps li {
    min-height: 260px;
  }

  .fit-switch__panel {
    min-height: 390px;
  }

  .fit-switch__panel h3 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .about__inner {
    gap: 58px;
  }

  .about__visual {
    min-height: 420px;
  }

  .about__copy h2 {
    font-size: clamp(50px, 14vw, 74px);
  }

  .contact {
    min-height: 760px;
    padding-bottom: 160px;
  }

  .contact__inner h2 {
    font-size: clamp(78px, 23vw, 120px);
  }

  .contact__inner .button {
    width: 100%;
    font-size: 9px;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .js .hero-enter,
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Version 3: clarity, rhythm and realistic product storytelling */
html {
  scroll-padding-top: 76px;
}

body {
  font-kerning: normal;
}

.section {
  padding-block: clamp(82px, 7.5vw, 124px);
}

section[id] {
  scroll-margin-top: 0;
}

.statement h2,
.hero h1,
.offer__intro h2,
.featured-work__word,
.featured-work__bottom h3,
.process-steps h3,
.fit .statement h2,
.fit-compare h3,
.about__copy h2,
.faq h2,
.contact__inner h2 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.statement h2 {
  margin-bottom: 26px;
  font-size: clamp(50px, 6.8vw, 104px);
  text-wrap: balance;
}

.statement > p:last-child {
  max-width: 760px;
  font-size: clamp(17px, 1.55vw, 22px);
  text-wrap: pretty;
}

.hero__inner {
  gap: clamp(48px, 6vw, 96px);
  padding-top: calc(var(--header-height) + 42px);
  padding-bottom: 88px;
}

.hero__brand {
  margin-bottom: clamp(34px, 4vh, 50px);
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 23px;
  font-size: clamp(42px, 4.35vw, 68px);
}

.hero__copy {
  color: #c4cac5;
  text-wrap: balance;
}

.hero-product {
  max-width: 760px;
}

.browser--hero {
  transform: rotateY(-2deg) rotateX(1deg);
}

.demo-site {
  min-height: clamp(420px, 38vw, 570px);
  background: #f4f3eb;
}

.demo-site__nav {
  padding: clamp(18px, 2vw, 28px);
  border-bottom: 1px solid rgba(17, 20, 18, 0.12);
}

.demo-site__body {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(20px, 2.6vw, 38px);
  align-items: stretch;
  min-height: clamp(320px, 31vw, 455px);
  padding: clamp(24px, 3vw, 44px);
}

.demo-site__message {
  position: relative;
  z-index: 2;
  align-self: center;
}

.demo-site__body strong {
  margin-bottom: clamp(28px, 3vw, 42px);
  font-size: clamp(39px, 4vw, 62px);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.demo-site__body > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 61% center;
}

.demo-site__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 20, 18, 0.13);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.demo-site__facts span {
  padding: 13px clamp(12px, 1.5vw, 22px);
}

.demo-site__facts span + span {
  border-left: 1px solid rgba(17, 20, 18, 0.13);
}

.browser__scan {
  animation-duration: 7s;
  opacity: 0;
}

.transformation {
  padding-top: clamp(76px, 6vw, 104px);
}

.compare {
  min-height: 0;
  aspect-ratio: 2 / 1;
  margin-top: clamp(44px, 5vw, 72px);
}

.old-site {
  padding: 2.7% 3.5%;
  background: #cfccc2;
}

.old-site__header {
  padding: clamp(11px, 1.3vw, 18px) clamp(13px, 1.8vw, 24px);
  border-color: #9a9b94;
  background: #f5f3ec;
}

.old-site__header b {
  font-size: clamp(16px, 1.8vw, 29px);
}

.old-site__hero {
  grid-template-columns: 0.88fr 1.12fr;
  gap: 3%;
  min-height: 55%;
  padding: 3.5%;
  background: #fff;
}

.old-site__welcome {
  align-self: center;
}

.old-site__hero strong {
  font-size: clamp(22px, 2.7vw, 43px);
  line-height: 1.08;
}

.old-site__hero p {
  max-width: 420px;
  font-size: clamp(8px, 0.9vw, 14px);
}

.old-site__hero > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 6px solid #fff;
  outline: 1px solid #aaa;
  object-fit: cover;
  object-position: 62% center;
}

.old-site__boxes {
  gap: 1.3%;
  padding: 1.4%;
}

.old-site__boxes span {
  min-width: 0;
  padding: clamp(8px, 1.2vw, 16px);
}

.old-site__boxes b,
.old-site__boxes small {
  display: block;
}

.old-site__boxes small {
  margin-top: 7px;
  color: #6d716d;
  font-family: Arial, sans-serif;
  font-size: clamp(6px, 0.7vw, 10px);
  font-weight: normal;
  line-height: 1.35;
}

.new-site::before {
  opacity: 0.65;
}

.new-site__hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(22px, 3vw, 46px);
  align-items: stretch;
  min-height: 69%;
  padding: clamp(30px, 4.2vw, 62px);
}

.new-site__message {
  position: relative;
  z-index: 2;
  align-self: center;
}

.new-site__message > span {
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(7px, 0.7vw, 10px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.new-site__hero strong {
  margin: 18px 0 30px;
  font-size: clamp(39px, 5.4vw, 86px);
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.new-site__hero > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: 61% center;
}

.transformation__points {
  margin-top: 20px;
}

.transformation__points p {
  padding-block: 19px;
}

.transformation__note {
  margin: 14px 0 0;
  color: var(--steel);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.offer {
  padding-top: clamp(78px, 6.5vw, 108px);
  padding-bottom: clamp(78px, 6.5vw, 108px);
}

.offer__inner {
  gap: clamp(46px, 6vw, 92px);
}

.offer__intro h2 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(50px, 6.3vw, 94px);
}

.offer__price {
  min-height: 280px;
  padding: clamp(25px, 3vw, 40px);
  transform: none;
}

.offer__price strong {
  font-size: clamp(58px, 6vw, 92px);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.offer__scope > div {
  min-height: 140px;
  padding-block: 22px;
}

.work {
  padding-top: clamp(76px, 6vw, 104px);
}

.featured-work {
  margin-top: clamp(48px, 6vw, 82px);
}

.featured-work__word {
  font-size: clamp(76px, 13vw, 204px);
}

.process {
  padding-top: clamp(82px, 7vw, 116px);
}

.process-story {
  position: relative;
  display: block;
  margin-top: clamp(60px, 7vw, 96px);
}

.process-visual {
  position: sticky;
  z-index: 1;
  top: 94px;
  width: 56%;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-visual[data-active="1"] { transform: translateX(0); }
.process-visual[data-active="2"] { transform: translateX(78.5%); }
.process-visual[data-active="3"] { transform: translateX(4%); }
.process-visual[data-active="4"] { transform: translateX(78.5%); }

.process-visual__screen {
  min-height: clamp(430px, 39vw, 590px);
  background: #ebeae2;
}

.process-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px);
  opacity: 0;
  transform: scale(0.965) translateY(12px);
  transition: opacity 280ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-scene.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.process-scene__label {
  display: block;
  margin-bottom: clamp(70px, 9vw, 128px);
  color: var(--steel);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-link-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.4vw, 30px);
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.process-link-field i {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--signal);
  font-style: normal;
  font-size: 18px;
}

.process-scene--link p {
  margin: 22px 0 0;
  color: var(--steel);
  font-size: 15px;
}

.process-mini-site {
  position: absolute;
  inset: 7%;
  overflow: hidden;
  background: var(--ink);
  color: var(--concrete);
}

.process-mini-site__nav {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.process-mini-site img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(0.43) saturate(0.7);
}

.process-mini-site strong {
  position: absolute;
  z-index: 2;
  bottom: 18%;
  left: 7%;
  max-width: 80%;
  font-size: clamp(36px, 4.4vw, 66px);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.process-mini-site > i {
  position: absolute;
  z-index: 2;
  bottom: 7%;
  left: 7%;
  padding: 10px 12px;
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.process-mini-site--feedback {
  right: 18%;
}

.feedback-pin {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
}

.feedback-pin--one { top: 28%; right: 18%; }
.feedback-pin--two { bottom: 28%; left: 38%; }

.feedback-note {
  position: absolute;
  z-index: 5;
  right: 3%;
  top: 31%;
  padding: 16px;
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
}

.process-scene--live {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  color: var(--concrete);
}

.process-scene--live img {
  position: absolute;
  top: 9%;
  right: 8%;
  width: clamp(90px, 12vw, 170px);
}

.process-scene--live > span,
.process-scene--live > i {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-scene--live > span {
  color: #929a93;
}

.process-scene--live strong {
  margin: 12px 0 28px;
  font-size: clamp(74px, 10vw, 150px);
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.process-scene--live > i {
  color: var(--signal);
}

.process-steps {
  position: relative;
  z-index: 2;
  margin-top: clamp(-635px, calc(-39vw - 45px), -475px);
}

.process-steps li {
  width: 38%;
  min-height: 68vh;
  grid-template-columns: 46px 1fr;
  padding: clamp(34px, 4vw, 62px) 0;
  border-top: 0;
  opacity: 0.24;
}

.process-steps li:nth-child(odd) {
  margin-left: 62%;
}

.process-steps li:nth-child(even) {
  margin-right: 62%;
}

.process-steps li:last-child {
  border-bottom: 0;
}

.process-steps li.is-active {
  transform: none;
}

.process-steps h3 {
  font-size: clamp(31px, 3.5vw, 54px);
}

.fit__inner {
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(58px, 8vw, 130px);
}

.fit .statement h2 {
  font-size: clamp(50px, 6.4vw, 96px);
}

.fit-compare {
  border-top: 1px solid rgba(17,20,18,0.35);
}

.fit-compare > div {
  padding: clamp(30px, 4vw, 54px);
}

.fit-compare__refresh {
  background: var(--ink);
  color: var(--concrete);
}

.fit-compare__custom {
  border-right: 1px solid rgba(17,20,18,0.35);
  border-bottom: 1px solid rgba(17,20,18,0.35);
  border-left: 1px solid rgba(17,20,18,0.35);
}

.fit-compare span {
  display: block;
  margin-bottom: clamp(48px, 5vw, 74px);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-compare__refresh span {
  color: var(--signal);
}

.fit-compare h3 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(32px, 3.9vw, 58px);
}

.fit-compare p {
  max-width: 620px;
  margin-bottom: 0;
  color: inherit;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.7;
}

.about__visual {
  min-height: clamp(520px, 54vw, 790px);
  background: #242a25;
}

.about__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.about__visual:hover img {
  transform: scale(1.025);
}

.about__visual span {
  z-index: 2;
  padding: 10px 12px;
  background: var(--signal);
  color: var(--ink);
}

.about__copy h2 {
  font-size: clamp(54px, 6.8vw, 102px);
}

.contact {
  min-height: 0;
  padding-top: clamp(90px, 8vw, 130px);
  padding-bottom: clamp(180px, 17vw, 250px);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(58px, 9vw, 150px);
  align-items: start;
}

.contact__intro h2 {
  margin-bottom: 30px;
  font-size: clamp(70px, 9vw, 140px);
}

.contact__intro > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 36px;
  font-size: clamp(19px, 1.8vw, 27px);
  line-height: 1.4;
}

.contact__intro > span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form {
  padding: clamp(28px, 4vw, 52px);
  background: var(--ink);
  color: var(--concrete);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.lead-form > label,
.lead-form__row label {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="url"] {
  width: 100%;
  min-height: 58px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.36);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--concrete);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 18px;
  text-transform: none;
  transition: border-color 180ms ease;
}

.lead-form input:focus {
  border-color: var(--signal);
}

.lead-form input::placeholder {
  color: #7f8881;
}

.lead-form__consent {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  margin: 32px 0 !important;
  color: #aab1ab;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.4;
  text-transform: none !important;
}

.lead-form__consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--signal);
}

.lead-form__consent a {
  border-bottom: 1px solid currentColor;
}

.lead-form .button--dark {
  width: 100%;
  background: var(--signal);
  color: var(--ink);
}

.lead-form .button--dark:hover,
.lead-form .button--dark:focus-visible {
  border-color: var(--signal);
  background: transparent;
  color: var(--signal);
}

.lead-form__status {
  min-height: 20px;
  margin: 16px 0 0;
  color: var(--signal);
  font-size: 13px;
  line-height: 1.4;
}

.contact__marquee {
  padding: 18px 0;
}

.contact__marquee-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: marquee-seamless 16s linear infinite;
}

.contact__marquee-track span {
  flex: 0 0 auto;
  animation: none;
}

@keyframes marquee-seamless {
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 920px) {
  .section {
    padding-block: 82px;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 50px);
  }

  .demo-site__body {
    min-height: 420px;
  }

  .compare {
    aspect-ratio: 1.55 / 1;
  }

  .offer__inner,
  .fit__inner,
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .offer__price {
    min-height: 250px;
  }

  .process-visual {
    position: relative;
    top: auto;
    width: 100%;
    transform: none !important;
  }

  .process-steps {
    margin-top: 30px;
  }

  .process-steps li,
  .process-steps li:nth-child(odd),
  .process-steps li:nth-child(even) {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 36px 0;
    border-top: 1px solid var(--line-light);
  }

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

  .fit-compare {
    max-width: 800px;
  }

  .about__visual {
    max-width: 720px;
  }

  .contact__intro {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .statement h2,
  .hero h1,
  .offer__intro h2,
  .fit .statement h2,
  .about__copy h2,
  .contact__intro h2 {
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .hero__brand {
    letter-spacing: -0.045em;
    line-height: 0.86;
  }

  .demo-site {
    min-height: 470px;
  }

  .demo-site__body {
    grid-template-columns: 1fr;
    min-height: 390px;
    padding: 24px;
  }

  .demo-site__message {
    z-index: 3;
    align-self: end;
    color: var(--concrete);
  }

  .demo-site__body > img {
    position: absolute;
    inset: 0;
    min-height: 0;
    filter: brightness(0.48);
  }

  .demo-site__body strong {
    font-size: clamp(42px, 13vw, 62px);
  }

  .demo-site__body em {
    color: var(--signal);
  }

  .demo-site__facts {
    position: relative;
    z-index: 3;
    background: var(--concrete);
  }

  .compare {
    aspect-ratio: auto;
    min-height: 590px;
  }

  .old-site {
    padding: 16px;
  }

  .old-site__hero {
    display: block;
    padding: 18px;
  }

  .old-site__hero > img {
    height: 190px;
    min-height: 0;
    margin-top: 18px;
  }

  .old-site__boxes span:nth-child(3) {
    display: none;
  }

  .new-site__hero {
    display: block;
    padding: 70px 24px 70px;
  }

  .new-site__message {
    position: relative;
    z-index: 3;
  }

  .new-site__hero > img {
    position: absolute;
    inset: 0;
    min-height: 0;
    filter: brightness(0.42);
  }

  .new-site__hero strong {
    font-size: clamp(46px, 15vw, 70px);
  }

  .transformation__points p + p {
    padding-left: 2px;
  }

  .transformation__note {
    text-align: left;
  }

  .offer__price {
    min-height: 230px;
  }

  .featured-work__word {
    font-size: clamp(62px, 18vw, 88px);
  }

  .process-visual__screen {
    min-height: 360px;
  }

  .process-scene {
    padding: 24px;
  }

  .process-scene__label {
    margin-bottom: 70px;
  }

  .process-link-field {
    padding: 18px;
    font-size: 22px;
  }

  .process-link-field i {
    width: 42px;
    height: 42px;
  }

  .process-mini-site {
    inset: 18px;
  }

  .process-mini-site strong {
    font-size: 35px;
  }

  .feedback-note {
    right: 0;
  }

  .fit-compare > div {
    padding: 30px 24px;
  }

  .fit-compare span {
    margin-bottom: 44px;
  }

  .fit-compare h3 {
    font-size: 36px;
  }

  .about__visual {
    min-height: 540px;
  }

  .contact {
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 170px;
  }

  .contact__intro h2 {
    font-size: clamp(70px, 21vw, 104px);
  }

  .lead-form {
    padding: 26px 20px;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact__marquee {
    font-size: clamp(38px, 13vw, 62px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__marquee-track {
    animation: none;
  }
}

/* Version 4: digital hero, compact anchors and quieter motion */
.hero__inner {
  grid-template-columns: minmax(430px, 0.92fr) minmax(500px, 1.08fr);
}

.hero-sculpture {
  position: relative;
  width: 100%;
  max-width: 760px;
  min-height: clamp(520px, 47vw, 690px);
  justify-self: end;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.hero-sculpture__halo {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 61, 0.2) 0%, rgba(200, 255, 61, 0.06) 34%, transparent 69%);
  filter: blur(18px);
  animation: sculpture-pulse 6s ease-in-out infinite;
}

.hero-sculpture__motion {
  position: absolute;
  z-index: 3;
  inset: 9% 11% 15%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hero-sculpture__object {
  position: relative;
  width: min(72%, 450px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: sculpture-float 8s ease-in-out infinite;
  will-change: transform;
}

.hero-sculpture__object img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.36));
  transform-style: preserve-3d;
}

.hero-sculpture__object img:nth-child(1) {
  z-index: 6;
  transform: translate3d(0, 0, 34px);
}

.hero-sculpture__object img:nth-child(2) {
  z-index: 5;
  opacity: 0.83;
  filter: brightness(0.72);
  transform: translate3d(3px, 5px, 26px);
}

.hero-sculpture__object img:nth-child(3) {
  z-index: 4;
  opacity: 0.68;
  filter: brightness(0.58);
  transform: translate3d(6px, 10px, 18px);
}

.hero-sculpture__object img:nth-child(4) {
  z-index: 3;
  opacity: 0.52;
  filter: brightness(0.44);
  transform: translate3d(9px, 15px, 10px);
}

.hero-sculpture__object img:nth-child(5) {
  z-index: 2;
  opacity: 0.38;
  filter: brightness(0.32);
  transform: translate3d(12px, 20px, 2px);
}

.hero-sculpture__object img:nth-child(6) {
  z-index: 1;
  opacity: 0.26;
  filter: brightness(0.22);
  transform: translate3d(15px, 25px, -6px);
}

.hero-sculpture__ring {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(200, 255, 61, 0.28);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.hero-sculpture__ring::after {
  content: "";
  position: absolute;
  top: 48%;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(200, 255, 61, 0.8);
}

.hero-sculpture__ring--one {
  width: 77%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(8deg);
  animation: sculpture-ring-one 13s linear infinite;
}

.hero-sculpture__ring--two {
  width: 58%;
  aspect-ratio: 1;
  border-color: rgba(243, 242, 234, 0.17);
  transform: translate(-50%, -50%) rotateY(66deg) rotateZ(-12deg);
  animation: sculpture-ring-two 17s linear infinite reverse;
}

.hero-sculpture__particle {
  position: absolute;
  z-index: 5;
  width: 7px;
  height: 7px;
  background: var(--signal);
  box-shadow: 0 0 20px rgba(200, 255, 61, 0.72);
  animation: sculpture-particle 5s ease-in-out infinite;
}

.hero-sculpture__particle--one { top: 15%; left: 22%; }
.hero-sculpture__particle--two { right: 12%; bottom: 33%; animation-delay: -1.8s; }
.hero-sculpture__particle--three { bottom: 15%; left: 26%; animation-delay: -3.1s; }

.hero-sculpture__floor {
  position: absolute;
  z-index: 0;
  right: 7%;
  bottom: 3%;
  left: 7%;
  height: 38%;
  background-image:
    linear-gradient(rgba(200, 255, 61, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 61, 0.16) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, transparent, black 46%, transparent 96%);
  transform: perspective(520px) rotateX(68deg) translateY(22%);
}

@keyframes sculpture-float {
  0%, 100% { transform: translate3d(0, 8px, 0) rotateX(17deg) rotateY(-18deg) rotateZ(-4deg); }
  50% { transform: translate3d(0, -12px, 22px) rotateX(22deg) rotateY(10deg) rotateZ(2deg); }
}

@keyframes sculpture-pulse {
  50% { opacity: 0.72; transform: scale(1.08); }
}

@keyframes sculpture-ring-one {
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(368deg); }
}

@keyframes sculpture-ring-two {
  to { transform: translate(-50%, -50%) rotateY(66deg) rotateZ(348deg); }
}

@keyframes sculpture-particle {
  50% { opacity: 0.35; transform: translate3d(0, -16px, 0) scale(0.65); }
}

.transformation {
  padding-top: clamp(58px, 4.8vw, 78px);
  padding-bottom: clamp(58px, 4.8vw, 78px);
}

.statement--refresh {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(580px, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
}

.statement--refresh h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.8vw, 88px);
}

.statement--refresh > p:last-child {
  margin-bottom: 7px;
}

.compare__legend {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(28px, 3.5vw, 48px);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare {
  aspect-ratio: 2.35 / 1;
  margin-top: 12px;
}

.compare__divider {
  left: var(--split);
  width: 1px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 1px rgba(17, 20, 18, 0.18);
}

.compare__handle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: clamp(25px, var(--split), calc(100% - 25px));
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(17, 20, 18, 0.18);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  box-shadow: 0 10px 28px rgba(17, 20, 18, 0.2);
  pointer-events: none;
}

.new-site {
  background: #e9e1d4;
  color: #183036;
}

.new-site::before {
  display: none;
}

.new-site__header {
  border-bottom-color: rgba(24, 48, 54, 0.18);
  background: #f5f1e9;
}

.new-site__header b span,
.new-site__message > span {
  color: #c84f32;
}

.new-site__hero {
  background: #e9e1d4;
}

.new-site__hero strong {
  color: #183036;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.new-site__hero i {
  background: #183036;
  color: #f5f1e9;
}

.new-site__hero > img {
  filter: saturate(0.72) sepia(0.12);
}

.new-site__footer {
  border-top-color: rgba(24, 48, 54, 0.18);
  background: #c84f32;
  color: #fff5e9;
}

.transformation__points p {
  padding-block: 14px;
}

.transformation__note {
  margin-top: 8px;
}

.offer__intro h2 {
  max-width: 820px;
  font-size: clamp(50px, 5.8vw, 88px);
}

.aftercare {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.aftercare > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px clamp(18px, 2.3vw, 34px);
}

.aftercare > div + div {
  border-left: 1px solid var(--line-light);
}

.aftercare span {
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aftercare__intro strong {
  max-width: 430px;
  font-size: clamp(24px, 2.5vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.aftercare__option strong {
  margin: 18px 0 12px;
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.aftercare__option small {
  margin-left: 5px;
  color: #959d96;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aftercare p {
  margin-bottom: 0;
  color: #9da59e;
  font-size: 13px;
  line-height: 1.4;
}

.work {
  padding-top: clamp(58px, 4.8vw, 78px);
  padding-bottom: clamp(58px, 4.8vw, 78px);
}

.statement--work {
  max-width: 1050px;
}

.statement--work h2 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(50px, 6.3vw, 94px);
}

.statement--work > p:last-child {
  max-width: 670px;
}

.featured-work {
  margin-top: clamp(34px, 4vw, 58px);
}

.featured-work__canvas {
  min-height: clamp(420px, 38vw, 570px);
}

.featured-work__word {
  font-size: clamp(72px, 12vw, 188px);
}

.next-project {
  padding-block: clamp(22px, 2.8vw, 38px);
}

.process-story {
  perspective: 1600px;
}

.process-story::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 4%;
  left: 50%;
  width: 72%;
  height: 72%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200, 255, 61, 0.08), transparent 66%);
  filter: blur(20px);
  pointer-events: none;
}

.process-visual {
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(26, 31, 27, 0.88);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.42);
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 600ms ease;
  will-change: transform;
}

.process-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% -9% -12%;
  background: radial-gradient(circle, rgba(200, 255, 61, 0.12), transparent 68%);
  filter: blur(28px);
}

.process-visual[data-active="1"] { transform: translate3d(0, 0, 0) rotateY(2.5deg) scale(0.965); }
.process-visual[data-active="2"] { transform: translate3d(78.5%, -6px, 28px) rotateY(-2.5deg) scale(1); }
.process-visual[data-active="3"] { transform: translate3d(4%, 4px, 18px) rotateY(2deg) scale(0.985); }
.process-visual[data-active="4"] { transform: translate3d(78.5%, -8px, 34px) rotateY(-1.5deg) scale(1.01); }

.process-visual__top {
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  background: rgba(12, 15, 13, 0.86);
  backdrop-filter: blur(14px);
}

.process-visual__screen {
  overflow: hidden;
  background: #edede7;
}

.process-scene {
  transition: opacity 420ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-scene:not(.is-active) {
  pointer-events: none;
}

.process-mini-site {
  box-shadow: 0 22px 60px rgba(17, 20, 18, 0.24);
}

.process-mini-site__nav {
  border-bottom-color: rgba(24, 48, 54, 0.18);
  background: #f5f1e9;
  color: #183036;
}

.process-mini-site > i,
.feedback-pin,
.feedback-note {
  background: #c84f32;
  color: #fff5e9;
}

.process-steps li {
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-steps li.is-active {
  opacity: 1;
}

.about__visual span {
  min-width: 170px;
}

.about {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #1b201c;
}

.faq details p {
  max-width: 760px;
}

@media (max-width: 1180px) {
  .hero__inner {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero-sculpture {
    min-height: 540px;
  }

  .statement--refresh {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (max-width: 920px) {
  .hero__inner,
  .statement--refresh {
    grid-template-columns: 1fr;
  }

  .hero-sculpture {
    max-width: 700px;
    min-height: 620px;
    justify-self: center;
  }

  .statement--refresh {
    gap: 22px;
  }

  .statement--refresh > p:last-child {
    max-width: 650px;
  }

  .compare {
    aspect-ratio: 1.65 / 1;
  }

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

  .aftercare__intro {
    grid-column: 1 / -1;
  }

  .aftercare > div:nth-child(2) {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .aftercare > div:nth-child(3) {
    border-top: 1px solid var(--line-light);
  }

  .process-visual[data-active] {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-sculpture {
    min-height: 470px;
  }

  .hero-sculpture__motion {
    inset: 6% 2% 13%;
  }

  .hero-sculpture__object {
    width: min(78%, 360px);
  }

  .hero-sculpture__floor {
    right: -4%;
    left: -4%;
  }

  .transformation {
    padding-block: 64px;
  }

  .statement--refresh h2,
  .statement--work h2 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .compare__legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .compare {
    aspect-ratio: auto;
    min-height: 560px;
  }

  .new-site__hero strong {
    color: #f7f2e8;
  }

  .new-site__message > span {
    color: #ff9b78;
  }

  .new-site__hero > img {
    filter: brightness(0.42) saturate(0.72) sepia(0.12);
  }

  .transformation__points {
    margin-top: 14px;
  }

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

  .aftercare__intro,
  .aftercare__option {
    grid-column: auto;
  }

  .aftercare > div,
  .aftercare > div:nth-child(2),
  .aftercare > div:nth-child(3) {
    min-height: 140px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .aftercare > div:first-child {
    border-top: 0;
  }

  .featured-work__canvas {
    min-height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sculpture__halo,
  .hero-sculpture__object,
  .hero-sculpture__ring,
  .hero-sculpture__particle {
    animation: none;
  }
}

/* Version 5 / interaction and presentation polish */
.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__foot {
  z-index: 3;
}

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

.hero__actions .button {
  justify-content: flex-start;
  gap: 13px;
}

.hero__actions .button span {
  margin-left: 0;
}

.hero-sculpture__motion {
  transition: none;
}

.old-site__header b,
.old-site__hero strong,
.old-site__boxes span {
  color: #356128;
}

/* A deliberately stronger, editorial gardener refresh. */
.new-site {
  background: #173a28;
  color: #f5f1e7;
}

.new-site__header {
  position: relative;
  z-index: 5;
  border-bottom-color: rgba(245, 241, 231, 0.28);
  background: rgba(19, 49, 34, 0.9);
  color: #f5f1e7;
  backdrop-filter: blur(13px);
}

.new-site__header b span,
.new-site__message > span {
  color: #d8f58b;
}

.new-site__hero {
  position: relative;
  display: block;
  min-height: 76%;
  padding: 0;
  overflow: hidden;
  background: #173a28;
}

.new-site__hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 42, 27, 0.94) 0%, rgba(12, 42, 27, 0.68) 35%, rgba(12, 42, 27, 0.14) 73%, rgba(12, 42, 27, 0.02) 100%),
    linear-gradient(0deg, rgba(10, 30, 21, 0.78) 0%, transparent 40%);
  pointer-events: none;
}

.new-site__hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8%;
  right: 7%;
  width: 34%;
  aspect-ratio: 0.82;
  border: 1px solid rgba(247, 243, 233, 0.35);
  border-radius: 52% 48% 41% 59% / 39% 44% 56% 61%;
  transform: rotate(9deg);
  box-shadow: inset 0 0 80px rgba(216, 245, 139, 0.06);
  pointer-events: none;
}

.new-site__hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.86) contrast(1.04) brightness(0.83);
  transform: scale(1.025);
}

.new-site__message {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(24px, 5vw, 74px);
  width: min(58%, 760px);
  transform: translateY(-48%);
}

.new-site__message > span {
  display: block;
  font-size: clamp(7px, 0.72vw, 11px);
  letter-spacing: 0.13em;
}

.new-site__hero strong {
  max-width: 780px;
  margin: clamp(14px, 2.1vw, 30px) 0 clamp(20px, 2.8vw, 42px);
  color: #f7f3e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.9vw, 126px);
  font-weight: 400;
  letter-spacing: -0.064em;
  line-height: 0.84;
  text-shadow: 0 8px 32px rgba(4, 20, 12, 0.25);
}

.new-site__hero i {
  border: 1px solid rgba(247, 243, 233, 0.28);
  background: #d8f58b;
  color: #173a28;
  box-shadow: 0 12px 30px rgba(6, 27, 17, 0.2);
}

.new-site__vertical {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(16px, 2vw, 30px);
  color: rgba(247, 243, 233, 0.78) !important;
  font-size: clamp(6px, 0.62vw, 9px) !important;
  letter-spacing: 0.18em !important;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.new-site__footer {
  z-index: 5;
  border-top-color: rgba(245, 241, 231, 0.22);
  background: #d8f58b;
  color: #173a28;
}

/* Care stays available without competing with the one-off refresh. */
.aftercare {
  grid-column: 1 / -1;
  display: block;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.aftercare > summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1.3fr) 42px;
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
}

.aftercare > summary::-webkit-details-marker {
  display: none;
}

.aftercare > summary strong {
  color: var(--concrete);
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -0.025em;
}

.aftercare > summary i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--signal);
  font-size: 23px;
  font-style: normal;
  transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1), background-color 220ms ease, color 220ms ease;
}

.aftercare > summary:hover i,
.aftercare > summary:focus-visible i {
  background: var(--signal);
  color: var(--ink);
}

.aftercare[open] > summary i {
  transform: rotate(45deg);
}

.aftercare > .aftercare__content {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  padding: 0;
  border-top: 1px solid var(--line-light);
  animation: aftercare-open 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.aftercare__content > div {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px clamp(18px, 2.3vw, 34px);
}

.aftercare__content > div + div {
  border-left: 1px solid var(--line-light);
}

@keyframes aftercare-open {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* The process card now moves continuously with scroll and gains real depth. */
.process-visual {
  transform-origin: center center;
  backface-visibility: hidden;
  transition: box-shadow 500ms ease;
}

.process-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 12px;
  right: -12px;
  bottom: -12px;
  left: 12px;
  border: 1px solid rgba(200, 255, 61, 0.16);
  background: rgba(5, 8, 6, 0.5);
  transform: translateZ(-28px);
  pointer-events: none;
}

.process-visual__screen {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (max-width: 920px) {
  .aftercare > .aftercare__content {
    grid-template-columns: 1fr 1fr;
  }

  .aftercare__content .aftercare__intro {
    grid-column: 1 / -1;
  }

  .aftercare__content > div + div {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .aftercare__content > div:last-child {
    border-left: 1px solid var(--line-light);
  }

  .process-visual[data-active] {
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .hero-trail {
    display: none;
  }

  .new-site__header > span,
  .new-site__vertical {
    display: none;
  }

  .new-site__hero {
    min-height: 82%;
  }

  .new-site__hero > img {
    object-position: 65% center;
    filter: saturate(0.82) brightness(0.7);
  }

  .new-site__message {
    top: auto;
    right: 24px;
    bottom: 18%;
    left: 24px;
    width: auto;
    transform: none;
  }

  .new-site__hero strong {
    font-size: clamp(43px, 12vw, 62px);
  }

  .aftercare > summary {
    grid-template-columns: 1fr 42px;
  }

  .aftercare > summary > span {
    grid-column: 1;
  }

  .aftercare > summary > strong {
    grid-column: 1;
    grid-row: 2;
  }

  .aftercare > summary > i {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .aftercare > .aftercare__content {
    grid-template-columns: 1fr;
  }

  .aftercare__content .aftercare__intro,
  .aftercare__content > div {
    grid-column: auto;
  }

  .aftercare__content > div,
  .aftercare__content > div:last-child {
    min-height: 140px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .aftercare__content > div:first-child {
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-trail {
    display: none;
  }

  .aftercare > .aftercare__content {
    animation: none;
  }
}

/* Version 6 / final polish */
body {
  overflow-x: clip;
}

.hero-sculpture__ring {
  animation: none;
}

.hero-sculpture__ring::after {
  width: 9px;
  height: 9px;
  box-shadow: 0 0 9px var(--signal), 0 0 26px rgba(200, 255, 61, 0.9);
}

.statement--refresh {
  display: block;
}

.compare__legend {
  margin-top: clamp(30px, 4vw, 54px);
}

.compare__divider {
  width: 3px;
  background: var(--signal);
  box-shadow: 0 0 0 1px rgba(17, 20, 18, 0.18), 0 0 22px rgba(200, 255, 61, 0.75);
}

.compare__handle {
  left: clamp(33px, var(--split), calc(100% - 33px));
  width: 66px;
  height: 66px;
  border: 2px solid var(--ink);
  background: var(--signal);
  font-size: 21px;
  font-weight: 700;
  box-shadow: 0 10px 32px rgba(17, 20, 18, 0.28), 0 0 0 8px rgba(200, 255, 61, 0.2);
}

.new-site::after {
  content: "G";
  position: absolute;
  z-index: 2;
  right: -0.02em;
  bottom: -0.18em;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(230px, 30vw, 480px);
  font-weight: 400;
  line-height: 0.78;
  opacity: 0.14;
  -webkit-text-stroke: 1px #d8f58b;
  pointer-events: none;
}

.new-site__header b {
  font-size: clamp(20px, 2.3vw, 36px);
}

.new-site__hero::before {
  top: 4%;
  right: 6%;
  width: 36%;
  border: 2px solid rgba(216, 245, 139, 0.62);
  border-radius: 58% 42% 46% 54% / 42% 51% 49% 58%;
  transform: rotate(7deg);
}

.new-site__hero > img {
  object-position: 58% 18%;
  filter: saturate(0.94) contrast(1.07) brightness(0.82);
  transform: scale(1.01);
}

.new-site__hero strong {
  font-size: clamp(54px, 8.5vw, 138px);
  letter-spacing: -0.072em;
}

.new-site__project {
  position: absolute;
  z-index: 4;
  right: 5.5%;
  bottom: 13%;
  width: clamp(145px, 17vw, 245px);
  min-height: clamp(118px, 12vw, 178px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 1.8vw, 26px);
  background: rgba(216, 245, 139, 0.94);
  color: #173a28;
  box-shadow: 0 24px 55px rgba(6, 27, 17, 0.25);
  backdrop-filter: blur(9px);
}

.new-site__project span,
.new-site__project i {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(6px, 0.58vw, 9px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.new-site__project strong {
  margin: clamp(12px, 1.4vw, 22px) 0;
  color: #173a28;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(19px, 2.1vw, 33px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-shadow: none;
}

.offer__inner > .button.button--signal {
  justify-content: flex-start;
  gap: 13px;
  border-color: var(--signal);
}

.offer__inner > .button.button--signal span {
  margin-left: 0;
}

.statement--work h2 {
  margin-bottom: 0;
}

.process-visual-sticky {
  position: sticky;
  z-index: 1;
  top: 94px;
  width: 56%;
  perspective: 1600px;
}

.process-story {
  perspective: none;
}

.process-visual-sticky .process-visual {
  position: relative;
  top: auto;
  width: 100%;
}

@media (max-width: 920px) {
  .process-visual-sticky {
    position: relative;
    top: auto;
    width: 100%;
  }

  .new-site__project {
    right: 4%;
    bottom: 12%;
  }
}

@media (max-width: 640px) {
  .compare__handle {
    left: clamp(27px, var(--split), calc(100% - 27px));
    width: 54px;
    height: 54px;
    box-shadow: 0 8px 24px rgba(17, 20, 18, 0.25), 0 0 0 5px rgba(200, 255, 61, 0.2);
  }

  .new-site::after,
  .new-site__project {
    display: none;
  }

  .new-site__hero > img {
    object-position: 62% 20%;
  }
}

/* Version 7 / launch polish */
.new-site__header {
  padding: clamp(13px, 1.35vw, 21px) clamp(22px, 3.5vw, 54px);
}

.new-site__message > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(11px, 1.4vw, 20px);
  padding-left: clamp(34px, 3vw, 50px);
}

.new-site__message > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: clamp(24px, 2.2vw, 36px);
  height: 1px;
  background: #d8f58b;
}

.new-site__hero strong {
  margin-top: 0;
  font-size: clamp(51px, 8.05vw, 130px);
  line-height: 0.92;
}

.new-site__hero .new-site__project strong {
  margin: clamp(12px, 1.4vw, 22px) 0;
  font-size: clamp(19px, 2.1vw, 33px);
  line-height: 0.96;
}

.featured-work + .next-project {
  border-top: 1px solid var(--line);
}

.featured-work__canvas {
  text-decoration: none;
}

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

.featured-work__canvas p {
  right: 27%;
  bottom: calc(6% + 9px);
  max-width: none;
  color: #aab1ab;
  font-size: clamp(13px, 1.25vw, 19px);
  line-height: 1;
  white-space: nowrap;
}

.process-scene {
  transition: none;
  will-change: opacity, transform, filter;
}

@media (max-width: 640px) {
  .new-site__header {
    padding-block: 13px;
  }

  .new-site__message > span {
    margin-bottom: 12px;
  }

  .new-site__hero strong {
    font-size: clamp(42px, 11.5vw, 60px);
    line-height: 0.94;
  }

  .featured-work__canvas p {
    right: 5%;
    bottom: 18%;
    max-width: 270px;
    line-height: 1.35;
    white-space: normal;
  }
}
