:root {
  --ink: #151515;
  --ink-soft: #262626;
  --paper: #f4f1e9;
  --paper-dark: #e9e4d8;
  --white: #fffdf8;
  --lime: #c8ff39;
  --lime-deep: #9fe000;
  --blue: #5868ff;
  --blue-dark: #3e4ee2;
  --coral: #ff7058;
  --purple: #aa7cff;
  --cyan: #78ebe8;
  --muted: #68655e;
  --line: rgba(21, 21, 21, .16);
  --shadow: 0 28px 70px rgba(21, 21, 21, .14);
  --offset-shadow: 14px 15px 0 var(--ink);
  --premium-ease: cubic-bezier(.19, 1, .22, 1);
  --display-font: "Manrope", "Avenir Next", "SF Pro Display", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 13px;
  --container: 1240px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}

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

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

.mobile-line {
  display: none;
}

@keyframes methodBackgroundDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1.05);
  }

  50% {
    transform: translate3d(2%, -2.5%, 0) scale(1.09);
  }

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

@keyframes methodLightSweep {
  0% {
    transform: translateX(-38%) rotate(-10deg);
    opacity: .1;
  }

  50% {
    opacity: .34;
  }

  100% {
    transform: translateX(38%) rotate(-10deg);
    opacity: .12;
  }
}

@keyframes heroAmbientShift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1.02);
  }

  50% {
    transform: translate3d(2%, 1%, 0) scale(1.05);
  }

  100% {
    transform: translate3d(0, -2%, 0) scale(1.03);
  }
}

@keyframes heroVideoDrift {
  0% {
    transform: scale(1.02) translate3d(-1.2%, -1%, 0);
  }

  100% {
    transform: scale(1.08) translate3d(1.2%, 1%, 0);
  }
}

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

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

.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;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  padding: 12px 16px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.site-grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-weight: 850;
  letter-spacing: -.025em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--ink);
}

.button:focus-visible,
.menu-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.button--small {
  min-height: 46px;
  padding-inline: 18px;
  font-size: .86rem;
}

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

.button--dark:hover {
  box-shadow: 0 9px 0 var(--lime);
}

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

.button:disabled,
.button.is-loading {
  cursor: wait;
  opacity: .72;
}

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

.button__icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: .9rem;
}

.button:hover .button__icon {
  animation: button-icon-pop .7s cubic-bezier(.2, 1.4, .35, 1);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 14px 0;
  transition: padding .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(244, 241, 233, .84);
  border-bottom: 1px solid rgba(21, 21, 21, .08);
  box-shadow: 0 10px 30px rgba(21, 21, 21, .04);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 7px 8px 7px 18px;
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(21, 21, 21, .14);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(21, 21, 21, .07);
  backdrop-filter: blur(15px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-size: 1.32rem;
  font-weight: 950;
  letter-spacing: -.06em;
}

.brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--lime);
  background: var(--ink);
  border-radius: 50%;
}

.brand__mark svg {
  width: 24px;
  height: 24px;
}

.brand__domain {
  align-self: flex-end;
  margin: 0 0 7px -8px;
  color: #85817a;
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(18px, 2vw, 30px);
  font-size: .87rem;
  font-weight: 750;
}

.nav-menu > a:not(.button) {
  position: relative;
}

.nav-menu > a:not(.button)::after {
  position: absolute;
  right: 100%;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ink);
  transition: right .2s ease;
}

.nav-menu > a:not(.button):hover::after {
  right: 0;
}

.nav-menu__cta {
  display: none;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 920px;
  padding: 174px 0 94px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: -12%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 28%, rgba(200, 255, 57, .2), transparent 26%),
    radial-gradient(circle at 62% 74%, rgba(120, 235, 232, .18), transparent 31%),
    linear-gradient(90deg, rgba(255, 253, 248, .98) 0%, rgba(255, 253, 248, .86) 32%, rgba(255, 253, 248, .58) 52%, rgba(255, 253, 248, .12) 100%);
  filter: blur(4px);
  opacity: .9;
  animation: heroAmbientShift 18s ease-in-out infinite alternate;
}

.hero__shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--one {
  width: 430px;
  height: 430px;
  top: 228px;
  right: -190px;
  background: var(--lime);
  opacity: .22;
}

.hero__shape--two {
  width: 160px;
  height: 160px;
  bottom: 92px;
  left: -58px;
  background: var(--purple);
  opacity: .42;
}

.hero-video-bg {
  position: absolute;
  z-index: 0;
  inset: 84px 0 0;
  overflow: hidden;
  background: #070b10;
  pointer-events: none;
}

.hero-video-bg video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: 58% center;
  opacity: .88;
  filter: saturate(1.16) contrast(1.08) brightness(.86);
  animation: heroVideoDrift 20s ease-in-out infinite alternate;
}

.hero-video-bg__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .98) 0%, rgba(255, 253, 248, .88) 31%, rgba(255, 253, 248, .56) 52%, rgba(7, 11, 16, .1) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .24) 36%, rgba(255, 253, 248, .92) 100%);
}

.hero-video-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: .55;
}

.hero-video-bg__glow--one {
  right: 8%;
  bottom: 16%;
  width: 290px;
  height: 290px;
  background: rgba(200, 255, 57, .34);
}

.hero-video-bg__glow--two {
  top: 24%;
  right: 34%;
  width: 220px;
  height: 220px;
  background: rgba(88, 104, 255, .2);
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  align-items: center;
  gap: clamp(40px, 5vw, 74px);
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 11px;
  height: 11px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(88, 104, 255, .12);
}

.kicker::before {
  width: 23px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 6.7vw, 6.8rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
}

.hero h1 em {
  display: inline-block;
  padding: .02em .16em .07em;
  color: var(--white);
  background: var(--blue);
  border-radius: .16em;
  box-shadow: 6px 7px 0 var(--ink);
  font-style: normal;
  transform: rotate(-.7deg);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #4e4c47;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.hero__lead strong {
  color: var(--ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 0;
  padding: 0;
  color: #6b6861;
  font-size: .83rem;
  font-weight: 720;
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__proof span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: .68rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.hero__stats div {
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 253, 248, .82);
  border: 1.5px solid rgba(21, 21, 21, .16);
  border-radius: 18px;
  box-shadow: 5px 6px 0 rgba(21, 21, 21, .08);
  transform: translateZ(0);
  animation: stat-drift 6.5s ease-in-out infinite;
}

.hero__stats div:nth-child(2) {
  animation-delay: -.9s;
}

.hero__stats div:nth-child(3) {
  animation-delay: -1.8s;
}

.hero__stats strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
}

.hero__stats span {
  display: block;
  max-width: 150px;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.18;
}

.hero-showcase {
  position: relative;
  min-height: 610px;
  transform-style: preserve-3d;
}

.hero-showcase::after {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: 77%;
  height: 19%;
  content: "";
  background: rgba(21, 21, 21, .22);
  border-radius: 50%;
  filter: blur(38px);
  transform: rotate(-4deg);
}

.hero-showcase__orbit {
  position: absolute;
  inset: 4% 0 0 2%;
  border: 2px dashed rgba(21, 21, 21, .16);
  border-radius: 50%;
  transform: scale(.87) rotate(-18deg);
}

