:root {
  --black: #08090b;
  --soft-black: #101114;
  --graphite: #191b1f;
  --carbon: #2b2d32;
  --ice: #f3f6fb;
  --cool-white: #f8faff;
  --silver-light: #c8d1de;
  --silver-surface: #e2e8f1;
  --silver-edge: #aeb9c8;
  --steel: #aab4c2;
  --smoke: #8b8d91;
  --mercury: #d8dde6;
  --red: #01a9fa;
  --cobalt: #01a9fa;
  --acid: #01a9fa;
  --teal: #01a9fa;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 64px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--cool-white);
  background: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.no-cursor,
body.no-cursor * {
  cursor: none;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--black);
  background: var(--acid);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3px 3px;
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
}

.cursor-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  inset: 18px var(--pad) auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 15px 16px;
  color: var(--cool-white);
  background: rgba(8, 9, 11, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: border-color 360ms ease, box-shadow 420ms ease, background 420ms ease;
}

.site-header:hover {
  background: rgba(8, 9, 11, 0.74);
  border-color: rgba(1, 169, 250, 0.42);
  box-shadow:
    0 0 0 1px rgba(1, 169, 250, 0.1),
    0 0 24px rgba(1, 169, 250, 0.18),
    0 18px 54px rgba(0, 0, 0, 0.34);
}

.brand,
.desktop-nav,
.footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-size: 13px;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 286px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.desktop-nav a,
.footer a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav a {
  color: var(--cool-white);
}

.footer a {
  color: rgba(248, 250, 255, 0.7);
}

.desktop-nav a:hover {
  color: var(--red);
}

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

.footer .footer-phone {
  color: var(--red);
}

.footer .footer-phone:hover,
.footer .footer-phone:focus-visible {
  color: var(--cool-white);
}

.nav-cta {
  justify-self: end;
  padding: 11px 14px;
  color: var(--cool-white);
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 240ms ease, background 240ms ease;
}

