:root {
  --orange: #f7c407;
  --orange-light: #ffd84f;
  --black: #080808;
  --off-black: #101010;
  --cream: #f2eee8;
  --muted: #9a9690;
  --line: rgba(255, 255, 255, 0.15);
  --pad: clamp(22px, 5vw, 76px);
  --scroll: 0;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 180;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(247, 196, 7, 0.08);
  filter: blur(90px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 196, 7, .14), transparent 32%),
    #030303;
  animation: bootAway .75s cubic-bezier(.7, 0, .3, 1) 1.9s forwards;
  pointer-events: none;
}

.boot-screen::before,
.boot-screen::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--orange);
  transform-origin: left;
  animation: shutterSlice 1.6s cubic-bezier(.8, 0, .2, 1) forwards;
}

.boot-screen::after {
  background: #050505;
  animation-delay: .18s;
}

.boot-card {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid rgba(247, 196, 7, .45);
  background: rgba(0, 0, 0, .72);
  box-shadow: 0 0 90px rgba(247, 196, 7, .14);
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
}

.boot-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 24px;
}

.boot-card p,
.boot-card span {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .16em;
}

.boot-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  color: #d9d1bf;
  font-size: 11px;
  list-style: none;
}

.boot-card li {
  opacity: 0;
  animation: bootLine .35s ease forwards;
}

.boot-card li:nth-child(2) { animation-delay: .3s; }
.boot-card li:nth-child(3) { animation-delay: .6s; }
.boot-card li:nth-child(4) { animation-delay: .9s; }

.boot-card li::before {
  content: "› ";
  color: var(--orange);
}

@keyframes bootLine {
  to { opacity: 1; transform: translateX(6px); }
}

@keyframes bootAway {
  to { opacity: 0; visibility: hidden; transform: scale(1.04); }
}

@keyframes shutterSlice {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: 0.4s ease;
}

.site-header.scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  display: block;
  width: 150px;
  height: 56px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.desktop-nav a,
.footer-center a {
  transition: color 0.25s;
}

.desktop-nav a:hover,
.footer-center a:hover {
  color: var(--orange);
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.25s;
}

.header-cta:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 130px var(--pad) 70px;
  isolation: isolate;
  clip-path: inset(0);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.95) contrast(1.08) brightness(.68);
}

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

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .36) 48%, rgba(0, 0, 0, .68)),
    radial-gradient(circle at 72% 35%, rgba(247, 196, 7, .22), transparent 34%),
    linear-gradient(105deg, transparent 0 58%, rgba(247, 196, 7, .08) 58% 59%, transparent 59%),
    linear-gradient(transparent 0 49%, rgba(255,255,255,.055) 49% 49.3%, transparent 49.3%);
  transform: translateY(calc(var(--scroll) * -80px));
}

.hero::after {
  left: auto;
  width: 38vw;
  min-width: 280px;
  background: linear-gradient(90deg, transparent, rgba(247, 196, 7, .09));
  transform: skewX(-12deg) translateX(calc(var(--scroll) * 130px));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 10vw 10vw;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, #000 75%, transparent);
  animation: gridDrift 18s linear infinite;
}

@keyframes gridDrift {
  to { background-position: 10vw 10vw; }
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(5px);
  display: none;
}

.orb-one {
  right: -15vw;
  top: 2vh;
  width: 55vw;
  height: 55vw;
  max-width: 760px;
  max-height: 760px;
  background:
    radial-gradient(circle at 35% 35%, #fff3a4 0, #f7c407 14%, #665000 43%, transparent 69%);
  opacity: 0.48;
  animation: breathe 8s ease-in-out infinite;
}

.orb-two {
  left: 15%;
  bottom: -28vw;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(247, 196, 7, 0.24), transparent 68%);
}

.hero-hud {
  position: absolute;
  right: var(--pad);
  top: 112px;
  z-index: 2;
  display: grid;
  gap: 9px;
  color: rgba(242, 238, 232, .62);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-align: right;
  text-transform: uppercase;
}

.hero-frame-stack {
  position: absolute;
  right: clamp(22px, 6vw, 110px);
  top: 24%;
  z-index: 1;
  width: min(34vw, 430px);
  height: min(42vw, 520px);
  pointer-events: none;
  perspective: 900px;
}

