:root {
  --black: #030303;
  --white: #f7f7f7;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff8a2a;
  --pink: #ff4f93;
  --purple: #7b4dff;
  --max-width: 1180px;
  --header-height: 76px;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --header-motion: 920ms;
  --font-sans: "TT Commons Pro", "TT Commons", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Cormorant", "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
footer {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading main,
body.is-loading .site-footer {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(14px);
}

body.is-loading .site-header {
  opacity: 0;
  transform: translate(-50%, 18px) scale(0.985);
  filter: blur(12px);
}

body.has-loaded main,
body.has-loaded .site-footer {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 1150ms var(--ease-premium) 80ms,
    transform 1150ms var(--ease-premium) 80ms,
    filter 1200ms var(--ease-premium) 80ms;
}

body.has-loaded .site-header {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  filter: blur(0);
  transition:
    left var(--header-motion) var(--ease-premium),
    width var(--header-motion) var(--ease-premium),
    height var(--header-motion) var(--ease-premium),
    padding var(--header-motion) var(--ease-premium),
    transform 1050ms var(--ease-premium) 140ms,
    border-radius var(--header-motion) var(--ease-premium),
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    opacity 1050ms var(--ease-premium) 140ms,
    filter 1050ms var(--ease-premium) 140ms;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  grid-template-rows: auto auto;
  place-content: center;
  justify-items: center;
  row-gap: clamp(0.55rem, 1.2vw, 0.9rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 79, 147, 0.28), transparent 28%),
    radial-gradient(circle at 32% 58%, rgba(255, 138, 42, 0.18), transparent 32%),
    radial-gradient(circle at 68% 58%, rgba(123, 77, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #030303 0%, #10070d 46%, #080612 100%);
  filter: blur(0);
  transform: scale(1);
  transition:
    opacity 1050ms var(--ease-premium),
    visibility 1050ms var(--ease-premium),
    transform 1200ms var(--ease-premium),
    filter 1200ms var(--ease-premium);
  will-change: opacity, transform, filter;
}

.site-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(3, 3, 3, 0.18) 62%, rgba(3, 3, 3, 0.52) 100%),
    linear-gradient(180deg, transparent 0%, rgba(3, 3, 3, 0.28) 52%, #030303 100%);
  opacity: 0.92;
  transition: opacity 900ms var(--ease-premium);
}

.site-loader__glow {
  position: absolute;
  width: min(64vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(from 120deg, var(--orange), var(--pink), var(--purple), var(--orange));
  filter: blur(46px);
  opacity: 0.28;
  animation: loader-glow 1600ms ease-in-out infinite alternate;
  transition:
    opacity 900ms var(--ease-premium),
    transform 1100ms var(--ease-premium);
}

.site-loader__logo {
  position: relative;
  grid-row: 1;
  z-index: 1;
  width: min(560px, 74vw);
  filter: drop-shadow(0 24px 72px rgba(0, 0, 0, 0.5));
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: loader-logo-in 900ms var(--ease-premium) 80ms forwards;
  transition:
    opacity 760ms var(--ease-premium),
    transform 900ms var(--ease-premium),
    filter 900ms var(--ease-premium);
}

.site-loader__progress {
  position: relative;
  grid-row: 2;
  z-index: 1;
  width: min(360px, 56vw);
  height: 3px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 247, 247, 0.12);
  box-shadow:
    0 0 0 1px rgba(247, 247, 247, 0.04),
    0 18px 56px rgba(255, 79, 147, 0.16);
  transition:
    opacity 680ms var(--ease-premium),
    transform 820ms var(--ease-premium);
}

.site-loader__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
  box-shadow: 0 0 28px rgba(255, 79, 147, 0.52);
  transform: translateX(-100%);
  animation: loader-progress 1250ms var(--ease-premium) forwards;
}

body.is-revealing .site-loader,
body.has-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(16px);
  transform: scale(1.025);
}

body.is-revealing .site-loader::after,
body.has-loaded .site-loader::after {
  opacity: 0.72;
}

body.is-revealing .site-loader__glow,
body.has-loaded .site-loader__glow {
  opacity: 0;
  transform: scale(1.18) rotate(18deg);
}

body.is-revealing .site-loader__logo,
body.has-loaded .site-loader__logo {
  opacity: 0;
  filter: blur(8px) drop-shadow(0 24px 72px rgba(0, 0, 0, 0.5));
  transform: translateY(-10px) scale(1.018);
}