.nav-cta:hover {
  color: var(--red);
  background: var(--cool-white);
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--cool-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(248, 250, 255, 0.18);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 320ms ease, border-color 320ms ease, box-shadow 360ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu.is-open .mobile-menu-toggle {
  background: rgba(1, 169, 250, 0.12);
  border-color: rgba(1, 169, 250, 0.48);
  box-shadow: 0 0 24px rgba(1, 169, 250, 0.16);
}

.mobile-menu-icon {
  position: relative;
  width: 17px;
  height: 10px;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: top 260ms ease, transform 260ms ease;
}

.mobile-menu-icon::before {
  top: 1px;
}

.mobile-menu-icon::after {
  top: 8px;
}

.mobile-menu.is-open .mobile-menu-icon::before {
  top: 5px;
  transform: rotate(45deg);
}

.mobile-menu.is-open .mobile-menu-icon::after {
  top: 5px;
  transform: rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 3;
  display: none;
  width: max-content;
  min-width: 176px;
  max-width: min(62vw, 224px);
  padding: 6px;
  background: rgba(8, 9, 11, 0.92);
  border: 1px solid rgba(1, 169, 250, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), 0 0 34px rgba(1, 169, 250, 0.14);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.mobile-menu.is-open .mobile-menu-panel {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-panel a {
  padding: 12px 10px;
  color: var(--cool-white);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(248, 250, 255, 0.08);
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  color: var(--red);
  background: rgba(1, 169, 250, 0.08);
}

.mobile-menu-panel .mobile-menu-contact {
  color: var(--red);
}

.mobile-menu-panel .mobile-menu-contact:hover,
.mobile-menu-panel .mobile-menu-contact:focus-visible {
  color: var(--cool-white);
}

.section-dark,
.section-light {
  position: relative;
  padding: clamp(92px, 12vw, 180px) var(--pad);
}

.process {
  padding-bottom: clamp(64px, 8vw, 120px);
}

.testimonials {
  padding-top: clamp(68px, 9vw, 128px);
  padding-bottom: clamp(68px, 9vw, 128px);
}

#statement,
#system,
#difference,
#process,
#presence,
#design,
#direction,
#reflection,
#inquiry {
  scroll-margin-top: 112px;
}

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

.section-light {
  color: var(--black);
  background-color: var(--silver-light);
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.56), transparent 22%),
    linear-gradient(145deg, #eef3fa 0%, var(--silver-light) 36%, #f7faff 52%, var(--silver-edge) 100%);
}

@media (min-width: 981px) {
  main > section:not(.hero) {
    width: 100%;
    max-width: 2200px;
    margin-inline: auto;
  }

  .hero {
    padding-left: max(var(--pad), calc(((100vw - 2200px) / 2) + var(--pad)));
    padding-right: max(var(--pad), calc(((100vw - 2200px) / 2) + var(--pad)));
  }
}

.hero {
  min-height: min(1080px, 100svh);
  height: min(1080px, 100svh);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  overflow: hidden;
  padding-top: 260px;
  padding-bottom: clamp(34px, 6vw, 76px);
  aspect-ratio: auto;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 1;
  filter: none;
  image-rendering: auto;
  mask-image: none;
}

.hero-media {
  display: contents;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 58%;
  background:
    linear-gradient(0deg, rgba(8, 9, 11, 0.9) 0%, rgba(8, 9, 11, 0.72) 38%, rgba(8, 9, 11, 0.28) 72%, transparent 100%),
    linear-gradient(90deg, rgba(8, 9, 11, 0.34) 0%, transparent 42%);
  pointer-events: none;
}

.hero-content,
.hero-proof {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 610px;
  width: min(610px, 38vw);
  align-self: end;
  transform: translateY(clamp(8px, 2vh, 28px));
}

.hero.section-dark .eyebrow {
  color: var(--red);
}

.eyebrow,
.section-index,
.card-index,
.proof-item span,
.process-track span,
.case-card p,
.journey span {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  color: var(--red);
  margin: 0 0 18px;
}

.section-dark .eyebrow {
  color: var(--acid);
}

.sticky-copy .eyebrow {
  font-size: 17px;
  line-height: 1.65;
}

.hero-title {
  max-width: 610px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.mask span {
  display: block;
  transform: translateY(110%);
  animation: revealTitle 1100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mask:nth-child(2) span {
  animation-delay: 140ms;
}

.mask:nth-child(3) span {
  animation-delay: 280ms;
}

.mask:nth-child(4) span {
  animation-delay: 420ms;
}

.mask:nth-child(5) span {
  animation-delay: 560ms;
}

@keyframes revealTitle {
  to {
    transform: translateY(0);
  }
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(248, 250, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.button-primary {
  color: var(--black);
  background: var(--red);
}

.hero-cta {
  color: var(--cool-white);
  border-radius: 0;
  transition: color 240ms ease, background 240ms ease;
}

.hero-cta:hover {
  color: var(--red);
  background: var(--cool-white);
}

.inquiry-submit {
  color: var(--cool-white);
  background: var(--red);
  border-color: var(--red);
  transition: color 240ms ease, border-color 280ms ease, box-shadow 320ms ease, background 280ms ease;
}

.inquiry-submit:hover {
  color: var(--red);
  border-color: var(--cool-white);
  background: var(--cool-white);
  box-shadow: none;
}

.button-secondary {
  color: var(--cool-white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.button:not(.hero-cta):not(.inquiry-submit)::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-100%);
}

.button:not(.hero-cta):not(.inquiry-submit):hover::after {
  opacity: 1;
  transform: translateX(100%);
  transition: transform 680ms ease;
}

.hero-proof {
  width: min(610px, 42vw);
  justify-content: space-between;
  margin-top: clamp(38px, 5vw, 72px);
  color: rgba(248, 250, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 20px;
}

.hero-proof span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (min-width: 981px) {
  .hero::after {
    height: 44%;
    background:
      linear-gradient(0deg, rgba(8, 9, 11, 0.86) 0%, rgba(8, 9, 11, 0.58) 42%, rgba(8, 9, 11, 0.2) 72%, transparent 100%),
      linear-gradient(90deg, rgba(8, 9, 11, 0.72) 0%, rgba(8, 9, 11, 0.34) 28%, rgba(8, 9, 11, 0.08) 48%, transparent 68%);
  }

  .hero-content,
  .hero-proof {
    transform: translateY(clamp(24px, 3.8vh, 48px));
  }

  .js .hero-proof[data-reveal].is-visible {
    transform: translateY(clamp(24px, 3.8vh, 48px));
  }

  .hero-proof {
    margin-top: clamp(22px, 3vw, 38px);
  }
}

.manifesto,
.difference,
.results,
.reflection {
  background-image:
    linear-gradient(118deg, rgba(255, 255, 255, 0.48), transparent 24%, rgba(255, 255, 255, 0.22) 48%, transparent 72%),
    linear-gradient(rgba(8, 9, 11, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 9, 11, 0.075) 1px, transparent 1px),
    linear-gradient(145deg, #eef3fa 0%, var(--silver-light) 36%, #f7faff 52%, var(--silver-edge) 100%);
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.section-index {
  max-width: var(--max);
  margin: 0 auto 24px;
  color: var(--red);
  font-size: 17px;
  line-height: 1.65;
}

.manifesto .section-index {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.manifesto-layout {
  display: grid;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(320px, 1fr) repeat(2, minmax(220px, 460px));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

@media (min-width: 981px) {
  .manifesto-layout {
    column-gap: clamp(16px, 1.4vw, 28px);
  }

  .manifesto-layout .signal-flip-box:first-of-type {
    justify-self: end;
  }

  .manifesto-layout .signal-flip-box:last-of-type {
    justify-self: start;
  }
}

.manifesto-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 34px);
  align-items: start;
  max-width: 590px;
}

.manifesto .statement {
  font-size: clamp(32px, 3.8vw, 56px);
}

.statement,
.section-heading h2,
.sticky-copy h2,
.work-intro h2,
.results h2,
.testimonials h2,
.inquiry h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.manifesto-copy {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

.signal-flip-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1.22;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.signal-flip-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(1, 169, 250, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%);
  opacity: 0.68;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.signal-flip-box::after {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(1, 169, 250, 0.18), transparent 58%);
  opacity: 0.64;
  pointer-events: none;
}

.signal-flip-box:hover::before {
  opacity: 1;
}

.signal-flip-card {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: signalFlip 6s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.signal-flip-box-reverse .signal-flip-card {
  animation-name: signalFlipReverse;
}

.manifesto-layout:has(.signal-flip-box:hover) .signal-flip-card,
.manifesto-layout:has(.signal-flip-box:focus-within) .signal-flip-card {
  animation-play-state: paused;
}

.signal-flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  background: var(--black);
  border: 1px solid rgba(248, 250, 255, 0.18);
  box-shadow:
    0 26px 68px rgba(8, 9, 11, 0.24),
    0 0 0 1px rgba(1, 169, 250, 0.1),
    0 0 38px rgba(1, 169, 250, 0.12);
}

.signal-flip-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.04);
}

.signal-flip-back {
  transform: rotateY(180deg);
}

@keyframes signalFlip {
  0%,
  42% {
    transform: rotateY(0deg);
  }

  50%,
  92% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes signalFlipReverse {
  0%,
  42% {
    transform: rotateY(0deg);
  }

  50%,
  92% {
    transform: rotateY(-180deg);
  }

  100% {
    transform: rotateY(-360deg);
  }
}

.manifesto-copy p,
.section-heading p,
.work-intro .intro-copy,
.proof-item p,
.process-track p,
.results p,
.testimonials p,
.inquiry-copy p,
.estimate-panel p,
.service-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.process::before,
.services::before,
.work::before,
.testimonials::before,
.inquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
}

.services {
  overflow: hidden;
  background: var(--black);
}

.section-heading,
.work-intro {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto clamp(42px, 7vw, 88px);
}

.section-heading,
.work-intro {
  display: grid;
  gap: 20px;
}

.section-heading.narrow {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process-intro {
  margin: 0 0 clamp(42px, 7vw, 88px) max(0px, calc((100vw - min(var(--max), calc(100vw - var(--pad))) - var(--pad)) / 2));
}

.process-intro .eyebrow,
.work-intro .eyebrow {
  font-size: 17px;
  line-height: 1.65;
}

.section-heading h2,
.work-intro h2 {
  max-width: 960px;
}

.section-heading p {
  max-width: 680px;
  color: rgba(248, 250, 255, 0.68);
}

.work-intro .intro-copy {
  max-width: 680px;
  color: rgba(248, 250, 255, 0.68);
}

.section-light .section-heading p {
  color: rgba(8, 9, 11, 0.66);
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(1360px, calc(100vw - (var(--pad) * 2)));
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-rows: 16px auto 58px minmax(116px, 1fr) 34px;
  align-items: start;
  gap: 18px;
  padding: 24px;
  background: var(--black);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0),
    0 0 0 rgba(1, 169, 250, 0);
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease,
    background 420ms ease,
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(1, 169, 250, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

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

.service-card:hover {
  border-color: rgba(1, 169, 250, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%),
    rgba(1, 169, 250, 0.045);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(1, 169, 250, 0.16),
    0 0 48px rgba(1, 169, 250, 0.16);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3,
.proof-item h3,
.process-track h3,
.case-card h3,
.estimate-panel h3 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 22px;
  min-height: 48px;
}

.service-card p {
  color: rgba(248, 250, 255, 0.66);
  align-self: start;
}

.service-card strong {
  align-self: start;
  color: var(--acid);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(1, 169, 250, 0.2), transparent),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.mini-visual span {
  position: absolute;
  background: rgba(248, 250, 255, 0.84);
}

.mini-visual-image {
  background: var(--black);
  cursor: pointer;
  padding: 0;
}

.mini-visual-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(1, 169, 250, 0.16), transparent 34%);
  pointer-events: none;
}

.mini-visual-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.04);
}

.service-lightbox-trigger {
  transition:
    border-color 320ms ease,
    box-shadow 360ms ease,
    filter 360ms ease;
}

.service-lightbox-trigger:hover,
.service-lightbox-trigger:focus-visible {
  border-color: rgba(1, 169, 250, 0.56);
  box-shadow:
    0 0 0 1px rgba(1, 169, 250, 0.16),
    0 0 28px rgba(1, 169, 250, 0.16);
  outline: none;
}

.strategy-visual span:nth-child(1) {
  width: 58%;
  height: 2px;
  left: 18%;
  top: 28%;
}

.strategy-visual span:nth-child(2) {
  width: 2px;
  height: 48%;
  left: 50%;
  top: 28%;
}

.strategy-visual span:nth-child(3) {
  width: 46%;
  height: 2px;
  right: 14%;
  bottom: 22%;
}

.design-visual span:nth-child(1) {
  width: 52%;
  height: 64%;
  left: 12%;
  top: 18%;
  background: rgba(1, 169, 250, 0.82);
}

.design-visual span:nth-child(2) {
  width: 32%;
  height: 22%;
  right: 12%;
  top: 24%;
}

.design-visual span:nth-child(3) {
  width: 26%;
  height: 34%;
  right: 16%;
  bottom: 16%;
}

.build-visual span {
  height: 2px;
  left: 16%;
  background: var(--acid);
}

.build-visual span:nth-child(1) {
  width: 62%;
  top: 31%;
}

.build-visual span:nth-child(2) {
  width: 44%;
  top: 50%;
}

.build-visual span:nth-child(3) {
  width: 70%;
  top: 69%;
}

.convert-visual span:nth-child(1) {
  width: 28px;
  height: 28px;
  left: 18%;
  top: 22%;
  border-radius: 50%;
  background: var(--red);
}

.convert-visual span:nth-child(2) {
  width: 42%;
  height: 2px;
  left: 33%;
  top: 34%;
}

.convert-visual span:nth-child(3) {
  width: 62%;
  height: 36px;
  left: 18%;
  bottom: 18%;
  background: var(--acid);
}

.difference {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 110px);
}

.sticky-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

.difference-tagline {
  margin: clamp(16px, 2vw, 22px) 0 0;
  max-width: 560px;
  color: rgba(8, 9, 11, 0.66);
  font-size: 17px;
  line-height: 1.65;
}

.difference-visual {
  position: relative;
  margin: clamp(28px, 4vw, 44px) 0 0;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1385 / 1136;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(248, 250, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 22px 56px rgba(8, 9, 11, 0.14),
    0 0 28px rgba(1, 169, 250, 0.12);
}

.difference-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(1, 169, 250, 0.2), transparent 32%);
  pointer-events: none;
}

.difference-visual + .difference-visual {
  margin-top: clamp(18px, 3vw, 28px);
}

.difference-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(1.05);
}

.text-link,
.email-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}

