:root {
  --bg: #090d14;
  --bg-soft: #0f1622;
  --panel: #111b2a;
  --panel-strong: #0f1826;
  --ink: #f4f1e9;
  --muted: #c8c0b1;
  --line: #28364a;
  --line-soft: #31445f;
  --accent: #ff7a21;
  --accent-soft: #ffb074;
  --accent-cool: #5ec8ff;
  --max: 1160px;
  --radius: 14px;
  --shadow: 0 16px 42px rgb(0 0 0 / 35%);
  --shadow-soft: 0 10px 26px rgb(0 0 0 / 22%);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #090d14;
}
body {
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(1000px 560px at -12% -14%, #22334f 0%, transparent 68%),
    radial-gradient(900px 500px at 112% -4%, #3a2216 0%, transparent 66%),
    linear-gradient(180deg, #0a0f17 0%, #090d14 62%, #090c12 100%);
  line-height: 1.65;
  position: relative;
  opacity: 1;
  transform: none;
  transition: opacity .24s ease, transform .24s ease;
  letter-spacing: .002em;
  min-height: 100vh;
}
body.page-enter {
  opacity: 0;
  transform: translateY(8px);
}
body.page-leave {
  opacity: 0;
  transform: translateY(10px);
}
body::before,
body::after {
  content: "";
  position: fixed;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
  z-index: -1;
}
body::before {
  left: -12vw;
  top: 10vh;
  background: rgb(88 130 201 / 13%);
  animation: drift-a 12s ease-in-out infinite alternate;
}
body::after {
  right: -14vw;
  bottom: 3vh;
  background: rgb(255 122 33 / 10%);
  animation: drift-b 14s ease-in-out infinite alternate;
}
body > * {
  position: relative;
  z-index: 1;
}
body::selection {
  background: rgb(255 122 33 / 32%);
  color: #fffaf3;
}
body.home-page main {
  position: relative;
}
body.home-page main::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .045;
  background-image:
    radial-gradient(rgb(255 255 255 / 100%) .5px, transparent .5px);
  background-size: 3px 3px;
}
img { max-width: 100%; display: block; }
img.media-pending {
  opacity: .001;
  filter: blur(10px) saturate(.92);
  transform: scale(1.012);
}
img.media-ready {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: scale(1);
  transition: opacity .56s ease, filter .62s ease, transform .68s ease;
}
.parallax-track {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.magnetic-target {
  will-change: transform;
  transition: transform .16s ease;
}

.cursor-dot,
.cursor-ring {
  display: none;
}
@media (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: none;
  }
  .cursor-dot,
  .cursor-ring {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1200;
    transform: translate(-50%, -50%);
  }
  .cursor-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffb074;
    box-shadow: 0 0 16px rgb(255 122 33 / 42%);
  }
  .cursor-ring {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgb(255 122 33 / 55%);
    background: rgb(255 122 33 / 7%);
    transition: width .18s ease, height .18s ease, border-color .18s ease, background .18s ease;
  }
  .cursor-ring.is-active {
    width: 42px;
    height: 42px;
    border-color: rgb(255 176 116 / 85%);
    background: rgb(255 122 33 / 14%);
  }
}

.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgb(9 13 20 / 92%), rgb(9 13 20 / 82%));
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  backdrop-filter: blur(12px) saturate(120%);
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.site-header.is-condensed {
  background: linear-gradient(180deg, rgb(9 13 20 / 96%), rgb(9 13 20 / 90%));
  border-bottom-color: rgb(255 255 255 / 18%);
  box-shadow: 0 10px 28px rgb(0 0 0 / 32%);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  transition: min-height .22s ease;
}
.site-header.is-condensed .nav-wrap {
  min-height: 68px;
}
.brand img {
  width: clamp(150px, 17vw, 194px);
  transition: transform .25s ease;
}
.brand:hover img { transform: translateY(-1px); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-size: .82rem;
  font-weight: 600;
  position: relative;
  transition: color .2s ease;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: #fff; }

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--ink);
  padding: .66rem 1rem;
  border-radius: 999px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  background: linear-gradient(180deg, rgb(255 122 33 / 12%), rgb(255 122 33 / 0%));
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.btn:hover {
  background: var(--accent);
  color: #17110c;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgb(255 122 33 / 28%);
}
.btn-ghost {
  border-color: rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 4%);
  color: #ece3d4;
}
.btn-ghost:hover {
  border-color: var(--accent-soft);
  color: #17110c;
}
.hero-link {
  color: #e7ddcd;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .68rem;
  font-weight: 800;
  border-bottom: 1px solid rgb(255 122 33 / 45%);
  padding-bottom: .2rem;
  transition: color .2s ease, border-color .2s ease;
}
.hero-link:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}
.btn:focus-visible,
.nav-links a:focus-visible,
.work-card:focus-visible,
.floating-contact:focus-visible,
.mobile-sticky-cta:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  padding: 0;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
}

