:root {
  --ink: #0e0e0e;
  --body: #3c3c3c;
  --muted: #737373;
  --paper: #fff;
  --soft: #f8f7f4;
  --line-soft: rgba(14, 14, 14, 0.08);
  --accent: #ff6344;
  --rose: #df4d82;
  --lavender: #e5abf3;
  --container: min(calc(100% - 48px), 1380px);
  --radius: 22px;
  --section-y: clamp(76px, 8vw, 128px);
  --section-y-tight: clamp(46px, 5.5vw, 78px);
  --shadow-soft: 0 26px 90px rgba(14, 14, 14, 0.08);
  --shadow-card: 0 28px 90px rgba(14, 14, 14, 0.08);
  --font-heading: "EB Garamond", Georgia, serif;
  --font-body: "Figtree", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--body);
  background:
    radial-gradient(circle at 8% -6%, rgba(255, 99, 68, 0.22), transparent 34rem),
    radial-gradient(circle at 88% 6%, rgba(229, 171, 243, 0.16), transparent 32rem),
    radial-gradient(circle at 82% 48%, rgba(255, 99, 68, 0.1), transparent 30rem),
    linear-gradient(180deg, #fff 0%, #fbfaf7 48%, #fff 100%);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.055;
  background-image: radial-gradient(rgba(14, 14, 14, 0.34) 0.55px, transparent 0.55px);
  background-size: 6px 6px;
  mix-blend-mode: multiply;
}

.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;
}

.section {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
}

#work,
#process,
#reviews,
#contact {
  scroll-margin-top: 150px;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    transform 0.8s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
}

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

@supports (animation-timeline: view()) {
  [data-reveal] {
    animation: revealLift both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }

  @keyframes revealLift {
    from {
      opacity: 0.35;
      transform: translateY(28px) scale(0.985);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

.site-header {
  position: fixed;
  top: 58px;
  left: 50%;
  z-index: 50;
  width: var(--container);
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  padding: 0 18px 0 8px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 99, 68, 0.1), rgba(229, 171, 243, 0.24));
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

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

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.04);
}

.desktop-nav a,
.mobile-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.25s ease, color 0.25s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  background: var(--ink);
  color: var(--paper);
}

.header-cta,
.button,
.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff6344, #f35a40 46%, #d84d89);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta:hover,
.button:hover,
.call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 99, 68, 0.28);
}

.header-cta {
  padding-inline: 22px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: 136px;
  left: 50%;
  z-index: 45;
  width: min(calc(100% - 40px), 420px);
  display: none;
  padding: 12px;
  border-radius: 24px;
  transform: translate(-50%, -10px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(14, 14, 14, 0.12);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
}

.mobile-nav.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.announcement {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 70;
  width: min(calc(100% - 40px), 760px);
  padding: 0;
  transform: translateX(-50%);
  animation: none;
}

.announcement-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 4px 5px 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(14, 14, 14, 0.09);
  backdrop-filter: blur(22px);
}

.announcement-inner::before {
  content: none;
}

.announcement-icon {
  position: relative;
  z-index: 1;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.announcement-icon::before {
  content: none;
}

.announcement-icon::after {
  content: none;
}

.announcement-icon svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 45% 58%;
  animation: confettiPop 2.4s cubic-bezier(.2, .8, .2, 1) infinite;
}

.confetti-body {
  fill: #ffb22e;
  stroke: #101010;
}

.confetti-line.blue,
.confetti-dot.blue {
  stroke: #356bff;
  fill: #356bff;
}

.confetti-line.green {
  stroke: #19a45b;
}

.confetti-line.yellow,
.confetti-dot.yellow {
  stroke: #ffb22e;
  fill: #ffb22e;
}

.confetti-line.purple {
  stroke: #8d58ff;
}

.confetti-dot.red {
  stroke: #ff6344;
  fill: #ff6344;
}

@keyframes notifyPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes confettiPop {
  0%,
  78%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  8% {
    transform: rotate(-10deg) scale(1.06);
  }

  17% {
    transform: rotate(8deg) scale(1.02);
  }
}