body.is-revealing .site-loader__progress,
body.has-loaded .site-loader__progress {
  opacity: 0;
  transform: translateY(8px) scaleX(0.72);
}

@keyframes loader-logo-in {
  70% {
    opacity: 1;
    transform: translateY(0) scale(1.018);
  }

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

@keyframes loader-glow {
  from {
    transform: scale(0.92) rotate(0deg);
  }

  to {
    transform: scale(1.06) rotate(16deg);
  }
}

@keyframes loader-progress {
  0% {
    transform: translateX(-100%);
  }

  58% {
    transform: translateX(-28%);
  }

  100% {
    transform: translateX(0);
  }
}

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

img {
  height: auto;
}

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

a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.gradient-text {
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text--animated {
  display: inline-block;
  background-size: 220% 100%;
  filter: drop-shadow(0 0 22px rgba(255, 79, 147, 0.18));
  animation: gradient-text-flow 3600ms ease-in-out infinite alternate;
}

.display-serif {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.82;
}

.magnified-text {
  --lens-size: 2.25em;
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  isolation: isolate;
}

.magnified-text::after {
  content: "";
  position: absolute;
  inset: -0.12em 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle var(--lens-size) at -18% 50%, rgba(255, 255, 255, 0.88) 0 10%, rgba(255, 255, 255, 0.34) 11% 23%, rgba(255, 79, 147, 0.3) 24% 42%, rgba(123, 77, 255, 0.18) 43% 58%, transparent 62%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 18% 100%;
  background-position: 0% 50%, -24% 50%;
  opacity: 0;
  mix-blend-mode: screen;
  filter:
    brightness(1.18)
    drop-shadow(0 0 18px rgba(255, 79, 147, 0.28));
  will-change: background-position, opacity;
  animation: magnifier-sweep 4800ms cubic-bezier(0.33, 1, 0.68, 1) 700ms infinite;
}

@keyframes gradient-text-flow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes magnifier-sweep {
  0%,
  18% {
    background-position: 0% 50%, -24% 50%;
    opacity: 0;
  }

  28% {
    opacity: 0.95;
  }

  64% {
    background-position: 100% 50%, 118% 50%;
    opacity: 1;
  }

  78%,
  100% {
    background-position: 100% 50%, 118% 50%;
    opacity: 0;
  }
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  left: 50%;
  top: 16px;
  z-index: 50;
  width: min(calc(100% - 32px), var(--max-width));
  height: var(--header-height);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.72);
  padding: 0 1rem;
  overflow: visible;
  backdrop-filter: blur(18px);
  transition:
    left var(--header-motion) var(--ease-premium),
    width var(--header-motion) var(--ease-premium),
    height var(--header-motion) var(--ease-premium),
    padding var(--header-motion) var(--ease-premium),
    transform var(--header-motion) var(--ease-premium),
    border-radius var(--header-motion) var(--ease-premium),
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(3, 3, 3, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition:
    width var(--header-motion) var(--ease-premium),
    height var(--header-motion) var(--ease-premium),
    filter 420ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.4vw, 1.15rem);
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  color: rgba(247, 247, 247, 0.68);
  padding: 0 0.35rem;
  font-size: clamp(0.76rem, 0.92vw, 0.9rem);
  font-weight: 800;
  white-space: nowrap;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

@media (min-width: 921px) {
  .site-header.is-compact {
    left: 16px;
    width: 72px;
    height: 72px;
    transform: translateX(0);
    grid-template-columns: 1fr;
    border-radius: 999px;
    background: rgba(3, 3, 3, 0.78);
    padding: 0;
    overflow: hidden;
  }

  .site-header.is-compact .brand {
    justify-self: center;
  }

  .site-header.is-compact .brand__mark {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 12px 28px rgba(255, 79, 147, 0.24));
  }

  .site-header.is-compact .site-nav {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    visibility: hidden;
  }

  .site-header.is-compact:hover,
  .site-header.is-compact:focus-within {
    left: 50%;
    width: min(calc(100% - 32px), var(--max-width));
    height: var(--header-height);
    transform: translateX(-50%);
    grid-template-columns: 96px minmax(0, 1fr) 96px;
    border-radius: 8px;
    background: rgba(3, 3, 3, 0.9);
    padding: 0 1rem;
    overflow: visible;
  }

  .site-header.is-compact:hover .brand,
  .site-header.is-compact:focus-within .brand {
    justify-self: start;
  }

  .site-header.is-compact:hover .brand__mark,
  .site-header.is-compact:focus-within .brand__mark {
    width: 46px;
    height: 46px;
  }

  .site-header.is-compact:hover .site-nav,
  .site-header.is-compact:focus-within .site-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #030303;
}

.hero__fallback,
.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__fallback {
  background:
    linear-gradient(145deg, rgba(3, 3, 3, 0.6), rgba(3, 3, 3, 0.92)),
    radial-gradient(circle at 24% 28%, rgba(255, 138, 42, 0.18), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(123, 77, 255, 0.2), transparent 30%),
    #111014;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.14) contrast(1.08) brightness(1.04);
  transform: translateZ(0) scale(1.012);
  transition:
    opacity 520ms ease,
    filter 520ms ease;
  will-change: opacity, transform;
}

.hero.has-video .hero__video {
  opacity: 0.96;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.58) 0%, rgba(3, 3, 3, 0.08) 46%, rgba(3, 3, 3, 0.64) 100%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.22), rgba(3, 3, 3, 0.04), rgba(3, 3, 3, 0.22));
}