.proof-stack {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-self: stretch;
}

.proof-item {
  position: relative;
  min-height: clamp(190px, 18vw, 232px);
  display: grid;
  grid-template-rows: auto auto minmax(3.1em, auto);
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 2.6vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.08) 34%, rgba(141, 154, 174, 0.24) 100%),
    var(--silver-surface);
  border: 1px solid rgba(248, 250, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 18px 44px rgba(8, 9, 11, 0.1);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 360ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 360ms ease,
    box-shadow 360ms ease,
    background 360ms ease;
}

.proof-item::before,
.proof-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.proof-item::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(1, 169, 250, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 34%, rgba(1, 169, 250, 0.14) 100%);
  mix-blend-mode: screen;
}

.proof-item::after {
  width: 36%;
  left: -46%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg) translateX(0);
}

.proof-item:hover {
  transform: translateY(-10px);
  border-color: rgba(1, 169, 250, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(238, 243, 250, 0.34) 36%, rgba(1, 169, 250, 0.16) 100%),
    var(--silver-surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 26px 64px rgba(8, 9, 11, 0.18),
    0 0 34px rgba(1, 169, 250, 0.18);
}

.proof-item:hover::before {
  opacity: 1;
}

.proof-item:hover::after {
  opacity: 0.72;
  transform: skewX(-18deg) translateX(420%);
}

.proof-item span,
.proof-item h3,
.proof-item p {
  position: relative;
  z-index: 1;
}

.proof-item span {
  color: var(--red);
}

.proof-item h3 {
  max-width: 560px;
  font-size: clamp(22px, 2.7vw, 34px);
}

.proof-item p {
  max-width: 620px;
  color: rgba(8, 9, 11, 0.68);
  line-height: 1.55;
  min-height: 3.1em;
}

.process-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  width: min(var(--max), calc(100vw - (var(--pad) * 2)));
  max-width: none;
  margin: 0 auto;
  align-items: stretch;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

.process-track::-webkit-scrollbar {
  display: none;
}

.process-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.process-track.is-dragging article {
  pointer-events: none;
}

.process-track article {
  position: relative;
  flex: 1 0 clamp(184px, calc((min(var(--max), calc(100vw - (var(--pad) * 2))) - 2px) / 6), 260px);
  height: 440px;
  display: grid;
  grid-template-rows: 30px 104px 72px 1fr;
  align-content: stretch;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  scroll-snap-align: start;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.018);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0),
    0 0 0 rgba(1, 169, 250, 0);
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease,
    background 420ms ease,
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.process-track article::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(1, 169, 250, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 46%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.process-track article > * {
  position: relative;
  z-index: 1;
}

.process-track article:hover,
.process-track article.is-lit {
  border-color: rgba(1, 169, 250, 0.48);
  background: rgba(1, 169, 250, 0.045);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(1, 169, 250, 0.16),
    0 0 42px rgba(1, 169, 250, 0.14);
  transform: translateY(-4px);
}

.process-track article:hover::before,
.process-track article.is-lit::before {
  opacity: 1;
}

.process-track article:last-child {
  border-right: 0;
}

.process-track span {
  color: var(--acid);
}

.process-icon {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  align-self: start;
  color: var(--cool-white);
}

.process-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.process-icon svg * {
  fill: none;
  stroke: rgba(248, 250, 255, 0.74);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.process-icon svg circle,
.process-icon svg path:nth-of-type(2),
.process-icon svg rect:nth-of-type(2) {
  stroke: var(--acid);
}

.process-icon::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 169, 250, 0.13), transparent 62%);
  opacity: 0.78;
  transform: translate(-9px, -9px);
  pointer-events: none;
}