.film-card {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 50% 35%, rgba(247, 196, 7, .2), transparent 28%),
    linear-gradient(145deg, #191507, #050505 64%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .4);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform-style: preserve-3d;
  animation: cardBreath 5s ease-in-out infinite;
}

.film-card::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .08);
}

.film-card img {
  width: 72px;
  filter: drop-shadow(0 0 28px rgba(247, 196, 7, .35));
}

.card-one {
  transform: rotate(-7deg) translate3d(calc(var(--scroll) * -26px), calc(var(--scroll) * 24px), 80px);
}

.card-two {
  transform: rotate(8deg) translate3d(18px, 28px, 20px);
  opacity: .52;
}

.card-three {
  transform: rotate(-1deg) translate3d(45px, 60px, -40px);
  opacity: .28;
}

@keyframes cardBreath {
  50% { filter: brightness(1.18); }
}

.hero-hud span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
}

@keyframes breathe {
  50% { transform: scale(1.08) translate(-2%, 2%); }
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.eyebrow {
  margin-bottom: 38px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(247, 196, 7, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(247, 196, 7, 0); }
}

.hero-title {
  position: relative;
  z-index: 2;
  max-width: min(1060px, 78vw);
  font-size: clamp(58px, 10.5vw, 160px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0;
}

.hero-title .line > span {
  display: block;
  animation: titleIn 1.1s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-title .line:nth-child(2) > span {
  animation-delay: 0.12s;
}

.accent-line {
  color: var(--orange);
  font-weight: 400;
  font-style: italic;
}

@keyframes titleIn {
  from { transform: translateY(110%); }
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 52px;
  margin-left: clamp(0px, 23vw, 360px);
  position: relative;
  z-index: 2;
}

.hero-bottom > p {
  max-width: 430px;
  color: #c2beb8;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.55;
}

.round-link {
  display: flex;
  width: 108px;
  height: 108px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
  transition: 0.3s;
}

.round-link b {
  margin-left: 8px;
  color: var(--orange);
  font-size: 17px;
}

.round-link:hover {
  color: var(--black);
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(-8deg);
}

.round-link:hover b {
  color: var(--black);
}

.marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 13px 0;
  animation: marquee 30s linear infinite;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.marquee-track i {
  color: var(--orange);
  font-style: normal;
}

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

.reel-section,
.work-section,
.tools-section,
.agency-partners-section,
.services-section,
.about-section,
.crew-section,
.trust-section,
.faq-section {
  padding: 140px var(--pad);
}

.reel-section {
  padding-top: 100px;
  padding-bottom: 80px;
}

.reel-frame {
  position: relative;
  display: grid;
  min-height: min(72vw, 760px);
  overflow: hidden;
  align-content: space-between;
  padding: clamp(25px, 4vw, 60px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 42%, rgba(247, 196, 7, 0.3), transparent 21%),
    radial-gradient(circle at 77% 42%, #27220a, #0a0a0a 38%, #050505 70%);
  isolation: isolate;
  transform: translateY(calc((1 - var(--local-progress, 0)) * 55px)) scale(calc(.96 + (var(--local-progress, 0) * .04)));
}

.reel-frame::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(125deg, transparent 0 48%, rgba(255,255,255,.035) 48.2% 48.5%, transparent 48.7%);
}

.reel-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(transparent, rgba(247, 196, 7, .14));
  transform: translateY(calc((1 - var(--local-progress, 0)) * 100%));
  pointer-events: none;
}

.reel-lines {
  position: absolute;
  right: 9%;
  top: 50%;
  width: 35%;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 196, 7, 0.35);
  border-radius: 50%;
  transform: translateY(-50%);
}

.reel-lines::before,
.reel-lines::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
}

.reel-lines::after {
  inset: 28%;
}