.hero__chrome {
  position: absolute;
  inset: 118px 38px 38px;
  z-index: 1;
  pointer-events: none;
}

.hero__chrome::before,
.hero__chrome::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-color: rgba(247, 247, 247, 0.24);
}

.hero__chrome::before {
  left: 0;
  top: 0;
  border-left: 1px solid;
  border-top: 1px solid;
}

.hero__chrome::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.hero__rec {
  position: absolute;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(247, 247, 247, 0.18);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.38);
  padding: 0 0.7rem;
  color: rgba(247, 247, 247, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero__rec {
  right: 0;
  top: 0;
  gap: 0.45rem;
}

.hero__rec::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 79, 147, 0.95);
}

.hero__inner {
  width: min(calc(100% - 40px), var(--max-width));
  display: grid;
  place-items: center;
  gap: 0;
  padding: 112px 0 48px;
}

.hero__brand-logo {
  width: min(860px, 86vw);
  filter: drop-shadow(0 24px 72px rgba(0, 0, 0, 0.58));
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: hero-logo-in 900ms var(--ease-premium) 180ms forwards;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 3vw, 2.2rem);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation: hero-logo-in 820ms var(--ease-premium) 520ms forwards;
}

.hero__cta-logo {
  width: clamp(105px, 12vw, 180px);
  aspect-ratio: 6689 / 1845;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.36));
  transition:
    transform 240ms var(--ease-premium),
    filter 240ms ease;
}

.hero__cta-logo:hover,
.hero__cta-logo:focus-visible {
  transform: translateY(-3px) scale(1.04);
  filter:
    drop-shadow(0 22px 52px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 24px rgba(255, 79, 147, 0.24));
}

.hero__cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes hero-logo-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__scroll-cue {
  position: relative;
  margin-top: 50px;
  width: 30px;
  height: 54px;
  display: grid;
  place-items: start center;
  opacity: 0;
  transform: translateY(10px);
  animation:
    hero-scroll-in 780ms var(--ease-premium) 820ms forwards,
    hero-scroll-drift 1800ms ease-in-out 1200ms infinite;
}

.hero__scroll-line {
  position: relative;
  width: 3px;
  height: 44px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 247, 247, 0.28);
}

.hero__scroll-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -60%;
  width: 100%;
  height: 60%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--orange), var(--pink), var(--purple));
  animation: hero-scroll-pulse 1800ms ease-in-out infinite;
}

.hero__scroll-cue::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: -3px;
  border-right: 3px solid rgba(247, 247, 247, 0.8);
  border-bottom: 3px solid rgba(247, 247, 247, 0.8);
  transform: rotate(45deg);
}

@keyframes hero-scroll-in {
  to {
    opacity: 0.86;
    transform: translateY(0);
  }
}

@keyframes hero-scroll-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 7px;
  }
}

@keyframes hero-scroll-pulse {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(270%);
  }
}

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

.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 138, 42, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(123, 77, 255, 0.16), transparent 32rem),
    linear-gradient(180deg, #030303 0%, #09090c 46%, #030303 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 96px
    );
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.055), transparent 38%),
    linear-gradient(300deg, rgba(255, 79, 147, 0.13), transparent 36%);
  opacity: 0.68;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(247, 247, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 247, 247, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  opacity: 0.2;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(1.6rem, 5vw, 4.4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4.8vw, 4.25rem);
}

.services-intro h2,
.services-intro p,
.services-spotlight h3,
.services-spotlight p,
.service-card h3,
.service-card p {
  margin-top: 0;
}