.process-icon svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(1, 169, 250, 0.16));
}

.process-track h3 {
  font-size: 24px;
  align-self: end;
}

.process-track p {
  align-self: start;
  color: rgba(248, 250, 255, 0.66);
}

.work {
  padding-right: 0;
}

.work > .work-intro {
  margin-left: 0;
  margin-right: 0;
}

.portfolio-strip-shell {
  position: relative;
  z-index: 1;
}

.portfolio-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 0 var(--pad) 10px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

.portfolio-next {
  position: absolute;
  top: 50%;
  right: clamp(12px, 4vw, 22px);
  z-index: 4;
  display: none;
  width: 48px;
  height: 72px;
  border: 1px solid rgba(248, 250, 255, 0.26);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.42);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(1, 169, 250, 0.16);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 320ms ease;
}

.portfolio-next span {
  position: absolute;
  inset: 0;
}

.portfolio-next span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--cool-white);
  border-right: 2px solid var(--cool-white);
  transform: translate(-62%, -50%) rotate(45deg);
}

.portfolio-next:hover,
.portfolio-next:focus-visible {
  background: rgba(1, 169, 250, 0.18);
  border-color: rgba(1, 169, 250, 0.48);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(1, 169, 250, 0.24);
}

.portfolio-strip::-webkit-scrollbar {
  display: none;
}

