@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #131315;
  --ink-2: #252527;
  --muted: #6b6b70;
  --faint: #a9a8a4;
  --paper: #ffffff;
  --wash: #f2f1ed;
  --line: #dfddd6;
  --blue: #317fec;
  --red: #fb6140;
  --yellow: #ffc702;
  --display: "Inter Tight", "Arial Narrow", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4.5vw, 5.5rem);
  --section-gap: clamp(6rem, 12vw, 11rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dialog-open { overflow: hidden; }
body.fallback-dialog::after { content: ""; position: fixed; z-index: 89; inset: 0; background: rgba(5,5,5,.86); backdrop-filter: blur(12px); }

::selection { color: var(--ink); background: var(--yellow); }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .65rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.section-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 96rem);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.creative-thread {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.thread-track,
.thread-progress,
.thread-glint {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.thread-track {
  stroke: rgba(19, 19, 21, .09);
  stroke-width: 1.5;
}

.thread-progress {
  stroke: url("#threadGradient");
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(49, 127, 236, .16));
}

.thread-glint {
  stroke: rgba(255, 255, 255, .78);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 2 42;
  animation: thread-glint 4.5s linear infinite;
}

@keyframes thread-glint { to { stroke-dashoffset: -220; } }

.site-header {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), 88rem);
  min-height: 4.25rem;
  padding: .6rem .7rem .6rem 1.2rem;
  border: 1px solid rgba(19, 19, 21, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 40px rgba(19, 19, 21, .06);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: min-height .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  min-height: 3.8rem;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 35px rgba(19, 19, 21, .1);
}

.brand { display: block; width: 7.5rem; }
.brand img { width: 100%; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.25vw, 2.6rem);
  color: #38383b;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.site-nav a:not(.nav-cta) { transition: color .2s ease; }
.site-nav a:not(.nav-cta):hover { color: var(--blue); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 650;
  line-height: 1;
  transition: transform .25s var(--ease), color .25s ease, background .25s ease;
}

.nav-cta { color: #fff; background: var(--ink); }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform .25s ease, top .25s ease;
}

.menu-toggle span:nth-child(2) { top: 1.25rem; }
.menu-toggle span:nth-child(3) { top: 1.7rem; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 1.48rem; transform: translateX(-50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 1.48rem; transform: translateX(-50%) rotate(-45deg); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  align-items: center;
  min-height: 100svh;
  padding-top: clamp(8.5rem, 14vh, 11rem);
  padding-bottom: 5rem;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: .65rem 0 0 var(--blue), 1.3rem 0 0 var(--yellow);
  margin-right: 1.3rem;
}

.eyebrow.light { color: rgba(255, 255, 255, .58); }

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.25rem, 10.7vw, 10.8rem);
  font-weight: 800;
  letter-spacing: -.085em;
  line-height: .72;
}

.hero-word {
  position: relative;
  display: block;
  transition: transform .6s var(--ease);
}

.hero-word:nth-child(2) { margin-left: clamp(1rem, 8vw, 8rem); }
.hero-word:nth-child(3) { margin-left: clamp(2rem, 15vw, 15rem); }
.word-red { color: var(--red); }
.word-blue { color: var(--blue); }
.word-yellow { color: var(--yellow); }