h1, h2, h3, h4 {
  font-family: "CastingHaus", "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin: 0 0 .8rem;
  text-wrap: balance;
}
h1 {
  font-size: clamp(1.8rem, 4.6vw, 3.8rem);
  max-width: 18ch;
}
h2 {
  font-size: clamp(1.45rem, 3.5vw, 2.55rem);
  margin-bottom: 1.1rem;
}
h3 { font-size: clamp(1.02rem, 2vw, 1.24rem); }
p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 78ch;
  line-height: 1.72;
}
main p a,
main li a,
.related-links a {
  color: var(--accent);
  text-decoration-color: rgb(255 122 33 / 50%);
  text-underline-offset: .16em;
  transition: color .2s ease, text-decoration-color .2s ease;
}
main p a:hover,
main li a:hover,
.related-links a:hover {
  color: var(--accent-soft);
  text-decoration-color: var(--accent-soft);
}

.hero {
  padding: clamp(5.4rem, 9vw, 7.2rem) 0 3.5rem;
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 320px;
  z-index: -1;
  background:
    radial-gradient(46% 100% at 16% 25%, rgb(94 200 255 / 14%) 0%, transparent 75%),
    radial-gradient(48% 95% at 82% 28%, rgb(255 122 33 / 14%) 0%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgb(255 255 255 / 22%) 20%, rgb(255 122 33 / 40%) 50%, rgb(255 255 255 / 22%) 80%, transparent 100%);
  pointer-events: none;
}
.hero p:last-of-type {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  max-width: 84ch;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(1.8rem, 3.6vw, 3.4rem);
  align-items: start;
}
.hero-copy {
  text-align: left;
  max-width: 54ch;
}
.hero-copy .btn {
  margin-top: .5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem;
  margin-top: .6rem;
  align-items: center;
}
.hero-media {
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem;
  background:
    linear-gradient(165deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 1%)),
    radial-gradient(120% 120% at 100% 0%, rgb(94 200 255 / 13%) 0%, transparent 62%),
    radial-gradient(130% 120% at 0% 100%, rgb(255 122 33 / 10%) 0%, transparent 68%);
  box-shadow: 0 14px 34px rgb(0 0 0 / 30%), inset 0 1px 0 rgb(255 255 255 / 8%);
  display: grid;
  gap: .75rem;
}
.hero-media-label {
  margin: 0;
  color: #f0dfc4;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .64rem;
  font-weight: 700;
}
.hero-video-frame {
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 18%);
  overflow: hidden;
  background: #050810;
  position: relative;
  box-shadow: 0 16px 30px rgb(0 0 0 / 34%);
}
.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgb(255 255 255 / 0%) 25%, rgb(255 255 255 / 13%) 48%, rgb(255 255 255 / 0%) 70%),
    linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 0%));
  transform: translateX(-100%);
  animation: media-shimmer 1.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(255 255 255 / 8%) 0%, rgb(255 255 255 / 0%) 20%);
}
.hero-video-frame.is-loaded::before {
  opacity: 0;
  animation: none;
}
.hero-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.hero-video-fallback {
  margin: .08rem 0 0;
  display: flex;
  justify-content: flex-start;
}
.hero-video-fallback .btn {
  width: auto;
  text-align: center;
  padding-inline: 1.1rem;
}
.hero-video-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .44rem;
  padding: .42rem;
  border-radius: 11px;
  border: 1px solid rgb(255 255 255 / 12%);
  background: linear-gradient(180deg, rgb(5 8 13 / 70%), rgb(5 8 13 / 42%));
}
.hero-video-tab {
  appearance: none;
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 4%);
  color: #eadfce;
  border-radius: 999px;
  padding: .5rem .72rem;
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-video-tab:hover {
  border-color: rgb(255 122 33 / 55%);
  background: rgb(255 122 33 / 13%);
}
.hero-video-tab.is-active {
  color: #18120e;
  background: linear-gradient(180deg, #ff9a50, var(--accent));
  border-color: #ffb074;
  box-shadow: 0 8px 18px rgb(255 122 33 / 32%);
}
.hero-media-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 16%);
  text-decoration: none;
  color: #fff;
}
.hero-media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
  filter: saturate(1.02) contrast(1.03);
}
.hero-media-card span {
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .58rem;
  z-index: 2;
  font-size: .71rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 2px 10px rgb(0 0 0 / 55%);
}
.hero-media-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgb(5 8 12 / 88%) 100%);
}
.hero-media-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.06);
}
.hero-kicker {
  border-top: 1px solid rgb(255 255 255 / 15%);
  padding-top: .68rem;
}
.hero-kicker p {
  margin: 0;
  max-width: none;
  color: #e6ddcf;
  font-size: .74rem;
}
.hero-kicker p + p {
  margin-top: .42rem;
}
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--accent-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .72rem;
}