.services-kicker,
.service-card__eyebrow,
.services-spotlight__content > span {
  color: rgba(247, 247, 247, 0.64);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(247, 247, 247, 0.12);
  border-radius: 999px;
  background: rgba(247, 247, 247, 0.05);
  padding: 0.48rem 0.78rem;
}

.services-kicker::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  box-shadow: 0 0 24px rgba(255, 79, 147, 0.58);
}

.services-intro h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.35rem, 5.6vw, 6.2rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.9;
}

.services-intro h2 {
  margin-top: 1.05rem;
}

.services-intro p {
  max-width: 470px;
  margin-bottom: 0.22rem;
  color: rgba(247, 247, 247, 0.66);
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  line-height: 1.64;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.services-spotlight {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(247, 247, 247, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 10, 0.9);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.services-spotlight::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 147, 0.68), transparent);
  opacity: 0.7;
}

.services-spotlight__media {
  position: relative;
  min-height: clamp(280px, 36vw, 430px);
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 79, 147, 0.2), transparent 36%),
    rgba(247, 247, 247, 0.05);
}

.services-spotlight__media::before,
.services-spotlight__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.services-spotlight__media::before {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.04) 0%, rgba(3, 3, 3, 0.12) 46%, rgba(3, 3, 3, 0.74) 100%),
    linear-gradient(120deg, rgba(255, 138, 42, 0.16), transparent 42%, rgba(123, 77, 255, 0.14));
}

.services-spotlight__media::after {
  inset: 1rem;
  border: 1px solid rgba(247, 247, 247, 0.13);
  border-radius: 6px;
}

.services-spotlight__media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08) brightness(0.86);
  transform: scale(1.04);
}

.services-spotlight__content {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.25rem, 2.8vw, 2rem);
}

.services-spotlight h3 {
  max-width: 490px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.02;
}

.services-spotlight p {
  max-width: 520px;
  margin-bottom: 0.2rem;
  color: rgba(247, 247, 247, 0.68);
  font-size: 0.98rem;
  line-height: 1.62;
}

.services-spotlight a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  border: 1px solid rgba(255, 79, 147, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 138, 42, 0.14), rgba(255, 79, 147, 0.12), rgba(123, 77, 255, 0.14)),
    rgba(247, 247, 247, 0.055);
  padding: 0.78rem 0.95rem;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 850;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-premium);
}

.services-spotlight a::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.service-card {
  --accent: var(--orange);
  --accent-rgb: 255, 138, 42;
  --accent-2: var(--pink);
  --accent-2-rgb: 255, 79, 147;
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--accent-rgb), 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.032)),
    rgba(8, 8, 10, 0.92);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: clamp(1.15rem, 2.6vw, 1.75rem);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card:nth-child(1) {
  --accent: var(--orange);
  --accent-rgb: 255, 138, 42;
  --accent-2: var(--pink);
  --accent-2-rgb: 255, 79, 147;
}

.service-card:nth-child(2) {
  --accent: var(--pink);
  --accent-rgb: 255, 79, 147;
  --accent-2: #ffcf4d;
  --accent-2-rgb: 255, 207, 77;
}

.service-card:nth-child(3) {
  --accent: var(--purple);
  --accent-rgb: 123, 77, 255;
  --accent-2: #35d0ff;
  --accent-2-rgb: 53, 208, 255;
}

.service-card:nth-child(4) {
  --accent: #35d0ff;
  --accent-rgb: 53, 208, 255;
  --accent-2: var(--orange);
  --accent-2-rgb: 255, 138, 42;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent 82%);
  opacity: 0.88;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -26%;
  z-index: 0;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 68%);
  pointer-events: none;
}

.service-card__top,
.service-card h3,
.service-card p,
.service-card ul {
  position: relative;
  z-index: 1;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card__number {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-2-rgb), 0.11)),
    rgba(255, 255, 255, 0.055);
  color: rgba(247, 247, 247, 0.86);
  font-size: 0.76rem;
  font-weight: 850;
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.12);
}

.service-card__eyebrow {
  text-align: right;
}

.service-card h3 {
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 0 34px rgba(var(--accent-rgb), 0.22);
}

.service-card p {
  margin-bottom: 0;
  color: rgba(247, 247, 247, 0.67);
  font-size: 0.96rem;
  line-height: 1.58;
}

.service-card ul {
  display: grid;
  gap: 0.62rem;
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(247, 247, 247, 0.78);
  font-size: 0.84rem;
  font-weight: 760;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.42);
}