.reel-copy h2 {
  max-width: 850px;
  margin-top: 35px;
  font-size: clamp(46px, 7vw, 105px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: .96;
}

.reel-copy h2 em {
  color: var(--orange);
  font-weight: 400;
}

.reel-button {
  position: absolute;
  right: 20%;
  top: 50%;
  z-index: 2;
  display: flex;
  width: clamp(130px, 14vw, 190px);
  aspect-ratio: 1;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  cursor: pointer;
  transform: translate(50%, -50%);
  transition: transform .35s, background .35s;
}

.reel-button:hover {
  background: var(--cream);
  transform: translate(50%, -50%) scale(1.07);
}

.reel-button img {
  width: 47px;
  height: 47px;
  object-fit: contain;
  filter: brightness(0);
}

.reel-button span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reel-button small {
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.reel-note {
  align-self: end;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  align-items: start;
  margin-bottom: 90px;
}

.section-head h2 {
  font-size: clamp(48px, 7vw, 105px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section-head h2 em {
  color: var(--orange);
  font-weight: 400;
}

.projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 72px 22px;
}

.project {
  transform:
    translateY(calc((1 - var(--local-progress, 0)) * 80px))
    rotate(calc((1 - var(--local-progress, 0)) * -2deg));
  transition: transform .2s linear;
}

.project-a {
  grid-column: 1 / 9;
}

.project-b {
  grid-column: 8 / 13;
  margin-top: 190px;
}

.project-c {
  grid-column: 2 / 8;
}

.project-visual {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 0;
  background: #1a1a1a;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  clip-path: inset(calc((1 - var(--local-progress, 0)) * 16%) 0 0 0);
  transition: clip-path .8s cubic-bezier(.16, 1, .3, 1), transform .35s;
}

.project-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(247, 196, 7, .18), transparent);
  transform: translateX(calc(-120% + (var(--local-progress, 0) * 220%)));
  pointer-events: none;
}

.project-b .project-visual {
  aspect-ratio: 4 / 5;
}

.scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.cover-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .45)),
    radial-gradient(circle at 80% 20%, rgba(247, 196, 7, .18), transparent 28%);
  pointer-events: none;
}

.cover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.project-visual:hover .scene {
  transform: scale(1.035);
}

.view-project {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 12px 15px;
  color: var(--black);
  background: var(--cream);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s;
}

.project-visual:hover .view-project {
  opacity: 1;
  transform: translateY(0);
}

.monsoon {
  background:
    linear-gradient(to bottom, rgba(247, 196, 7, 0.12), transparent 50%),
    linear-gradient(145deg, #4c4009, #1b1925 55%, #06080c);
}

.sun {
  position: absolute;
  right: 14%;
  top: 12%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f7c407;
  box-shadow: 0 0 80px #f7c407;
}

.mountain {
  position: absolute;
  bottom: -5%;
  width: 100%;
  height: 65%;
  clip-path: polygon(0 70%, 14% 43%, 24% 61%, 43% 8%, 57% 48%, 72% 24%, 100% 68%, 100% 100%, 0 100%);
}

.mountain-a {
  background: #24161a;
  opacity: 0.9;
}

.mountain-b {
  bottom: -22%;
  left: -12%;
  background: #08090c;
  transform: scale(1.3);
}

.figure {
  position: absolute;
  left: 48%;
  bottom: 10%;
  width: 1.7%;
  height: 15%;
  border-radius: 50% 50% 10% 10%;
  background: #f7c407;
  box-shadow: 0 0 18px #f7c407;
}

.neon {
  background: linear-gradient(145deg, #030204, #211d07 50%, #050506);
}

.neon-ring {
  position: absolute;
  left: 8%;
  top: 9%;
  width: 83%;
  aspect-ratio: 1;
  border: 5px solid #f7c407;
  border-radius: 50%;
  box-shadow: inset 0 0 30px #f7c407, 0 0 45px #f7c407;
  opacity: 0.78;
}

.face {
  position: absolute;
  left: 27%;
  bottom: -12%;
  width: 48%;
  height: 76%;
  border-radius: 44% 44% 23% 23%;
  background:
    radial-gradient(circle at 34% 37%, #fff4ae 0 2%, transparent 2.5%),
    radial-gradient(circle at 66% 37%, #fff4ae 0 2%, transparent 2.5%),
    linear-gradient(105deg, #171509 0 32%, #9d871c 49%, #211f10 72%);
  box-shadow: 0 0 60px rgba(247, 196, 7, 0.3);
}

.scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 5px, rgba(255,255,255,.03) 6px);
}

.otherworld {
  background: radial-gradient(circle at 45% 30%, #a98d13, #251f0b 35%, #050505 78%);
}

.planet {
  position: absolute;
  left: 13%;
  top: 9%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 33% 30%, #fff17b, #b89b00 38%, #1a1600 78%);
  box-shadow: 0 0 50px #8b7505;
}

.portal {
  position: absolute;
  right: 17%;
  top: 21%;
  width: 12%;
  height: 44%;
  border: 2px solid #f7c407;
  border-radius: 50%;
  box-shadow: 0 0 25px #f7c407, inset 0 0 25px #f7c407;
}

.ground {
  position: absolute;
  right: -15%;
  bottom: -15%;
  left: -15%;
  height: 52%;
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    #090604;
  background-size: 30px 30px;
  transform: perspective(400px) rotateX(55deg);
}

.project-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 18px;
}

.project-meta h3 {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
}

.project-meta p {
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.tools-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 196, 7, .18), transparent 26%),
    linear-gradient(180deg, #080808, #0f0f0f);
}

.tools-console {
  overflow: hidden;
  border: 1px solid rgba(247, 196, 7, .28);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    rgba(0, 0, 0, .42);
  background-size: 48px 48px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
  transform: translateY(calc((1 - var(--local-progress, 0)) * 60px));
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(247, 196, 7, .22);
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.partner-marquee {
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.tool-track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding: 28px 0;
  animation: toolFlow 28s linear infinite;
}

.tool-track span {
  display: inline-flex;
  min-width: clamp(190px, 20vw, 280px);
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: #f2eee8;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tool-track img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, .08);
}

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

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tool-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background .35s, color .35s, transform .35s;
}

.tool-grid article::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 28px;
  height: 28px;
  content: "";
  border-right: 2px solid rgba(247, 196, 7, .5);
  border-bottom: 2px solid rgba(247, 196, 7, .5);
  opacity: .5;
  transition: transform .35s, border-color .35s;
}

.tool-grid article:nth-child(4n) {
  border-right: 0;
}

.tool-grid article:hover {
  z-index: 2;
  background: var(--orange);
  color: var(--black);
  transform: translateY(-6px);
}

.tool-grid article:hover::after {
  border-color: var(--black);
  transform: translate(4px, 4px);
}

.tool-grid b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 12px;
}