.announcement p {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.announcement strong {
  font-weight: 500;
}

.announcement a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}

.announcement a:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ff6344, #df4d82);
}

.hero {
  margin-top: 158px;
  padding-top: 0;
  padding-bottom: clamp(40px, 4.6vw, 64px);
}

.hero-grand {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: clamp(32px, 3.7vw, 48px);
  border-radius: 30px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 99, 68, 0.15), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(229, 171, 243, 0.16), transparent 26rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 246, 0.94));
  box-shadow: 0 34px 110px rgba(14, 14, 14, 0.1);
  border: 1px solid rgba(14, 14, 14, 0.045);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(14, 14, 14, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 14, 14, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 74%);
}

.hero-bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  animation: floatGlow 9s ease-in-out infinite;
}

.hero-bg span:nth-child(1) {
  width: 260px;
  height: 260px;
  left: 46%;
  top: -90px;
  background: radial-gradient(circle, rgba(255, 99, 68, 0.16), transparent 68%);
}

.hero-bg span:nth-child(2) {
  width: 360px;
  height: 360px;
  right: -130px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(229, 171, 243, 0.18), transparent 70%);
  animation-delay: -3s;
}

.hero-bg span:nth-child(3) {
  width: 240px;
  height: 240px;
  left: -100px;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 99, 68, 0.12), transparent 68%);
  animation-delay: -5s;
}

@keyframes floatGlow {
  50% { transform: translate3d(0, 22px, 0) scale(1.08); }
}

.hero-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(20px, 2.4vw, 32px);
}

.hero-kicker .eyebrow,
.hero-kicker span {
  margin: 0;
  color: rgba(14, 14, 14, 0.54);
}

.hero-kicker span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-grand-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: clamp(30px, 4.2vw, 64px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-grand .hero-copy {
  padding: 0;
  background: none;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.hero-grand h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(2.28rem, 4vw, 4.2rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.18rem, 1.65vw, 1.6rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 590px;
  margin: clamp(18px, 1.7vw, 24px) 0 clamp(22px, 2.1vw, 30px);
  color: var(--body);
  font-size: clamp(0.98rem, 1.08vw, 1.06rem);
}

.call-button {
  width: fit-content;
  min-height: 60px;
  gap: 12px;
  padding: 8px 24px 8px 10px;
  box-shadow: 0 22px 62px rgba(255, 99, 68, 0.18);
}

.call-button img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(14, 14, 14, 0.12);
}

.call-button span {
  white-space: nowrap;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 99, 68, 0.34), transparent 14rem),
    radial-gradient(circle at 92% 20%, rgba(229, 171, 243, 0.18), transparent 16rem),
    linear-gradient(155deg, rgba(28, 21, 21, 0.82), rgba(7, 7, 8, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 36%, #000, transparent 68%);
  opacity: .7;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 99, 68, 0.28), transparent 66%);
}

.showcase-main {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 0;
  min-width: 0;
  margin-top: 0;
  padding-bottom: 0;
}

.showcase-video {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.showcase-video.large {
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
}

.showcase-video video,
.showcase-video iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  opacity: 0;
  filter: saturate(.95) contrast(1.04) brightness(.9);
  transition: opacity 0.35s ease, transform 0.7s ease;
}

.showcase-video iframe {
  width: 124%;
  height: 124%;
  max-width: none;
  transform: translate(-9.5%, -10.5%);
  pointer-events: none;
}

.showcase-video.is-ready video,
.showcase-video.is-ready iframe {
  opacity: 1;
}

.showcase-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.42)),
    radial-gradient(circle at 16% 0%, rgba(229,171,243,.14), transparent 42%);
}

.video-chrome {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 16px;
  color: rgba(255,255,255,.72);
  background: rgba(10, 10, 10, .58);
  backdrop-filter: blur(16px);
}

.video-chrome span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.video-chrome strong {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  text-align: right;
}

.reel-control {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(16px);
}

.reel-control span {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6344 0 46%, rgba(255,255,255,.24) 46% 100%);
}

.reel-control strong {
  font-size: 13px;
  font-weight: 500;
}