.hero-showcase__orbit::before,
.hero-showcase__orbit::after {
  position: absolute;
  content: "";
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.hero-showcase__orbit::before {
  top: 9%;
  right: 15%;
  width: 22px;
  height: 22px;
  background: var(--coral);
}

.hero-showcase__orbit::after {
  bottom: 28%;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--cyan);
}

.screen {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 25px;
  box-shadow: var(--offset-shadow), var(--shadow);
}

.screen--hero {
  position: absolute;
  z-index: 3;
  top: 58px;
  right: 0;
  width: min(100%, 530px);
  transform: rotate(2deg);
  animation: float-main 6s ease-in-out infinite;
}

.screen__bar,
.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  background: #eceae4;
  border-bottom: 1.5px solid var(--ink);
}

.screen__bar span,
.browser-frame__bar i {
  width: 9px;
  height: 9px;
  background: var(--coral);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.screen__bar span:nth-child(2),
.browser-frame__bar i:nth-child(2) {
  background: var(--lime);
}

.screen__bar span:nth-child(3),
.browser-frame__bar i:nth-child(3) {
  background: var(--cyan);
}

.screen__bar small,
.browser-frame__bar small {
  min-width: 0;
  flex: 1;
  margin-left: 7px;
  overflow: hidden;
  color: #817e77;
  font-size: .62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screen--hero > picture,
.screen--hero img {
  width: 100%;
}

.hero-showcase__mobile {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 38px;
  width: 178px;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 31px;
  box-shadow: 9px 10px 0 var(--lime), 0 22px 45px rgba(21, 21, 21, .25);
  transform: rotate(-5deg);
  animation: float-phone 5.5s ease-in-out infinite;
}

.hero-showcase__mobile img {
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
  object-position: 48% center;
  border-radius: 24px;
}

.hero-showcase__label {
  position: absolute;
  z-index: 6;
  padding: 10px 13px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 6px 0 var(--ink);
  font-size: .7rem;
  font-weight: 900;
  animation: label-bob 5.8s ease-in-out infinite;
}

.hero-showcase__label--one {
  top: 24px;
  left: 7%;
  background: var(--lime);
  transform: rotate(-3deg);
}

.hero-showcase__label--two {
  bottom: 88px;
  left: 2%;
  transform: rotate(3deg);
  animation-delay: -1.4s;
}

@keyframes float-main {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes float-phone {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(9px) rotate(-3.5deg); }
}

@keyframes stat-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(.45deg); }
}

@keyframes label-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes button-icon-pop {
  0%, 100% { transform: rotate(0deg) scale(1); }
  45% { transform: rotate(16deg) scale(1.14); }
}

@keyframes dot-field-slide {
  to { background-position: 52px 39px; }
}

.ticker {
  width: 100%;
  margin-inline: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-block: 2px solid var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__group i {
  width: 12px;
  height: 12px;
  background: var(--lime);
  border-radius: 50%;
}

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

.confidence-section {
  padding: 58px 0 70px;
}

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

.confidence-card {
  min-height: 250px;
  padding: clamp(28px, 3vw, 38px);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 9px 0 var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform;
}

.confidence-card--lime {
  background: #e2f7aa;
}

.confidence-card:hover {
  transform: translateY(-6px);
  box-shadow: 9px 10px 0 var(--ink);
}

.confidence-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 950;
}

.confidence-card h2 {
  max-width: 330px;
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 2.7vw, 3rem);
  font-weight: 950;
  line-height: .96;
  letter-spacing: -.06em;
}

.confidence-card p {
  max-width: 390px;
  margin-bottom: 0;
  color: #55514a;
}

.confidence-card--lime p {
  color: #343b22;
}

.conversion-strip {
  padding: 34px 0;
  color: var(--white);
  background: #090d11;
  border-block: 1px solid rgba(200, 255, 57, .22);
}

.conversion-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.conversion-strip p {
  display: grid;
  gap: 5px;
  max-width: 720px;
  margin: 0;
}

.conversion-strip strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1.05;
}

.conversion-strip span {
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
}

.signature-section {
  position: relative;
  padding: clamp(56px, 6.5vw, 88px) 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(80, 118, 255, .24), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(120, 235, 232, .15), transparent 34%),
    linear-gradient(135deg, #05080d 0%, #0b1119 46%, #06070a 100%);
  border-block: 2px solid var(--ink);
}

.signature-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image:
    linear-gradient(rgba(120, 235, 232, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 235, 232, .12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 62% 45%, black, transparent 74%);
}

.signature-section .reveal {
  opacity: 1;
  transform: none;
}

.signature-section .kicker {
  color: var(--cyan);
  letter-spacing: 0;
}

.signature-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  grid-template-areas:
    "copy visual"
    "list visual";
  gap: clamp(22px, 4vw, 56px);
  min-height: 0;
  padding: clamp(26px, 4.2vw, 50px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .025)),
    radial-gradient(circle at 38% 10%, rgba(200, 255, 57, .12), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(120, 235, 232, .16), transparent 32%),
    rgba(6, 9, 14, .92);
  border: 1.5px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  box-shadow: 0 46px 130px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
}

.signature-copy {
  position: relative;
  z-index: 3;
  grid-area: copy;
  align-self: end;
  max-width: 720px;
}

.signature-copy h2 {
  max-width: 820px;
  margin: 18px 0 24px;
  font-size: clamp(3.2rem, 5.35vw, 5.65rem);
  font-weight: 950;
  line-height: .9;
  letter-spacing: 0;
}

.signature-copy__lead {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.68;
}

.signature-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signature-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(120, 235, 232, .22);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  font-size: .9rem;
  font-weight: 750;
}

.signature-metrics strong {
  color: var(--lime);
  font-weight: 950;
}

.signature-visual-shell {
  position: relative;
  z-index: 3;
  grid-area: visual;
  align-self: center;
  min-height: clamp(500px, 47vw, 620px);
  height: clamp(500px, 47vw, 620px);
  perspective: 1200px;
}

.signature-ai-visual {
  position: absolute;
  isolation: isolate;
  display: grid;
  inset: 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(120, 235, 232, .2), transparent 30%),
    linear-gradient(135deg, rgba(3, 8, 14, .98), rgba(10, 16, 24, .94));
  border: 1px solid rgba(120, 235, 232, .22);
  border-radius: 32px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .42),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
  transform: rotateX(2.8deg) rotateY(-7deg) translate3d(0, 0, 0);
  transform-origin: center;
  animation: signatureVisualFloat 8.4s ease-in-out infinite alternate;
  will-change: transform;
}

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

.signature-ai-visual::before {
  z-index: 4;
  inset: 7%;
  border: 1px solid rgba(120, 235, 232, .18);
  border-radius: 26px;
  box-shadow:
    inset 0 0 42px rgba(120, 235, 232, .08),
    0 0 60px rgba(88, 104, 255, .1);
}

.signature-ai-visual::after {
  z-index: 6;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 24%, transparent 70%, rgba(0, 0, 0, .26)),
    radial-gradient(circle at var(--hover-x, 50%) var(--hover-y, 50%), rgba(200, 255, 57, .18), transparent 24%);
  mix-blend-mode: screen;
}

