:root {
  --brand-green: #d6e02c;
  --brand-green-light: #e4ed5c;
  --brand-green-dark: #b8c21f;
  --charcoal: #1a1a1a;
  --offwhite: #fafaf9;
  --header-h: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

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

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  overflow-x: hidden;
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

::selection {
  background: #d6e02c;
  color: #1a1a1a;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d6e02c;
}

/* ========== Logos ========== */
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-logo:hover {
  opacity: 0.88;
}

.site-logo__img {
  width: auto;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.site-logo--header .site-logo__img {
  height: 42px;
  max-width: min(200px, 52vw);
}

.site-logo--menu .site-logo__img {
  height: 38px;
  max-width: min(180px, 58vw);
}

.site-logo--footer .site-logo__img {
  height: 44px;
  max-width: 200px;
}

/* ========== Display typography ========== */
.display-xl {
  font-size: clamp(2.35rem, 8.5vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  word-break: break-word;
}

.display-lg {
  font-size: clamp(1.85rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  word-break: break-word;
}

.display-md {
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  word-break: break-word;
}

/* Grid background */
.bg-grid {
  background-image: radial-gradient(circle, #e5e5e5 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Animated underline */
.animated-underline {
  position: relative;
}

.animated-underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d6e02c;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-underline:hover::after {
  width: 100%;
}

/* ========== Flowing snake path ========== */
.snake-path {
  position: absolute;
  inset: -6% -2% -10%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.snake-path__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.snake-path__track,
.snake-path__draw {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snake-path__track {
  stroke: rgba(214, 224, 44, 0.18);
  stroke-width: 48;
}

.snake-path__draw {
  stroke: url(#snakeGrad);
  stroke-width: 48;
  filter: url(#snakeGlow);
}

.snake-path__tip {
  fill: rgba(214, 224, 44, 0.35);
  stroke: rgba(214, 224, 44, 0.9);
  stroke-width: 3;
}

.snake-path__tip-core {
  fill: #1a1a1a;
}

@media (max-width: 900px) {
  .snake-path__track,
  .snake-path__draw {
    stroke-width: 32;
  }

  .snake-path {
    inset: -2% -12% -6%;
  }

  .snake-path__tip {
    r: 14;
  }
}

@media (max-width: 640px) {
  .snake-path__track,
  .snake-path__draw {
    stroke-width: 24;
  }
}

/* ========== About story ========== */
.about-story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(214, 224, 44, 0.1), transparent 55%),
    linear-gradient(180deg, #f7f5ef 0%, #f3f1ea 100%);
  padding: clamp(72px, 10vw, 130px) 0;
}

.about-story__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 224, 44, 0.18), transparent 65%);
  pointer-events: none;
}

.about-story__grid {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.about-story__visual {
  position: relative;
  min-height: 520px;
}

.about-card {
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 24px 70px rgba(15, 17, 16, 0.08);
}

.about-card--main {
  position: relative;
  overflow: hidden;
  width: 86%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.about-card__media {
  position: absolute;
  inset: 0;
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #121412;
}

.about-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-card--main:hover .about-card__img {
  transform: scale(1.07);
}

.about-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 12, 0.18) 0%, rgba(11, 14, 12, 0.12) 35%, rgba(11, 14, 12, 0.82) 100%),
    radial-gradient(circle at 80% 15%, rgba(214, 224, 44, 0.22), transparent 40%);
  z-index: 1;
}

.about-card__badge {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 14, 12, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-card__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 0 rgba(214, 224, 44, 0.6);
  animation: aboutPulse 1.8s ease-out infinite;
}

@keyframes aboutPulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 224, 44, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(214, 224, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 224, 44, 0); }
}

.about-card__quote {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 11ch;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.about-card--float {
  position: absolute;
  z-index: 2;
  padding: 18px 18px;
}

.about-card--status {
  right: 0;
  top: 12%;
  width: min(240px, 48%);
  animation: aboutFloat 6s ease-in-out infinite;
}

.about-card--stack {
  left: 8%;
  bottom: 4%;
  width: min(280px, 70%);
  animation: aboutFloat 7s ease-in-out infinite 0.6s;
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-status__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 8px;
}

.about-status strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.about-status__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.08);
  overflow: hidden;
}

.about-status__bar i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-green), #1a1a1a);
}

.about-card--stack ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-card--stack li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
}

.about-card--stack span {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(214, 224, 44, 0.22);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.about-story__eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
}

.about-story__title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: #1a1a1a;
  max-width: 14ch;
}

.about-story__lead {
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
  color: #2f3631;
  max-width: 38ch;
}

.about-story__lead em {
  font-style: normal;
  color: #1a1a1a;
  background: linear-gradient(transparent 62%, rgba(214, 224, 44, 0.55) 0);
}

.about-story__body {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  max-width: 48ch;
}

.about-story__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.62);
}

.about-story__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.about-story__pills span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
}