.showcase-caption {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.7);
}

.showcase-caption strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.55vw, 1.42rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero-proof-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(22px, 2.4vw, 32px);
  color: var(--body);
}

.hero-proof-row span,
.hero-proof-row strong {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(14, 14, 14, 0.055);
  backdrop-filter: blur(14px);
}

.hero-proof-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-proof-row strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 2.2vw, 32px);
  align-items: end;
  margin-bottom: clamp(22px, 2.8vw, 38px);
}

.section-head h2 {
  max-width: 900px;
}

.work .section-head,
.reviews .section-head {
  grid-template-columns: minmax(0, 760px) auto;
}

.work .section-head {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 6px;
  margin-top: clamp(26px, 3.5vw, 54px);
  margin-bottom: clamp(6px, 0.7vw, 10px);
}

.work .section-head h2 {
  max-width: none;
}

.work .section-actions {
  width: 100%;
  justify-content: flex-end;
}

.section-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(14, 14, 14, 0.12);
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease;
}

.section-actions a:hover {
  background: var(--ink);
  color: #fff;
}

.rail-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rail-controls button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.rail-controls button:hover {
  transform: translateY(-2px);
  background: var(--accent);
}

.rail-controls button::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.rail-controls [data-scroll-prev]::before {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.rail-controls [data-scroll-next]::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.work {
  padding: clamp(58px, 6.5vw, 92px) 0 var(--section-y-tight);
}

.work-feature {
  position: relative;
}

.work-feature::before {
  content: none;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 74%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 99, 68, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 99, 68, 0.045), rgba(255, 255, 255, 0));
}

.drag-scroll {
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.drag-scroll::-webkit-scrollbar {
  display: none;
}

.drag-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.drag-scroll.is-auto-scrolling {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.work-rail,
.review-rail {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  margin-inline: 0;
  scroll-snap-type: x mandatory;
  background: transparent;
}

.work-rail {
  grid-auto-columns: calc((100% - 42px) / 4);
  padding: 0;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 432px;
  border-radius: 24px;
  background: var(--ink);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 16px 46px rgba(14, 14, 14, 0.08);
  scroll-snap-align: start;
}

.project-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='20' viewBox='0 0 18 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 8.26795C18.3333 9.03775 18.3333 10.9623 17 11.7321L3.5 19.5263C2.16667 20.2961 0.5 19.3338 0.5 17.7942L0.5 2.20577C0.5 0.666171 2.16667 -0.296079 3.5 0.473721L17 8.26795Z' fill='%230E0E0E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 52% center;
  background-size: 18px 20px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.project-card:hover::after {
  transform: scale(1.08);
  background-color: #fff;
}

.project-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.94) contrast(1.04);
  pointer-events: none;
  transition: transform 0.7s ease, opacity 0.55s ease;
}

.project-preview {
  border: 0;
  background: #000;
  transform: scale(1.16);
}

.project-card.is-ready .project-video {
  opacity: 1;
}

.project-card.is-ready .project-preview,
.project-card.has-video-preview img.project-video {
  opacity: 0;
}

.project-card.is-ready.has-video-preview .project-preview {
  opacity: 1;
}

.project-card:hover .project-video {
  transform: scale(1.05);
}

.project-card:hover .project-preview {
  transform: scale(1.19);
}

.video-loader {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(229, 171, 243, 0.34), transparent 18rem),
    linear-gradient(135deg, #171717, #2b1713 48%, #080808);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.project-card.is-ready .video-loader,
.showcase-video.is-ready .video-loader {
  opacity: 0;
}

.video-loader span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(255, 99, 68, 0.95), rgba(229, 171, 243, 0.85), rgba(255, 255, 255, 0)),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 42%, transparent 44%);
  animation: loaderSpin 0.9s linear infinite;
  mask: radial-gradient(circle, transparent 0 47%, #000 49%);
}

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

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.02), rgba(14, 14, 14, 0.88));
}

.project-meta {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 24px;
  color: #fff;
  pointer-events: none;
}