.signature-ai-photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.07) brightness(.9);
  transform: scale(1.035);
  transform-origin: center;
  animation: signaturePhotoFloat 10.5s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.signature-ai-hud {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(120, 235, 232, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 235, 232, .2) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, transparent 0 27%, rgba(120, 235, 232, .22) 27.4% 27.8%, transparent 28.2% 100%);
  background-size: 36px 36px, 36px 36px, 100% 100%;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle at 50% 50%, black 0 62%, transparent 86%);
  animation: signatureHudDrift 13s ease-in-out infinite alternate;
}

.signature-ai-shine {
  position: absolute;
  z-index: 5;
  inset: 0;
  background: linear-gradient(112deg, transparent 0 34%, rgba(255, 255, 255, .32) 48%, rgba(120, 235, 232, .2) 51%, transparent 64% 100%);
  mix-blend-mode: screen;
  transform: translateX(-72%);
  animation: signaturePhotoShine 7s ease-in-out infinite;
}

.signature-ai-depth {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(120, 235, 232, .28);
  border-radius: 32px;
  box-shadow: inset 0 0 30px rgba(120, 235, 232, .08);
  animation: signatureDepthPulse 5.6s ease-in-out infinite;
}

.signature-ai-depth--one {
  inset: 9%;
}

.signature-ai-depth--two {
  inset: 23%;
  border-radius: 999px;
  border-color: rgba(200, 255, 57, .2);
  animation-delay: -2.4s;
}

.signature-float-card {
  position: absolute;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(7, 11, 17, .72);
  border: 1px solid rgba(120, 235, 232, .28);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: signatureFloatCard 5.6s ease-in-out infinite;
}

.signature-float-card--one {
  top: 28px;
  left: -14px;
}

.signature-float-card--two {
  right: -18px;
  bottom: 30%;
  animation-delay: -1.8s;
}

.signature-float-card--three {
  bottom: 34px;
  left: 22px;
  animation-delay: -3s;
}

.signature-list {
  position: relative;
  z-index: 3;
  display: grid;
  grid-area: list;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signature-list li {
  display: grid;
  gap: 8px;
  min-height: 114px;
  padding: 16px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}

.signature-list strong {
  color: var(--white);
  font-size: .9rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signature-list span {
  color: rgba(255, 255, 255, .7);
  font-size: .94rem;
  line-height: 1.5;
}

@keyframes signatureVisualFloat {
  0% { transform: rotateX(2.8deg) rotateY(-7deg) translate3d(0, 0, 0); }
  100% { transform: rotateX(-1.2deg) rotateY(-3deg) translate3d(0, -10px, 30px); }
}

@keyframes signaturePhotoFloat {
  0% {
    transform: translate3d(-1.1%, -1%, 0) scale(1.035);
    filter: saturate(1.06) contrast(1.06) brightness(.88);
  }
  100% {
    transform: translate3d(1.2%, 1%, 0) scale(1.075);
    filter: saturate(1.18) contrast(1.1) brightness(.98);
  }
}

@keyframes signaturePhotoShine {
  0%, 32% { transform: translateX(-78%); opacity: 0; }
  43% { opacity: .58; }
  58% { opacity: .18; }
  72%, 100% { transform: translateX(78%); opacity: 0; }
}

@keyframes signatureDepthPulse {
  0%, 100% { transform: scale(.985); opacity: .36; }
  50% { transform: scale(1.025); opacity: .76; }
}

@keyframes signatureHudDrift {
  0% { transform: translate3d(-10px, -8px, 0); opacity: .16; }
  100% { transform: translate3d(10px, 8px, 0); opacity: .28; }
}

@keyframes signatureFloatCard {
  0%, 100% { transform: translate3d(0, 0, 28px); }
  50% { transform: translate3d(0, -9px, 40px); }
}

.section {
  padding: 126px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.section-heading h2,
.process-intro h2,
.proof-copy h2,
.faq-intro h2,
.contact-card h2 {
  margin-bottom: 0;
  font-family: var(--display-font);
  font-size: clamp(3.2rem, 6vw, 6.25rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.026em;
  text-wrap: balance;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.section-heading--compact {
  margin-bottom: 50px;
}

.projects {
  display: grid;
  gap: 42px;
}

.project {
  display: grid;
  grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr);
  min-height: 610px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 12px 13px 0 var(--ink);
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}

.project:hover {
  transform: translateY(-7px);
  box-shadow: 15px 17px 0 var(--ink);
}

.project--reverse .project__content {
  order: 2;
}

.project--reverse .project-media {
  order: 1;
}

.project__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(42px, 5vw, 72px);
}

.project__index {
  margin-bottom: auto;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project__content h3 {
  margin: 64px 0 18px;
  font-family: var(--display-font);
  font-size: clamp(2.85rem, 4.8vw, 5.05rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.032em;
  text-wrap: balance;
}

.project__description {
  max-width: 520px;
  margin-bottom: 24px;
  color: #56534d;
  font-size: 1rem;
  line-height: 1.7;
}

.project__market {
  display: inline-flex;
  margin: -4px 0 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 5px 0 rgba(21, 21, 21, .16);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project__market--subtle {
  padding: 5px 9px;
  color: #5e5a52;
  background: rgba(255, 253, 248, .74);
  border-color: rgba(21, 21, 21, .2);
  box-shadow: none;
  font-size: .66rem;
  letter-spacing: .03em;
  text-transform: none;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.tags li {
  padding: 7px 11px;
  background: var(--paper);
  border: 1px solid rgba(21, 21, 21, .19);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 780;
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.project__link span {
  transition: transform .2s ease;
}

.project__link:hover span {
  transform: translate(3px, -3px);
}

.project-media,
.direct-screen,
.foodeo-screen {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: none;
  cursor: default;
}

.project-media {
  min-height: 100%;
}

.project-media--souq {
  background: var(--lime);
}

.project-media--direct {
  background: var(--blue);
}

.project-media--foodeo {
  background: var(--coral);
}

.media-decoration {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--ink) 1.7px, transparent 1.7px);
  background-size: 13px 13px;
  opacity: .55;
  animation: dot-field-slide 18s linear infinite;
}

.browser-frame {
  position: absolute;
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 21px;
  box-shadow: 13px 14px 0 rgba(21, 21, 21, .9), var(--shadow);
  transition: transform .35s ease;
}

.project-media:hover .browser-frame,
.direct-screen:hover .browser-frame,
.foodeo-screen:hover .browser-frame {
  transform: translateY(-7px) rotate(0deg);
}

.browser-frame picture,
.browser-frame img {
  width: 100%;
}

.project-media--souq .browser-frame {
  top: 76px;
  right: -4%;
  width: 91%;
  transform: rotate(-2.4deg);
}

.project-media--souq .browser-frame img {
  aspect-ratio: 1.6;
  object-fit: cover;
  object-position: top left;
}

.media-badge {
  position: absolute;
  z-index: 6;
  padding: 10px 13px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 6px 0 var(--ink);
  font-size: .68rem;
  font-weight: 900;
  pointer-events: none;
}

.media-badge {
  bottom: 28px;
  left: 25px;
  transform: rotate(3deg);
}

.project--direct .project__content {
  color: var(--white);
  background: var(--ink);
}

.project--direct .project__description {
  color: rgba(255, 255, 255, .72);
}

.project--direct .tags li {
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .24);
}

.direct-screen--dashboard {
  position: absolute;
  top: 62px;
  left: 4%;
  width: 82%;
  overflow: visible;
  transform: rotate(2.4deg);
}

.direct-screen--dashboard .browser-frame {
  position: relative;
  width: 100%;
  transform: none;
}

.direct-screen--dashboard img {
  aspect-ratio: 1.39;
  object-fit: cover;
}

.direct-screen--mobile {
  position: absolute;
  z-index: 5;
  right: 3%;
  bottom: 32px;
  width: 188px;
  padding: 6px;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 31px;
  box-shadow: 9px 10px 0 var(--lime), 0 24px 48px rgba(21, 21, 21, .28);
  transform: rotate(-5deg);
  transition: transform .3s ease;
}

.direct-screen--mobile:hover {
  transform: rotate(-2deg) translateY(-6px);
}

.direct-screen--mobile img {
  width: 100%;
  aspect-ratio: .8;
  object-fit: cover;
  object-position: center;
  border-radius: 23px;
}

.project-media--direct .media-badge {
  background: var(--lime);
}

.foodeo-screen--hero {
  position: absolute;
  top: 58px;
  right: 4%;
  width: 88%;
  overflow: visible;
  transform: rotate(-1.8deg);
}

.foodeo-screen--hero .browser-frame {
  position: relative;
  width: 100%;
  transform: none;
}

.browser-frame--dark .browser-frame__bar {
  color: var(--white);
  background: #181818;
  border-color: #181818;
}

.browser-frame--dark .browser-frame__bar small {
  color: rgba(255, 255, 255, .65);
}

.foodeo-screen--hero .browser-frame > img {
  aspect-ratio: 1.6;
  object-fit: cover;
}

.foodeo-screen__overlay {
  position: absolute;
  inset: 42px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, .78));
  text-align: left;
}

.foodeo-screen__overlay img {
  width: 72px;
  height: 72px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.foodeo-screen__overlay strong {
  max-width: 300px;
  font-size: 1rem;
  line-height: 1.15;
}

.foodeo-screen--product {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 28px;
  width: 154px;
  padding: 6px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 8px 9px 0 var(--ink), 0 22px 44px rgba(21, 21, 21, .24);
  transform: rotate(5deg);
  transition: transform .3s ease;
}

.foodeo-screen--product:hover {
  transform: rotate(2deg) translateY(-6px);
}

.foodeo-screen--product img {
  width: 100%;
  aspect-ratio: .8;
  object-fit: cover;
  border-radius: 17px;
}

.project-media--foodeo .media-badge {
  padding: 7px 10px;
  color: #39352f;
  background: rgba(255, 244, 238, .88);
  border-color: rgba(21, 21, 21, .22);
  box-shadow: 3px 4px 0 rgba(21, 21, 21, .38);
  font-size: .61rem;
}

.expertise-section {
  background: var(--paper-dark);
  border-block: 1px solid var(--line);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-links a {
  display: flex;
  min-height: 88px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 6px 0 var(--ink);
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.18;
}

.service-links a:hover {
  background: var(--lime);
  transform: translateY(-4px);
  box-shadow: 7px 8px 0 var(--ink);
}

.expertise-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 9px 0 var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 9px 10px 0 var(--ink);
}

.expertise-card--blue { background: #5462f1; color: var(--white); }
.expertise-card--lime { background: #dff5a6; }
.expertise-card--coral { background: #ff8775; }
.expertise-card--purple { background: #9171e8; color: var(--white); }
.expertise-card--cyan { background: #90e6e2; }
.expertise-card--ink { background: var(--ink); color: var(--white); }

.expertise-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.expertise-card__icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 54px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 6px 0 var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
}

.expertise-card h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -.045em;
}

.expertise-card p {
  max-width: 340px;
  margin-bottom: 0;
  color: currentColor;
  opacity: .78;
}

.expertise-card__toggle {
  display: none;
}

.process-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.process-section::before {
  z-index: -3;
  inset: -9%;
  opacity: .34;
  background-image: url("../img/zomfy-method-bg.webp");
  background-repeat: no-repeat;
  background-position: 52% 54%;
  background-size: min(920px, 72vw) auto;
  filter: saturate(1.14) contrast(1.08);
  animation: methodBackgroundDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.process-section::after {
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 14, .94) 0%, rgba(10, 12, 14, .78) 35%, rgba(10, 12, 14, .84) 70%, rgba(10, 12, 14, .96) 100%),
    radial-gradient(circle at 52% 48%, rgba(120, 235, 232, .16), transparent 34%),
    linear-gradient(115deg, transparent 20%, rgba(120, 235, 232, .08) 48%, transparent 68%);
}

.process-video-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--ink) url("../img/zomfy-method-bg.webp") center / cover no-repeat;
}

.process-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
  filter: saturate(1.06) contrast(1.06) brightness(.82);
  transform: scale(1.045);
  animation: methodBackgroundDrift 24s ease-in-out infinite alternate;
  will-change: transform;
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 8vw, 120px);
}

.process-layout::before {
  position: absolute;
  z-index: 0;
  inset: -10% -8%;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 18%, rgba(120, 235, 232, .1) 43%, rgba(84, 98, 241, .13) 50%, transparent 66%);
  filter: blur(2px);
  animation: methodLightSweep 18s ease-in-out infinite alternate;
}

.process-intro {
  position: sticky;
  z-index: 1;
  top: 130px;
  align-self: start;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .46);
}