.about-story__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 20px;
  background: #1a1a1a;
  color: #fff;
}

.about-story__proof strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-green);
  margin-bottom: 4px;
}

.about-story__proof span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.about-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-story__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.about-story__btn svg {
  width: 16px;
  height: 16px;
}

.about-story__btn--primary {
  background: var(--brand-green);
  color: #1a1a1a;
}

.about-story__btn--primary:hover {
  transform: translateY(-2px);
  background: #e4ed5c;
}

.about-story__btn--ghost {
  border: 1.5px solid rgba(26, 26, 26, 0.14);
  color: #1a1a1a;
  background: transparent;
}

.about-story__btn--ghost:hover {
  border-color: #1a1a1a;
  transform: translateY(-2px);
}

.about-story__nudge {
  margin: 18px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.55);
  max-width: 40ch;
}

@media (max-width: 980px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story__visual {
    min-height: 420px;
    max-width: 520px;
  }

  .about-card--main {
    width: 88%;
  }

  .about-story__title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .about-story {
    padding: 64px 0;
  }

  .about-story__grid {
    width: min(calc(100% - 28px), 1240px);
  }

  .about-story__visual {
    min-height: 380px;
  }

  .about-card--main {
    width: 92%;
    aspect-ratio: 5 / 6;
  }

  .about-card--status {
    width: min(200px, 56%);
    padding: 14px;
  }

  .about-card--stack {
    width: min(240px, 78%);
    padding: 14px;
  }

  .about-story__proof {
    grid-template-columns: 1fr;
  }

  .about-story__actions {
    flex-direction: column;
  }

  .about-story__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-card--status,
  .about-card--stack,
  .about-card__pulse {
    animation: none;
  }

  .snake-path__draw {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ========== Clients marquee ========== */
.clients-band {
  position: relative;
  z-index: 2;
  background: #fff;
  border-block: 1px solid rgba(26, 26, 26, 0.08);
  padding: 40px 0 36px;
}

.clients-band__inner {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto 28px;
  text-align: center;
}

.clients-band__title {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #3f4742;
  line-height: 1.5;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
}

.clients-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 96px);
  z-index: 2;
  pointer-events: none;
}

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

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

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: marquee 45s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(26, 26, 26, 0.42);
  transition: color 0.25s ease;
}

.client-logo::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green, #d6e02c);
  opacity: 0.85;
  flex-shrink: 0;
}

.client-logo:hover {
  color: #1a1a1a;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: min(calc(100% - 40px), 1120px);
    margin: 0 auto;
    justify-content: center;
    gap: 12px 8px;
  }

  .client-logo {
    padding: 8px 14px;
    gap: 0;
    background: #f6f5f1;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .client-logo::after {
    display: none;
  }

  .clients-marquee__fade {
    display: none;
  }
}

/* ========== Home awards ========== */
.home-awards {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at 88% 15%, rgba(214, 224, 44, 0.16), transparent 18rem),
    #f6f5ef;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  padding: clamp(34px, 5vw, 58px) 0;
}

.home-awards__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  width: min(calc(100% - 40px), 1220px);
  margin: 0 auto;
}

.home-awards__eyebrow {
  margin: 0 0 10px;
  color: #9daa0d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-awards__title {
  margin: 0;
  color: #10120f;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.home-awards__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-award {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 116px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 26, 26, 0.08);
  color: #111410;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(13, 15, 13, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-award:hover,
.home-award:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(214, 224, 44, 0.7);
  box-shadow: 0 22px 48px rgba(13, 15, 13, 0.1);
}

.home-award span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #d6e02c;
  color: #111410;
  font-size: 0.82rem;
  font-weight: 900;
}

.home-award strong {
  display: block;
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.home-awards__link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #111410;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.home-awards__link:hover,
.home-awards__link:focus-visible {
  background: #d6e02c;
  color: #111410;
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .home-awards__inner {
    grid-template-columns: 1fr;
  }

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

  .home-awards__link {
    justify-self: start;
  }
}

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

  .home-award {
    min-height: auto;
  }
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  overscroll-behavior: contain;
}

.mobile-menu.open {
  transform: translateX(0);
}

.safe-bottom {
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
}

/* ========== Work showcase ========== */
.work-showcase {
  position: relative;
  background: #0f1210;
  padding: clamp(80px, 11vw, 140px) 0;
  overflow: hidden;
  color: #fff;
}

.work-showcase__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(214, 224, 44, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 100%, rgba(214, 224, 44, 0.08), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 55%),
    linear-gradient(180deg, #141816 0%, #0c0f0d 55%, #101410 100%);
}

.work-showcase__pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.work-showcase__pattern::after {
  content: "WORK";
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 22vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.work-showcase .work-showcase__eyebrow {
  color: rgba(214, 224, 44, 0.85);
}

.work-showcase .work-showcase__title {
  color: #fff;
}

.work-showcase .work-showcase__lead {
  color: rgba(255, 255, 255, 0.58);
}

.work-showcase .work-showcase__all {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.work-showcase .work-showcase__all:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #1a1a1a;
}

.work-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.work-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.work-showcase__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
}