.portfolio-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.portfolio-strip.is-dragging .case-card {
  pointer-events: none;
}

.case-card {
  flex: 0 0 min(82vw, 680px);
  min-height: 620px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
  scroll-snap-align: start;
  overflow: hidden;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.22),
    0 0 0 rgba(1, 169, 250, 0);
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease,
    background 420ms ease,
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 981px) {
  .portfolio-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-right: var(--pad);
    cursor: auto;
  }

  .case-card {
    flex: none;
  }
}

.case-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(1, 169, 250, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

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

.case-card:hover {
  border-color: rgba(1, 169, 250, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%),
    rgba(1, 169, 250, 0.045);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(1, 169, 250, 0.16),
    0 0 48px rgba(1, 169, 250, 0.16);
  transform: translateY(-4px);
}

.case-card:hover::before {
  opacity: 1;
}

.case-media {
  min-height: 330px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.browser-frame {
  position: relative;
  width: min(92%, 490px);
  aspect-ratio: 1.22;
  border: 1px solid rgba(248, 250, 255, 0.28);
  background:
    linear-gradient(150deg, rgba(1, 169, 250, 0.66), transparent 42%),
    linear-gradient(25deg, rgba(1, 169, 250, 0.55), transparent 48%),
    #16171b;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  transform: rotateX(9deg) rotateY(-14deg);
  transition: transform 480ms ease;
}

.case-card:hover .browser-frame {
  transform: rotateX(0) rotateY(0) translateY(-10px);
}

.browser-frame-image {
  background: var(--black);
  overflow: hidden;
}

.browser-frame-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.03);
}

.browser-frame.alt {
  background:
    linear-gradient(150deg, rgba(1, 169, 250, 0.72), transparent 44%),
    linear-gradient(25deg, rgba(1, 169, 250, 0.28), transparent 48%),
    #17191a;
}

.browser-frame.third {
  background:
    linear-gradient(150deg, rgba(1, 169, 250, 0.34), transparent 44%),
    linear-gradient(25deg, rgba(1, 169, 250, 0.7), transparent 48%),
    #131416;
}

.browser-frame > span {
  position: absolute;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(248, 250, 255, 0.55);
}

.browser-frame > span:nth-child(1) {
  left: 14px;
}

.browser-frame > span:nth-child(2) {
  left: 28px;
}

.browser-frame > span:nth-child(3) {
  left: 42px;
}

.screen-lines {
  position: absolute;
  inset: 42px 24px 24px;
  background:
    linear-gradient(rgba(248, 250, 255, 0.78) 0 0) left top / 46% 8px no-repeat,
    linear-gradient(rgba(248, 250, 255, 0.42) 0 0) left 34px / 72% 6px no-repeat,
    linear-gradient(rgba(248, 250, 255, 0.24) 0 0) left 58px / 60% 6px no-repeat,
    linear-gradient(rgba(8, 9, 11, 0.36) 0 0) left bottom / 100% 38% no-repeat,
    linear-gradient(rgba(248, 250, 255, 0.2) 0 0) right bottom / 34% 64% no-repeat;
}