.project-meta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-meta h3 {
  color: #fff;
  font-size: clamp(0.92rem, 1.02vw, 1.08rem);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.12;
}

.project-meta p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

.client-strip {
  overflow: hidden;
  padding: clamp(70px, 8vw, 118px) 0 clamp(66px, 8vw, 110px);
}

.client-strip-head {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto clamp(42px, 5vw, 62px);
  text-align: center;
}

.client-strip-head h2 {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 0.98;
}

.client-strip-head p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(14, 14, 14, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.45;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 18px;
  scrollbar-width: none;
}

.logo-marquee::-webkit-scrollbar {
  display: none;
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(120px, 12vw);
  height: calc(100% - 18px);
  pointer-events: none;
  content: "";
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 6%, rgba(255, 255, 255, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 6%, rgba(255, 255, 255, 0));
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 36s linear infinite;
}

.logo-marquee:hover .logo-marquee-track,
.logo-marquee:focus-within .logo-marquee-track {
  animation-play-state: paused;
}

.logo-row {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 18px;
  padding-right: 18px;
}

.logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f6f6f2);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.1vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  border: 1px solid rgba(14, 14, 14, 0.08);
  box-shadow: 0 16px 34px rgba(14, 14, 14, 0.08);
}

.logo-row .client-logo {
  width: clamp(190px, 14vw, 220px);
  height: clamp(92px, 8vw, 112px);
  padding: 0 30px;
}

.client-logo img {
  display: block;
  width: auto;
  max-width: min(150px, 100%);
  max-height: var(--client-logo-max-height, 30px);
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  transform: translateZ(0);
}

.client-logo--activefence {
  --client-logo-max-width: 172px;
  --client-logo-max-height: 50px;
}

.client-logo--akto {
  --client-logo-max-width: 154px;
  --client-logo-max-height: 48px;
}

.client-logo--aruga {
  --client-logo-max-width: 104px;
  --client-logo-max-height: 52px;
}

.client-logo--dyte {
  --client-logo-max-width: 154px;
}

.client-logo--emerix {
  --client-logo-max-width: 150px;
}

.client-logo--feedbackfruits {
  --client-logo-max-width: 150px;
}

.client-logo--hive {
  --client-logo-max-width: 98px;
}

.client-logo--openwearables {
  --client-logo-max-width: 154px;
  --client-logo-max-height: 48px;
}

.client-logo--paxos {
  --client-logo-max-width: 150px;
}

.client-logo--pebb {
  --client-logo-max-width: 128px;
}

.client-logo--thena {
  --client-logo-max-width: 138px;
}

.client-logo--trumpet {
  --client-logo-max-width: 150px;
}

.client-logo--twaice {
  --client-logo-max-width: 136px;
}

.client-logo--zluri {
  --client-logo-max-width: 116px;
}

.client-logo img {
  max-width: min(var(--client-logo-max-width, 150px), 100%);
}

@keyframes logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(220px, 0.72fr) minmax(220px, 0.72fr);
  gap: clamp(14px, 1.6vw, 20px);
  padding: 0 0 var(--section-y);
}

.proof-card {
  min-height: 230px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius);
  background: linear-gradient(150deg, #fff, var(--soft));
  box-shadow: var(--shadow-card);
}

.proof-card.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 480px;
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 99, 68, 0.14), transparent 18rem),
    radial-gradient(circle at 90% 95%, rgba(229, 171, 243, 0.18), transparent 20rem),
    linear-gradient(150deg, #fff, #fbfbf8);
}

.proof-card.dark {
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(229, 171, 243, 0.28), transparent 13rem),
    linear-gradient(145deg, #0e0e0e, #221512);
}

.proof-card.dark .metric,
.proof-card.dark p {
  color: #fff;
}

.metric {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.proof-card p {
  margin: 0;
  color: var(--body);
  font-size: 18px;
}

.proof-card.tall h2 {
  max-width: 680px;
}

.proof-card.tall > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 20px;
}

.process,
.reviews {
  padding: var(--section-y) 0;
}

.section-head.split {
  grid-template-columns: 1fr;
  align-items: start;
}