.hero-intro {
  max-width: 38rem;
  margin: clamp(2.4rem, 5vw, 4.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  letter-spacing: -.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2rem;
}

.button-dark { gap: 1.6rem; color: #fff; background: var(--ink); }
.button-dark span { color: var(--yellow); font-size: 1.2rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-block: .25rem;
  border-bottom: 1px solid currentColor;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.35;
}

.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }

.hero-aside {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34rem;
}

.orbit-card {
  position: relative;
  width: min(32vw, 29rem);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.orbit-card::before,
.orbit-card::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit-card::before { inset: 12%; }
.orbit-card::after { inset: 27%; }

@keyframes float { 50% { transform: translateY(-10px); } }

.orbit-core {
  position: absolute;
  z-index: 2;
  inset: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 24px 55px rgba(19, 19, 21, .2);
}

.orbit-core span { color: rgba(255, 255, 255, .55); font-size: .65rem; text-transform: uppercase; letter-spacing: .13em; }
.orbit-core strong { margin-top: .4rem; font-family: var(--display); font-size: clamp(.8rem, 1.35vw, 1.2rem); line-height: 1.05; }

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: .5rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 9px 25px rgba(19, 19, 21, .06);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .02em;
}

.orbit-label-one { top: 6%; left: 45%; }
.orbit-label-two { top: 44%; right: -6%; }
.orbit-label-three { bottom: 5%; left: 45%; }
.orbit-label-four { top: 44%; left: -3%; }
.orbit-label-one::before { background: var(--red); }
.orbit-label-two::before { background: var(--blue); }

.hero-note {
  position: absolute;
  right: 0;
  bottom: 1.25rem;
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
}

.scroll-cue {
  position: absolute;
  bottom: 2.3rem;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--faint);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i { width: 1px; height: 3rem; overflow: hidden; background: var(--line); }
.scroll-cue i::after { content: ""; display: block; width: 100%; height: 55%; background: var(--ink); animation: scroll-cue 1.8s ease-in-out infinite; }
@keyframes scroll-cue { from { transform: translateY(-110%); } to { transform: translateY(200%); } }

.section-index {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-index.light { border-color: rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .45); }

.about { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }

.about-heading {
  width: min(100%, 58rem);
  margin-top: clamp(3rem, 8vw, 7rem);
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 7.3vw, 7.6rem);
  font-weight: 730;
  letter-spacing: -.075em;
  line-height: .92;
}

h2 em { font-weight: 560; color: var(--blue); }

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 6rem);
  width: min(100%, 55rem);
  margin: clamp(3rem, 7vw, 6rem) 0 0 auto;
}

.about-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.23rem);
  line-height: 1.65;
  letter-spacing: -.02em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 10vw, 8rem);
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  min-height: 20rem;
  padding: clamp(1.4rem, 2.6vw, 2.6rem);
  background: rgba(255, 255, 255, .97);
  transition: background .35s ease, transform .35s var(--ease);
}

.service-card:hover { position: relative; z-index: 2; background: var(--wash); transform: translateY(-5px); }
.service-card > span { color: var(--faint); font-size: .72rem; letter-spacing: .1em; }
.service-card h3 { margin: clamp(4.5rem, 8vw, 7rem) 0 .85rem; font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.8rem); letter-spacing: -.04em; line-height: 1.05; }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }

.results {
  display: grid;
  grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
  width: 100%;
  max-width: none;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  color: #fff;
  background: var(--ink);
}

.results::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--ink);
}

.results .section-index { grid-column: 1 / -1; }
.results-heading { align-self: start; padding-top: 2.5rem; }
.results-heading h2 { font-size: clamp(3.25rem, 6.3vw, 6.7rem); }
.results-heading > p:last-child { width: min(100%, 29rem); margin: 2rem 0 0; color: rgba(255, 255, 255, .58); font-size: 1rem; }

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

.stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 16rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.stat:nth-child(even) { border-right: 1px solid rgba(255, 255, 255, .15); }
.stat:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .15); }
.stat strong { color: var(--yellow); font-family: var(--display); font-size: clamp(3.7rem, 6vw, 6rem); font-weight: 700; letter-spacing: -.08em; line-height: 1; }
.stat span { color: rgba(255, 255, 255, .62); font-size: .85rem; line-height: 1.45; }

.clients, .work, .process, .faq { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }

