:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #5f5f5f;
  --line: #ececec;
  --cool: #3f7d79;
  --cool-soft: #e7f1f0;
  --sage: var(--cool);
  --card-light: #f3f3f3;
  --card-teal: var(--cool);
  --soft: #f4f4f4;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
  --radius: 28px;
  --header-h: 76px;
  --max: 1180px;
}

html:not(.i18n-ready) body {
  visibility: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi", "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang-switch button {
  height: 30px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.nav .header-cta,
.nav .header-cta:hover {
  margin-left: 4px;
  color: #fff;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn:hover,
.header-cta:hover {
  opacity: 0.88;
}

.scroll-cta {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  padding: 0 40px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.24);
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

body.scroll-cta-on .scroll-cta {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .scroll-cta {
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
}

.scroll-cta:hover {
  color: #fff;
  opacity: 0.92;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

.section.about-bento {
  padding-top: 64px;
  padding-bottom: 12px;
  text-align: center;
}

.bento-title {
  max-width: 18ch;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.bento-title-muted {
  color: #9a9a9a;
}

.bento-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.82em;
  height: 0.82em;
  margin: 0 0.08em;
  vertical-align: -0.08em;
  color: var(--cool);
}

.bento-mark svg {
  width: 100%;
  height: 100%;
}

.bento {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.95fr;
  grid-template-rows: minmax(180px, auto) auto;
  gap: 14px;
  margin-top: 48px;
  text-align: left;
}

.bento-card {
  border-radius: 28px;
  padding: 22px 24px 24px;
  min-height: 0;
}

.bento-label {
  font-size: 0.95rem;
  color: var(--muted);
}

.bento-stat {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 10px 0 14px;
}

.bento-photo {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--cool-soft);
}

.bento-photo-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 0;
}

.bento-photo-top span {
  font-weight: 700;
  letter-spacing: -0.04em;
}

.bento-photo-top img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
}

.bento-photo-body {
  margin: auto 10px 10px;
  background: #fff;
  border-radius: 22px;
  padding: 22px 22px 24px;
}

.bento-photo-body .bento-stat {
  margin-top: 0;
}

.bento-photo-body p:last-child,
.bento-metric p:last-child {
  color: var(--muted);
}

.bento-quote {
  grid-row: 1 / 3;
  background: var(--soft);
}

.bento-avatars {
  display: flex;
  margin: 8px 0 16px;
}

.bento-avatars img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}

.bento-avatars img:first-child {
  margin-left: 0;
}

.bento-quote blockquote {
  color: var(--muted);
  font-size: 0.98rem;
}

.bento-metric {
  background: var(--cool);
  color: #fff;
}

.bento-metric .bento-label,
.bento-metric p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.bento-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink);
  color: #fff;
  min-height: 88px;
}

.bento-dark .bento-stat {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.section.projects-stage {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  text-align: left;
}

.projects-head .bento-title {
  margin: 0;
  text-align: left;
  max-width: 16ch;
}

.projects-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.swiper.projects-swiper {
  overflow: hidden;
  margin-left: max(24px, calc((100% - min(calc(100% - 48px), 1180px)) / 2));
}

.projects-swiper .swiper-slide {
  width: 320px;
  height: 440px;
}

.masonry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--soft);
}

.masonry-cover {
  position: relative;
  flex: 0 0 240px;
  height: 240px;
  margin: 0;
  overflow: hidden;
}

.masonry-card > img,
.masonry-cover > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #ddd;
}

.masonry-cover-zoom > img:first-child {
  object-position: center 18%;
  transform: scale(1.75);
}

.masonry-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  height: 34px;
  width: auto;
  max-width: 70%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4))
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.masonry-logo-white {
  filter: brightness(0) invert(1)
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45))
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.masonry-card div {
  padding: 22px 24px 26px;
}

.masonry-card span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cool);
}