.process-grid,
.situation-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}

.process-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 176px;
  padding: clamp(24px, 2.5vw, 34px);
  border-radius: 24px;
  background: #f5f3f1;
  box-shadow: none;
}

.process-grid h3 {
  margin: 0 0 10px;
  color: #05070c;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 1.55vw, 1.72rem);
  font-weight: 700;
  line-height: 1.12;
}

.process-grid p {
  margin: 0;
  color: rgba(14, 14, 14, 0.58);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.58;
}

.process-icon {
  display: block;
  width: 48px;
  height: 48px;
  color: #5c4224;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.goals {
  padding: var(--section-y) 0;
}

.goals-head {
  max-width: 720px;
  margin: 0 auto clamp(34px, 4.4vw, 62px);
  text-align: center;
}

.goals-head h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.05rem);
  line-height: 1.02;
}

.goal-tabs {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto clamp(48px, 6vw, 84px);
  padding: 12px;
  overflow-x: auto;
  border-radius: 999px;
  background: #f4f3f1;
  scrollbar-width: none;
}

.goal-tabs::-webkit-scrollbar {
  display: none;
}

.goal-tabs button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: rgba(14, 14, 14, 0.78);
  background: transparent;
  font: inherit;
  font-size: 17px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.goal-tabs button:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.goal-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #ff6344, #f35a40 46%, #d84d89);
  box-shadow: 0 12px 28px rgba(255, 99, 68, 0.22);
}

.goal-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.goal-panel[hidden] {
  display: none;
}

.goal-media {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #111;
  cursor: pointer;
  box-shadow: 0 24px 70px rgba(14, 14, 14, 0.11);
}

.goal-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.72);
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.goal-media:hover img {
  transform: scale(1.07);
  filter: saturate(0.96) contrast(1.04) brightness(0.82);
}

.goal-media span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(76px, 8vw, 112px);
  height: clamp(76px, 8vw, 112px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 42%, transparent 43%),
    rgba(255, 255, 255, 0.32);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.goal-media span::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--ink);
  content: "";
}

.goal-points {
  display: grid;
  gap: 0;
}

.goal-points > div {
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
}

.goal-points > div:first-child {
  padding-top: 0;
}

.goal-points > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.goal-points h3 {
  margin: 0 0 10px;
  color: #06080d;
  font-family: var(--font-body);
  font-size: clamp(1.28rem, 1.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.16;
}

.goal-points p {
  max-width: 620px;
  margin: 0;
  color: rgba(14, 14, 14, 0.58);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.48;
}

.review-marquee {
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.review-rail {
  grid-auto-columns: clamp(304px, 24vw, 356px);
  grid-auto-flow: column;
  gap: 16px;
  padding: 4px 0 18px;
  scroll-padding-inline: 2px;
}

.review-rail article {
  position: relative;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 14, 0.045);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 99, 68, 0.12), transparent 9rem),
    linear-gradient(145deg, #fff, #fbfaf8);
  box-shadow: 0 18px 48px rgba(14, 14, 14, 0.055);
  scroll-snap-align: start;
}

.review-rail article::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -46px;
  bottom: -46px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 99, 68, 0.13), transparent 68%);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  margin-bottom: 28px;
}

.review-person img,
.review-avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
}

.review-person img {
  object-fit: cover;
  background: linear-gradient(135deg, #ff6344, #d84d89);
  box-shadow: 0 12px 34px rgba(14, 14, 14, 0.12);
}

.review-avatar {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #ff6344, #d84d89 58%, #171717);
  box-shadow: 0 12px 34px rgba(14, 14, 14, 0.12);
  font-size: 16px;
  font-weight: 500;
}

.stars {
  color: #ff6344;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-person span {
  display: block;
  margin-top: 5px;
}

.review-rail p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 400;
  line-height: 1.42;
}

.review-rail span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.review-rail article > span:last-child {
  margin-top: auto;
}

.cta {
  padding: var(--section-y-tight) 0 var(--section-y);
}