.services-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  border: 1px solid rgba(247, 247, 247, 0.1);
  border-radius: 8px;
  background: rgba(247, 247, 247, 0.08);
}

.services-flow span {
  min-height: 112px;
  display: grid;
  align-content: end;
  gap: 0.42rem;
  background:
    linear-gradient(135deg, rgba(247, 247, 247, 0.052), rgba(247, 247, 247, 0.018)),
    rgba(3, 3, 3, 0.72);
  color: rgba(247, 247, 247, 0.54);
  padding: 1rem;
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.34;
}

.services-flow strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 860;
}

@media (hover: hover) and (pointer: fine) {
  .services-spotlight a:hover,
  .services-spotlight a:focus-visible {
    border-color: rgba(255, 79, 147, 0.58);
    box-shadow: 0 18px 62px rgba(255, 79, 147, 0.18);
    transform: translateY(-2px);
  }

  .service-card:hover {
    border-color: rgba(var(--accent-rgb), 0.36);
    box-shadow:
      0 30px 96px rgba(0, 0, 0, 0.34),
      0 0 90px rgba(var(--accent-rgb), 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
  }
}

.trust-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--black);
  padding: clamp(3.2rem, 5.8vw, 4.8rem) 0;
}

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

.trust-section h2 {
  margin: 0;
  font-family: var(--font-sans);
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.94;
}

.trust-marquee {
  position: relative;
  margin-top: clamp(2rem, 3.8vw, 3rem);
  overflow: hidden;
}

.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 150px);
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.trust-marquee__track {
  width: max-content;
  display: flex;
  animation: trust-marquee-scroll 34s linear infinite;
  will-change: transform;
}

.trust-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(1.6rem, 3.4vw, 2.9rem);
  padding-right: clamp(1.6rem, 3.4vw, 2.9rem);
}

.trust-logo {
  flex: 0 0 auto;
  width: clamp(172px, 18vw, 238px);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
}

.trust-logo img {
  width: 168px;
  max-width: 100%;
  height: 66px;
  object-fit: contain;
  opacity: 1;
  transform: translateZ(0);
}

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

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

.method-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin-top: -1px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 138, 42, 0.18), transparent 34rem),
    radial-gradient(circle at 52% 10%, rgba(255, 79, 147, 0.16), transparent 36rem),
    radial-gradient(circle at 86% 16%, rgba(123, 77, 255, 0.2), transparent 36rem),
    linear-gradient(135deg, #030303 0%, #12070c 34%, #16091a 66%, #070611 100%);
  color: var(--white);
  padding: clamp(4.75rem, 8.5vw, 7.5rem) 0 clamp(5rem, 10vw, 9rem);
}

.method-section::before {
  content: none;
}

.method-section::after {
  content: none;
}

.method-section__inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.method-section__intro {
  position: sticky;
  top: clamp(96px, 8vw, 120px);
  align-self: start;
  height: max-content;
  max-width: 430px;
}

.method-section__intro h2 {
  max-width: 430px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.94;
}

.method-section__intro > p {
  margin: 1.35rem 0 0;
  color: rgba(247, 247, 247, 0.62);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.method-timeline {
  --method-progress: 0;
  grid-column: 2;
  position: relative;
  display: grid;
  gap: clamp(0.55rem, 1.2vw, 0.95rem);
  padding: 0.2rem 0 0.75rem;
}

.method-timeline::before,
.method-timeline::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 2.2rem;
  bottom: 2.2rem;
  width: 1px;
  transform: translateX(-50%);
  pointer-events: none;
}

.method-timeline::before {
  background: rgba(247, 247, 247, 0.14);
}

.method-timeline::after {
  transform: translateX(-50%) scaleY(var(--method-progress));
  transform-origin: top;
  background: linear-gradient(180deg, var(--orange), var(--pink), var(--purple));
  box-shadow: 0 0 28px rgba(255, 79, 147, 0.42);
}

.method-step {
  --method-parallax: 0px;
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  align-items: start;
  padding-left: 64px;
  opacity: 0;
  transform: translate3d(0, calc(30px + var(--method-parallax)), 0);
  transition:
    opacity 680ms var(--ease-premium);
  will-change: opacity, transform;
}

.method-step.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--method-parallax), 0);
}

.method-step__bubble {
  grid-column: 1;
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  border: 1px solid rgba(247, 247, 247, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(247, 247, 247, 0.1), rgba(247, 247, 247, 0.035)),
    rgba(3, 3, 3, 0.7);
  color: var(--white);
  padding: 0.72rem 1rem;
  font: inherit;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 820;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition:
    border-color 620ms ease,
    box-shadow 620ms ease,
    transform 620ms ease,
    background 620ms ease;
}