.tool-grid article:hover b {
  color: var(--black);
}

.tool-grid span {
  display: block;
  margin-top: 48px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 650;
  letter-spacing: -.04em;
}

.tool-grid small {
  display: block;
  max-width: 220px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.tool-grid article:hover small {
  color: #221b02;
}

.tools-note {
  max-width: 760px;
  padding: 22px 24px 28px;
  color: #c8c2b8;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.5;
}

.agency-partners-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 196, 7, .16), transparent 24%),
    #080808;
}

.agency-partners-section .section-head {
  overflow: visible;
}

.agency-partners-section .section-head h2 {
  font-size: clamp(46px, 6.6vw, 94px);
  line-height: 1.05;
  padding-bottom: .1em;
}

.agency-partners-section .section-head h2 em {
  display: inline-block;
  text-transform: none;
}

.agency-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.agency-partner {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  min-height: 360px;
  align-items: center;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    rgba(255, 255, 255, .03);
  background-size: 42px 42px;
  transition: transform .35s, border-color .35s, background .35s;
}

.agency-partner:hover {
  border-color: rgba(247, 196, 7, .45);
  background-color: rgba(247, 196, 7, .06);
  transform: translateY(-8px);
}

.agency-logo {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(247, 196, 7, .22);
  background: rgba(0, 0, 0, .24);
}