.home-page .hero {
  text-align: left;
}
.home-page .hero h1 {
  max-width: 18ch;
  font-size: clamp(1.92rem, 3.85vw, 3.22rem);
  letter-spacing: -.02em;
  text-shadow: 0 2px 20px rgb(0 0 0 / 24%);
}
.home-page .hero p {
  max-width: 44ch;
  font-size: clamp(.98rem, 1.22vw, 1.08rem);
  line-height: 1.62;
}
.home-page .hero .btn {
  margin-top: .54rem;
}
.home-page .section > h2,
.home-page .section > p {
  text-align: center;
  margin-inline: auto;
}
.home-page .section > h2 {
  position: static;
  display: block;
  left: auto;
  transform: none;
  padding: 0 .2rem .52rem;
}
.home-page .section > h2::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgb(255 122 33 / 0%) 0%, rgb(255 122 33 / 58%) 50%, rgb(255 122 33 / 0%) 100%);
}
.home-page #about {
  max-width: var(--max);
  margin-inline: auto;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.about-card {
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  background:
    linear-gradient(165deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 1%)),
    radial-gradient(120% 130% at 100% 0%, rgb(94 200 255 / 10%) 0%, transparent 62%);
  box-shadow: var(--shadow-soft);
}
.about-card h2 {
  position: relative;
  text-align: left;
  margin: 0 0 .7rem;
  padding: 0 0 .42rem;
}
.about-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 35%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgb(94 200 255 / 48%) 0%, rgb(255 122 33 / 40%) 65%, rgb(255 122 33 / 0%) 100%);
}
.about-card p {
  text-align: left;
  max-width: none;
}
.about-card p + p {
  margin-top: .36rem;
}
.home-page .credits-list {
  max-width: 900px;
  margin-inline: auto;
}