.cta-panel {
  overflow: hidden;
  padding: clamp(36px, 6vw, 78px);
  border-radius: 40px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, rgba(229, 171, 243, 0.3), transparent 18rem),
    radial-gradient(circle at 100% 0%, rgba(255, 99, 68, 0.24), transparent 22rem),
    linear-gradient(160deg, #0e0e0e, #171717 58%, #2a1410);
  box-shadow: 0 34px 100px rgba(14, 14, 14, 0.16);
}

.cta-panel .eyebrow,
.cta-panel h2 {
  color: #fff;
}

.cta-panel h2 {
  max-width: 820px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button.secondary:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.footer {
  position: relative;
  overflow: hidden;
  width: var(--container);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(32px, 5vw, 78px);
  padding: clamp(30px, 3.8vw, 46px);
  border-radius: 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 99, 68, 0.17), transparent 20rem),
    radial-gradient(circle at 94% 4%, rgba(229, 171, 243, 0.2), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 246, 0.96));
  border: 1px solid rgba(14, 14, 14, 0.06);
  box-shadow: 0 28px 80px rgba(14, 14, 14, 0.08);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(14,14,14,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,14,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 40% 20%, #000, transparent 70%);
}

.footer p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--body);
}

.footer div {
  position: relative;
  z-index: 1;
}

.footer div:not(:first-child) {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer div:not(:first-child) > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer .brand span {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.footer a:not(.brand) {
  color: var(--ink);
  font-weight: 500;
}

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

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 99, 68, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 14%, rgba(229, 171, 243, 0.2), transparent 26rem),
    rgba(7, 7, 8, 0.88);
  backdrop-filter: blur(18px);
  animation: modalFade 0.22s ease both;
}

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

.modal-shell {
  width: min(100%, 1120px);
  display: grid;
  gap: 16px;
  padding: clamp(12px, 1.6vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(14, 14, 14, 0.72);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.48);
  transform-origin: 50% 54%;
  animation: modalLift 0.28s cubic-bezier(.22, 1, .36, 1) both;
}

.modal-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: #fff;
}

.modal-meta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-meta strong {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 500;
  text-align: right;
}

.modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #000;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.modal-frame.is-loading::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 7%;
  z-index: 3;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(255, 99, 68, 0.95) 18%, rgba(229, 171, 243, 0.9) 34%, transparent 48%) -120% center / 220% 100% no-repeat,
    rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 0 28px rgba(255, 99, 68, 0.22);
  animation:
    loadingBar 1.12s cubic-bezier(.65, 0, .35, 1) infinite,
    loadingGlow 1.4s ease-in-out infinite;
}

.modal-frame.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.1), transparent 18rem),
    linear-gradient(135deg, #050505, #180d0b 54%, #080808);
}

.modal-frame video,
.modal-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.modal-frame video {
  object-fit: contain;
  background: #000;
}