.process-intro h2 {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 5.7vw, 6rem);
}

.process-intro > p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.03rem;
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 30px 24px;
  background: rgba(12, 14, 16, .5);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
}

.process-step:first-child {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.process-step > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 950;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.process-step__toggle {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
}

.process-step__toggle span {
  display: none;
}

.process-step p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .64);
}

.proof-section {
  padding: 112px 0;
  background: var(--lime);
  border-block: 2px solid var(--ink);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 76px;
}

.proof-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6vw, 6.3rem);
}

.proof-copy > p:not(.kicker) {
  max-width: 570px;
  margin-bottom: 0;
  color: #37372f;
  font-size: 1.04rem;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
}

.capabilities span {
  padding: 13px 17px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 5px 0 var(--ink);
  font-size: .86rem;
  font-weight: 850;
  transform: rotate(var(--angle, 0deg));
  transition: transform .2s ease, box-shadow .2s ease;
}

.capabilities span:hover {
  box-shadow: 6px 7px 0 var(--ink);
  transform: translateY(-4px) rotate(var(--angle, 0deg));
}

.capabilities span:nth-child(3n + 1) { --angle: -1.4deg; }
.capabilities span:nth-child(3n + 2) { --angle: 1.2deg; }
.capabilities span:nth-child(3n) { --angle: -.4deg; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 8vw, 116px);
}

.faq-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 5.7vw, 5.9rem);
}

.faq-intro > p:not(.kicker) {
  max-width: 480px;
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1.5px solid var(--ink);
}

.faq-list details:first-child {
  border-top: 1.5px solid var(--ink);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -.025em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform .2s ease;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -3px 50px 26px 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-section {
  padding: 0 0 126px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 72px;
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: clamp(40px, 6vw, 78px);
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 13px 14px 0 var(--ink);
}

.contact-card h2 {
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.contact-card__copy > p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .78);
}