.section-heading { margin-top: clamp(3.5rem, 7vw, 6.5rem); }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 8vw, 10rem); align-items: end; }
.split-heading > p, .work-heading > div:last-child > p { margin: 0 0 .5rem; color: var(--muted); font-size: 1rem; line-height: 1.7; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(9rem, 15vw, 14rem);
  padding: clamp(1.6rem, 3.3vw, 3.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  transition: background .3s ease;
}

.logo-cell:hover { background: var(--wash); }
.logo-cell img { max-width: 100%; max-height: 5.3rem; object-fit: contain; filter: grayscale(1); transition: filter .3s ease, transform .3s var(--ease); }
.logo-cell:hover img { filter: grayscale(0); transform: scale(1.04); }

.work { width: 100%; max-width: none; background: var(--wash); }
.work::before { content: ""; position: absolute; z-index: -1; inset: 0; background: var(--wash); }
.work .section-index, .work .section-heading, .work .project-grid { width: min(100%, 86rem); margin-inline: auto; }
.work-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 8vw, 10rem); align-items: end; }
.work-heading h2 em { color: var(--red); }
.work-heading .text-link { margin-top: 1.5rem; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.4rem);
  align-items: start;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.project-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  border-radius: .35rem;
  background: #292929;
  cursor: pointer;
  text-align: left;
}

.project-card:nth-child(even) { margin-top: clamp(2rem, 5vw, 5.5rem); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0) 48%); transition: background .35s ease; }
.project-card:hover img { transform: scale(1.045); filter: saturate(1.06); }

.project-meta {
  position: absolute;
  z-index: 2;
  right: 1.15rem;
  bottom: 1.1rem;
  left: 1.15rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: #fff;
}

.project-meta b { font-family: var(--display); font-size: 1.08rem; font-weight: 650; letter-spacing: -.02em; }
.project-meta i { color: rgba(255,255,255,.62); font-size: .67rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

.play-button {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  font-size: .7rem;
  transition: transform .3s var(--ease), color .3s ease, background .3s ease;
}

.project-card:hover .play-button { color: #fff; background: var(--red); transform: scale(1.08); }

.process .split-heading h2 em { color: var(--yellow); -webkit-text-stroke: 1px rgba(19,19,21,.12); }

.process-list { margin: clamp(4rem, 9vw, 8rem) 0 0; padding: 0; list-style: none; }
.process-list li {
  display: grid;
  grid-template-columns: clamp(4rem, 9vw, 9rem) 1fr;
  gap: clamp(1rem, 4vw, 4rem);
  width: min(100%, 68rem);
  margin-left: auto;
  padding: clamp(2.3rem, 4vw, 4rem) 0;
  border-top: 1px solid var(--line);
}
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--faint); font-size: .75rem; letter-spacing: .12em; }
.process-list li > div { display: grid; grid-template-columns: minmax(15rem, .7fr) 1fr; gap: clamp(2rem, 6vw, 7rem); }
.process-list h3 { margin: 0; font-family: var(--display); font-size: clamp(1.6rem, 2.7vw, 2.7rem); font-weight: 620; letter-spacing: -.055em; line-height: 1.05; }
.process-list p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.7; }