.logo-strip {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 1.18rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgb(255 255 255 / 3%), rgb(255 255 255 / 0%));
  box-shadow: var(--shadow-soft);
}
.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(30px, 5vw, 64px);
  z-index: 2;
  pointer-events: none;
}
.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgb(9 13 20 / 92%) 0%, rgb(9 13 20 / 0%) 100%);
}
.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgb(9 13 20 / 92%) 0%, rgb(9 13 20 / 0%) 100%);
}
.logo-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 94s linear infinite;
}
.logo-strip:hover .logo-track,
.logo-strip:focus-within .logo-track {
  animation-play-state: paused;
}
.logo-row {
  display: flex;
  align-items: center;
  gap: clamp(.3rem, .75vw, .6rem);
  padding-right: clamp(.3rem, .75vw, .6rem);
}
.logo-slot {
  flex: 0 0 clamp(128px, 11.9vw, 160px);
  width: clamp(128px, 11.9vw, 160px);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(.28rem, .75vw, .65rem);
}
.logo-slot img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: .92;
  filter: saturate(.95) contrast(1.02);
  transition: transform .26s ease, filter .26s ease;
}
.logo-slot img:hover {
  transform: translateY(-2px);
  filter: saturate(1.16) contrast(1.06);
  opacity: 1;
}
.section {
  border-top: 1px solid var(--line);
  padding: 4.5rem 0;
  position: relative;
  overflow: clip;
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}
.home-page main > section.section:nth-of-type(odd) {
  padding-top: 4rem;
  padding-bottom: 3.3rem;
}
.home-page main > section.section:nth-of-type(even) {
  padding-top: 3.25rem;
  padding-bottom: 4rem;
}
.section.compact { padding-top: 2.8rem; }
.section::before {
  content: "";
  position: absolute;
  inset: 18% -18% auto -18%;
  height: 120px;
  background: radial-gradient(50% 100% at 50% 0%, rgb(255 255 255 / 5%) 0%, transparent 75%);
  pointer-events: none;
}
.home-page .section + .section {
  border-top-color: rgb(255 255 255 / 10%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.home-page #work {
  border: 1px solid rgb(255 122 33 / 26%);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 3.7vw, 2.9rem) clamp(.95rem, 2.1vw, 1.45rem);
  background:
    linear-gradient(180deg, rgb(255 122 33 / 8%), rgb(255 255 255 / 1%)),
    radial-gradient(130% 150% at 0% 0%, rgb(255 122 33 / 14%) 0%, transparent 62%);
  box-shadow: 0 14px 30px rgb(0 0 0 / 20%);
}
.home-page #work .work-layout {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: 1rem 1.2rem;
  align-items: start;
}
.home-page #work .work-intro {
  border: 1px solid rgb(255 122 33 / 30%);
  border-radius: calc(var(--radius) - 1px);
  padding: 1.05rem 1.02rem 1.08rem;
  background:
    linear-gradient(170deg, rgb(255 122 33 / 16%), rgb(255 255 255 / 2%)),
    radial-gradient(130% 140% at 0% 0%, rgb(255 122 33 / 18%) 0%, transparent 60%);
}
.home-page #work .work-intro h2 {
  position: relative;
  text-align: left;
  margin: 0 0 .7rem;
  padding: 0 0 .44rem;
  font-size: clamp(1.35rem, 2.4vw, 2.12rem);
}
.home-page #work .work-intro h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 35%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgb(255 122 33 / 62%) 0%, rgb(255 122 33 / 18%) 100%);
}
.home-page #work .work-intro p {
  text-align: left;
  max-width: none;
  margin: 0;
}
#work .service-grid {
  counter-reset: service-pillars;
  grid-template-columns: 1fr;
  gap: .76rem;
}
#work .service-grid article {
  position: relative;
  padding: 1.02rem 1.02rem 1rem 3.14rem;
  border-color: rgb(255 122 33 / 30%);
  background: linear-gradient(160deg, rgb(255 122 33 / 11%), rgb(255 255 255 / 1%));
}
#work .service-grid article::before {
  counter-increment: service-pillars;
  content: counter(service-pillars);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.34rem;
  height: 1.34rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgb(255 176 116 / 62%);
  background: rgb(255 122 33 / 16%);
  color: #ffe9cd;
  font-family: "CastingHaus", "Oswald", "Arial Narrow", sans-serif;
  font-size: .74rem;
  line-height: 1;
}
#work .service-grid article::after {
  content: "";
  position: absolute;
  left: 1.66rem;
  top: 2.5rem;
  bottom: .9rem;
  width: 1px;
  background: linear-gradient(180deg, rgb(255 176 116 / 50%) 0%, rgb(255 176 116 / 0%) 100%);
}
#work .service-grid article:last-child::after {
  display: none;
}
#work .service-grid article h3 {
  margin: .04rem 0 .45rem;
}
#work .service-grid article p:last-child {
  margin-bottom: 0;
}
.service-grid article,
.work-card,
.team-card,
.project-shell {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgb(255 255 255 / 3%), rgb(255 255 255 / 0%));
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgb(255 255 255 / 5%) inset;
}
.service-grid article {
  padding: 1.18rem;
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), border-color .22s ease, box-shadow .22s ease;
  border-color: rgb(255 122 33 / 24%);
  background: linear-gradient(160deg, rgb(255 122 33 / 9%), rgb(255 255 255 / 0%));
}
.service-grid article:hover {
  transform: translateY(-1px);
  border-color: rgb(255 122 33 / 44%);
  box-shadow: var(--shadow-soft);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  margin-top: .2rem;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .065em;
  font-weight: 800;
  text-decoration: none;
}
.service-link::after {
  content: ">";
  transition: transform .2s ease;
}
.service-link:hover::after {
  transform: translateX(2px);
}