.work-showcase__title {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #1a1a1a;
}

.work-showcase__lead {
  margin: 14px 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.58);
}

.work-showcase__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: #fff;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.work-showcase__all:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 26, 26, 0.28);
  background: var(--brand-green);
}

.work-bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 50px rgba(15, 17, 16, 0.05);
  transform: translateY(28px);
  opacity: 0;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform, opacity;
}

.work-card.is-in {
  opacity: 1;
  transform: none;
}

.work-card:hover {
  border-color: rgba(214, 224, 44, 0.45);
  box-shadow: 0 28px 70px rgba(15, 17, 16, 0.1);
}

.work-card--feature {
  grid-row: span 2;
}

.work-card--wide {
  grid-column: 2 / span 2;
}

.work-card__media {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background: #151815;
  isolation: isolate;
}

.work-card--feature .work-card__media {
  flex: 1;
  min-height: 460px;
}

.work-card--wide .work-card__media {
  min-height: 280px;
}

.work-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.work-card:hover .work-card__img {
  transform: scale(1.12);
}

.work-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 14, 12, 0.08) 0%, rgba(11, 14, 12, 0.18) 45%, rgba(11, 14, 12, 0.72) 100%),
    radial-gradient(circle at 80% 15%, rgba(214, 224, 44, 0.18), transparent 40%);
  transition: opacity 0.4s ease;
}

.work-card:hover .work-card__shade {
  background:
    linear-gradient(180deg, rgba(11, 14, 12, 0.12) 0%, rgba(11, 14, 12, 0.28) 40%, rgba(11, 14, 12, 0.78) 100%),
    radial-gradient(circle at 70% 20%, rgba(214, 224, 44, 0.28), transparent 42%);
}

.work-card__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 62%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-card__shine {
  transform: translateX(120%) skewX(-12deg);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-card:hover .work-card__overlay,
.work-card:focus-visible .work-card__overlay {
  opacity: 1;
}

.work-card__index {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand-green);
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateY(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-card__cta {
  transform: translateY(0);
}

.work-card__cta i {
  font-style: normal;
  transition: transform 0.3s ease;
}

.work-card:hover .work-card__cta i {
  transform: translate(2px, -2px);
}

.work-card__meta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 18px 20px 20px;
  background: #fff;
}

.work-card__meta h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  line-height: 1.2;
}

.work-card__meta p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.55);
}

.work-card__meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-card__meta li {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f3f1ea;
  border: 1px solid rgba(26, 26, 26, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.72);
  transition: background 0.25s ease, color 0.25s ease;
}

.work-card:hover .work-card__meta li {
  background: rgba(214, 224, 44, 0.22);
  color: #1a1a1a;
}

.work-card--feature .work-card__meta h3 {
  font-size: 1.4rem;
}

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

  .work-card--feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .work-card--feature .work-card__media {
    min-height: 300px;
  }

  .work-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .work-showcase__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-bento {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .work-card,
  .work-card--feature,
  .work-card--wide {
    grid-column: auto;
  }

  .work-card__media,
  .work-card--feature .work-card__media,
  .work-card--wide .work-card__media {
    min-height: 240px;
  }

  .work-card__overlay {
    opacity: 1;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.5));
  }

  .work-card__cta {
    transform: none;
  }
}

@media (hover: none) {
  .work-card__overlay {
    opacity: 1;
  }

  .work-card__cta {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== Services showcase ========== */
.svc {
  position: relative;
  overflow: hidden;
  background: #f6f4ee;
  padding: clamp(80px, 11vw, 140px) 0;
}

.svc__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(214, 224, 44, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 35% at 5% 90%, rgba(214, 224, 44, 0.08), transparent 50%);
}

.svc__pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black, transparent 80%);
}

.svc__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.svc__head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.svc__eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
}

.svc__title {
  margin: 0;
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #1a1a1a;
}

.svc__lead {
  margin: 0;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.58);
  justify-self: end;
}

.svc__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 12px 40px rgba(15, 17, 16, 0.05);
  backdrop-filter: blur(10px);
}

.svc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(26, 26, 26, 0.5);
  font: 700 0.92rem/1 "Inter", system-ui, sans-serif;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-tab__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.2);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.svc-tab:hover {
  color: #1a1a1a;
  background: rgba(26, 26, 26, 0.04);
}

.svc-tab.is-active {
  color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 17, 16, 0.16);
}

.svc-tab.is-active .svc-tab__dot {
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(214, 224, 44, 0.2);
}

.svc__stage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 3.5vw, 40px);
  align-items: stretch;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 30px 80px rgba(15, 17, 16, 0.07);
  backdrop-filter: blur(8px);
}

.svc__visual {
  position: relative;
  min-height: 520px;
}