.case-card p {
  color: var(--acid);
}

.case-card h3 {
  max-width: 560px;
  font-size: clamp(26px, 3.4vw, 46px);
}

.case-card span {
  color: rgba(248, 250, 255, 0.62);
}

.results {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.results-copy {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  max-width: 660px;
}

.results-copy .intro-copy {
  max-width: 620px;
  color: rgba(8, 9, 11, 0.66);
  font-size: 17px;
  line-height: 1.65;
}

.journey {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(2px, 1vw, 12px);
}

.journey div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  padding: clamp(16px, 2vw, 20px);
  color: var(--black);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.08) 38%, rgba(141, 154, 174, 0.22) 100%),
    var(--silver-surface);
  border: 1px solid rgba(248, 250, 255, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 44px rgba(8, 9, 11, 0.08),
    0 0 0 rgba(1, 169, 250, 0);
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease,
    background 420ms ease;
}

.journey div::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(1, 169, 250, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 46%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.journey div:hover {
  border-color: rgba(1, 169, 250, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.14) 40%, rgba(141, 154, 174, 0.26) 100%),
    var(--silver-surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 44px rgba(8, 9, 11, 0.08),
    0 0 28px rgba(1, 169, 250, 0.18);
}

.journey div:hover::before {
  opacity: 1;
}

.journey span {
  position: relative;
  z-index: 1;
  color: var(--red);
  grid-row: span 2;
}

.journey strong {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.5;
}

.results-visual-grid {
  position: relative;
  min-height: clamp(360px, 34vw, 520px);
  perspective: 1600px;
}

.results-visual {
  position: absolute;
  margin: 0;
  padding: 0;
  aspect-ratio: 1385 / 1136;
  overflow: hidden;
  appearance: none;
  cursor: pointer;
  background: var(--black);
  border: 1px solid rgba(248, 250, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 24px 58px rgba(8, 9, 11, 0.14),
    0 0 30px rgba(1, 169, 250, 0.12);
  transition:
    width 520ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 420ms ease,
    box-shadow 520ms ease;
}

.results-visual-primary {
  z-index: 2;
  top: clamp(24px, 3vw, 42px);
  right: 0;
  width: min(58%, 560px);
  transform: rotateY(-8deg) rotateX(3deg);
  transform-origin: right center;
}

.results-visual-secondary {
  z-index: 1;
  left: 0;
  bottom: 0;
  width: min(58%, 560px);
  transform: translateY(5%) rotateY(8deg) rotateX(-2deg);
  transform-origin: left center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 48px rgba(8, 9, 11, 0.16),
    0 0 28px rgba(1, 169, 250, 0.1);
}

.results-visual-grid:not(.is-swapped):hover .results-visual-primary {
  transform: translateY(-6px) rotateY(-6deg) rotateX(2deg);
}

.results-visual-grid:not(.is-swapped):hover .results-visual-secondary {
  transform: translateY(calc(5% - 4px)) rotateY(6deg) rotateX(-1deg);
}

.results-visual-grid.is-swapped .results-visual-primary {
  z-index: 1;
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
  width: min(58%, 560px);
  transform: translateY(5%) rotateY(8deg) rotateX(-2deg);
  transform-origin: left center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 48px rgba(8, 9, 11, 0.16),
    0 0 28px rgba(1, 169, 250, 0.1);
}

.results-visual-grid.is-swapped .results-visual-secondary {
  z-index: 2;
  left: auto;
  bottom: auto;
  top: clamp(24px, 3vw, 42px);
  right: 0;
  width: min(58%, 560px);
  transform: rotateY(-8deg) rotateX(3deg);
  transform-origin: right center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 24px 58px rgba(8, 9, 11, 0.14),
    0 0 30px rgba(1, 169, 250, 0.12);
}

.results-visual-grid.is-swapped:hover .results-visual-primary {
  transform: translateY(calc(5% - 4px)) rotateY(6deg) rotateX(-1deg);
}

.results-visual-grid.is-swapped:hover .results-visual-secondary {
  transform: translateY(-6px) rotateY(-6deg) rotateX(2deg);
}

.results-visual:hover,
.results-visual:focus-visible {
  border-color: rgba(1, 169, 250, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 26px 64px rgba(8, 9, 11, 0.16),
    0 0 34px rgba(1, 169, 250, 0.26),
    0 0 0 1px rgba(1, 169, 250, 0.16);
}

.results-visual:focus-visible {
  outline: 2px solid rgba(1, 169, 250, 0.82);
  outline-offset: 4px;
}

.results-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(1, 169, 250, 0.18), transparent 34%);
  pointer-events: none;
}

.results-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(1.05);
}

.testimonials {
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  right: var(--pad);
  top: 40px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: clamp(220px, 32vw, 480px);
  line-height: 0.8;
}

.testimonials h2,
.testimonials p {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.testimonial-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

.testimonial-copy > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.65;
}