.proof-strip {
  border-top: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .82rem;
}
.proof-grid-minimal {
  grid-template-columns: 1.35fr 1fr 1fr;
}
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.22rem 1.08rem;
  background: linear-gradient(165deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 0%));
  box-shadow: 0 8px 20px rgb(0 0 0 / 14%);
}
.proof-primary {
  background:
    linear-gradient(165deg, rgb(255 122 33 / 16%), rgb(255 255 255 / 2%)),
    radial-gradient(120% 120% at 0% 0%, rgb(94 200 255 / 14%) 0%, transparent 55%);
  border-color: rgb(255 122 33 / 55%);
}
.proof-number {
  margin: 0 0 .3rem;
  color: #f8ecd8;
  font-family: "CastingHaus", "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.proof-number-word {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.proof-value {
  margin: 0 0 .35rem;
  color: #f4e8d3;
  font-size: clamp(.86rem, 1vw, 1rem);
  font-family: "CastingHaus", "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: .03em;
}
.proof-label {
  margin: 0;
  font-size: .8rem;
  color: #d7cfbe;
  line-height: 1.55;
}
.proof-grid-minimal .proof-value {
  margin: 0 0 .25rem;
  font-size: clamp(.84rem, .95vw, .95rem);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.home-page .work-card:nth-child(6n + 2),
.home-page .work-card:nth-child(6n + 5) {
  transform: translateY(14px);
}
.work-card {
  text-decoration: none;
  color: inherit;
  padding: .9rem;
  transition: transform .26s cubic-bezier(.2, .8, .2, 1), border-color .22s ease, box-shadow .24s ease, background .24s ease;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 420px;
  display: flex;
  flex-direction: column;
}
.work-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(94 200 255 / 0%) 0%, rgb(94 200 255 / 55%) 34%, rgb(255 122 33 / 55%) 66%, rgb(255 122 33 / 0%) 100%);
  opacity: 0;
  transition: opacity .24s ease;
}
.work-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(180deg, rgb(10 15 23 / 92%), rgb(15 22 34 / 92%));
  padding: .32rem;
  border-radius: 11px;
  border: 1px solid rgb(255 255 255 / 12%);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
  box-shadow: inset 0 -1px 0 rgb(255 255 255 / 12%);
}
.work-card h3 {
  margin: .68rem 0 .28rem;
  font-size: clamp(1.01rem, 1.62vw, 1.18rem);
  max-width: 26ch;
  line-height: 1.1;
}
.work-card p {
  margin: .08rem 0 .72rem;
  font-size: .82rem;
  color: #d7cfbf;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: .005em;
}
.work-card p strong {
  color: #f0e2cd;
  font-weight: 700;
}
.work-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: .7rem 0 .24rem;
  padding: .23rem .54rem;
  border-radius: 999px;
  border: 1px solid rgb(255 122 33 / 45%);
  background: rgb(255 122 33 / 12%);
  color: #f2e1c8;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .58rem;
  font-weight: 800;
}
.work-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: .62rem;
  font-weight: 800;
}
.work-cta::after {
  content: "->";
  transform: translateX(0);
  transition: transform .2s ease;
}
.work-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background:
    linear-gradient(165deg, rgb(255 122 33 / 15%), rgb(255 255 255 / 2%)),
    radial-gradient(120% 110% at 0% 0%, rgb(94 200 255 / 12%) 0%, transparent 56%);
  box-shadow: var(--shadow-soft);
}
.work-card:hover::before {
  opacity: 1;
}
.work-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.06) saturate(1.08);
}
.work-card:hover .work-cta::after {
  transform: translateX(2px);
}

.conversion-band {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.1rem, 2.8vw, 2.2rem);
  border: 1px solid rgb(255 122 33 / 45%);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(165deg, rgb(255 122 33 / 16%), rgb(255 255 255 / 2%)),
    radial-gradient(120% 140% at 0% 0%, rgb(94 200 255 / 10%) 0%, transparent 58%);
  box-shadow: 0 16px 34px rgb(0 0 0 / 24%);
}
.conversion-band h2 {
  position: static;
  display: block;
  left: auto;
  transform: none;
  text-align: center;
  max-width: 20ch;
  margin-inline: auto;
}
.home-page .conversion-band.section > h2 {
  position: static;
  display: block;
  left: auto;
  transform: none;
  text-align: center;
  margin-inline: auto;
  padding-bottom: 0;
}
.home-page .conversion-band > h2::after {
  display: none;
}
.conversion-band p {
  max-width: 62ch;
  margin-inline: auto;
}
.conversion-band .btn {
  margin-top: .4rem;
}
.contact-trust {
  margin: .28rem auto .6rem;
  color: #f0dfc4;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
}

.credits-list {
  padding-left: 1.1rem;
  color: var(--muted);
  margin: 0;
}
.credits-list li + li { margin-top: .42rem; }

.networks-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
  align-items: center;
}
.network-image {
  width: min(940px, 100%);
  margin-inline: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  display: block;
}