.svc__visual-frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #121412;
  box-shadow: 0 24px 60px rgba(15, 17, 16, 0.16);
}

.svc__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.55s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc__img.is-active {
  opacity: 1;
  transform: scale(1);
}

.svc__visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 12, 0.1) 0%, rgba(11, 14, 12, 0.15) 40%, rgba(11, 14, 12, 0.72) 100%),
    radial-gradient(circle at 70% 20%, rgba(214, 224, 44, 0.18), transparent 40%);
  z-index: 1;
}

.svc__visual-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 14, 12, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.svc__float-card {
  position: absolute;
  right: -8px;
  top: 12%;
  z-index: 3;
  width: min(210px, 58%);
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 18px 50px rgba(15, 17, 16, 0.12);
  animation: svcFloat 6s ease-in-out infinite;
}

.svc__float-card strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.svc__float-card span {
  display: block;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.55);
}

@keyframes svcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.svc__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 1.5vw, 18px) clamp(8px, 1.5vw, 12px);
}

.svc__content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.svc-panel__kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.42);
}

.svc-panel__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: #1a1a1a;
}

.svc-panel__desc {
  margin: 14px 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.6);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 8px 24px rgba(15, 17, 16, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(14px);
}

.svc-item.is-in {
  opacity: 1;
  transform: none;
}

.svc-item:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 224, 44, 0.55);
  box-shadow: 0 14px 34px rgba(15, 17, 16, 0.08);
}

.svc-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(214, 224, 44, 0.2);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.svc-item__text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  line-height: 1.3;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.svc-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.05);
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
}

.svc-tags span.is-in {
  opacity: 1;
  transform: none;
}

.svc-panel__cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 20px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.svc-panel__cta:hover {
  transform: translateY(-2px);
  background: var(--brand-green);
  color: #1a1a1a;
}

@media (max-width: 980px) {
  .svc__head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .svc__lead {
    justify-self: start;
  }

  .svc__stage {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .svc__visual {
    min-height: 340px;
  }

  .svc__float-card {
    top: auto;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 640px) {
  .svc__tabs {
    width: 100%;
    border-radius: 22px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

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

  .svc-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .svc__visual {
    min-height: 280px;
  }

  .svc__float-card {
    display: none;
  }

  .svc__stage {
    padding: 12px;
  }
}

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

  .svc-item,
  .svc-tags span {
    opacity: 1;
    transform: none;
  }

  .svc__img {
    transition: none;
  }
}

/* ========== Process ========== */
.process {
  position: relative;
  overflow: hidden;
  background: #fbfaf7;
  padding: clamp(80px, 11vw, 140px) 0;
}

.process__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 40% at 0% 20%, rgba(214, 224, 44, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 80%, rgba(214, 224, 44, 0.08), transparent 50%);
}

.process__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 78%);
}

/* Decorative pattern image — bottom right */
.process__bg::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58vw, 560px);
  height: min(58vw, 560px);
  pointer-events: none;
  background-image: url("../images/patterns/process-corner.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .process__bg::after {
    width: min(88vw, 360px);
    height: min(88vw, 360px);
    opacity: 0.8;
  }
}

.process__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.process__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.process__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.42);
}

.process__title {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #1a1a1a;
}

.process__lead {
  margin: 16px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.58);
}

.process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process__line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 3px;
  z-index: 0;
  pointer-events: none;
}

.process__line-base {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.08);
}

.process__line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-green), #b8c21f);
  box-shadow: 0 0 18px rgba(214, 224, 44, 0.45);
  will-change: width;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  transform: translateY(36px);
}

.process-step.is-in {
  opacity: 1;
  transform: none;
}

.process-step__node {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 10px 30px rgba(15, 17, 16, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.process-step__node i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.12);
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.process-step.is-active .process-step__node,
.process-step:hover .process-step__node {
  border-color: rgba(214, 224, 44, 0.65);
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(214, 224, 44, 0.18);
}

.process-step.is-active .process-step__node i,
.process-step:hover .process-step__node i {
  background: var(--brand-green);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(214, 224, 44, 0.18);
}

.process-step__card {
  position: relative;
  height: 100%;
  padding: 26px 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 18px 50px rgba(15, 17, 16, 0.05);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.process-step__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step:hover .process-step__card,
.process-step.is-active .process-step__card {
  transform: translateY(-8px);
  border-color: rgba(214, 224, 44, 0.45);
  box-shadow: 0 28px 70px rgba(15, 17, 16, 0.1);
}

.process-step:hover .process-step__card::before,
.process-step.is-active .process-step__card::before {
  transform: scaleY(1);
}

.process-step__num {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--brand-green);
}

.process-step__card h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #1a1a1a;
}

.process-step__card > p {
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.58);
}

.process-step__card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
  display: grid;
  gap: 8px;
}

.process-step__card li {
  position: relative;
  padding-left: 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.72);
}