.method-step__bubble span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
}

.method-step__detail {
  grid-column: 1;
  justify-self: start;
  width: min(100%, 520px);
  max-height: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(247, 247, 247, 0);
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition:
    max-height 1400ms cubic-bezier(0.19, 1, 0.22, 1),
    padding 1300ms cubic-bezier(0.19, 1, 0.22, 1),
    background 900ms ease,
    opacity 980ms ease,
    transform 1200ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 900ms ease;
}

.method-step:nth-child(even) .method-step__detail {
  grid-column: 1;
  justify-self: start;
  transform: translateY(-8px) scale(0.98);
}

.method-step__detail p {
  margin: 0;
  color: rgba(247, 247, 247, 0.68);
}

.method-step:hover .method-step__bubble,
.method-step:focus-within .method-step__bubble,
.method-step.is-active .method-step__bubble {
  border-color: rgba(255, 79, 147, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 138, 42, 0.16), rgba(123, 77, 255, 0.16)),
    rgba(3, 3, 3, 0.82);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.3),
    0 0 70px rgba(255, 79, 147, 0.16);
  transform: translateY(-3px);
}

.method-step:hover .method-step__detail,
.method-step:focus-within .method-step__detail,
.method-step.is-active .method-step__detail {
  max-height: 190px;
  background: rgba(247, 247, 247, 0.08);
  padding: 1rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  border-color: rgba(247, 247, 247, 0.2);
}

.portfolio-section {
  background: #fff;
  color: var(--black);
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(5.5rem, 10vw, 9rem);
}

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

.portfolio-section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.portfolio-section h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.9rem, 7.5vw, 7.2rem);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.88;
}

.portfolio-section__header > p {
  margin: 0;
  color: rgba(3, 3, 3, 0.62);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.portfolio-gallery {
  column-count: 3;
  column-gap: clamp(0.9rem, 2vw, 1.35rem);
}

.portfolio-card {
  position: relative;
  display: inline-grid;
  width: 100%;
  margin: 0 0 clamp(0.9rem, 2vw, 1.35rem);
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(3, 3, 3, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(3, 3, 3, 0.08);
  isolation: isolate;
  transition:
    transform 360ms var(--ease-premium),
    box-shadow 360ms ease,
    border-color 360ms ease;
}

.portfolio-card__media {
  --media-ratio: 4 / 5;
  position: relative;
  display: grid;
  aspect-ratio: var(--media-ratio);
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 138, 42, 0.14), rgba(255, 79, 147, 0.1), rgba(123, 77, 255, 0.13)),
    #f4f4f4;
}

.portfolio-card__media::before,
.portfolio-card__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.portfolio-card__media::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.02) 0%, rgba(3, 3, 3, 0.06) 48%, rgba(3, 3, 3, 0.18) 100%),
    linear-gradient(135deg, rgba(255, 138, 42, 0.1), transparent 44%, rgba(123, 77, 255, 0.12));
  opacity: 0.62;
  transition: opacity 360ms ease;
}

.portfolio-card__media::after {
  inset: 18px 18px auto auto;
  width: 52px;
  height: 52px;
  border-top: 1px solid rgba(247, 247, 247, 0.38);
  border-right: 1px solid rgba(247, 247, 247, 0.38);
  opacity: 0.72;
}

.portfolio-card__media span {
  position: relative;
  z-index: 1;
  color: rgba(3, 3, 3, 0.58);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-card__media img,
.portfolio-card__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
  transition:
    transform 620ms var(--ease-premium),
    filter 420ms ease;
}

.portfolio-card__content {
  position: relative;
  padding: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--black);
  transform: translateY(0);
  transition:
    transform 360ms var(--ease-premium),
    opacity 360ms ease;
}

.portfolio-card__content span {
  display: inline-flex;
  margin-bottom: 0.95rem;
  color: rgba(3, 3, 3, 0.42);
  font-size: 0.76rem;
  font-weight: 850;
}

.portfolio-card__content h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 840;
  letter-spacing: 0;
}