.after-launch-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.22;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(248, 250, 255, 0.18);
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(1, 169, 250, 0.08),
    0 0 42px rgba(1, 169, 250, 0.12);
  transition: box-shadow 420ms ease, border-color 420ms ease;
}

.after-launch-visual:hover {
  border-color: rgba(248, 250, 255, 0.34);
  box-shadow:
    0 32px 82px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(255, 255, 255, 0.3),
    0 0 72px rgba(255, 255, 255, 0.2),
    0 0 118px rgba(255, 255, 255, 0.12);
}

.after-launch-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(1, 169, 250, 0.16), transparent 34%);
  pointer-events: none;
}

.after-launch-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.04);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(1, 169, 250, 0.18), transparent 36%),
    rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(10px);
}

.image-modal__panel {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(96vw, 1280px);
  max-height: 88vh;
  display: grid;
  place-items: center;
  background: var(--black);
  border: 1px solid rgba(248, 250, 255, 0.2);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(1, 169, 250, 0.16),
    0 0 56px rgba(1, 169, 250, 0.18);
  transform: translateY(12px) scale(0.98);
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
}

.image-modal.is-open .image-modal__panel {
  transform: translateY(0) scale(1);
}

.image-modal__panel img {
  width: auto;
  max-width: min(96vw, 1280px);
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  cursor: pointer;
}

.image-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  border: 1px solid rgba(248, 250, 255, 0.18);
  border-radius: 0;
  color: var(--cool-white);
  background: rgba(8, 9, 11, 0.72);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.image-modal__close:hover,
.image-modal__close:focus-visible {
  border-color: rgba(1, 169, 250, 0.58);
  outline: none;
}