.process-step__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
}

@media (max-width: 980px) {
  .process__track {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .process__line {
    display: none;
  }

  .process-step__node {
    margin-left: 0;
    margin-right: auto;
  }
}

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

  .process-step__card {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step {
    opacity: 1;
    transform: none;
  }
}

/* ========== Manifesto ========== */
.manifesto {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 78vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: #0a0c0b;
}

.manifesto__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.manifesto__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: saturate(0.75) contrast(1.05);
  will-change: transform;
}

.manifesto__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.72) 0%, rgba(8, 10, 9, 0.55) 40%, rgba(8, 10, 9, 0.88) 100%),
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(214, 224, 44, 0.14), transparent 62%);
}

.manifesto__grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.manifesto__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.manifesto__orb--a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  left: -8%;
  top: 10%;
  background: radial-gradient(circle, rgba(214, 224, 44, 0.22), transparent 68%);
  animation: manifestoOrb 10s ease-in-out infinite;
}

.manifesto__orb--b {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  right: -6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(214, 224, 44, 0.14), transparent 68%);
  animation: manifestoOrb 12s ease-in-out infinite reverse;
}

@keyframes manifestoOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(16px, -20px) scale(1.08); }
}

.manifesto__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1100px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0 48px;
  text-align: center;
}

.manifesto__eyebrow {
  margin: 0 0 28px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(214, 224, 44, 0.9);
}

.manifesto__lines {
  display: grid;
  gap: clamp(14px, 2.5vw, 22px);
}

.manifesto__line {
  margin: 0;
  font-size: clamp(2rem, 6.2vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
  overflow: hidden;
}

.manifesto__line > span {
  display: inline-block;
}

.manifesto__word {
  color: var(--brand-green, #d6e02c);
  text-shadow: 0 0 40px rgba(214, 224, 44, 0.25);
}

.manifesto__rest {
  color: #fff;
}

.manifesto__footer {
  margin-top: clamp(32px, 5vw, 48px);
  display: grid;
  gap: 22px;
  justify-items: center;
}

.manifesto__note {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.manifesto__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.manifesto__chips span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}

.manifesto__marquee {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 16px 0;
}

.manifesto__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: manifestoMarquee 28s linear infinite;
}

.manifesto__track span {
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.manifesto__track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green, #d6e02c);
  opacity: 0.75;
  flex-shrink: 0;
}

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

@media (max-width: 640px) {
  .manifesto__inner {
    text-align: left;
    padding-bottom: 36px;
  }

  .manifesto__footer {
    justify-items: start;
  }

  .manifesto__chips {
    justify-content: flex-start;
  }

  .manifesto__track span {
    padding: 0 18px;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto__orb--a,
  .manifesto__orb--b,
  .manifesto__track {
    animation: none;
  }
}

/* Focus */
:focus-visible {
  outline: 2px solid #d6e02c;
  outline-offset: 3px;
}

/* Lenis */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* Counter */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ========== Site footer ========== */
.site-foot {
  position: relative;
  overflow: hidden;
  background: #0a0c0b;
  color: #fff;
  padding: clamp(64px, 8vw, 100px) 0 28px;
}

.site-foot__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 40% at 10% 0%, rgba(214, 224, 44, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 90% 100%, rgba(214, 224, 44, 0.06), transparent 50%);
}

.site-foot__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.site-foot__top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.site-foot__brand p {
  margin: 18px 0 0;
  max-width: 36ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

.site-foot__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.site-foot__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-foot__pill:hover {
  transform: translateY(-2px);
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.site-foot__pill--primary {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #0b0e0c !important;
}

.site-foot__pill--primary:hover {
  background: #e4ed5c;
  color: #0b0e0c !important;
}

.site-foot__newsletter {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-foot__newsletter h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-foot__newsletter p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.site-foot__form {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.site-foot__form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font: 500 0.92rem/1.2 "Inter", system-ui, sans-serif;
  outline: none;
}

.site-foot__form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.site-foot__form input:focus {
  border-color: rgba(214, 224, 44, 0.55);
}

.site-foot__form button {
  border: 0;
  border-radius: 999px;
  background: var(--brand-green);
  color: #1a1a1a;
  font: 800 0.88rem/1 "Inter", system-ui, sans-serif;
  padding: 0 18px;
  cursor: pointer;
  white-space: nowrap;
}

.site-foot__form button:hover {
  background: #e4ed5c;
}

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

.site-foot__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
  padding-top: 8px;
}

.site-foot__grid h4 {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-foot__grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-foot__grid a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.4;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.site-foot__grid a:hover {
  color: var(--brand-green);
  transform: translateX(2px);
}

.site-foot__contact-bar {
  margin-top: clamp(36px, 5vw, 48px);
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.site-foot__contact-bar a,
.site-foot__contact-bar span {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-foot__contact-bar a:hover {
  color: var(--brand-green);
}

.site-foot__social {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.site-foot__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-foot__social a:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #1a1a1a;
}

.site-foot__bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-foot__bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

.site-foot__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.site-foot__legal a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 0.8rem;
}

.site-foot__legal a:hover {
  color: #fff;
}

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

  .site-foot__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-foot__grid {
    grid-template-columns: 1fr;
  }

  .site-foot__form {
    flex-direction: column;
  }

  .site-foot__form button {
    min-height: 46px;
  }

  .site-foot__social {
    margin-left: 0;
    width: 100%;
  }

  .site-foot__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== Insights / Blog ========== */
.insights {
  position: relative;
  overflow: hidden;
  background: #f6f4ee;
  padding: clamp(80px, 11vw, 140px) 0;
}

.insights__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 40% at 0% 20%, rgba(214, 224, 44, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 80%, rgba(214, 224, 44, 0.08), transparent 50%);
}

.insights__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black, transparent 78%);
}

.insights__float-logo {
  position: absolute;
  right: max(2%, calc(50% - 620px));
  top: 12%;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: #111411;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(15, 17, 16, 0.18),
    0 0 0 10px rgba(214, 224, 44, 0.08);
  animation: insightsFloat 6.5s ease-in-out infinite;
}

.insights__float-logo img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

@keyframes insightsFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.insights__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.insights__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.insights__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.42);
}