.agency-logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.agency-partner span {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.agency-partner h3 {
  margin-top: 28px;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 550;
  letter-spacing: -.055em;
  line-height: .95;
}

.agency-partner p {
  margin-top: 18px;
  color: #c7c1b8;
  font-size: 14px;
  line-height: 1.65;
}

.agency-partner div > a {
  display: inline-block;
  margin-top: 22px;
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.services-section {
  background: var(--cream);
  color: var(--black);
}

.services-section .section-head h2 {
  transform: translateX(calc((1 - var(--local-progress, 0)) * -5vw));
}

.services-section .section-label {
  color: #6d6964;
}

.service-list {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1.1fr 1fr 0.45fr;
  min-height: 190px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: 0.35s;
  transform: translateX(calc((1 - var(--local-progress, 0)) * 6vw));
}

.service::after {
  position: absolute;
  inset: 0 calc(var(--pad) * -1);
  z-index: 0;
  content: "";
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1);
}

.service:hover::after {
  transform: scaleY(1);
}

.service > * {
  position: relative;
  z-index: 1;
}

.service-number {
  align-self: start;
  margin-top: 38px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.service h3 {
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service p {
  max-width: 390px;
  color: #69645e;
  font-size: 14px;
  line-height: 1.55;
}

.service:hover p {
  color: #201108;
}

.service-icon {
  justify-self: end;
  width: 75px;
  height: 75px;
  transform: rotate(8deg);
  transition: transform 0.4s;
}

.service:hover .service-icon {
  transform: rotate(-8deg) scale(1.1);
}

.service-icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  min-height: 80vh;
}

.crew-section {
  border-top: 1px solid var(--line);
}

.crew-intro {
  width: min(650px, 100%);
  margin: -30px 0 70px auto;
  color: #c5c1bb;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.55;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.crew-role {
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s, color .35s;
}

.crew-role:hover {
  background: var(--orange);
  color: var(--black);
}

.crew-role > span,
.trust-card > span {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.crew-role:hover > span {
  color: var(--black);
}

.crew-role h3 {
  margin-top: 85px;
  font-size: clamp(24px, 2.5vw, 37px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.crew-role p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.crew-role:hover p {
  color: #3b3205;
}

.method-section {
  padding: 140px var(--pad);
  border-top: 1px solid var(--line);
  background: #0d0d0d;
}

.process-track {
  display: flex;
  overflow-x: auto;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 65px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  scrollbar-width: none;
}

.process-track::-webkit-scrollbar {
  display: none;
}

.process-track span {
  white-space: nowrap;
}

.process-track i {
  min-width: 18px;
  height: 1px;
  flex: 1;
  background: var(--orange);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.method {
  min-height: 360px;
  padding: 30px 34px 40px 0;
  border-right: 1px solid var(--line);
}

.method + .method {
  padding-left: 34px;
}

.method:last-child {
  border-right: 0;
}

.method > span {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.method h3 {
  margin-top: 120px;
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.method p {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-copy > p {
  max-width: 970px;
  font-size: clamp(37px, 5.8vw, 84px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.about-copy > p span {
  color: var(--orange);
}

.about-note {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.trust-section {
  background: var(--cream);
  color: var(--black);
}

.trust-section .section-label {
  color: #706b65;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(0,0,0,.22);
  border-left: 1px solid rgba(0,0,0,.22);
}

.trust-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border-right: 1px solid rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(0,0,0,.22);
}

.trust-card > img {
  position: absolute;
  right: 30px;
  top: 27px;
  width: 40px;
  filter: brightness(0);
  opacity: .9;
}

.trust-card > span {
  color: #6f685f;
}

.trust-card h3 {
  max-width: 480px;
  margin-top: 105px;
  font-size: clamp(27px, 3.5vw, 50px);
  font-weight: 500;
  letter-spacing: -.05em;
}

.trust-card p {
  max-width: 530px;
  margin-top: 20px;
  color: #68625c;
  font-size: 14px;
  line-height: 1.65;
}

.client-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(0,0,0,.22);
}

.client-strip p {
  max-width: 650px;
  font-size: clamp(16px, 1.7vw, 23px);
}

.client-strip span {
  color: #6f685f;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  white-space: nowrap;
}

.faq-section {
  background: #0d0d0d;
}

.faq-list {
  width: min(1000px, 100%);
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 29px 0;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 25px;
  font-weight: 300;
  transition: transform .3s;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  padding: 0 55px 30px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 90vh;
  overflow: hidden;
  align-items: start;
  gap: clamp(50px, 8vw, 130px);
  padding: 120px var(--pad);
  background: var(--orange);
  color: var(--black);
}

.contact-section .section-label {
  color: #4d4000;
}

.contact-intro h2 {
  margin-top: 35px;
  font-size: clamp(58px, 8vw, 125px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: .9;
}

.contact-tagline {
  max-width: 560px;
  margin-top: 28px;
  color: var(--black);
  font-size: clamp(30px, 4.2vw, 68px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .95;
}

.contact-intro > p:not(.section-label) {
  max-width: 430px;
  margin-top: 35px;
  font-size: 17px;
  line-height: 1.6;
}

.contact-intro > a {
  display: inline-block;
  margin-top: 35px;
  border-bottom: 2px solid var(--black);
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 500;
}

.project-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 22px;
  padding: clamp(25px, 4vw, 55px);
  background: var(--black);
  color: var(--cream);
}

.project-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-form label > span {
  color: #aaa59d;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font: 15px "Manrope", sans-serif;
  padding: 5px 0 14px;
}

.project-form select {
  color-scheme: dark;
}

.project-form textarea {
  resize: vertical;
}

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

.project-form ::placeholder {
  color: #77736d;
}

.form-wide {
  grid-column: 1 / -1;
}

.project-form button {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: var(--orange);
  color: var(--black);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background .3s;
}

.project-form button:hover {
  background: var(--cream);
}

.project-form button img {
  width: 30px;
  filter: brightness(0);
}

.form-note {
  align-self: center;
  color: #77736d;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  line-height: 1.5;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 130px;
  padding: 25px var(--pad);
}

.footer-center {
  display: flex;
  gap: 30px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.footer-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.footer-right p {
  justify-self: end;
}

.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 25px;
  background: rgba(0,0,0,.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.reel-modal.open {
  opacity: 1;
  visibility: visible;
}

.reel-close {
  position: absolute;
  right: 30px;
  top: 25px;
  border: 0;
  background: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 42px;
  font-weight: 200;
}

.reel-placeholder {
  max-width: 760px;
  text-align: center;
}

.reel-placeholder > img {
  width: 80px;
}

.reel-placeholder .section-label {
  justify-content: center;
  margin-top: 22px;
}

.reel-placeholder h2 {
  margin-top: 20px;
  font-size: clamp(55px, 9vw, 120px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .9;
}

.reel-placeholder > p:not(.section-label) {
  max-width: 510px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.reel-placeholder > a {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 20px;
  background: var(--orange);
  color: var(--black);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 196, 7, .14), transparent 30%),
    rgba(0, 0, 0, .9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.work-modal.open {
  opacity: 1;
  visibility: visible;
}

.work-window {
  width: min(1240px, 100%);
  max-height: min(860px, calc(100svh - 60px));
  overflow: hidden;
  border: 1px solid rgba(247, 196, 7, .32);
  background: #070707;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .65);
  transform: translateY(20px) scale(.98);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.work-modal.open .work-window {
  transform: translateY(0) scale(1);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(247, 196, 7, .25);
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.window-close {
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.work-window-body {
  display: block;
  overflow: auto;
  max-height: calc(100svh - 125px);
  padding: clamp(22px, 4vw, 48px);
}

.workspace-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(20px, 4vw, 70px);
  align-items: end;
  margin-bottom: 32px;
}

.workspace-head h2 {
  margin-top: 24px;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: .9;
}

.workspace-head > p:not(.section-label) {
  max-width: 520px;
  margin-bottom: 8px;
  color: #c7c1b8;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.6;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.workspace-slot {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    rgba(255, 255, 255, .035);
  background-size: 34px 34px;
}

.slot-media {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 196, 7, .24), transparent 24%),
    linear-gradient(135deg, #1d1704, #050505 64%);
  cursor: pointer;
}

.slot-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(to bottom, transparent 0 7px, rgba(255, 255, 255, .04) 8px);
}

.slot-media > img {
  width: 74px;
  filter: drop-shadow(0 0 30px rgba(247, 196, 7, .38));
}

.youtube-card {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.youtube-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05) brightness(.78);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), filter .5s;
}

.workspace-slot:hover .youtube-card img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.08) brightness(.92);
}

.slot-media span,
.slot-media b {
  position: absolute;
  z-index: 3;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.slot-media span {
  left: 16px;
  top: 14px;
  color: var(--orange);
}

.slot-media b {
  right: 16px;
  bottom: 14px;
  color: var(--cream);
  font-weight: 400;
}

.workspace-slot > div {
  padding: 22px;
}

.workspace-slot h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 550;
  letter-spacing: -.045em;
}

.workspace-slot p {
  margin-top: 12px;
  color: #c7c1b8;
  font-size: 14px;
  line-height: 1.55;
}

.workspace-slot small {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.workspace-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.workspace-footer a {
  width: fit-content;
  flex: 0 0 auto;
  padding: 14px 18px;
  background: var(--orange);
  color: var(--black);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  clip-path: inset(0 0 18% 0);
  transform: translateY(52px) scale(.985);
  transition:
    opacity 0.8s ease,
    clip-path 0.9s cubic-bezier(.16, 1, .3, 1),
    transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0) scale(1);
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 72px;
  }

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

  .menu-button {
    position: relative;
    z-index: 52;
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: none;
  }

  .menu-button span {
    width: 23px;
    height: 1px;
    background: var(--cream);
    transition: .3s;
  }

  .menu-button.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: var(--black);
    font-size: 35px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu a:last-child {
    color: var(--orange);
  }

  .hero {
    min-height: 820px;
    justify-content: center;
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(56px, 18vw, 88px);
    line-height: 0.88;
  }

  .hero-title .accent-line {
    margin-left: 0;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
    margin-top: 38px;
    margin-left: 0;
  }

  .round-link {
    width: 87px;
    height: 87px;
  }

  .orb-one {
    right: -70%;
    top: 8%;
    width: 140vw;
    height: 140vw;
  }

  .work-section,
  .reel-section,
  .tools-section,
  .agency-partners-section,
  .services-section,
  .about-section,
  .crew-section,
  .method-section,
  .trust-section,
  .faq-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .reel-section {
    padding-right: 0;
    padding-left: 0;
  }

  .reel-frame {
    min-height: 680px;
    border-right: 0;
    border-left: 0;
  }

  .reel-copy h2 {
    font-size: clamp(43px, 12vw, 70px);
  }

  .reel-lines {
    right: -20%;
    top: 62%;
    width: 85%;
  }

  .reel-button {
    right: 24%;
    top: 62%;
    width: 140px;
  }

  .hero-hud {
    display: none;
  }

  .hero-frame-stack {
    right: -12vw;
    top: 52%;
    width: 58vw;
    height: 64vw;
    opacity: .42;
  }

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

  .section-head {
    gap: 28px;
    margin-bottom: 60px;
  }

  .projects {
    display: flex;
    flex-direction: column;
    gap: 55px;
  }

  .project-b,
  .project-c {
    margin-top: 0;
  }

  .project-b .project-visual {
    aspect-ratio: 4 / 5;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

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

  .tool-grid article:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .tool-grid article:nth-child(2n) {
    border-right: 0;
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .agency-partners-grid,
  .agency-partner {
    grid-template-columns: 1fr;
  }

  .agency-logo {
    width: min(240px, 100%);
  }

  .service {
    grid-template-columns: 45px 1fr 55px;
    min-height: 170px;
    gap: 10px;
  }

  .service p {
    display: none;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }

  .about-section {
    gap: 45px;
  }

  .crew-intro {
    margin: 0 0 50px;
  }

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

  .crew-role {
    min-height: 230px;
  }

  .crew-role h3 {
    margin-top: 60px;
  }

  .about-note {
    flex-direction: column;
    gap: 10px;
  }

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

  .method {
    min-height: 0;
    padding: 30px 0 55px !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method h3 {
    margin-top: 65px;
  }

  .process-track {
    justify-content: flex-start;
  }

  .process-track i {
    min-width: 28px;
    flex: 0 0 28px;
  }

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

  .trust-card {
    min-height: 300px;
  }

  .client-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .workspace-head,
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-section {
    grid-template-columns: 1fr;
    min-height: 650px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .project-form {
    grid-template-columns: 1fr;
    margin: 0 calc(var(--pad) * -1);
  }

  .form-wide {
    grid-column: auto;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-center {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
  }

  .footer-right {
    justify-self: end;
    align-items: flex-end;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 124px;
    height: 46px;
  }

  .reel-note {
    max-width: 190px;
    line-height: 1.7;
  }

  .project-form {
    padding: 28px 22px;
  }

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

  .tool-grid article,
  .tool-grid article:nth-child(4n),
  .tool-grid article:nth-child(2n) {
    border-right: 0;
  }

  .tool-track span {
    min-width: 132px;
  }

  .boot-card {
    padding: 22px;
  }

  .footer-center {
    flex-wrap: wrap;
    gap: 18px;
  }
}

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