.masonry-card h3 {
  margin: 8px 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.masonry-card p {
  color: var(--muted);
}

.masonry-text {
  justify-content: flex-end;
}

.masonry-text div {
  padding: 28px 26px 30px;
}

.masonry-kpi {
  position: relative;
  justify-content: space-between;
  padding: 28px 26px 30px;
}

.kpi-icon {
  position: absolute;
  right: -4px;
  bottom: 2px;
  width: 148px;
  height: 148px;
  fill: currentColor;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.masonry-kpi > div,
.masonry-kpi > p {
  position: relative;
  z-index: 1;
}

.masonry-text-mint .kpi-icon {
  opacity: 0.14;
}

.masonry-kpi .kpi-num {
  margin-top: 18px;
  font-size: clamp(4.8rem, 8vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.masonry-kpi div {
  padding: 0;
}

.masonry-kpi h3 {
  margin: 10px 0 0;
}

.masonry-text-teal {
  background: var(--cool);
  color: #fff;
}

.masonry-text-ink {
  background: var(--ink);
  color: #fff;
}

.masonry-text-mint {
  background: var(--cool-soft);
  color: var(--ink);
}

.masonry-text-teal span,
.masonry-text-ink span {
  color: rgba(255, 255, 255, 0.72);
}

.masonry-text-teal p,
.masonry-text-ink p {
  color: rgba(255, 255, 255, 0.82);
}

.masonry-text-mint span {
  color: var(--cool);
}

.section.services-stage {
  padding-top: 80px;
  padding-bottom: 24px;
  text-align: center;
}

.services-lead {
  max-width: 34rem;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services-deck {
  --deck-n: 5;
  position: relative;
  height: calc((100vh - var(--header-h)) * var(--deck-n));
  margin-top: 48px;
  text-align: left;
}

.services-deck-pin {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: grid;
  place-items: start center;
  padding-top: 8px;
  overflow: hidden;
}

.service-block {
  grid-area: 1 / 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px 48px;
  align-items: center;
  min-height: min(560px, calc(100vh - var(--header-h) - 80px));
  background: var(--soft);
  border-radius: 36px;
  padding: 36px 40px 40px;
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.12);
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.service-art {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.service-art-center {
  display: grid;
  place-items: center;
}

.service-art-center .mock-sheet {
  position: relative;
  left: auto;
  top: auto;
  width: min(72%, 340px);
}

.mock-browser {
  width: min(88%, 380px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f3f3f3;
  border-bottom: 1px solid var(--line);
}

.browser-dots {
  flex: 0 0 38px;
  height: 8px;
  background:
    radial-gradient(circle at 4px 4px, #d0d0d0 3px, transparent 3.5px),
    radial-gradient(circle at 16px 4px, #d0d0d0 3px, transparent 3.5px),
    radial-gradient(circle at 28px 4px, #d0d0d0 3px, transparent 3.5px);
}

.browser-url {
  flex: 1;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.call-stage {
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.call-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  animation: call-ring 2.4s ease-out infinite;
}

.call-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-name {
  margin-top: 14px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.call-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  margin: 16px 0 18px;
}

.call-wave i {
  display: block;
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: var(--cool);
  transform-origin: center;
  animation: call-wave 1.1s ease-in-out infinite;
}

.call-wave i:nth-child(1) { animation-delay: 0s; }
.call-wave i:nth-child(2) { animation-delay: 0.1s; }
.call-wave i:nth-child(3) { animation-delay: 0.2s; }
.call-wave i:nth-child(4) { animation-delay: 0.3s; }
.call-wave i:nth-child(5) { animation-delay: 0.4s; }
.call-wave i:nth-child(6) { animation-delay: 0.5s; }
.call-wave i:nth-child(7) { animation-delay: 0.6s; }

.call-actions {
  display: flex;
  gap: 10px;
}

.call-btn {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.call-btn-end {
  background: var(--ink);
  color: #fff;
}

@keyframes call-ring {
  0% { box-shadow: 0 0 0 0 rgba(63, 125, 121, 0.35); }
  70%, 100% { box-shadow: 0 0 0 16px rgba(63, 125, 121, 0); }
}

@keyframes call-wave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1.55); }
}

.mock {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.mock-sheet {
  left: 18%;
  top: 18px;
  width: 64%;
  background: #fff;
  padding: 18px 18px 16px;
}

.mock-dark {
  right: 16%;
  top: 8px;
  width: 46%;
  background: var(--ink);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  animation: card-float 5s ease-in-out infinite;
}

.mock-dark strong {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.mock-offset {
  left: 22%;
  top: 72px;
  width: 58%;
  animation: card-float-alt 5.6s ease-in-out infinite;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.mock-pill,
.mock-live {
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.68rem;
  background: var(--cool-soft);
  color: var(--cool);
}

.mock-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
}

.mock-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cool);
  animation: live-blink 1.4s ease-in-out infinite;
}

.mock-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 8px;
}

.mock-big {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  animation: count-pulse 3s ease-in-out infinite;
}

.mock-big-teal {
  color: var(--cool);
}

.mock-rotate-line {
  display: flex;
  align-items: center;
  gap: 0.18em;
  margin: 20px 0 4px;
  color: var(--cool);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.word-rotate {
  display: inline-block;
  height: 1.15em;
  overflow: hidden;
  min-width: 8.6ch;
}

.word-rotate-track {
  display: flex;
  flex-direction: column;
  animation: word-rotate 5.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.word-rotate-track span {
  display: block;
  height: 1.15em;
  line-height: 1.15;
}

@keyframes word-rotate {
  0%, 22% { transform: translateY(0); }
  33%, 55% { transform: translateY(-25%); }
  66%, 88% { transform: translateY(-50%); }
  100% { transform: translateY(-75%); }
}

.mock-sub {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 4px 0 12px;
}

.mock-list {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.mock-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
  background: #d4d4d4;
}

.mock-list li.is-done::before {
  background: var(--cool);
}

.mock-list-scan li:nth-child(3)::before,
.mock-list-scan li:nth-child(4)::before {
  animation: check-scan 4.8s ease-in-out infinite;
}

.mock-list-scan li:nth-child(4)::before {
  animation-delay: 1.2s;
}

.mock-bar {
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: var(--cool);
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 64px;
  margin: 16px 0 14px;
}

.mock-bars i {
  display: block;
  width: 14px;
  border-radius: 6px 6px 2px 2px;
  background: #e8e8e8;
  transform-origin: bottom;
  animation: bar-wave 2.6s ease-in-out infinite;
}

.mock-bars i:nth-child(1) { height: 28%; animation-delay: 0s; }
.mock-bars i:nth-child(2) { height: 46%; animation-delay: 0.15s; }
.mock-bars i:nth-child(3) { height: 38%; animation-delay: 0.3s; }
.mock-bars i:nth-child(4) { height: 72%; background: var(--cool); animation-delay: 0.45s; }
.mock-bars i:nth-child(5) { height: 54%; animation-delay: 0.6s; }

.mock-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mock-metrics span {
  background: var(--soft);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
}

.mock-metrics b {
  color: var(--cool);
  font-weight: 700;
}

.mock-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  animation: spin-centered 22s linear infinite;
}

.orbit-ring:nth-child(1) { width: 88px; height: 88px; animation-duration: 12s; }
.orbit-ring:nth-child(2) { width: 148px; height: 148px; animation-duration: 18s; animation-direction: reverse; }
.orbit-ring:nth-child(3) { width: 210px; height: 210px; animation-duration: 26s; }

.orbit-core {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: -0.04em;
  z-index: 2;
  animation: core-pulse 2.2s ease-in-out infinite;
}

.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: spin-centered 14s linear infinite;
}

.path-1 { width: 148px; height: 148px; }
.path-2 { width: 210px; height: 210px; animation-duration: 20s; animation-direction: reverse; }
.path-3 { width: 88px; height: 88px; animation-duration: 9s; }

.orbit-chip {
  position: absolute;
  top: 0;
  left: 50%;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  animation: chip-counter 14s linear infinite;
}

.path-2 .orbit-chip { animation-duration: 20s; animation-direction: reverse; }
.path-3 .orbit-chip { animation-duration: 9s; }

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.service-block h3 {
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

.service-block h3 em {
  font-style: normal;
  color: var(--cool);
}

.service-block p {
  color: var(--muted);
}

@keyframes spin-centered {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes chip-counter {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes core-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.18); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(17, 17, 17, 0); }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes card-float-alt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes bar-wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.55); }
}

@keyframes live-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(63, 125, 121, 0.45); }
  50% { opacity: 0.4; box-shadow: 0 0 0 6px rgba(63, 125, 121, 0); }
}

@keyframes count-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes check-scan {
  0%, 35% { background: #d4d4d4; }
  50%, 85% { background: var(--cool); }
  100% { background: #d4d4d4; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .orbit-path,
  .orbit-chip,
  .orbit-core,
  .mock-dark,
  .mock-offset,
  .mock-bars i,
  .mock-live i,
  .mock-big,
  .word-rotate-track,
  .mock-list-scan li::before,
  .call-avatar,
  .call-wave i {
    animation: none;
  }

  .scroll-cta {
    transition: opacity 0.2s ease;
    transform: translate(-50%, 0);
  }

  body:not(.scroll-cta-on) .scroll-cta,
  body.nav-open .scroll-cta {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  .service-block {
    will-change: auto;
  }

  .services-deck,
  .usecase-deck {
    height: auto;
  }

  .services-deck-pin,
  .usecase-deck-pin {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: visible;
  }

  .usecase-deck .usecase-card {
    grid-area: auto;
    height: auto;
    min-height: 480px;
    will-change: auto;
  }
}

.p-prev,
.p-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.p-prev svg,
.p-next svg {
  width: 16px;
  height: 16px;
}

.p-prev:hover,
.p-next:hover {
  border-color: var(--ink);
}

.section.customer-quote-stage {
  padding-top: 80px;
  padding-bottom: 0;
}

.customer-quote-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--soft);
  border-radius: 36px;
  overflow: hidden;
}

.customer-quote-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
}

.customer-quote-copy blockquote {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.customer-quote-name {
  margin-top: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.customer-quote-role {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.customer-quote-photo {
  margin: 0;
  min-height: 420px;
  height: 100%;
}

.customer-quote-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.section.founder-quote-stage {
  padding-top: 24px;
  padding-bottom: 24px;
}

.founder-quote-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--soft);
  border-radius: 36px;
  padding: 48px 56px;
  min-height: 420px;
}

.founder-quote-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-quote-card .founder-photo {
  width: 240px;
  height: 240px;
}

.founder-quote-name {
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.founder-quote-card .founder-role {
  margin-top: 4px;
}

.founder-quote-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.founder-quote-card blockquote {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.founder-quote-signature {
  display: block;
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0);
  pointer-events: none;
}

.hero {
  padding: 96px 0 20px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3.1rem, 7.2vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.92;
  max-width: 18ch;
  margin: 12px auto 0;
}

.hero h1 em {
  font-style: normal;
  color: var(--sage);
}

.hero-lead {
  max-width: 38rem;
  margin: 36px auto 0;
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.hero-fan {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 56px auto 0;
  min-height: clamp(260px, 34vw, 400px);
  max-width: 1180px;
}

.fan-card {
  flex: 0 0 clamp(168px, 21vw, 250px);
  width: clamp(168px, 21vw, 250px);
  height: clamp(230px, 29vw, 340px);
  border-radius: var(--radius);
  overflow: hidden;
  margin-left: clamp(-40px, -4.4vw, -52px);
  box-shadow: var(--shadow);
  position: relative;
}

.fan-card:first-child {
  margin-left: 0;
}

.fan-card:nth-child(1) {
  transform: rotate(-8deg) translateY(30px);
  z-index: 1;
}

.fan-card:nth-child(2) {
  transform: rotate(-3.5deg) translateY(8px);
  z-index: 3;
}

.fan-card:nth-child(3) {
  transform: rotate(0deg) translateY(16px);
  z-index: 2;
}

.fan-card:nth-child(4) {
  transform: rotate(3.5deg) translateY(8px);
  z-index: 4;
}

.fan-card:nth-child(5) {
  transform: rotate(8deg) translateY(30px);
  z-index: 1;
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners {
  position: relative;
  padding: 96px 0 12px;
  overflow: hidden;
}

.partners::before,
.partners::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.partners::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.partners::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.partners-swiper {
  overflow: hidden;
}

.partners-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.partners-swiper .swiper-slide {
  width: auto;
}

.partner-slide {
  width: auto;
  display: flex;
  align-items: center;
  height: 52px;
}

.partner-slide img {
  height: 36px;
  max-width: 148px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.72;
}

.fan-card.stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 26px;
  text-align: left;
}

.fan-card.light {
  background: var(--card-light);
  color: var(--ink);
}

.fan-card.teal {
  background: var(--card-teal);
  color: #fff;
}

.stat-num {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.stat-copy h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.stat-copy p {
  font-size: 0.95rem;
  line-height: 1.35;
  opacity: 0.72;
}

.section {
  padding: 96px 0;
}

.awards-stage {
  scroll-margin-top: calc(var(--header-h) + 16px);
  padding-top: 80px;
  padding-bottom: 24px;
  text-align: center;
}

.awards-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
}

.awards-ph,
.awards-clutch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
}

.award-badge {
  width: min(180px, 42vw);
  height: auto;
}

.awards-clutch iframe {
  width: 130px;
  height: 130px;
  border: 0;
  background: transparent;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section h2,
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  font-weight: 700;
}

.section-intro {
  max-width: 36rem;
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.08rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.panel {
  background: var(--soft);
  border-radius: 24px;
  padding: 28px;
  min-height: 220px;
}

.panel h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin: 16px 0 8px;
}

.panel p {
  color: var(--muted);
}

.panel-index {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}

.work-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: var(--soft);
}

.work-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.work-card div {
  padding: 22px 24px 26px;
}

.work-card span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.work-card h3 {
  margin: 8px 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.work-card p {
  color: var(--muted);
}

.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.cta-band .btn {
  background: #fff;
  color: var(--ink);
}

.section.booking-stage {
  padding-top: 8px;
  padding-bottom: 0;
  text-align: center;
}

.founder-photo {
  position: relative;
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-radius: 50%;
}

.service-founder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 20px;
}

.service-founder-signature {
  display: block;
  height: 72px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0);
  pointer-events: none;
}

.service-founder .founder-role {
  margin-top: 0;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo .founder-signature {
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: 88%;
  height: 50%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  pointer-events: none;
}

.founder-role {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.cal-embed {
  width: 100%;
  height: 100%;
  min-height: 720px;
  margin-top: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: scroll;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.final-cta {
  padding: 96px 0 40px;
  text-align: center;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.final-cta h2 {
  max-width: 16ch;
  margin: 0 auto 32px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.final-cta em {
  font-style: normal;
  color: var(--cool);
}

.final-cta.final-cta-mid {
  padding: 96px 0;
}

.about-hero {
  padding: 96px 0 12px;
  text-align: center;
  overflow-x: hidden;
}

.about-hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
  max-width: 12ch;
  margin: 12px auto 0;
}

.about-hero h1 em {
  font-style: normal;
  color: var(--cool);
}

.about-hero-lead {
  max-width: 36rem;
  margin: 36px auto 0;
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.about-montage {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 0.9fr;
  grid-template-rows: 168px 210px 220px 200px;
  gap: 12px;
  width: min(calc(100% - 32px), var(--max));
  margin: 48px auto 0;
}

.about-tile {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--soft);
}

.about-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-tile-wide {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.about-tile:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.about-tile:nth-child(2) img {
  object-position: center 28%;
}

.about-tile-tall {
  grid-column: 4;
  grid-row: 1 / 4;
}

.about-tile-tall img {
  object-position: center 40%;
}

.about-tile-founder {
  grid-column: 3;
  grid-row: 2 / 4;
}

.about-tile-founder img {
  object-position: center 18%;
}

.about-tile:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 3;
}

.about-tile:nth-child(5) img {
  object-position: center 68%;
}

.about-tile:nth-child(6) {
  grid-column: 1 / 3;
  grid-row: 4;
}

.about-tile:nth-child(6) img {
  object-position: center 78%;
}

.about-tile:nth-child(7) {
  grid-column: 3 / 5;
  grid-row: 4;
}

.about-tile:nth-child(7) img {
  object-position: center 36%;
}

.section.about-story {
  padding-top: 72px;
  padding-bottom: 96px;
}

.about-story-kicker {
  text-align: center;
}

.about-quote {
  max-width: 46rem;
  margin: 24px auto 0;
  text-align: center;
}

.about-quote p {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.about-founder {
  position: relative;
  overflow: hidden;
  width: min(100%, 18rem);
  height: 22rem;
  margin: 36px auto 0;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 18px 40px rgba(18, 18, 18, 0.1);
}

.about-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-founder figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  text-shadow: 0 1px 8px rgb(0 0 0 / 0.45);
}

.about-story-copy {
  max-width: 40rem;
  margin: 56px auto 0;
}

.about-story-copy h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  letter-spacing: -0.04em;
}

.about-story-copy p {
  margin-top: 24px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-signature {
  margin-top: 32px;
}

.about-signature img {
  display: block;
  width: min(14rem, 70%);
  height: auto;
  filter: brightness(0);
}

.about-signature figcaption {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cool);
}

.section.projects-stage.kpi-stage {
  padding-top: 120px;
  padding-bottom: 20px;
}

.industries-stage {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
}

.industries-stage::before,
.industries-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(80px, 10vw);
  z-index: 2;
  pointer-events: none;
}

.industries-stage::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.industries-stage::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.industries-row {
  overflow: hidden;
}

.industries-row + .industries-row {
  margin-top: 4px;
}

.industries-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: industries-marquee 42s linear infinite;
}

.industries-row-reverse .industries-track {
  animation-duration: 48s;
  animation-direction: reverse;
}

.industry-word {
  display: block;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.92;
  white-space: nowrap;
  padding: 0 0.18em;
}

.industry-word::after {
  content: "·";
  margin-left: 0.42em;
  color: var(--cool);
  font-weight: 500;
}

.industries-row-reverse .industry-word {
  color: var(--muted);
}

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

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

.kpi-stage .projects-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  margin-bottom: 24px;
  text-align: center;
}

.kpi-stage .projects-head > div:first-child {
  grid-column: 2;
}

.kpi-stage .projects-head .bento-title {
  max-width: none;
  text-align: center;
}

.kpi-stage .projects-nav {
  grid-column: 3;
  justify-self: end;
}

.section.usecase-list {
  padding-top: 28px;
  padding-bottom: 40px;
}

.usecase-list-head {
  margin-bottom: 40px;
  text-align: center;
}

.usecase-list-head .bento-title {
  max-width: 14ch;
}

.usecase-deck {
  --deck-n: 4;
  position: relative;
  height: calc((100vh - var(--header-h)) * var(--deck-n));
}

.usecase-deck-pin {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.usecase-deck .usecase-card {
  grid-area: 1 / 1;
  width: 100%;
  height: min(640px, calc(100% - 48px));
  min-height: 0;
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.12);
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.usecase-deck .usecase-photo {
  min-height: 0;
  height: 100%;
}

.usecase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--soft);
  border-radius: 36px;
  overflow: hidden;
}

.usecase-photo {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
}

.usecase-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.usecase-photo-zoom > img:first-child {
  object-position: center 18%;
  transform: scale(1.35);
}

.usecase-photo .masonry-logo {
  top: 28px;
  left: 28px;
  height: 72px;
  max-width: 62%;
}

.usecase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
}

.usecase-copy span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cool);
}