.insights__title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #1a1a1a;
}

.insights__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.insights__all:hover {
  transform: translateY(-2px);
  background: var(--brand-green);
  border-color: var(--brand-green);
}

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

.insight-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 18px 50px rgba(15, 17, 16, 0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 224, 44, 0.4);
  box-shadow: 0 28px 70px rgba(15, 17, 16, 0.1);
}

.insight-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.insight-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #111411;
}

.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.insight-card:hover .insight-card__media img {
  transform: scale(1.1);
}

.insight-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 10, 9, 0.35) 100%);
  pointer-events: none;
}

.insight-card__tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 14, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--brand-green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.insight-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 22px;
}

.insight-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #1a1a1a;
  transition: color 0.25s ease;
}

.insight-card:hover .insight-card__body h3 {
  color: #1a1a1a;
}

.insight-card__body p {
  margin: 12px 0 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.58);
  flex: 1;
}

.insight-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #1a1a1a;
}

.insight-card__cta i {
  font-style: normal;
  transition: transform 0.3s ease;
}

.insight-card:hover .insight-card__cta i {
  transform: translate(3px, -3px);
}

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

  .insights__float-logo {
    width: 72px;
    height: 72px;
    top: 8%;
    right: 4%;
  }
}

@media (max-width: 680px) {
  .insights__head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .insights__float-logo {
    width: 64px;
    height: 64px;
    top: auto;
    bottom: 4%;
    right: 5%;
  }
}

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

/* ========== Testimonials / Voices ========== */
.voices {
  position: relative;
  overflow: hidden;
  background: #0b0e0c;
  padding: clamp(80px, 11vw, 140px) 0;
  color: #fff;
}

.voices__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(8, 10, 9, 0.78) 0%, rgba(8, 10, 9, 0.72) 40%, rgba(8, 10, 9, 0.88) 100%),
    radial-gradient(ellipse 50% 45% at 80% 20%, rgba(214, 224, 44, 0.12), transparent 55%),
    url("../images/testimonials-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.voices__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
}

.voices__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.voices__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(214, 224, 44, 0.9);
}

.voices__title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #fff;
}

.voices__seal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.voices__seal img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #111411;
  padding: 6px;
}

.voices__seal span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  max-width: 12ch;
  line-height: 1.25;
}

.voices__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.voices-feature {
  position: relative;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  background: #111411;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 17, 16, 0.14);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.voices-feature::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 224, 44, 0.2), transparent 68%);
  pointer-events: none;
}

.voices-feature__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.voices-feature__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #fff;
  max-width: 18ch;
}

.voices-feature__foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.voices-feature__foot strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.voices-feature__foot span {
  display: block;
  margin-top: 3px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.voices-feature__foot em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-green);
  letter-spacing: 0.02em;
}

.voices__stack {
  display: grid;
  gap: 14px;
}

.voices-mini {
  margin: 0;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.voices-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 224, 44, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.voices-mini--accent {
  background: rgba(214, 224, 44, 0.1);
  border-color: rgba(214, 224, 44, 0.35);
}

.voices-mini__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.voices-mini__top img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 9px;
  background: #111411;
  padding: 4px;
}

.voices-mini__top span {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.voices-mini p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.voices-mini footer {
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

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

  .voices-feature {
    min-height: 0;
  }

  .voices-feature__quote {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .voices__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .voices__seal span {
    max-width: none;
  }
}

/* ========== Why Daddy Cool ========== */
.why {
  position: relative;
  overflow: hidden;
  background: #f5f3ed;
  padding: clamp(80px, 11vw, 140px) 0;
}

.why__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(214, 224, 44, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(214, 224, 44, 0.08), transparent 50%);
}

.why__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.03) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black, transparent 78%);
}