.modal-close {
  position: fixed;
  top: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.06);
  background: rgba(255, 99, 68, 0.78);
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalLift {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loadingBar {
  from { background-position: -120% center, center; }
  to { background-position: 120% center, center; }
}

@keyframes loadingGlow {
  50% { box-shadow: 0 0 42px rgba(229, 171, 243, 0.3); }
}

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

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

@media (max-width: 1120px) {
  .hero-grand-grid,
  .proof,
  .section-head.split {
    grid-template-columns: 1fr;
  }

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

  .proof-card.tall {
    grid-row: auto;
    min-height: 320px;
  }

  .work-rail {
    grid-auto-columns: minmax(320px, 62vw);
  }

  .review-rail {
    grid-auto-columns: minmax(300px, 44vw);
  }

  .work .section-head,
  .reviews .section-head {
    grid-template-columns: 1fr;
  }

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

  .goal-panel,
  .situation-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 28px), 1320px);
  }

  .site-header,
  .section,
  .footer {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .site-header {
    top: 64px;
    min-height: 64px;
    grid-template-columns: auto 1fr auto;
  }

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

  .menu-toggle,
  .mobile-nav {
    display: block;
  }

  .menu-toggle {
    justify-self: end;
  }

  .mobile-nav {
    top: 136px;
  }

  .announcement {
    top: 10px;
    width: calc(100vw - 28px);
  }

  .announcement-inner {
    width: 100%;
    justify-content: flex-start;
  }

  .announcement p {
    min-width: 0;
    flex: 1;
    font-size: 13px;
    text-align: left;
    white-space: normal;
    line-height: 1.2;
  }

  .hero {
    margin-top: 154px;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .hero-grand {
    min-height: auto;
    padding: 22px;
    border-radius: 28px;
  }

  .hero-kicker,
  .section-head,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-kicker {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-grand h1 {
    font-size: clamp(1.78rem, 7vw, 2.48rem);
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .call-button {
    width: 100%;
    min-height: 58px;
  }

  .hero-showcase {
    min-height: auto;
    padding: 18px;
    margin-top: 0;
  }

  .showcase-main {
    padding-bottom: 0;
    min-height: 0;
    margin-top: 0;
  }

  .showcase-video.large {
    aspect-ratio: 16 / 11;
  }

  .reel-control {
    left: 12px;
    right: 12px;
    bottom: 12px;
    margin: 0;
  }

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

  .logo-row {
    display: flex;
    width: max-content;
    gap: 14px;
    padding-right: 14px;
  }

  .logo-row span {
    width: 168px;
    justify-content: center;
    min-height: 82px;
    padding: 0 18px;
    font-size: clamp(1.05rem, 4.6vw, 1.35rem);
  }

  .logo-row .client-logo {
    min-width: 168px;
    height: 82px;
    padding: 0 18px;
  }

  .client-logo img {
    width: auto;
    max-width: min(var(--client-logo-max-width, 132px), 100%);
    max-height: min(var(--client-logo-max-height, 28px), 42px);
  }

  .goals-head {
    margin-bottom: 28px;
  }

  .goal-tabs {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 34px;
    padding: 8px;
  }

  .goal-tabs button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 15px;
  }

  .goal-panel {
    gap: 24px;
  }

  .goal-media {
    border-radius: 22px;
  }

  .goal-points > div {
    padding: 20px 0;
  }

  .section-actions {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .work .section-head {
    gap: 6px;
    margin-top: 18px;
    margin-bottom: 8px;
  }

  .proof,
  .process,
  .reviews,
  .goals,
  .situations {
    padding: 54px 0;
  }

  .work {
    padding: 54px 0;
  }

  .proof-card,
  .proof-card.tall {
    min-height: auto;
  }

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

  .project-card {
    min-height: 370px;
  }

  .process-grid article {
    min-height: auto;
  }

  .review-rail article {
    min-height: 252px;
  }

  .footer {
    gap: 26px;
  }
}

@media (max-width: 520px) {
  h2 {
    font-size: 1.86rem;
  }

  .brand {
    height: 56px;
    padding: 0 14px 0 7px;
    font-size: 18px;
  }

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

  .announcement-inner {
    align-items: center;
    gap: 7px;
    padding: 4px 5px 4px 7px;
    border-radius: 999px;
  }

  .announcement-inner::before {
    width: 42px;
  }

  .announcement-icon {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .announcement p {
    font-size: 13px;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
    display: block;
  }

  .announcement a {
    align-self: center;
    min-height: 27px;
    padding: 0 10px;
    font-size: 13px;
  }

  .showcase-main {
    padding-bottom: 0;
    margin-top: 0;
  }

  .showcase-video {
    border-radius: 20px;
  }

  .video-chrome {
    left: 10px;
    right: 10px;
    top: 10px;
    padding: 9px 10px;
  }

  .reel-control {
    left: 10px;
    right: 10px;
    bottom: 10px;
    margin: 0;
    gap: 10px;
  }

  .showcase-caption strong {
    font-size: 20px;
  }

  .work-rail {
    grid-auto-columns: 100%;
  }

  .review-rail {
    grid-auto-columns: minmax(280px, 86vw);
  }

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

  .section-copy {
    font-size: 16px;
  }

  .review-rail article {
    min-height: 250px;
  }

  .cta-actions .button {
    width: 100%;
  }
}