.why-grid {
  counter-reset: why-pillars;
  display: grid;
  grid-template-columns: 1fr;
  gap: .78rem;
}
.home-page #why {
  border: 1px solid rgb(94 200 255 / 26%);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 3.7vw, 2.9rem) clamp(.95rem, 2.1vw, 1.45rem);
  background:
    linear-gradient(180deg, rgb(94 200 255 / 8%), rgb(255 255 255 / 1%)),
    radial-gradient(130% 150% at 100% 0%, rgb(94 200 255 / 14%) 0%, transparent 62%);
  box-shadow: 0 14px 30px rgb(0 0 0 / 20%);
}
.home-page #why > h2::after {
  background: linear-gradient(90deg, rgb(94 200 255 / 0%) 0%, rgb(94 200 255 / 62%) 50%, rgb(94 200 255 / 0%) 100%);
}
.why-grid article {
  counter-increment: why-pillars;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: .34rem;
  align-items: start;
  border: 1px solid rgb(94 200 255 / 24%);
  border-radius: calc(var(--radius) - 1px);
  padding: .95rem .96rem;
  background: linear-gradient(160deg, rgb(94 200 255 / 9%), rgb(255 255 255 / 0%));
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.why-grid article::before {
  content: counter(why-pillars, decimal-leading-zero);
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-family: "CastingHaus", "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.18rem;
  letter-spacing: .01em;
  color: #dff1ff;
  border: 1px solid rgb(94 200 255 / 38%);
  background:
    radial-gradient(120% 120% at 20% 20%, rgb(94 200 255 / 26%) 0%, rgb(94 200 255 / 10%) 50%, rgb(94 200 255 / 2%) 100%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%), 0 6px 16px rgb(0 0 0 / 22%);
}
.why-grid article h3,
.why-grid article p {
  grid-column: 2;
}
.why-grid article h3 {
  display: flex;
  align-items: center;
  gap: .46rem;
  margin: .05rem 0 .18rem;
}
.why-grid article p {
  margin: 0;
  max-width: none;
}
.why-glyph {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  border: 1px solid rgb(94 200 255 / 38%);
  border-radius: 4px;
  background: rgb(94 200 255 / 8%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
}
.why-glyph-strategy {
  border-radius: 50%;
  background:
    linear-gradient(rgb(94 200 255 / 58%), rgb(94 200 255 / 58%)) center / 1px 10px no-repeat,
    linear-gradient(90deg, rgb(94 200 255 / 58%), rgb(94 200 255 / 58%)) center / 10px 1px no-repeat,
    rgb(94 200 255 / 8%);
}
.why-glyph-strategy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgb(223 241 255 / 85%);
  transform: translate(-50%, -50%);
}
.why-glyph-trust {
  border-radius: 5px;
}
.why-glyph-trust::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 8px;
  height: 6px;
  border: 1px solid rgb(94 200 255 / 48%);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  transform: translateX(-50%);
}
.why-glyph-trust::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 2px;
  height: 6px;
  border-radius: 999px;
  background: rgb(223 241 255 / 88%);
  transform: translateX(-50%);
}
.why-glyph-execution {
  border-radius: 50%;
}
.why-glyph-execution::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgb(223 241 255 / 90%);
  border-bottom: 2px solid rgb(223 241 255 / 90%);
  transform: translate(-48%, -58%) rotate(-45deg);
}
.why-grid article:hover {
  transform: translateX(3px);
  border-color: rgb(94 200 255 / 42%);
  box-shadow: 0 12px 22px rgb(0 0 0 / 18%);
  background: linear-gradient(160deg, rgb(94 200 255 / 14%), rgb(255 255 255 / 1%));
}

.team-grid {
  display: grid;
  gap: 1rem;
}
.team-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), border-color .22s ease, box-shadow .22s ease;
}
.team-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-soft);
  box-shadow: var(--shadow-soft);
}
.team-card > div { padding: 1.05rem 1.1rem; }
.team-card img {
  width: 100%;
  height: 320px;
  min-height: 320px;
  max-height: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.team-grid .team-card:first-child img {
  object-position: center 20%;
}
.role {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: .76rem;
}

.cta {
  text-align: center;
  padding-bottom: 3.9rem;
}
.cta h2 { margin-inline: auto; }
.home-page .cta > h2 {
  position: static;
  display: block;
  left: auto;
  transform: none;
  padding-bottom: 0;
}
.home-page .cta > h2::after {
  display: none;
}
.cta .btn {
  margin-top: .35rem;
}
.contact-form {
  width: min(760px, 100%);
  margin: .9rem auto 0;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(165deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 1%));
  text-align: left;
}
.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
}
.contact-form label {
  display: block;
  margin: 0 0 .72rem;
}
.contact-form label span {
  display: block;
  margin: 0 0 .36rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .68rem;
  font-weight: 700;
  color: #ecdcc4;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 10px;
  background: rgb(8 12 18 / 72%);
  color: var(--ink);
  padding: .62rem .72rem;
  font: inherit;
  line-height: 1.45;
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b5aa98;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 1px;
  border-color: rgb(255 176 116 / 75%);
}
.contact-form .btn {
  margin-top: .1rem;
}
.form-note {
  margin: .55rem 0 0;
  font-size: .83rem;
  color: #d9cfbf;
}
.form-note.is-success {
  color: #f2e4cb;
}