.faq { width: 100%; max-width: none; background: #f8f8f6; }
.faq::before { content: ""; position: absolute; z-index: -1; inset: 0; background: #f8f8f6; }
.faq > .section-index, .faq > .faq-layout { width: min(100%, 86rem); margin-inline: auto; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 10rem); margin-top: clamp(4rem, 8vw, 7rem); }
.faq-heading { position: sticky; top: 8rem; align-self: start; }
.faq-heading h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.faq-heading h2 em { color: var(--blue); }
.faq-heading > p:not(.eyebrow) { max-width: 31rem; margin: 2rem 0 1.5rem; color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem 0; cursor: pointer; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 620; letter-spacing: -.035em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; flex: 0 0 auto; width: 2rem; height: 2rem; border: 1px solid var(--line); border-radius: 50%; font-family: var(--body); font-weight: 400; transition: transform .3s var(--ease), background .3s ease; }
.faq-list details[open] summary span { color: #fff; background: var(--ink); transform: rotate(45deg); }
.faq-list details p { max-width: 42rem; margin: -1rem 0 2.2rem; padding-right: 4rem; color: var(--muted); line-height: 1.75; }

.contact { position: relative; z-index: 3; overflow: hidden; color: #fff; background: var(--ink); }
.contact::before { content: ""; position: absolute; top: 12%; right: -9rem; width: clamp(18rem, 38vw, 38rem); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 6rem rgba(49,127,236,.05), 0 0 0 12rem rgba(251,97,64,.025); }
.contact-inner { display: grid; grid-template-columns: .38fr 1fr; gap: clamp(3rem, 8vw, 10rem); min-height: 92svh; padding-top: clamp(5rem, 10vw, 10rem); }
.contact-brand img { width: 8rem; height: auto; }
.contact-brand p { margin-top: 1rem; color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-copy h2 { font-size: clamp(3.5rem, 7.5vw, 8rem); }
.contact-copy h2 em { color: var(--yellow); }
.contact-actions { margin-top: clamp(3.5rem, 7vw, 6.5rem); }
.contact-actions a { display: grid; grid-template-columns: 8rem 1fr auto; align-items: center; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.15); transition: padding .3s var(--ease), color .3s ease; }
.contact-actions a:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-actions a:hover { padding-left: 1rem; color: var(--yellow); }
.contact-actions small { color: rgba(255,255,255,.45); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-actions strong { font-family: var(--display); font-size: clamp(1.15rem, 2.3vw, 2.3rem); font-weight: 570; letter-spacing: -.04em; }
.contact-actions span { font-size: 1.4rem; }
.contact-footer { grid-column: 1 / -1; align-self: end; display: flex; align-items: center; justify-content: space-between; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.48); font-size: .72rem; }
.contact-footer p { margin: 0; }
.contact-footer div { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.contact-footer a:hover { color: #fff; }

.video-dialog {
  z-index: 90;
  width: min(92vw, 67rem);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: .45rem;
  color: #fff;
  background: #090909;
  box-shadow: 0 35px 100px rgba(0,0,0,.55);
}

.video-dialog::backdrop { background: rgba(5,5,5,.86); backdrop-filter: blur(12px); }
.video-dialog.fallback-open { position: fixed; top: 50%; left: 50%; display: block; margin: 0; transform: translate(-50%, -50%); }
.dialog-shell { padding: .75rem; }
.dialog-head { display: flex; align-items: center; justify-content: space-between; min-height: 3.25rem; padding: 0 .45rem 0 .75rem; }
.dialog-head p { margin: 0; font-size: .78rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.dialog-close { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; background: transparent; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.dialog-close:hover { color: var(--ink); background: var(--yellow); }
.video-dialog video { display: block; width: 100%; max-height: calc(100svh - 8rem); border-radius: .25rem; background: #000; }

.legal-page { background: #f8f8f6; }
.legal-header { position: absolute; }
.legal-main { padding-top: clamp(10rem, 17vw, 14rem); padding-bottom: 6rem; }
.legal-main > h1, .error-page h1 { margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 8vw, 8rem); font-weight: 720; letter-spacing: -.075em; line-height: .9; }
.legal-grid { display: grid; grid-template-columns: .35fr 1fr; gap: clamp(3rem, 9vw, 10rem); margin-top: clamp(4rem, 9vw, 8rem); padding-top: 1.4rem; border-top: 1px solid var(--line); }
.legal-grid aside p { margin: 0; color: var(--faint); font-size: .7rem; letter-spacing: .08em; line-height: 1.7; text-transform: uppercase; }
.legal-grid article { max-width: 48rem; }
.legal-grid article section { padding: 0 0 2.5rem; }
.legal-grid article h2 { margin: 0 0 .8rem; font-size: clamp(1.5rem, 2.5vw, 2.2rem); letter-spacing: -.04em; line-height: 1.15; }
.legal-grid article p { margin: 0 0 1rem; color: var(--muted); line-height: 1.75; }
.legal-grid article a { border-bottom: 1px solid currentColor; color: var(--ink); }
.legal-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; padding-bottom: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.legal-footer p { margin: 0; }
.error-page { display: grid; place-items: center; min-height: 100svh; padding: 2rem; background: var(--wash); }
.error-page main { width: min(100%, 60rem); }
.error-page img { width: 8rem; height: auto; margin-bottom: clamp(4rem, 10vw, 8rem); }
.error-page .eyebrow { margin-bottom: 1.4rem; }
.error-page .button { margin-top: 3rem; }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

.service-grid [data-reveal]:nth-child(2), .project-grid [data-reveal]:nth-child(2), .stats-grid [data-reveal]:nth-child(2) { transition-delay: .06s; }
.service-grid [data-reveal]:nth-child(3), .project-grid [data-reveal]:nth-child(3), .stats-grid [data-reveal]:nth-child(3) { transition-delay: .12s; }
.service-grid [data-reveal]:nth-child(4), .project-grid [data-reveal]:nth-child(4), .stats-grid [data-reveal]:nth-child(4) { transition-delay: .18s; }

@media (max-width: 72rem) {
  .hero { grid-template-columns: 1fr .7fr; }
  .hero-aside { min-height: 28rem; }
  .orbit-card { width: min(33vw, 23rem); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 17rem; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 52rem) {
  html { scroll-padding-top: 5rem; }
  .site-header { top: .65rem; width: calc(100% - 1.3rem); }
  .brand { width: 6.7rem; }
  .menu-toggle { position: relative; display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: .7rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255,255,255,.97);
    box-shadow: 0 25px 70px rgba(19,19,21,.14);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-.5rem);
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s ease;
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: .85rem 1rem; }
  .site-nav .nav-cta { margin-top: .45rem; }

  .hero { grid-template-columns: 1fr; align-content: center; padding-top: 8.5rem; }
  .hero h1 { font-size: clamp(4.35rem, 18.5vw, 8.5rem); }
  .hero-word:nth-child(2) { margin-left: 8vw; }
  .hero-word:nth-child(3) { margin-left: 16vw; }
  .hero-intro { max-width: 33rem; }
  .hero-aside { display: none; }
  .scroll-cue { display: none; }

  .about-body, .split-heading, .work-heading, .faq-layout, .results, .contact-inner { grid-template-columns: 1fr; }
  .about-body { margin-left: 0; }
  .results { gap: 3rem; }
  .faq-heading { position: static; }
  .contact-inner { min-height: 100svh; }
  .contact-copy { margin-top: 1rem; }
  .legal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 38rem) {
  :root { --page-pad: 1.15rem; --section-gap: 5.5rem; }
  .site-header { padding-left: 1rem; }
  .hero { min-height: 48rem; padding-bottom: 4rem; }
  .hero h1 { line-height: .77; }
  .hero-intro { margin-top: 3rem; font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.15rem; }
  h2 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .about-heading br { display: none; }
  .about-body { grid-template-columns: 1fr; gap: 1.1rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 15rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 12rem; padding: 1.25rem; }
  .stat strong { font-size: 3.2rem; }
  .stat span { font-size: .75rem; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cell { min-height: 8rem; padding: 1.45rem; }
  .project-grid { gap: .65rem; }
  .project-card:nth-child(even) { margin-top: 2.3rem; }
  .project-meta { right: .75rem; bottom: .75rem; left: .75rem; }
  .project-meta b { font-size: .88rem; }
  .project-meta i { display: none; }
  .play-button { top: .65rem; right: .65rem; width: 2.35rem; height: 2.35rem; }
  .process-list li { grid-template-columns: 2.6rem 1fr; gap: .5rem; }
  .process-list li > div { grid-template-columns: 1fr; gap: 1.1rem; }
  .process-list p { font-size: .88rem; }
  .faq-list details p { padding-right: 0; }
  .contact-actions a { grid-template-columns: 1fr auto; }
  .contact-actions small { grid-column: 1 / -1; }
  .contact-actions strong { overflow-wrap: anywhere; }
  .contact-footer { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .video-dialog { width: calc(100vw - 1rem); }
  .legal-footer { align-items: flex-start; flex-direction: column; gap: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
  .thread-glint { display: none; }
}

@media print {
  .site-header, .creative-thread, .scroll-cue, .play-button { display: none !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
  .results, .contact { color: #000; background: #fff; }
  .project-grid { grid-template-columns: repeat(4, 1fr); }
}