.contact-mobile-cta {
  display: none;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 9px 0 var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f4ec;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.form-hp {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 0;
  color: #747069;
  font-size: .72rem;
  line-height: 1.5;
}

.form-note.is-error {
  color: #b31e1e;
  font-weight: 700;
}

.form-note.is-success {
  color: #256f3d;
  font-weight: 800;
}

.privacy-note {
  margin: -4px 0 0;
  color: #747069;
  font-size: .72rem;
  line-height: 1.5;
}

.privacy-note a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.project-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 16%, rgba(120, 235, 232, .22), transparent 31%),
    radial-gradient(circle at 20% 88%, rgba(88, 104, 255, .22), transparent 34%),
    rgba(7, 9, 12, .72);
  border: 0;
  backdrop-filter: blur(16px);
}

.project-modal__panel {
  position: relative;
  width: min(940px, 100%);
  max-height: min(88vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 52px);
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden auto;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(120, 235, 232, .18), transparent 34%),
    linear-gradient(135deg, rgba(10, 14, 19, .98), rgba(16, 23, 32, .98));
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 32px;
  box-shadow: 0 44px 120px rgba(0, 0, 0, .42), 12px 13px 0 rgba(200, 255, 57, .22);
  transform: translateY(28px) scale(.96);
  transition: transform .34s var(--premium-ease);
}

.project-modal.is-open .project-modal__panel {
  transform: translateY(0) scale(1);
  animation: modal-panel-pop .52s var(--premium-ease);
}

.project-modal__panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 68% 34%, black, transparent 74%);
}

.project-modal__close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, .42);
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
}

.project-modal__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.project-modal__decor span {
  position: absolute;
  border: 1px solid rgba(120, 235, 232, .38);
  border-radius: 999px;
  animation: modal-orbit 10s linear infinite;
}

.project-modal__decor .project-modal__logo-mark {
  display: grid;
  place-items: center;
  color: var(--lime);
  background:
    radial-gradient(circle at 50% 36%, rgba(200, 255, 57, .12), transparent 42%),
    rgba(6, 10, 15, .86);
  border: 1.5px solid rgba(120, 235, 232, .42);
  box-shadow:
    inset 0 0 34px rgba(120, 235, 232, .12),
    0 0 36px rgba(120, 235, 232, .16);
}

.project-modal__logo-mark svg {
  width: 54%;
  height: 54%;
  filter: drop-shadow(0 0 14px rgba(200, 255, 57, .35));
}

.project-modal__decor span:nth-child(1) {
  top: 44px;
  left: 34px;
  width: 120px;
  height: 120px;
}

.project-modal__decor span:nth-child(2) {
  right: 94px;
  bottom: 46px;
  width: 190px;
  height: 190px;
  border-color: rgba(200, 255, 57, .32);
  animation-duration: 14s;
  animation-direction: reverse;
}

.project-modal__decor span:nth-child(3) {
  top: 36%;
  left: 42%;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(120, 235, 232, .9);
}

.project-modal__copy,
.project-modal__form {
  position: relative;
  z-index: 2;
}

.project-modal__copy {
  align-self: center;
}

.project-modal__copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  font-weight: 950;
  line-height: .9;
  letter-spacing: -.07em;
}

.project-modal__copy > p:not(.kicker) {
  max-width: 360px;
  color: rgba(255, 255, 255, .7);
}

.project-modal__form {
  display: grid;
  gap: 15px;
  align-self: start;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 253, 248, .96);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 8px 9px 0 rgba(200, 255, 57, .5);
}