.why__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.why__head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.why__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.42);
}

.why__title {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #1a1a1a;
}

.why__lead {
  margin: 0;
  max-width: 30rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.58);
  justify-self: end;
}

.why__bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.why-card {
  position: relative;
  overflow: hidden;
  padding: 28px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 18px 50px rgba(15, 17, 16, 0.05);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.why-card.is-in {
  opacity: 1;
  transform: none;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 224, 44, 0.45);
  box-shadow: 0 28px 70px rgba(15, 17, 16, 0.1);
}

.why-card--feature {
  grid-row: span 2;
  background: #111411;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.why-card--feature:hover {
  border-color: rgba(214, 224, 44, 0.35);
  box-shadow: 0 30px 70px rgba(214, 224, 44, 0.08);
}

.why-card--feature h3 {
  color: #ffffff !important;
}

.why-card--feature > p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.why-card--feature li {
  color: rgba(255, 255, 255, 0.88);
}

.why-card--wide {
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
  align-items: end;
}

.why-card__glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -60px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 224, 44, 0.22), transparent 68%);
  pointer-events: none;
}

.why-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.why-card__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 224, 44, 0.2);
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 800;
}

.why-card--feature .why-card__num {
  background: rgba(214, 224, 44, 0.18);
  color: var(--brand-green);
}

.why-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(26, 26, 26, 0.04);
  color: #1a1a1a;
  transition: transform 0.35s ease, background 0.35s ease;
}

.why-card--feature .why-card__icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--brand-green);
}

.why-card__icon svg {
  width: 20px;
  height: 20px;
}

.why-card:hover .why-card__icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(214, 224, 44, 0.22);
}

.why-card h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #1a1a1a;
}

.why-card--feature h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.why-card > p,
.why-card__wide-copy p {
  margin: 12px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.58);
}

.why-card ul {
  list-style: none;
  margin: auto 0 0;
  padding: 22px 0 0;
  display: grid;
  gap: 10px;
}

.why-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
}

.why-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.why-card__cta:hover {
  transform: translateY(-2px);
  background: var(--brand-green);
  color: #1a1a1a;
}

@media (max-width: 980px) {
  .why__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why__lead {
    justify-self: start;
  }

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

  .why-card--feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
  }

  .why-card--wide {
    grid-column: 1 / -1;
  }
}

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

  .why-card--wide {
    grid-template-columns: 1fr;
  }

  .why-card__cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-card {
    opacity: 1;
    transform: none;
  }
}

/* ========== Stats / Results ========== */
.stats {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(88px, 12vw, 150px) 0 0;
  background: #090b0a;
}

.stats__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(214, 224, 44, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 70%, rgba(214, 224, 44, 0.08), transparent 52%),
    linear-gradient(180deg, #101410 0%, #090b0a 48%, #0d100e 100%);
}

.stats__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black, transparent 78%);
}

.stats__bg::after {
  content: "";
  position: absolute;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  right: -18%;
  bottom: -28%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, transparent 0 22px, rgba(214, 224, 44, 0.05) 22px 23px);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  opacity: 0.9;
}

.stats__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.stats__top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.stats__eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(214, 224, 44, 0.9);
}

.stats__title {
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.stats__title em {
  font-style: normal;
  color: var(--brand-green);
}

.stats__lead {
  margin: 0;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  justify-self: end;
}

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

.stat {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  min-height: 190px;
  padding: 28px 26px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.stat.is-in {
  opacity: 1;
  transform: none;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(214, 224, 44, 0.14), transparent 42%);
  pointer-events: none;
}

.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 224, 44, 0.35);
  box-shadow: 0 30px 70px rgba(214, 224, 44, 0.08);
}

.stat__visual {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.stat__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat__track,
.stat__progress {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.stat__track {
  stroke: rgba(255, 255, 255, 0.08);
}

.stat__progress {
  stroke: var(--brand-green);
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  filter: drop-shadow(0 0 10px rgba(214, 224, 44, 0.35));
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat.is-in .stat__progress {
  stroke-dashoffset: var(--stat-offset, 80);
}

.stat__core {
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(214, 224, 44, 0.22), transparent 48%),
    rgba(12, 15, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 24px rgba(214, 224, 44, 0.08);
  overflow: hidden;
}

.stat__core img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  display: block;
}

.stat__body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.stat__value {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: #fff;
}

.stat__value .counter {
  background: linear-gradient(135deg, #ffffff 10%, #f4f7b0 55%, var(--brand-green) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label {
  margin: 12px 0 0;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.stat__hint {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  max-width: 28ch;
}

.stats__strip {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
  padding: 18px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.stats__strip-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: statsStrip 26s linear infinite;
}

.stats__strip-track span {
  padding: 0 28px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.stats__strip-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  opacity: 0.7;
  flex-shrink: 0;
}

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

@media (max-width: 900px) {
  .stats__top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats__lead {
    justify-self: start;
  }

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

  .stat {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .stat {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .stat__visual {
    width: 88px;
    height: 88px;
  }
}

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

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

  .stat__progress {
    transition: none;
  }
}

/* Floating elements */
.float-slow {
  animation: float 7s ease-in-out infinite;
}

.float-slower {
  animation: float 9s ease-in-out infinite;
}

/* ========== Video Hero ========== */
.hero-video {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: #0b0e0c;
}

.hero-video__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 12, 0.68) 0%, rgba(11, 14, 12, 0.42) 40%, rgba(11, 14, 12, 0.82) 100%),
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(214, 224, 44, 0.12), transparent 62%);
}

.hero-video__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1080px);
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.5rem) 0 2rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-video__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0;
}