.usecase-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  letter-spacing: -0.04em;
}

.usecase-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.usecase-copy blockquote {
  margin: 22px 0 0;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--ink);
}

.usecase-byline {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.usecase-metric {
  margin-top: 20px;
  color: var(--ink);
}

.usecase-metric strong {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--cool);
}

.page-hero {
  padding: 72px 0 24px;
}

.page-hero p {
  max-width: 38rem;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.15rem;
}

.use-hero {
  padding: 96px 0 12px;
  text-align: center;
  overflow: hidden;
}

.use-hero .section-kicker {
  margin-bottom: 28px;
}

.use-hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
  max-width: 16ch;
  margin: 12px auto 0;
}

.use-hero h1 em {
  font-style: normal;
  color: var(--cool);
}

.use-hero-lead {
  max-width: 36rem;
  margin: 36px auto 0;
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.use-hero-awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 32px;
  margin-top: 40px;
}

.use-hero-awards .award-badge {
  width: min(168px, 28vw);
}

.use-hero-fan {
  margin-top: 28px;
  padding: 8px 8px 48px;
  overflow: hidden;
}

.use-hero-fan .fan-card {
  flex: 0 0 clamp(148px, 18vw, 220px);
  width: clamp(148px, 18vw, 220px);
  height: clamp(206px, 26vw, 300px);
  margin-left: clamp(-28px, -3.2vw, -40px);
}

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