.project-modal__form label {
  display: grid;
  gap: 7px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-modal__form input,
.project-modal__form select,
.project-modal__form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f4ec;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.project-modal__form textarea {
  min-height: 116px;
  resize: vertical;
}

.project-modal__form .button {
  width: 100%;
}

@keyframes modal-panel-pop {
  0% { transform: translateY(30px) scale(.95); }
  64% { transform: translateY(-4px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

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

.site-footer {
  padding: 78px 0 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(120px, .65fr));
  gap: 38px;
  padding-bottom: 62px;
}

.brand--footer .brand__domain {
  color: rgba(255, 255, 255, .55);
}

.footer-brand p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .58);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-column a:not(.button):hover {
  color: var(--lime);
}

.footer-column .button {
  margin-top: 13px;
  color: var(--ink);
}

.footer-muted {
  color: rgba(255, 255, 255, .42);
  font-size: .86rem;
}

.footer-column--legal {
  color: rgba(255, 255, 255, .62);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .44);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .75rem;
}

.legal-main {
  padding: 154px 0 106px;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .42fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: end;
  margin-bottom: 54px;
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
  font-weight: 950;
  line-height: .9;
  letter-spacing: -.076em;
}

.legal-hero p:not(.kicker) {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.legal-summary {
  padding: 26px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 9px 0 var(--ink);
}

.legal-summary strong {
  display: block;
  margin-bottom: 10px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-summary a {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
}

.legal-toc strong {
  margin-bottom: 6px;
  color: var(--lime);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-toc a {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  font-weight: 750;
}

.legal-toc a:hover {
  color: var(--white);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content section {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1.5px solid rgba(21, 21, 21, .18);
  border-radius: var(--radius-lg);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.055em;
}

.legal-content h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: #55514a;
  line-height: 1.75;
}

.legal-content p:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

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

.legal-callout {
  background: var(--lime) !important;
  border: 2px solid var(--ink) !important;
  box-shadow: 7px 8px 0 var(--ink);
}

.legal-callout p {
  color: #2e321d;
  font-weight: 720;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-card-grid article,
.service-next a,
.portfolio-case {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  transition: transform .34s var(--premium-ease), box-shadow .34s var(--premium-ease), background-color .24s ease;
}

.service-card-grid article {
  min-height: 172px;
  padding: 20px;
  background: #fff7df;
  box-shadow: 5px 6px 0 rgba(21, 21, 21, .88);
}

.service-card-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: .98rem;
}

.service-card-grid p {
  margin: 0;
  font-size: .92rem;
}

.service-shot {
  margin: 18px 0 0;
}

.service-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 9px 0 var(--ink);
}

.service-shot figcaption {
  margin-top: 12px;
  color: #666158;
  font-size: .85rem;
  font-weight: 700;
}

.service-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.service-next a {
  display: flex;
  min-height: 94px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 5px 6px 0 var(--ink);
  font-size: .95rem;
  font-weight: 950;
  line-height: 1.15;
}

.portfolio-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-case {
  padding: 14px;
  background: var(--white);
  box-shadow: 6px 7px 0 var(--ink);
}

.portfolio-case img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(21, 21, 21, .16);
  border-radius: 16px;
}

.portfolio-case h3 {
  margin: 18px 0 8px;
}

.portfolio-case p {
  margin-bottom: 12px;
  font-size: .92rem;
}

.portfolio-case__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.portfolio-case__meta span {
  padding: 7px 9px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  max-width: 420px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--lime);
  border-radius: 14px;
  font-size: .8rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

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

@media (hover: hover) and (pointer: fine) {
  :where(
    .button,
    .brand,
    .nav-menu > a:not(.button),
    .project__link,
    .contact-email,
    .footer-column a:not(.button),
    .legal-content a,
    .legal-summary a,
    .legal-toc a
  ) {
    transition:
      color .2s ease,
      background-color .24s ease,
      border-color .24s ease,
      transform .34s var(--premium-ease),
      box-shadow .34s var(--premium-ease);
  }

  :where(.button, .project__link, .contact-email, .legal-summary a):hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 rgba(21, 21, 21, .92);
  }

  .button--dark:hover {
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 9px 0 var(--ink), 0 20px 48px rgba(200, 255, 57, .2);
  }

  .button--lime:hover,
  .button--light:hover {
    background: var(--cyan);
  }

  .nav-menu > a:not(.button):hover,
  .footer-column a:not(.button):hover,
  .legal-content a:hover,
  .legal-toc a:hover {
    color: var(--lime);
    transform: translateY(-2px);
  }

  .legal-toc a:hover {
    padding-left: 8px;
    color: var(--white);
  }

  :where(
    .confidence-card,
    .signature-stage,
    .signature-list li,
    .project,
    .expertise-card,
    .process-step,
    .faq-list details,
    .contact-card,
    .contact-form,
    .legal-summary,
    .legal-toc,
    .legal-content section
  ) {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transform-style: preserve-3d;
    transform-origin: center;
    transition:
      transform .52s var(--premium-ease),
      box-shadow .52s var(--premium-ease),
      border-color .35s ease,
      background-color .35s ease,
      filter .35s ease;
    will-change: transform;
  }

  :where(
    .confidence-card,
    .signature-stage,
    .signature-list li,
    .project,
    .expertise-card,
    .process-step,
    .faq-list details,
    .contact-card,
    .contact-form,
    .legal-summary,
    .legal-toc,
    .legal-content section
  )::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0;
    background:
      radial-gradient(520px circle at var(--hover-x, 50%) var(--hover-y, 50%), rgba(255, 255, 255, .72), rgba(200, 255, 57, .18) 31%, rgba(120, 235, 232, .12) 48%, transparent 72%);
    transition: opacity .44s ease;
  }

  :where(
    .confidence-card,
    .signature-stage,
    .signature-list li,
    .project,
    .expertise-card,
    .process-step,
    .faq-list details,
    .contact-card,
    .contact-form,
    .legal-summary,
    .legal-toc,
    .legal-content section
  )::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .38) 42%, transparent 58%);
    transform: translateX(-120%) skewX(-12deg);
    transition: opacity .42s ease, transform .82s var(--premium-ease);
    mix-blend-mode: soft-light;
  }

  :where(
    .confidence-card,
    .project,
    .expertise-card,
    .legal-summary,
    .legal-content section,
    .contact-form
  ):hover {
    border-color: rgba(21, 21, 21, .92);
    transform:
      perspective(1100px)
      translate3d(0, -8px, 0)
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg))
      scale(1.008);
    box-shadow: 12px 14px 0 var(--ink), 0 34px 80px rgba(21, 21, 21, .15);
    filter: saturate(1.04);
  }

  :where(
    .confidence-card,
    .signature-stage,
    .signature-list li,
    .project,
    .expertise-card,
    .process-step,
    .faq-list details,
    .contact-card,
    .contact-form,
    .legal-summary,
    .legal-toc,
    .legal-content section
  ):hover::before {
    opacity: 1;
  }

  :where(
    .confidence-card,
    .signature-stage,
    .project,
    .expertise-card,
    .contact-card,
    .legal-content section
  ):hover::after {
    opacity: 1;
    transform: translateX(120%) skewX(-12deg);
  }

  .confidence-card--lime:hover,
  .legal-callout:hover {
    background: linear-gradient(135deg, var(--lime) 0%, #dfff78 48%, var(--cyan) 100%) !important;
  }

  .contact-card:hover {
    transform:
      perspective(1100px)
      translate3d(0, -10px, 0)
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg))
      scale(1.006);
    box-shadow: 0 58px 140px rgba(0, 0, 0, .42), 0 0 0 1px rgba(200, 255, 57, .22);
    filter: saturate(1.04);
  }

  .project:hover {
    box-shadow: 15px 17px 0 var(--ink), 0 42px 100px rgba(21, 21, 21, .16);
  }

  .project:hover .browser-frame,
  .project-media:hover .browser-frame,
  .screen:hover,
  .hero-showcase__mobile:hover {
    transform: translate3d(0, -9px, 0) scale(1.015) rotate(0deg);
    box-shadow: 15px 16px 0 rgba(21, 21, 21, .92), 0 34px 76px rgba(21, 21, 21, .22);
    filter: saturate(1.08) contrast(1.02);
  }

  .direct-screen--mobile:hover,
  .foodeo-screen--product:hover {
    transform: translate3d(0, -9px, 0) scale(1.035) rotate(-1deg);
    filter: saturate(1.08);
  }

  .signature-list li:hover {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(120, 235, 232, .48);
    transform: translateX(-6px) scale(1.012);
  }

  .process-step:hover {
    color: var(--white);
    background: rgba(120, 235, 232, .08);
    border-color: rgba(120, 235, 232, .34);
    border-radius: 22px;
    transform: translateX(8px);
  }

  .process-step:hover > span {
    background: var(--cyan);
  }

  .process-step:hover p {
    color: rgba(255, 255, 255, .76);
  }

  .faq-list details:hover {
    padding-inline: 20px;
    background: rgba(255, 253, 248, .72);
    border-color: rgba(21, 21, 21, .34);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(21, 21, 21, .08);
    transform: translateY(-3px);
  }

  .legal-toc:hover {
    box-shadow: 0 26px 64px rgba(21, 21, 21, .18);
    transform: translateY(-4px);
  }

  :where(.hero__proof li, .hero__stats div, .tags li, .project__market, .capabilities span, .ticker__group span) {
    transition:
      transform .32s var(--premium-ease),
      box-shadow .32s var(--premium-ease),
      background-color .24s ease,
      filter .24s ease;
  }

  :where(.hero__proof li, .hero__stats div, .tags li, .project__market, .capabilities span):hover {
    background: var(--cyan);
    transform: translateY(-4px) scale(1.025);
    box-shadow: 5px 6px 0 rgba(21, 21, 21, .78);
    filter: saturate(1.08);
  }

  .ticker__group span:hover {
    color: var(--lime);
    transform: translateY(-2px);
  }

  .service-card-grid article:hover,
  .service-next a:hover,
  .portfolio-case:hover {
    background: var(--cyan);
    transform:
      perspective(1000px)
      translate3d(0, -7px, 0)
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg))
      scale(1.012);
    box-shadow: 10px 11px 0 var(--ink), 0 28px 70px rgba(21, 21, 21, .14);
  }

  .service-next a:hover {
    background: var(--lime);
  }
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 18px;
  }

  .nav-menu > a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero-showcase__mobile {
    width: 150px;
  }

  .project {
    grid-template-columns: .88fr 1.12fr;
  }

  .project__content {
    padding: 46px;
  }

  .project__content h3 {
    margin-top: 50px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 80px;
  }

  .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .js .reveal {
    opacity: 1;
    transform: translateY(12px);
  }

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

  .navbar {
    position: relative;
  }

  .navbar__cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 13px;
    background: var(--white);
    border: 1.5px solid var(--ink);
    border-radius: 22px;
    box-shadow: 8px 9px 0 var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

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

  .nav-menu > a:not(.button) {
    display: block;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(21, 21, 21, .1);
  }

  .nav-menu > a:not(.button)::after {
    display: none;
  }

  .nav-menu__cta {
    display: flex;
    margin-top: 12px;
  }

  .hero {
    padding: 142px 0 92px;
  }

  .hero-video-bg {
    inset: 80px -18% 0 -18%;
  }

  .hero-video-bg video {
    object-position: 62% center;
  }

  .hero-video-bg__scrim {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, .98) 0%, rgba(255, 253, 248, .78) 25%, rgba(255, 253, 248, .45) 58%, rgba(255, 253, 248, .94) 100%),
      linear-gradient(90deg, rgba(255, 253, 248, .94) 0%, rgba(255, 253, 248, .55) 46%, rgba(7, 11, 16, .08) 100%);
  }

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

  .hero__content {
    max-width: 760px;
  }

  .hero-showcase {
    min-height: 600px;
    margin-top: 18px;
  }

  .screen--hero {
    right: 6%;
    width: min(86%, 600px);
  }

  .hero-showcase__mobile {
    right: 9%;
    width: 170px;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading,
  .signature-stage,
  .faq-layout,
  .proof-layout,
  .contact-card,
  .legal-hero,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .conversion-strip__inner {
    display: grid;
    align-items: start;
  }

  .conversion-strip .button {
    width: 100%;
  }

  .signature-section {
    padding: 92px 0;
  }

  .signature-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "list";
    min-height: 0;
    padding: clamp(28px, 6vw, 46px);
  }

  .signature-visual-shell {
    justify-self: center;
    width: min(640px, 100%);
    min-height: 540px;
    height: 540px;
  }

  .legal-toc {
    position: static;
  }

  .section-heading > p {
    max-width: 700px;
  }

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

  .project__content,
  .project--reverse .project__content {
    order: 1;
  }

  .project-media,
  .project--reverse .project-media {
    order: 2;
    min-height: 540px;
  }

  .project__index {
    margin-bottom: 0;
  }

  .project__content h3 {
    margin-top: 42px;
  }

  .project__link {
    margin-top: 10px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .process-intro {
    position: static;
  }

  .proof-section {
    padding: 92px 0;
  }

  .contact-card {
    padding: 48px;
  }

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

@media (max-width: 660px) {
  html,
  body {
    scroll-padding-top: 64px;
  }

  #contenu {
    display: flex;
    flex-direction: column;
  }

  .hero { order: 1; }
  .ticker { display: none; }
  .confidence-section,
  .conversion-strip {
    display: none;
  }
  .projects-section { order: 2; }
  .expertise-section { order: 3; }
  .process-section { order: 4; }
  .proof-section { order: 5; }
  .signature-section { order: 6; }
  .faq-section { order: 7; }
  .contact-section { order: 8; }

  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .site-header {
    padding-top: 8px;
  }

  .navbar {
    min-height: 58px;
    padding: 6px 7px 6px 12px;
  }

  .brand {
    gap: 8px;
    font-size: 1.18rem;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__domain {
    margin-bottom: 6px;
  }

  .menu-button {
    width: 43px;
    height: 43px;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 52px;
  }

  .hero::before {
    inset: 56% -18% 8% 42%;
    opacity: .2;
    filter: blur(14px);
  }

  .hero-video-bg {
    inset: 88px -42% auto -18%;
    height: 720px;
  }

  .hero-video-bg video {
    object-position: 58% top;
    opacity: .82;
    filter: saturate(1.14) contrast(1.06) brightness(.8);
  }

  .hero-video-bg__scrim {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, .94) 0%, rgba(255, 253, 248, .65) 22%, rgba(255, 253, 248, .38) 44%, rgba(255, 253, 248, .92) 80%, rgba(255, 253, 248, 1) 100%),
      linear-gradient(90deg, rgba(255, 253, 248, .78) 0%, rgba(255, 253, 248, .38) 48%, rgba(8, 11, 16, .1) 100%);
  }

  .hero-video-bg__glow--one {
    right: 2%;
    bottom: 20%;
    width: 220px;
    height: 220px;
  }

  .hero-video-bg__glow--two {
    top: 18%;
    right: 40%;
    width: 150px;
    height: 150px;
  }

  .hero__shape--one {
    top: 540px;
    right: -260px;
    width: 380px;
    height: 380px;
    opacity: .18;
  }

  .hero__shape--two {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.32rem, 9.9vw, 3.35rem);
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .hero__content {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 .desktop-inline {
    display: none;
  }

  .hero h1 .mobile-line {
    display: block;
  }

  .hero h1 em {
    padding: .04em .14em .08em;
    box-shadow: 5px 6px 0 var(--ink);
  }

  .hero__lead {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero__actions .button {
    min-width: 0;
    width: 100%;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
    font-size: .96rem;
  }

  .hero__actions .button--light {
    width: auto;
    justify-self: center;
    min-height: 0;
    padding: 5px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 2px solid currentColor;
    border-radius: 0;
    box-shadow: none;
  }

  .hero__proof {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -11px;
    padding: 0 11px 6px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .hero__proof::-webkit-scrollbar {
    display: none;
  }

  .hero__proof li {
    flex: 0 0 auto;
    padding: 8px 10px;
    background: rgba(255, 253, 248, .78);
    border: 1px solid rgba(21, 21, 21, .14);
    border-radius: 999px;
    box-shadow: 3px 4px 0 rgba(21, 21, 21, .08);
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .hero__stats {
    display: none;
  }

  .hero-showcase {
    min-height: 310px;
    margin-top: 8px;
  }

  .screen--hero {
    top: 38px;
    right: 2%;
    width: 94%;
    border-radius: 18px;
    box-shadow: 9px 10px 0 var(--ink), 0 24px 45px rgba(21, 21, 21, .17);
  }

  .screen__bar,
  .browser-frame__bar {
    height: 35px;
    padding-inline: 10px;
  }

  .hero-showcase__mobile {
    right: 2%;
    bottom: 12px;
    width: 94px;
    padding: 5px;
    border-radius: 23px;
    box-shadow: 6px 7px 0 var(--lime), 0 15px 30px rgba(21, 21, 21, .24);
  }

  .hero-showcase__mobile img {
    border-radius: 17px;
  }

  .hero-showcase__label {
    padding: 8px 10px;
    font-size: .61rem;
  }

  .hero-showcase__label--one {
    top: 2px;
    left: 0;
  }

  .hero-showcase__label--two {
    bottom: 44px;
    left: 1%;
  }

  .ticker__group {
    gap: 22px;
    padding-inline: 22px;
    padding-block: 15px;
    font-size: .86rem;
  }

  .section,
  .signature-section,
  .proof-section {
    padding: 56px 0;
  }

  .signature-section {
    border-top: 0;
    box-shadow: 0 -24px 0 #05080d;
  }

  .signature-stage {
    gap: 22px;
    min-height: 0;
    padding: 28px 22px 22px;
    border-radius: 26px;
  }

  .signature-copy h2 {
    margin: 14px 0 18px;
    font-size: clamp(2.18rem, 9.6vw, 3rem);
    line-height: 1;
  }

  .signature-copy__lead {
    font-size: .98rem;
    line-height: 1.62;
  }

  .signature-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
  }

  .signature-metrics span {
    min-height: 36px;
    justify-content: center;
    padding: 9px 10px;
    font-size: .78rem;
    text-align: center;
  }

  .signature-visual-shell {
    min-height: 390px;
    height: auto;
  }

  .signature-ai-visual {
    position: absolute;
  }

  .signature-ai-photo {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .signature-ai-depth--one {
    inset: 6%;
    border-radius: 26px;
  }

  .signature-ai-depth--two {
    inset: 19%;
  }

  .signature-float-card {
    display: none;
  }

  .signature-list {
    grid-template-columns: 1fr;
  }

  .signature-list li {
    padding: 12px;
  }

  .signature-list li span {
    font-size: .88rem;
    line-height: 1.42;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .process-intro h2,
  .proof-copy h2,
  .faq-intro h2,
  .contact-card h2 {
    font-size: clamp(2.55rem, 11.5vw, 3.85rem);
    line-height: 1.03;
    letter-spacing: -.018em;
  }

  .section-heading > p {
    font-size: .96rem;
  }

  .projects {
    display: flex;
    gap: 14px;
    margin-inline: -11px;
    padding: 0 11px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .projects::-webkit-scrollbar {
    display: none;
  }

  .project {
    flex: 0 0 min(86vw, 340px);
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 26px;
    box-shadow: 7px 8px 0 var(--ink);
    scroll-snap-align: center;
  }

  .project--reverse .project__content,
  .project--reverse .project-media {
    order: initial;
  }

  .project__content {
    padding: 20px 18px 22px;
  }

  .project__content h3 {
    margin: 22px 0 12px;
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .project__description {
    margin-bottom: 16px;
    font-size: .88rem;
    line-height: 1.55;
  }

  .project-media,
  .project--reverse .project-media {
    min-height: 250px;
  }

  .project-media--souq .browser-frame {
    top: 40px;
    right: -8%;
    width: 98%;
    border-radius: 15px;
    box-shadow: 8px 9px 0 rgba(21, 21, 21, .9), 0 22px 42px rgba(21, 21, 21, .16);
  }

  .media-badge {
    font-size: .58rem;
  }

  .media-badge {
    bottom: 18px;
    left: 16px;
  }

  .direct-screen--dashboard {
    top: 36px;
    left: 2%;
    width: 89%;
  }

  .direct-screen--mobile {
    right: 1%;
    bottom: 22px;
    width: 92px;
    padding: 4px;
    border-radius: 22px;
    box-shadow: 6px 7px 0 var(--lime), 0 16px 34px rgba(21, 21, 21, .25);
  }

  .direct-screen--mobile img {
    border-radius: 16px;
  }

  .foodeo-screen--hero {
    top: 36px;
    right: 1%;
    width: 95%;
  }

  .foodeo-screen__overlay {
    inset: 35px 0 0;
    padding: 18px;
  }

  .foodeo-screen__overlay img {
    width: 52px;
    height: 52px;
  }

  .foodeo-screen__overlay strong {
    max-width: min(220px, calc(100% - 118px));
    font-size: .86rem;
    line-height: 1.08;
  }

  .foodeo-screen--product {
    right: 1%;
    bottom: 18px;
    width: 84px;
    padding: 4px;
    border-radius: 18px;
    box-shadow: 5px 6px 0 var(--ink), 0 16px 34px rgba(21, 21, 21, .24);
  }

  .foodeo-screen--product img {
    border-radius: 12px;
  }

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

  .service-links {
    display: none;
  }

  .service-links a {
    min-height: 72px;
  }

  .service-card-grid,
  .service-next,
  .portfolio-cases {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    min-height: 150px;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 5px 6px 0 var(--ink);
  }

  .expertise-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 14px;
    box-shadow: 3px 4px 0 var(--ink);
    font-size: 1.15rem;
  }

  .expertise-card__number {
    top: 15px;
    right: 15px;
    font-size: .58rem;
  }

  .expertise-card h3 {
    max-width: 126px;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.05;
    letter-spacing: -.035em;
  }

  .expertise-card__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 0;
    border-bottom: 1.5px solid currentColor;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .expertise-card p {
    display: none;
    max-width: none;
    margin-top: 12px;
    font-size: .86rem;
    line-height: 1.5;
  }

  .expertise-card.is-expanded {
    grid-column: 1 / -1;
  }

  .expertise-card.is-expanded p {
    display: block;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .process-step:nth-child(n + 4) {
    display: none;
  }

  .process-step > span {
    width: 44px;
    height: 44px;
  }

  .process-step__toggle span {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--ink);
    background: var(--cyan);
    border-radius: 50%;
    font-size: 1rem;
  }

  .process-step p {
    display: none;
    margin-top: 8px;
  }

  .process-step.is-expanded p {
    display: block;
  }

  .process-step.is-expanded .process-step__toggle span {
    transform: rotate(45deg);
  }

  .process-section::before {
    inset: -5% -42%;
    opacity: .38;
    background-position: 50% 16%;
    background-size: 118% auto;
  }

  .process-video-bg video {
    opacity: .42;
    object-position: 50% 18%;
  }

  .process-section::after {
    background:
      linear-gradient(180deg, rgba(10, 12, 14, .94) 0%, rgba(10, 12, 14, .82) 42%, rgba(10, 12, 14, .96) 100%),
      radial-gradient(circle at 50% 22%, rgba(120, 235, 232, .16), transparent 38%);
  }

  .capabilities span {
    padding: 10px 13px;
    font-size: .75rem;
  }

  .capabilities span:nth-child(n + 7) {
    display: none;
  }

  .faq-list summary {
    font-size: .96rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .contact-section {
    padding: 56px 0 70px;
  }

  .contact-card {
    gap: 34px;
    padding: 24px 20px;
    border-radius: 27px;
    box-shadow: 8px 9px 0 var(--ink);
  }

  .contact-card h2 {
    margin-bottom: 18px;
  }

  .contact-card__copy > p:not(.kicker) {
    margin-bottom: 20px;
  }

  .contact-email,
  .contact-form {
    display: none;
  }

  .contact-mobile-cta {
    display: inline-flex;
    width: 100%;
  }

  .contact-form {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 5px 6px 0 var(--ink);
  }

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

  .contact-form .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .project-modal {
    align-items: end;
    padding: 12px;
  }

  .project-modal__panel {
    width: 100%;
    max-height: calc(100dvh - 24px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 16px 16px;
    border-radius: 28px;
    box-shadow: 0 26px 90px rgba(0, 0, 0, .46), 7px 8px 0 rgba(200, 255, 57, .24);
    transform: translateY(48px) scale(.98);
  }

  .project-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .project-modal__copy h2 {
    max-width: 270px;
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 11vw, 3.15rem);
  }

  .project-modal__copy > p:not(.kicker) {
    max-width: 300px;
    margin-bottom: 0;
    font-size: .86rem;
    line-height: 1.42;
  }

  .project-modal__form {
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
    box-shadow: 5px 6px 0 rgba(200, 255, 57, .5);
  }

  .project-modal__form input,
  .project-modal__form select,
  .project-modal__form textarea {
    padding: 10px 12px;
  }

  .project-modal__form textarea {
    min-height: 78px;
  }

  .project-modal__decor span:nth-child(1) {
    top: 24px;
    left: -28px;
    width: 104px;
    height: 104px;
  }

  .project-modal__decor span:nth-child(2) {
    right: -70px;
    bottom: 28px;
    width: 160px;
    height: 160px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .legal-main {
    padding: 126px 0 76px;
  }

  .legal-hero {
    margin-bottom: 34px;
  }

  .legal-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .legal-summary,
  .legal-toc,
  .legal-content section {
    border-radius: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

}

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

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

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