.hero-video__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand-green);
}

.hero-video__title {
  margin: 0;
  font-size: clamp(2.35rem, 7.2vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  opacity: 0;
}

.hero-video__line {
  display: block;
}

.hero-video__line--accent {
  color: var(--brand-green);
  margin-top: 0.08em;
}

.hero-video__sub {
  margin: 22px auto 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
}

.hero-video__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  opacity: 0;
}

.hero-video__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-video__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.hero-video__btn--primary {
  background: var(--brand-green);
  color: #1a1a1a;
}

.hero-video__btn--primary:hover {
  transform: translateY(-2px);
  background: #e4ed5c;
}

.hero-video__btn--primary:hover svg {
  transform: translateX(3px);
}

.hero-video__btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-video__btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-video__footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 20px max(28px, env(safe-area-inset-bottom));
  margin-top: auto;
}

.hero-video__tagline {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  text-align: center;
}

.hero-video__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-video__scroll i {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-video__scroll i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand-green);
  animation: heroScrollDrop 1.8s ease-in-out infinite;
}

@keyframes heroScrollDrop {
  0% { top: -100%; }
  100% { top: 100%; }
}

.hero-video__scroll:hover {
  color: var(--brand-green);
}

@media (max-width: 768px) {
  .hero-video__content {
    width: min(calc(100% - 28px), 1080px);
    padding: calc(var(--header-h) + 1rem) 0 1.25rem;
    text-align: left;
    align-items: flex-start;
  }

  .hero-video__eyebrow {
    margin-bottom: 16px;
  }

  .hero-video__actions {
    justify-content: stretch;
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
  }

  .hero-video__btn {
    width: 100%;
  }

  .hero-video__footer {
    gap: 10px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .hero-video__scroll i {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-video {
    min-height: 100svh;
  }

  .hero-video__title {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .hero-video__sub {
    font-size: 1rem;
  }

  .hero-video__tagline {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }
}

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

  .hero-video__media {
    background:
      radial-gradient(circle at 70% 30%, rgba(214, 224, 44, 0.22), transparent 40%),
      linear-gradient(160deg, #121612, #0b0e0c 60%, #1a1f14);
  }

  .hero-video__scroll i::after {
    animation: none;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .site-logo--header .site-logo__img {
    height: 38px;
    max-width: min(180px, 48vw);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .site-logo--header .site-logo__img {
    height: 34px;
    max-width: min(160px, 46vw);
  }

  .site-logo--footer .site-logo__img {
    height: 38px;
    max-width: 170px;
  }

  .display-xl {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .display-lg {
    font-size: clamp(1.75rem, 7.5vw, 2.6rem);
  }

  .display-md {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
  }

  .marquee-track {
    animation-duration: 38s;
  }

  .clients-band {
    padding: 32px 0 28px;
  }

  .clients-band__title {
    font-size: 0.95rem;
  }

  .client-logo {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  /* Reduce heavy blurs on mobile for performance */
  .float-slow,
  .float-slower {
    animation-duration: 10s;
  }


}

@media (max-width: 480px) {
  .site-logo--header .site-logo__img {
    height: 30px;
    max-width: min(148px, 44vw);
  }

  .site-logo--menu .site-logo__img {
    height: 32px;
    max-width: min(150px, 55vw);
  }

  .display-xl {
    font-size: clamp(2rem, 12.5vw, 2.6rem);
    letter-spacing: -0.035em;
  }

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

  /* Tighter section rhythm on small phones */
  #work,
  #services,
  #about,
  #insights {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

/* Touch devices: disable hover scale jank */
@media (hover: none) {
  .marquee-track:hover {
    animation-play-state: running;
  }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-video {
    min-height: auto;
  }

  .hero-video__content {
    padding-top: 5rem;
    padding-bottom: 1rem;
  }

  .hero-video__footer {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding-bottom: 16px;
  }

  .hero-video__scroll i {
    display: none;
  }
}

/* Large screens */
@media (min-width: 1536px) {
  .site-logo--header .site-logo__img {
    height: 46px;
  }
}