.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.value {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.value h3 {
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.value p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 96px;
}

.contact-meta p {
  color: var(--muted);
  margin-top: 12px;
}

.contact-meta a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--soft);
  padding: 28px;
  border-radius: 24px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #e4e4e4;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
}

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

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

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

.form .btn {
  width: fit-content;
  min-width: 168px;
}

.form-status {
  font-size: 0.92rem;
  color: var(--sage);
  min-height: 1.2em;
}

.site-footer {
  margin-top: 80px;
  padding: 72px 0 28px;
  background: var(--ink);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 18px 0 28px;
  max-width: 16ch;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.footer-cta {
  background: #fff;
  color: var(--ink);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-nav p {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.footer-nav a,
.footer-nav span {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
}

.footer-company {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-company-name {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-clutch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-clutch iframe {
  width: 120px;
  height: 120px;
  border: 0;
  background: transparent;
}

.footer-wordmark {
  margin-top: 64px;
  font-size: clamp(4.8rem, 16vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .grid-3,
  .split,
  .contact-grid,
  .form-row,
  .values,
  .bento {
    grid-template-columns: 1fr;
  }

  .bento-photo,
  .bento-quote,
  .bento-metric,
  .bento-dark {
    grid-row: auto;
  }

  .about-montage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 200px 140px 160px;
  }

  .about-tile-wide {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .about-tile:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .about-tile-tall {
    grid-column: 2;
    grid-row: 2;
  }

  .about-tile-founder {
    grid-column: 1;
    grid-row: 3;
  }

  .about-tile:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .about-tile:nth-child(6) {
    grid-column: 1;
    grid-row: 4;
  }

  .about-tile:nth-child(7) {
    grid-column: 2;
    grid-row: 4;
  }

  .footer-main,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 40px;
  }

  .footer-extra,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .customer-quote-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .customer-quote-copy {
    padding: 36px 28px 28px;
  }

  .customer-quote-photo {
    min-height: 320px;
  }

  .usecase-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .usecase-deck .usecase-card {
    grid-template-rows: minmax(160px, 34%) 1fr;
    height: calc(100% - 24px);
  }

  .usecase-photo {
    min-height: 320px;
  }

  .usecase-deck .usecase-photo {
    min-height: 0;
    height: auto;
  }

  .usecase-copy {
    padding: 32px 28px 36px;
  }

  .founder-quote-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
    text-align: center;
    min-height: 0;
  }

  .founder-quote-text {
    align-items: center;
  }

  .founder-quote-signature {
    object-position: center;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
  }

  .split img {
    height: 360px;
  }
}

@media (max-width: 860px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 22px 28px;
    min-height: min(520px, calc(100vh - var(--header-h) - 64px));
  }

  .service-art {
    min-height: 240px;
    height: 240px;
  }

  .service-block h3 {
    font-size: 1.5rem;
  }

}

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

  .use-hero-awards {
    gap: 10px 12px;
    margin-top: 28px;
    padding: 0 16px;
  }

  .use-hero-awards .award-badge {
    width: calc((100% - 24px) / 3);
  }

  .awards-ph,
  .awards-clutch {
    gap: 20px 24px;
  }

  .award-badge {
    width: min(150px, 44vw);
  }

  .hero {
    overflow-x: hidden;
  }

  .hero-fan {
    justify-content: center;
    overflow: visible;
    min-height: 168px;
    margin-top: 28px;
    padding: 20px 0 12px;
  }

  .use-hero-fan {
    overflow: hidden;
    padding: 20px 8px 36px;
  }

  .fan-card {
    flex: 0 0 min(88px, 22vw);
    width: min(88px, 22vw);
    height: min(122px, 30vw);
    margin-left: max(-22px, -5.5vw);
    border-radius: 18px;
  }

  .fan-card:first-child {
    margin-left: 0;
  }

  .fan-card.stat {
    padding: 12px 10px;
  }

  .stat-num {
    font-size: clamp(0.7rem, 3.2vw, 0.85rem);
  }

  .stat-copy h3 {
    font-size: clamp(0.55rem, 2.6vw, 0.7rem);
    margin-bottom: 2px;
  }

  .stat-copy p {
    font-size: clamp(0.48rem, 2.2vw, 0.62rem);
    line-height: 1.25;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  .swiper.projects-swiper {
    margin-left: max(16px, calc((100% - min(calc(100% - 32px), 1180px)) / 2));
  }

  .kpi-stage .projects-head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .kpi-stage .projects-nav {
    margin-top: 16px;
  }

  .nav {
    display: none;
    margin-left: 0;
  }

  .header-tools {
    margin-left: auto;
  }

  body.nav-open .nav {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 24px;
    gap: 16px;
  }

  .nav .header-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .scroll-cta {
    height: 60px;
    padding: 0 28px;
    bottom: 20px;
    font-size: 1.08rem;
  }

  .hero {
    padding-top: 56px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .usecase-deck {
    height: auto;
  }

  .usecase-deck-pin {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: visible;
  }

  .usecase-deck .usecase-card {
    grid-area: auto;
    height: auto;
    min-height: 480px;
    will-change: auto;
  }
}