.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 2.8rem 0 3.2rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0%), rgb(255 255 255 / 3%)),
    radial-gradient(130% 180% at 50% -60%, rgb(94 200 255 / 8%) 0%, transparent 56%);
}
.site-footer img { width: 180px; margin: 0 auto .9rem; }
.site-footer p {
  margin: .2rem 0;
  max-width: none;
  color: #dfd6c8;
}
.site-footer p:nth-child(1) {
  color: #f2ece0;
  font-weight: 600;
}
.site-footer p:nth-child(3),
.site-footer p:nth-child(4) {
  color: #cdbfa8;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .74rem;
}
.site-footer a { color: var(--ink); }
.site-footer a:hover { color: var(--accent-soft); }

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: var(--accent);
  color: #18120e;
  border: 1px solid #ffb074;
  border-radius: 999px;
  padding: .62rem .9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: .72rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgb(0 0 0 / 42%);
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}
.floating-contact:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgb(255 122 33 / 32%);
}

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

.project-page { padding: 5.2rem 0 3.5rem; }
.project-shell { padding: 1.15rem; }
.project-page,
.project-shell,
.project-content {
  background: transparent;
}
.show-hero {
  width: min(620px, 74%);
  height: auto;
  max-height: 300px;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: transparent;
  margin: 0 auto 1.2rem;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.project-content {
  max-width: 80ch;
  margin: 0 auto;
}
.project-content h1 {
  font-size: clamp(1.32rem, 2.45vw, 2.18rem);
  line-height: 1.15;
  max-width: 30ch;
  margin-bottom: .7rem;
}
.project-content h2,
.project-content h3,
.project-content h4 { margin-top: 1.25rem; }
.project-meta {
  display: inline-block;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  font-size: .76rem;
}
.related-links {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.related-links h2 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.related-links p {
  margin: 0 0 .6rem;
}
.related-links a {
  color: var(--accent);
}
.related-links a:hover {
  color: var(--accent-soft);
}
#work .service-grid p a,
#work .service-grid p a:visited {
  color: var(--accent);
  text-decoration-color: rgb(255 122 33 / 50%);
}
#work .service-grid p a:hover {
  color: var(--accent-soft);
  text-decoration-color: var(--accent-soft);
}
.related-links ul {
  margin: 0;
  padding-left: 1.1rem;
}
.related-links li + li {
  margin-top: .25rem;
}

.video-embed {
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.video-frame {
  width: min(920px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 20%);
  background: #000;
  position: relative;
  box-shadow:
    0 20px 40px rgb(0 0 0 / 40%),
    0 0 0 1px rgb(255 255 255 / 5%) inset;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgb(255 255 255 / 0%) 25%, rgb(255 255 255 / 10%) 48%, rgb(255 255 255 / 0%) 70%),
    linear-gradient(180deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 0%));
  transform: translateX(-100%);
  animation: media-shimmer 1.9s ease-in-out infinite;
  pointer-events: none;
}
.video-frame.is-loaded::before {
  opacity: 0;
  animation: none;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed .video-caption {
  max-width: 82ch;
  margin: .8rem auto 0;
  color: var(--muted);
}

.video-fallback {
  max-width: 82ch;
  margin: .55rem auto 0;
  text-align: center;
}
.video-fallback a {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--ink);
  padding: .58rem .9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .72rem;
  font-weight: 700;
  background: linear-gradient(180deg, rgb(255 122 33 / 14%), rgb(255 122 33 / 0%));
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.video-fallback a:hover {
  background: var(--accent);
  color: #18120e;
  transform: translateY(-1px);
}

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: none;
  transition: opacity .52s ease, transform .52s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

@keyframes drift-a {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(3vw, -2vh, 0); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-3vw, 2vh, 0); }
}
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes media-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(120%); }
}

@media (max-width: 1440px) {
  .home-page .hero h1 {
    max-width: 21ch;
    font-size: clamp(1.78rem, 3.28vw, 2.86rem);
    letter-spacing: -.015em;
  }
  .home-page .hero p {
    max-width: 54ch;
  }
}

@media (max-width: 1280px) {
  .home-page .hero h1 {
    max-width: 22ch;
    font-size: clamp(1.68rem, 3.08vw, 2.6rem);
    letter-spacing: -.013em;
  }
  .home-page .hero p {
    max-width: 52ch;
  }
}

@media (max-width: 1024px) {
  .home-page .hero h1 {
    max-width: 23ch;
    font-size: clamp(1.58rem, 3.2vw, 2.36rem);
    letter-spacing: -.011em;
  }
  .home-page .hero p {
    max-width: 50ch;
  }
}