.portfolio-card__content p {
  margin: 0.85rem 0 0;
  color: rgba(3, 3, 3, 0.58);
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 79, 147, 0.24);
    box-shadow:
      0 34px 96px rgba(3, 3, 3, 0.16),
      0 0 80px rgba(255, 79, 147, 0.1);
  }

  .portfolio-card:hover .portfolio-card__media::before {
    opacity: 0.32;
  }

  .portfolio-card:hover .portfolio-card__media img,
  .portfolio-card:hover .portfolio-card__media video {
    filter: saturate(1.12) contrast(1.05);
    transform: scale(1.035);
  }

  .portfolio-card:hover .portfolio-card__content {
    transform: translateY(-6px);
  }
}

.contact-section {
  background:
    radial-gradient(circle at 48% 16%, rgba(255, 79, 147, 0.16), transparent 34%),
    radial-gradient(circle at 12% 28%, rgba(255, 138, 42, 0.14), transparent 34%),
    radial-gradient(circle at 88% 32%, rgba(123, 77, 255, 0.2), transparent 36%),
    #030303;
  color: var(--white);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.contact-section__inner {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  text-align: center;
}

.contact-section__header h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.9;
}

.contact-section__header p {
  max-width: 620px;
  margin: 1.2rem auto 0;
  color: rgba(247, 247, 247, 0.64);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.contact-card {
  max-width: 620px;
  margin: clamp(2.8rem, 6vw, 4.5rem) auto 0;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-actions a {
  aspect-ratio: 1;
  min-height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 247, 247, 0.12);
  border-radius: 8px;
  background: rgba(247, 247, 247, 0.06);
  color: var(--white);
  padding: 1rem;
  backdrop-filter: blur(18px);
  transition:
    transform 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.contact-actions a svg {
  width: clamp(30px, 4.4vw, 42px);
  height: clamp(30px, 4.4vw, 42px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.contact-actions a svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.contact-actions a:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 147, 0.42);
  background: rgba(247, 247, 247, 0.1);
  color: var(--pink);
  box-shadow: 0 22px 70px rgba(255, 79, 147, 0.12);
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem 2rem;
  background: #030303;
  color: rgba(247, 247, 247, 0.58);
  text-align: center;
}

.site-footer__seo {
  width: min(calc(100% - 40px), 840px);
  display: grid;
  gap: 0.45rem;
  padding: 0;
  text-align: center;
  opacity: 0.42;
}

.site-footer__seo h2 {
  max-width: none;
  margin: 0;
  color: rgba(247, 247, 247, 0.62);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.25;
}

.site-footer__seo p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 247, 247, 0.48);
  font-size: 0.66rem;
  font-weight: 460;
  line-height: 1.5;
}

.site-footer__seo ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__seo li {
  color: rgba(247, 247, 247, 0.44);
  font-size: 0.62rem;
  font-weight: 650;
}

.site-footer__mark {
  width: clamp(82px, 10vw, 112px);
  height: clamp(82px, 10vw, 112px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 247, 247, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(247, 247, 247, 0.12), rgba(247, 247, 247, 0.04)),
    rgba(3, 3, 3, 0.78);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    0 0 80px rgba(255, 79, 147, 0.18);
  backdrop-filter: blur(18px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-footer__mark:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 79, 147, 0.42);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    0 0 86px rgba(255, 79, 147, 0.26);
}