.testimonial-copy > p:not(.eyebrow) {
  margin-top: 0;
  color: rgba(248, 250, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.reflection .section-heading .eyebrow {
  color: var(--red);
}

.reflection-gallery {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.reflection-preview {
  position: relative;
  aspect-ratio: 1385 / 1136;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  appearance: none;
  cursor: pointer;
  background: var(--black);
  border: 1px solid rgba(248, 250, 255, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 44px rgba(8, 9, 11, 0.08),
    0 0 0 rgba(1, 169, 250, 0);
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease;
}

.reflection-preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(1, 169, 250, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 36%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.reflection-preview:hover,
.reflection-preview:focus-visible {
  border-color: rgba(1, 169, 250, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 20px 50px rgba(8, 9, 11, 0.1),
    0 0 34px rgba(1, 169, 250, 0.22);
}

.reflection-preview:hover::before,
.reflection-preview:focus-visible::before {
  opacity: 1;
}

.reflection-preview:focus-visible {
  outline: 2px solid rgba(1, 169, 250, 0.82);
  outline-offset: 4px;
}

.reflection-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 7vw, 92px);
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.inquiry-copy,
.project-form {
  position: relative;
  z-index: 1;
}

.inquiry-copy {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  align-content: start;
}

.inquiry-copy p {
  max-width: 610px;
  color: rgba(248, 250, 255, 0.68);
}

.project-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.project-form label {
  display: grid;
  gap: 8px;
  color: rgba(248, 250, 255, 0.68);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-form input,
.project-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  color: var(--cool-white);
  background: rgba(8, 9, 11, 0.45);
  padding: 13px 14px;
  outline: none;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--pad);
  color: var(--cool-white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-logo {
  width: min(280px, 56vw);
  height: auto;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  margin: 0;
  color: rgba(248, 250, 255, 0.58);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.js .proof-item[data-reveal].is-visible {
  transition:
    opacity 800ms ease,
    transform 360ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 360ms ease,
    box-shadow 360ms ease,
    background 360ms ease;
}

.js .proof-item[data-reveal].is-visible:hover {
  transform: translateY(-10px);
}

.js .service-card[data-reveal].is-visible {
  transition:
    opacity 800ms ease,
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 360ms ease,
    box-shadow 420ms ease,
    background 420ms ease;
}

.js .service-card[data-reveal].is-visible:hover {
  transform: translateY(-4px);
}

.js .case-card[data-reveal].is-visible {
  transition:
    opacity 800ms ease,
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 360ms ease,
    box-shadow 420ms ease,
    background 420ms ease;
}

.js .case-card[data-reveal].is-visible:hover {
  transform: translateY(-4px);
}

.js .process-track[data-reveal].is-visible {
  transform: none;
}

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

  .desktop-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .difference,
  .results,
  .testimonials,
  .estimator,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .signal-flip-box {
    max-width: 680px;
  }

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

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

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

}

@media (max-width: 820px) {
  .manifesto-layout {
    grid-template-columns: 1fr;
  }

  .signal-flip-box {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    inset: 10px 10px auto;
    padding: 13px 12px;
  }

  .brand-logo {
    width: clamp(156px, 48vw, 206px);
    max-height: 50px;
  }

  .mobile-menu-toggle {
    min-height: 42px;
  }

  .manifesto-text {
    grid-template-columns: 1fr;
  }

  .journey,
  .reflection-gallery,
  .results-visual-grid {
    grid-template-columns: 1fr;
  }

  .results-visual-grid {
    display: grid;
    gap: 16px;
    min-height: auto;
    perspective: none;
  }

  .results-visual,
  .results-visual-primary,
  .results-visual-secondary,
  .results-visual-grid:hover .results-visual-primary,
  .results-visual-grid:hover .results-visual-secondary,
  .results-visual-grid.is-swapped .results-visual-primary,
  .results-visual-grid.is-swapped .results-visual-secondary,
  .results-visual-grid.is-swapped:hover .results-visual-primary,
  .results-visual-grid.is-swapped:hover .results-visual-secondary {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .hero {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 92px;
    padding-bottom: 34px;
    aspect-ratio: auto;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 1280 / 1126;
    object-fit: contain;
    object-position: center center;
    background: var(--black);
    mask-image: none;
  }

  .hero-media {
    display: block;
    width: calc(100% + (var(--pad) * 2));
    margin-inline: calc(var(--pad) * -1);
  }

  .hero::after {
    display: none;
  }

  .hero-content,
  .hero-proof {
    width: 100%;
    max-width: none;
  }

  .hero-content {
    display: grid;
    gap: 22px;
  }

  .hero-title {
    font-size: clamp(30px, 8.8vw, 48px);
  }

  .manifesto {
    padding-top: 34px;
  }

  .manifesto-text {
    gap: 16px;
  }

  .manifesto-copy {
    gap: 16px;
    padding-top: 0;
  }

  .work-intro,
  .section-heading,
  .results-copy,
  .testimonial-copy,
  .inquiry-copy {
    gap: 14px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .js .hero-proof[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

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

  .service-card {
    min-height: 340px;
  }

  .portfolio-strip {
    padding-right: var(--pad);
  }

  .portfolio-next {
    display: block;
  }

  .case-card {
    flex-basis: 88vw;
    min-height: 560px;
    transition: border-color 260ms ease, box-shadow 300ms ease, background 300ms ease !important;
  }

  .case-card:hover,
  .case-card:active,
  .js .case-card[data-reveal].is-visible:hover {
    transform: none !important;
  }

  .case-card:active {
    border-color: rgba(1, 169, 250, 0.48);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%),
      rgba(1, 169, 250, 0.045);
    box-shadow:
      0 22px 58px rgba(0, 0, 0, 0.26),
      0 0 0 1px rgba(1, 169, 250, 0.14),
      0 0 40px rgba(1, 169, 250, 0.16);
  }

  .case-card:active::before {
    opacity: 1;
  }

  .case-card::before,
  .case-card::after,
  .case-card:active::before,
  .case-card:active::after,
  .case-card:hover::before,
  .case-card:hover::after {
    transform: none !important;
    transition: opacity 220ms ease !important;
  }

  .case-media {
    min-height: 260px;
    perspective: none !important;
    transform: none !important;
    transition: none !important;
  }

  .case-card .browser-frame,
  .case-card:hover .browser-frame,
  .case-card:active .browser-frame,
  .case-card:focus-within .browser-frame {
    transform: none !important;
    transition: none !important;
  }

  .case-card .browser-frame-image,
  .case-card .browser-frame-image img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transform: none !important;
    transition: none !important;
  }

  .footer {
    display: grid;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}

@media (hover: none), (pointer: coarse) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  body.no-cursor,
  body.no-cursor * {
    cursor: auto;
  }

  .cursor-dot {
    display: none;
  }

  .case-card,
  .case-card:hover,
  .case-card:active,
  .js .case-card[data-reveal].is-visible:hover {
    transform: none !important;
    transition: border-color 260ms ease, box-shadow 300ms ease, background 300ms ease !important;
  }

  .case-card:active {
    border-color: rgba(1, 169, 250, 0.48);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%),
      rgba(1, 169, 250, 0.045);
    box-shadow:
      0 22px 58px rgba(0, 0, 0, 0.26),
      0 0 0 1px rgba(1, 169, 250, 0.14),
      0 0 40px rgba(1, 169, 250, 0.16);
  }

  .case-card:active::before {
    opacity: 1;
  }

  .case-card::before,
  .case-card::after,
  .case-card:active::before,
  .case-card:active::after,
  .case-card:hover::before,
  .case-card:hover::after {
    transform: none !important;
    transition: opacity 220ms ease !important;
  }

  .case-card .browser-frame,
  .case-card:hover .browser-frame,
  .case-card:active .browser-frame,
  .case-card:focus-within .browser-frame {
    transform: none !important;
    transition: none !important;
  }

  .case-media {
    perspective: none !important;
    transform: none !important;
    transition: none !important;
  }

  .case-card .browser-frame-image,
  .case-card .browser-frame-image img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transform: none !important;
    transition: none !important;
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .signal-flip-card {
    animation: none;
    transform: rotateY(0deg);
  }
}