@media (max-width: 990px) {
  .container { width: min(var(--max), calc(100% - 1.9rem)); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media {
    max-width: 640px;
    margin-inline: auto;
  }
  .hero-video-fallback {
    justify-content: center;
  }
  .home-page .hero {
    text-align: center;
  }
  .home-page .hero h1,
  .home-page .hero p {
    margin-inline: auto;
  }
  .home-page .hero h1 {
    max-width: 23ch;
  }
  .service-grid,
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: .82rem;
  }
  .why-grid article::before {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  .about-grid { grid-template-columns: 1fr; }
  .home-page #work .work-layout { grid-template-columns: 1fr; }
  #work .service-grid {
    counter-reset: service-pillars;
    grid-template-columns: 1fr;
  }
  #work .service-grid article { padding-left: 2.9rem; }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .networks-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid-minimal {
    grid-template-columns: 1fr;
  }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .work-card:nth-child(6n + 2),
  .home-page .work-card:nth-child(6n + 5) {
    transform: none;
  }
  .logo-track { animation-duration: 84s; }
  .show-hero {
    width: min(560px, 78%);
    max-height: 250px;
  }
  .home-page main > section.section:nth-of-type(odd),
  .home-page main > section.section:nth-of-type(even) {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

@media (max-width: 768px) {
  .home-page .hero h1 {
    max-width: 24ch;
    font-size: clamp(1.5rem, 5.9vw, 2.12rem);
    letter-spacing: -.008em;
  }
  .home-page .hero p {
    max-width: 42ch;
  }
}

@media (max-width: 760px) {
  .menu-btn { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    width: min(304px, calc(100vw - 2rem));
    background: rgb(14 21 32 / 98%);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: .85rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .76rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { font-size: .83rem; }
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .72rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-actions .btn {
    min-width: 170px;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid article {
    text-align: center;
  }
  .hero-video-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: thin;
  }
  .hero-video-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .why-grid article {
    grid-template-columns: 1fr;
    row-gap: .42rem;
  }
  .why-grid article::before {
    grid-row: auto;
    width: 42px;
    height: 42px;
    font-size: .94rem;
  }
  .why-grid article h3,
  .why-grid article p {
    grid-column: auto;
  }
  .why-glyph {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
  .why-glyph-strategy::before {
    width: 5px;
    height: 5px;
  }
  .why-glyph-trust::before {
    width: 7px;
    height: 5px;
    top: -4px;
  }
  .why-glyph-trust::after {
    top: 5px;
    height: 5px;
  }
  .why-glyph-execution::before {
    width: 6px;
    height: 3px;
  }
  .work-card { padding: .78rem; }
  .work-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center center;
    border-radius: 9px;
  }
  .logo-strip { padding: .95rem .85rem; }
  .logo-row {
    gap: .2rem;
    padding-right: .2rem;
  }
  .logo-slot {
    flex: 0 0 clamp(108px, 34vw, 142px);
    width: clamp(108px, 34vw, 142px);
    height: 64px;
    padding-inline: .42rem;
  }
  .hero { padding-top: 5rem; }
  .hero::after { bottom: .3rem; }
  body::before,
  body::after {
    display: none;
  }
  .site-header {
    backdrop-filter: none;
  }
  .section { padding: 2.9rem 0; }
  .project-page { padding-top: 4.8rem; }
  .project-shell { padding: .85rem; }
  .show-hero {
    width: min(420px, 80%);
    height: auto;
    max-height: 210px;
    border-radius: 9px;
    margin: 0 auto 1rem;
  }
  .project-content h1 {
    font-size: clamp(1.18rem, 5.4vw, 1.56rem);
    max-width: 32ch;
  }
  .team-card img {
    width: min(260px, 82vw);
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto;
  }
  .team-card { grid-template-columns: 1fr; }
  .floating-contact { display: none; }
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: .8rem;
    right: .8rem;
    bottom: .7rem;
    z-index: 70;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .73rem;
    font-weight: 800;
    color: #17110c;
    background: var(--accent);
    border: 1px solid #ffb074;
    border-radius: 999px;
    padding: .78rem .9rem;
    box-shadow: 0 12px 28px rgb(0 0 0 / 40%);
  }
  body {
    padding-bottom: 4.5rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .logo-track {
    animation: none;
    width: 100%;
    justify-content: center;
  }
  .hero-video-frame::before,
  .video-frame::before {
    animation: none;
    display: none;
  }
  .logo-row + .logo-row {
    display: none;
  }
  .logo-strip::before,
  .logo-strip::after {
    display: none;
  }
}