.site-footer__mark img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.site-footer > p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

  .hero__brand-logo {
    opacity: 1;
    transform: none;
  }

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

  .site-loader__glow,
  .site-loader__logo,
  .site-loader__progress span,
  .gradient-text--animated,
  .magnified-text::after {
    animation: none;
  }

  .magnified-text::after {
    display: none;
  }

  .site-loader__logo {
    opacity: 1;
    transform: none;
  }

  .site-loader__progress span {
    transform: none;
  }

  .trust-marquee {
    overflow: visible;
  }

  .trust-marquee::before,
  .trust-marquee::after {
    display: none;
  }

  .trust-marquee__track {
    width: 100%;
    animation: none;
  }

  .trust-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .trust-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .method-timeline::after {
    transform: translateX(-50%) scaleY(1);
  }

  .method-step {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  body.is-loading main,
  body.is-loading .site-footer,
  body.is-loading .site-header {
    filter: none;
  }

  body.has-loaded main,
  body.has-loaded .site-footer,
  body.has-loaded .site-header {
    filter: none;
    transition-duration: 720ms;
  }

  .site-header {
    height: 68px;
    grid-template-columns: auto minmax(0, 1fr);
    background: rgba(3, 3, 3, 0.88);
    backdrop-filter: none;
  }

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

  .site-nav {
    justify-content: flex-start;
    gap: 0.85rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    min-height: 34px;
    font-size: 0.78rem;
  }

  .hero__chrome {
    inset: 106px 24px 30px;
  }

  .hero__video {
    filter: none;
    transform: none;
    will-change: opacity;
  }

  .hero__brand-logo {
    width: min(760px, 88vw);
  }

  .hero__cta-logo {
    width: clamp(92px, 15vw, 150px);
  }

  .services-intro,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-intro h2 {
    max-width: 680px;
    font-size: clamp(2.2rem, 8vw, 4.2rem);
  }

  .services-intro p {
    max-width: 620px;
  }

  .services-spotlight__media {
    min-height: clamp(260px, 48vw, 390px);
  }

  .service-card {
    min-height: auto;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    transition: border-color 180ms ease;
  }

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

  .method-section__inner {
    display: block;
  }

  .method-section__intro {
    position: relative;
    top: auto;
    height: auto;
    max-width: 720px;
    margin-bottom: clamp(2rem, 6vw, 3.5rem);
    transform: none;
  }

  .method-step {
    grid-template-columns: 1fr;
  }

  .method-timeline {
    grid-column: auto;
  }

  .method-timeline::before,
  .method-timeline::after {
    left: 24px;
  }

  .method-step {
    min-height: auto;
    gap: 0.8rem;
    padding-left: 56px;
    transform: none;
    will-change: opacity;
  }

  .method-step.is-visible {
    transform: none;
  }

  .method-step__bubble,
  .method-step__detail {
    width: 100%;
  }

  .portfolio-section__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .portfolio-gallery {
    column-count: 2;
  }

  .contact-actions {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero__inner,
  .section-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero__chrome {
    display: none;
  }

  .hero__brand-logo {
    width: min(520px, 90vw);
  }

  .hero__inner {
    gap: 0;
  }

  .hero__ctas {
    margin-top: 12px;
    gap: 0.85rem;
  }

  .hero__cta-logo {
    width: min(28vw, 132px);
  }

  .services-section {
    background: linear-gradient(180deg, #030303 0%, #09090c 46%, #030303 100%);
    padding: 3.25rem 0 4.5rem;
  }

  .services-section::before {
    opacity: 0.45;
  }

  .services-section::after {
    display: none;
  }

  .services-intro {
    gap: 1.1rem;
    margin-bottom: 1.65rem;
  }

  .services-intro h2 {
    font-size: clamp(2.05rem, 12vw, 3.35rem);
  }

  .services-intro p,
  .services-spotlight p {
    font-size: 0.94rem;
  }

  .services-grid,
  .services-flow {
    grid-template-columns: 1fr;
  }

  .services-spotlight__media {
    min-height: clamp(230px, 64vw, 330px);
  }

  .services-spotlight__content,
  .service-card {
    padding: 1.1rem;
  }

  .services-spotlight h3,
  .service-card h3 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  .service-card__top {
    align-items: flex-start;
  }

  .service-card__eyebrow {
    max-width: 11rem;
  }

  .services-flow span {
    min-height: auto;
  }

  .trust-section {
    padding: 2.8rem 0;
  }

  .trust-section__inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .trust-marquee {
    overflow: visible;
  }

  .trust-marquee::before,
  .trust-marquee::after {
    display: none;
  }

  .trust-marquee__track {
    width: 100%;
    animation: none;
  }

  .trust-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .trust-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .trust-logo {
    width: 150px;
    height: 76px;
    padding: 0.45rem 0.65rem;
  }

  .trust-logo img {
    width: 128px;
    height: 52px;
  }

  .method-section {
    padding: 4.25rem 0 4.5rem;
  }

  .method-section__inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .method-section__intro h2 {
    font-size: clamp(2rem, 10vw, 3.55rem);
  }

  .method-step {
    padding-left: 46px;
  }

  .method-timeline::before,
  .method-timeline::after {
    left: 18px;
  }

  .method-step__bubble {
    min-height: 66px;
    gap: 0.65rem;
    padding: 0.78rem 0.92rem;
  }

  .method-step__bubble span {
    width: 30px;
    height: 30px;
  }

  .portfolio-section {
    padding: 4.4rem 0 5rem;
  }

  .portfolio-section__inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .portfolio-section h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .portfolio-gallery {
    column-count: 1;
  }

  .contact-section {
    padding: 4.5rem 0;
  }

  .contact-section__inner {
    width: min(calc(100% - 28px), 920px);
  }

  .contact-section__header h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .contact-actions {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .contact-actions a {
    min-height: 54px;
    padding: 0.72rem;
  }

  .site-footer__seo {
    width: min(calc(100% - 28px), 980px);
  }
}
