@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --black: #000;
  --near-black: #050508;
  --white: #fff;
  --paper: #f5f2ea;
  --border: rgba(255, 255, 255, 0.15);
  --border-soft: rgba(255, 255, 255, 0.1);
  --container: 72rem;
}

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

html {
  min-width: 320px;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lightbox-open,
body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

button {
  margin: 0;
}

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

img,
canvas,
svg {
  display: block;
}

figure,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-size: inherit;
  font-weight: inherit;
}

ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(255, 255, 255, 0.85);
  color: #000;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 0 0 6px 6px;
  background: #fff;
  color: #000;
  font-family: "Space Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  transform: translate(-50%, -150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.font-mono,
.mono,
code {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.display {
  font-family: "Chakra Petch", "Space Mono", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}

.display-hero,
.display--hero {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
}

.outlined {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.85);
}

.icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon--small {
  width: 0.75rem;
  height: 0.75rem;
}

#app {
  position: relative;
  z-index: 10;
}

.portfolio {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: transparent;
  color: #fff;
}

/* Fixed space layers */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.starfield canvas {
  width: 100%;
  height: 100%;
}

.starfield__nebula,
.starfield__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.starfield__nebula {
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(255, 255, 255, 0.04), transparent 60%),
    radial-gradient(900px 500px at 15% 80%, rgba(255, 255, 255, 0.03), transparent 60%);
}

.starfield__grain {
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

.scroll-ribbon {
  position: fixed;
  inset: 0;
  /* Decorative depth layer: stars < ribbon < portfolio content. */
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

body.lightbox-open .scroll-ribbon {
  display: none;
}

body.lightbox-open #app {
  z-index: 80;
}

body.lightbox-open .hud {
  visibility: hidden;
  opacity: 0;
}

body.lightbox-open .cursor-ring,
body.lightbox-open .cursor-dot {
  z-index: 100;
}

/*
 * Desktop galaxy journey
 *
 * The document remains the input surface, but every section is rendered as a
 * full-viewport scene in perspective on every screen size. Reduced-motion
 * users keep the ordinary responsive document flow.
 */
@media (prefers-reduced-motion: no-preference) {
  html.galaxy-scroll-active {
    overflow-x: hidden;
    scroll-behavior: auto !important;
    scrollbar-width: none;
    overscroll-behavior-y: none;
  }

  html.galaxy-scroll-active body {
    overflow-x: hidden;
    scroll-behavior: auto !important;
    scrollbar-width: none;
  }

  html.galaxy-scroll-active::-webkit-scrollbar,
  html.galaxy-scroll-active body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  #app.galaxy-scroll-host {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100svh;
  }

  .portfolio.galaxy-scroll-viewport {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    min-height: 0;
    overflow: clip;
    background: transparent;
    isolation: isolate;
  }

  .main.galaxy-scroll-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: visible;
    perspective: clamp(800px, 120vw, 1800px);
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
  }

  .main.galaxy-scroll-main > .galaxy-scene {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    filter: none !important;
    transform:
      translate3d(
        var(--scene-x, 0px),
        var(--scene-y, 0px),
        var(--scene-z, 0px)
      )
      scale(var(--scene-scale, 1));
    transform-origin: 50% 50%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
  }

  .main.galaxy-scroll-main > .galaxy-scene.is-near {
    z-index: 1;
  }

  .main.galaxy-scroll-main > .galaxy-scene.is-active {
    z-index: 2;
    pointer-events: auto;
  }

  .galaxy-scene__fit {
    width: 100%;
    flex: none;
    transform: scale(var(--scene-fit, 1));
    transform-origin: 50% 50%;
    backface-visibility: hidden;
    will-change: transform;
  }

  .brands > .galaxy-scene__fit,
  .galaxy-scene__brands-fit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  html.galaxy-scroll-active .intro__orbit {
    display: none;
  }
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: none;
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: width 0.28s ease, height 0.28s ease, transform 0s;
}

.cursor-ring--big {
  width: 3.5rem;
  height: 3.5rem;
}

.cursor-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: #fff;
}

@media (hover: hover) {
  *,
  a,
  button,
  [data-hover] {
    cursor: none !important;
  }
}

/* HUD */
.hud {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.hud__identity {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Space Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
}

.hud-logo {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  flex: none;
}

.hud__theme-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: none;
  background: transparent;
  color: inherit;
}

.hud__theme-toggle:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.85);
  outline-offset: 0.45rem;
}

.hud__theme-toggle .hud-logo__diamond,
.hud__theme-toggle .hud-logo__square,
.hud__theme-toggle .hud-logo__dot {
  transition:
    border-color 0.45s ease,
    background-color 0.45s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hud__theme-toggle:hover .hud-logo__diamond,
.hud__theme-toggle:focus-visible .hud-logo__diamond {
  transform: rotate(45deg) scale(1.08);
}

.hud-logo__diamond,
.hud-logo__square,
.hud-logo__dot {
  position: absolute;
}

.hud-logo__diamond {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  transform: rotate(45deg);
}

.hud-logo__square {
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

.hud-logo__dot {
  top: 50%;
  left: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%);
}

.hud__year {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Space Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
}

.hud__rail {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: none;
  transform: translateY(-50%);
}

.hud__rail-track {
  position: relative;
  display: flex;
  width: 1.5rem;
  height: 46vh;
  flex-direction: column;
  align-items: center;
}

.hud__rail-line {
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

.hud__rail-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
}

.hud__rail-percent {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
}

.hud__section {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
}

.hud__section-prefix {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
}

.hud__section .icon {
  color: rgba(255, 255, 255, 0.6);
}

.hud__fly {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  transform: translateX(-50%);
}

.hud__fly div {
  width: 1px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
}

/* Flight controls only make sense while the fixed-scene journey is active.
 * Native-flow layouts (phones, short viewports and reduced motion) keep the
 * identity HUD but remove fixed labels that would otherwise cover the work. */
html:not(.galaxy-scroll-active) .hud__rail,
html:not(.galaxy-scroll-active) .hud__section,
html:not(.galaxy-scroll-active) .hud__fly {
  display: none;
}

.filter-definitions {
  position: absolute;
}

/* Shared section primitives */
.section {
  position: relative;
  min-height: 100svh;
  padding: 6rem 1.5rem;
}

.section--centered {
  display: flex;
  align-items: center;
}

.section__inner {
  width: 100%;
  min-width: 0;
  max-width: var(--container);
  margin-inline: auto;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.32em;
}

.section-tag .icon {
  width: 0.75rem;
  height: 0.75rem;
}

.section-tag__line {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
}

.section-heading,
.section__headline {
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeUp 0.9s ease-out both;
}

/* Intro */
.intro {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: 0;
  padding-inline: 1.5rem;
}

.intro__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: none;
  width: 130vmin;
  height: 130vmin;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.orbit__rotator {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
}

.orbit__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: left;
  transform: rotate(var(--orbit-angle, 0deg)) translate(0, -50%);
}

.orbit__text {
  color: transparent;
  font-size: 9vmin;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
  transform: translateX(35%);
}

.orbit__text span {
  opacity: 0.7;
}

.intro__content {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  will-change: transform;
}

.intro__plane {
  isolation: isolate;
  transform-style: flat;
}

.intro__copy {
  position: relative;
  z-index: 2;
  flex: 1;
}

.intro__headline > span {
  display: block;
}

.intro__name-first,
.intro__name-last {
  display: block;
}

.intro__name-first {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
}

.intro__alias {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Space Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.32em;
}

.intro__roles {
  display: grid;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.intro__roles li,
.star-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.intro__roles .icon,
.star-bullet .icon {
  width: 0.75rem;
  height: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.intro__portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 17.5rem;
  flex: none;
}

.portrait__outer {
  aspect-ratio: 4 / 5;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  background: transparent;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.06);
}

.portrait__stage {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  background:
    radial-gradient(circle at 55% 42%, rgba(255, 160, 104, 0.13), transparent 38%),
    rgba(5, 5, 8, 0.32);
}

.portrait__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1.015);
}

.portrait__stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5, 5, 8, 0.34), transparent 22%),
    linear-gradient(to top, rgba(5, 5, 8, 0.34), transparent 24%);
  content: "";
  pointer-events: none;
}

.portrait__label {
  position: absolute;
  top: 0.5rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Space Mono", monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  pointer-events: none;
}

.portrait__label--left {
  left: 0.5rem;
}

.portrait__label--right {
  right: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.portrait__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

/* Pitch */
.pitch {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding-block: 0;
  padding-inline: 1.5rem;
}

.pitch__bloom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.pitch__bloom::before {
  width: 52vmin;
  height: 52vmin;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.1), transparent 70%);
  content: "";
}

.pitch__content,
.pitch__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.pitch__eyebrow,
.pitch__label {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Space Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.42em;
}

.pitch__copy {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.875rem;
  line-height: 1.15;
}

.pitch__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.pitch__signature span:nth-child(2) {
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.32em;
}

.pitch__signature span:first-child,
.pitch__signature span:last-child,
.pitch__signature i {
  width: 4rem;
  height: 1px;
  flex: none;
  background: rgba(255, 255, 255, 0.2);
}

/* About */
.about__grid {
  display: grid;
  gap: 3rem;
}

.about__copy h2 {
  font-size: 2.25rem;
  line-height: 1;
}

.about__copy h2 span {
  display: block;
}

.about__copy > p {
  max-width: 42rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  line-height: 1.625;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 0;
}

.about__stat-label,
.about__stats dt,
.panel__label {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

.panel__label {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.about__stat-value,
.about__stats dd {
  margin-top: 0.5rem;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: #fff;
  font-size: 1.875rem;
}

.about__stat {
  min-width: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about__stat-label {
  min-height: 2.6em;
  line-height: 1.45;
}

.about__stat-detail {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.about__panel {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.01);
}

.about__panel .panel__label:not(:first-child) {
  margin-top: 1.5rem;
}

.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about__chip,
.about__chips span {
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  line-height: 1rem;
}

.about__chip--tool,
.about__chips--tools span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
}

.about__education {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.about__education .star-bullet {
  color: rgba(255, 255, 255, 0.85);
}

.education__detail {
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Experience */
.experience__list {
  margin-top: 3rem;
}

.experience__item {
  display: grid;
  gap: 1.5rem;
  padding-block: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.experience__item:first-child {
  border-top: 0;
}

.experience__log,
.experience__number,
.experience__period,
.experience__location,
.experience__role {
  font-family: "Space Mono", monospace;
}

.experience__log,
.experience__number {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

.experience__period,
.experience__location,
.experience__role {
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
}

.experience__period {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.experience__location {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.4);
}

.experience__title-row,
.experience__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.experience__company,
.experience__header h3 {
  color: #fff;
  font-size: 1.5rem;
}

.experience__role {
  color: rgba(255, 255, 255, 0.6);
}

.experience__bullets {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.experience__bullets li {
  display: flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.experience__bullets .icon {
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Projects */
.projects__intro,
.projects__lede {
  max-width: 42rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.projects__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.projects__card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  transition: border-color 0.3s;
}

.projects__card:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.projects__card-meta,
.projects__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

.projects__card h3 {
  margin-top: 1.5rem;
  color: #fff;
  font-size: 1.5rem;
}

.projects__card p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

.projects__bloom,
.projects__glow {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.projects__card:hover .projects__bloom,
.projects__card:hover .projects__glow {
  opacity: 1;
}

.projects__also {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.projects__also-label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

.projects__also-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.projects__also-list span {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* Brands */
.brands {
  overflow: hidden;
}

.brands__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.brands__header h2 {
  font-size: 2.25rem;
  line-height: 1;
}

.brands__header p {
  display: none;
  max-width: 20rem;
  color: rgba(255, 255, 255, 0.55);
}

.brands__field {
  position: relative;
  width: 100%;
  max-width: var(--container);
  height: 62vh;
  margin: 3rem auto 0;
}

@keyframes brandFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate(var(--dx, 10px), var(--dy, 10px));
  }
}

.brands__item {
  position: absolute;
  left: var(--brand-x, 50%);
  user-select: none;
  animation-name: brandFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}

.brands__name {
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color 0.5s, filter 0.5s;
}

.brands__item:hover .brands__name {
  color: #fff;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.9));
}

.brands__dot {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.brands__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 0;
  height: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.brands__item:hover .brands__orbit {
  width: 110%;
  height: 160%;
  opacity: 1;
}

/* Galleries */
.gallery__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery__header h2 {
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
}

.gallery__header p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .gallery__header--aligned {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .gallery__header--aligned p {
    max-width: none;
    justify-self: start;
  }
}

.gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: -1.75rem 0 1.25rem;
}

.gallery__tab {
  min-height: 2.75rem;
  padding: 0.58rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(3, 5, 7, 0.62);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, background-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.gallery__tab:hover,
.gallery__tab:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.gallery__tab.is-active,
.gallery__tab[aria-selected="true"] {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(248, 247, 242, 0.96);
  color: #0a0b0c;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 24px rgba(255, 255, 255, 0.14);
}

.gallery__tab:hover {
  transform: translateY(-1px);
}

.gallery__tab:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.gallery__panel[hidden] {
  display: none;
}

.gallery__grid {
  display: grid;
  gap: 1.25rem;
}

.gallery__cell {
  min-width: 0;
}

.gallery__media,
.media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  outline: none;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  text-align: left;
  text-decoration: none;
  transition: border-color 0.3s;
}

.media--doc {
  container-type: inline-size;
}

.gallery__cell:hover .gallery__media,
.gallery__cell:hover .media {
  border-color: rgba(255, 255, 255, 0.45);
}

.gallery__media:focus,
.gallery__media:focus-visible,
.media:focus,
.media:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.media--image,
.media--doc,
.media--portrait {
  aspect-ratio: 4 / 5;
}

.media--vertical {
  aspect-ratio: 9 / 16;
}

.media--result {
  aspect-ratio: 4 / 3;
}

.media__visual,
.media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media__image {
  opacity: 0.95;
  transition: transform 0.7s;
}

.media--contain .media__image {
  padding: clamp(0.9rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 50% 48%, rgba(68, 58, 92, 0.34), transparent 62%),
    rgba(3, 3, 7, 0.9);
  object-fit: contain;
}

.gallery__cell:hover .media__image {
  transform: scale(1.03);
}

.media__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.media__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@keyframes sparklePulse {
  50% {
    opacity: 0.5;
  }
}

.media__sparkle {
  position: absolute;
  animation-name: sparklePulse;
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-iteration-count: infinite;
}

.media__sparkle .icon {
  width: 100%;
  height: 100%;
}

.media__frame {
  position: absolute;
  inset: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  pointer-events: none;
}

.media__label,
.media__labels {
  position: absolute;
  top: 0.75rem;
  z-index: 3;
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  pointer-events: none;
}

.media__label--left,
.media__labels--left {
  left: 0.75rem;
}

.media__label--right,
.media__labels--right {
  right: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.media__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.media__play span {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform 0.3s;
}

.gallery__cell:hover .media__play span {
  transform: scale(1.1);
}

.media__play .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.media__result {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.media__result-dots,
.media__browser-dots {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.375rem;
  pointer-events: none;
}

.media__result-dots span,
.media__browser-dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.media__result img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 3px;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.06);
  transition: transform 0.5s;
}

.gallery__cell:hover .media__result img {
  transform: scale(1.02);
}

.media__doc-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.05) 50%, transparent 51%);
  background-size: 14px 14px;
  pointer-events: none;
}

.media__doc-glow,
.media__doc-shade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 10rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.media__doc-content,
.media__doc-copy {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  text-align: center;
  pointer-events: none;
}

.media__doc-content > .icon,
.media__doc-copy > .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.media__doc-title,
.media__doc-copy > .display {
  width: 100%;
  color: #fff;
  font-size: clamp(0.58rem, var(--doc-title-size, 12cqw), 3.4rem);
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.media__doc-open,
.media__doc-copy > .mono {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

.gallery__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

.gallery__caption > span:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.gallery__caption > span:last-child {
  flex: none;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

/* Native case-study evidence
 *
 * The supplied Canva pages are used as art direction only. Their source
 * captures, labels, metrics and arrows are recomposed here so the work feels
 * native to the portfolio rather than like a slide pasted into a card.
 */
.evidence-story {
  --evidence-warm: #ff7b34;
  --evidence-success: #7be4a2;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(0.8rem, 1.4vw, 1.15rem);
  overflow: hidden;
  padding: clamp(0.8rem, 1.5vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 8%, rgba(107, 75, 144, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(9, 8, 14, 0.9), rgba(2, 3, 5, 0.78));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.evidence-story::before {
  position: absolute;
  inset: 0.55rem;
  z-index: -1;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.evidence-kicker,
.evidence-source-note,
.evidence-caption,
.evidence-footnote,
.evidence-capture__label {
  letter-spacing: 0.16em;
}

.evidence-kicker {
  color: var(--evidence-warm);
  font-size: 0.62rem;
  font-weight: 700;
}

.evidence-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.35rem, 1vw, 0.9rem);
}

.evidence-intro h3 {
  margin-top: 0.7rem;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 0.9;
}

.evidence-intro > p {
  max-width: 28rem;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.74rem, 1.1vw, 0.92rem);
  line-height: 1.5;
}

.evidence-source-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.56rem;
}

.evidence-source-note strong {
  color: rgba(255, 255, 255, 0.78);
}

.evidence-frame,
.evidence-capture,
.insight-capture,
.content-era,
.linkedin-capture {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.54);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.evidence-frame {
  overflow: hidden;
  padding: 0.45rem;
}

.channel-capture {
  position: relative;
  aspect-ratio: 1433 / 728;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.channel-capture img {
  display: block;
}

.channel-capture__base {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-capture__feature {
  position: absolute;
  top: 50.5%;
  width: 34.3%;
  height: 49.5%;
  object-fit: cover;
  object-position: top;
  background: #fff;
}

.channel-capture__feature--a {
  left: 3.35%;
}

.channel-capture__feature--b {
  right: 0.55%;
}

.evidence-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.2rem 0.05rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.52rem;
}

.evidence-caption span:last-child {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.evidence-stats {
  display: grid;
  gap: clamp(0.55rem, 1vw, 0.9rem);
}

.evidence-stats--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evidence-stat {
  min-width: 0;
  padding: clamp(0.65rem, 1.1vw, 0.9rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.evidence-stat__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.evidence-stat__top strong {
  color: var(--evidence-success);
  font-size: 0.65rem;
}

.evidence-stat__top strong:empty {
  display: none;
}

.evidence-stat__route {
  display: grid;
  grid-template-columns: max-content minmax(1.25rem, 1fr) max-content;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.48rem;
  color: #fff;
  font-size: clamp(0.88rem, 1.6vw, 1.3rem);
  line-height: 1;
}

.evidence-stat__route i {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 123, 52, 0.2), var(--evidence-warm));
}

.evidence-stat__route i::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 0.38rem;
  height: 0.38rem;
  border-top: 1px solid var(--evidence-warm);
  border-right: 1px solid var(--evidence-warm);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.evidence-arrow {
  width: 100%;
  min-width: 2.5rem;
  color: rgba(255, 255, 255, 0.82);
}

.evidence-arrow svg {
  width: 100%;
  height: auto;
}

.evidence-arrow__path {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.evidence-arrow__tip {
  fill: currentColor;
}

.evidence-comparison,
.podcast-insights,
.linkedin-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(3.25rem, 0.14fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.9rem);
}

.evidence-capture,
.insight-capture,
.linkedin-capture {
  overflow: hidden;
  padding: 0.45rem;
}

.evidence-capture__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 1.8rem;
  padding: 0.12rem 0.2rem 0.45rem;
  color: var(--evidence-warm);
  font-size: 0.56rem;
  font-weight: 700;
}

.evidence-capture__label small {
  color: rgba(255, 255, 255, 0.4);
  font: inherit;
  font-weight: 400;
}

.evidence-capture--after .evidence-capture__label span,
.insight-capture--after .evidence-capture__label span,
.linkedin-capture--after .evidence-capture__label span {
  color: var(--evidence-success);
}

.evidence-capture--wide img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #fff;
}

.evidence-stats--compact {
  margin-top: clamp(0.55rem, 1vw, 0.9rem);
}

.evidence-story--content,
.evidence-story--podcast-content {
  grid-template-columns: minmax(0, 1fr) minmax(3.5rem, 0.13fr) minmax(0, 1fr);
  align-items: center;
}

.content-era {
  overflow: hidden;
  padding: clamp(0.55rem, 1vw, 0.85rem);
}

.content-era__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.15rem 0.55rem;
}

.content-era__heading span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
}

.content-era__heading strong {
  color: var(--evidence-warm);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
}

.content-era--after .content-era__heading strong {
  color: var(--evidence-success);
}

.youtube-sheet {
  overflow-x: auto;
  padding: 0.3rem;
  border-radius: 4px;
  background: #fff;
  scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
}

.youtube-sheet:focus-visible {
  outline: 2px solid var(--evidence-warm);
  outline-offset: 3px;
}

.youtube-sheet > img,
.youtube-sheet__row > img:first-child {
  display: block;
  width: 100%;
  height: auto;
}

.youtube-sheet--before {
  display: grid;
  gap: 0.22rem;
}

.youtube-sheet--after {
  display: grid;
  gap: 0.15rem;
}

.youtube-sheet__row {
  position: relative;
}

.youtube-sheet__replacement {
  position: absolute;
  top: 0;
  width: 33.3334%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  background: #fff;
}

.youtube-sheet__replacement--one {
  left: 0;
}

.youtube-sheet__replacement--two {
  left: 33.3334%;
}

.youtube-sheet__replacement--three {
  right: 0;
}

.evidence-footnote {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.52rem;
  text-align: center;
}

.evidence-story--podcast-results {
  grid-template-columns: minmax(13rem, 0.62fr) minmax(0, 1.38fr);
  grid-template-areas:
    "profile insights"
    "stats stats";
  align-items: stretch;
}

.podcast-profile {
  grid-area: profile;
}

.podcast-profile__crop {
  position: relative;
  aspect-ratio: 1.28;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.podcast-profile__crop img {
  position: absolute;
  top: -0.8%;
  left: 0;
  width: 100%;
  height: auto;
}

.podcast-insights {
  grid-area: insights;
}

.insight-capture__crop {
  position: relative;
  aspect-ratio: 2.38;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.insight-capture__crop img {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
}

.insight-capture--before .insight-capture__crop img {
  top: -93.4%;
}

.insight-capture--after .insight-capture__crop img {
  top: -97.9%;
}

.evidence-stats--podcast {
  grid-area: stats;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(10rem, 0.78fr);
}

.evidence-callout {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: clamp(0.65rem, 1.1vw, 0.9rem);
  border: 1px solid rgba(123, 228, 162, 0.34);
  border-radius: 7px;
  background: rgba(123, 228, 162, 0.06);
}

.evidence-callout__value {
  color: var(--evidence-success);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.evidence-callout__copy {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.11em;
  line-height: 1.5;
}

.evidence-callout__copy strong {
  color: rgba(255, 255, 255, 0.88);
}

.phone-pair {
  display: grid;
  height: clamp(16rem, 34vh, 21rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.35rem, 0.7vw, 0.6rem);
  padding-bottom: 0.75rem;
}

.phone-crop {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background: #fff;
}

.phone-crop--offset {
  transform: translateY(0.75rem);
}

.phone-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.evidence-story--linkedin {
  grid-template-columns: minmax(0, 1.6fr) minmax(14rem, 0.62fr);
  grid-template-areas:
    "comparison sample"
    "metrics sample";
  align-items: start;
}

.linkedin-comparison {
  grid-area: comparison;
}

.linkedin-capture__crop {
  position: relative;
  aspect-ratio: 831 / 368;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.linkedin-capture__crop img {
  position: absolute;
  left: -34.66%;
  width: 136.1%;
  max-width: none;
  height: auto;
}

.linkedin-capture--before .linkedin-capture__crop img {
  top: -24.46%;
}

.linkedin-capture--after .linkedin-capture__crop img {
  top: -142.12%;
}

.linkedin-metrics {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.4rem, 0.75vw, 0.65rem);
}

.linkedin-metrics .evidence-stat {
  padding: 0.65rem;
}

.linkedin-metrics .evidence-stat__route {
  font-size: clamp(0.72rem, 1.1vw, 0.98rem);
}

.evidence-linkedin__sample {
  grid-area: sample;
  min-width: 0;
  padding: 0.3rem;
}

.evidence-linkedin__sample > .evidence-kicker {
  display: block;
  margin-bottom: 0.6rem;
}

.evidence-linkedin__sample .media--contain .media__image {
  padding: clamp(0.45rem, 1vw, 0.85rem);
}

@media (min-width: 900px) {
  .evidence-story--youtube-growth {
    grid-template-columns: minmax(14rem, 0.62fr) minmax(0, 1.38fr);
    grid-template-areas:
      "intro channel"
      "stats stats";
    align-items: stretch;
  }

  .evidence-story--youtube-growth .evidence-intro {
    grid-area: intro;
  }

  .evidence-frame--channel {
    grid-area: channel;
  }

  .evidence-story--youtube-growth .evidence-stats {
    grid-area: stats;
  }
}

@media (max-width: 899px) {
  .evidence-stats--three,
  .evidence-stats--podcast,
  .linkedin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-comparison,
  .podcast-insights,
  .linkedin-comparison,
  .evidence-story--content,
  .evidence-story--podcast-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .evidence-story--podcast-results,
  .evidence-story--linkedin {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: none;
  }

  .podcast-profile,
  .podcast-insights,
  .evidence-stats--podcast,
  .linkedin-comparison,
  .linkedin-metrics,
  .evidence-linkedin__sample {
    grid-area: auto;
  }

  .evidence-arrow--between,
  .evidence-arrow--podcast,
  .evidence-arrow--content,
  .evidence-arrow--linkedin {
    width: 5rem;
    justify-self: center;
    transform: rotate(90deg);
  }

  .podcast-profile__crop {
    aspect-ratio: 1.5;
  }

  .phone-pair {
    height: clamp(20rem, 70vw, 28rem);
  }
}

@media (max-width: 639px) {
  .evidence-story {
    padding: 0.7rem;
  }

  .evidence-stats--three,
  .evidence-stats--podcast,
  .linkedin-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .evidence-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .evidence-caption span:last-child {
    text-align: left;
  }

  .youtube-sheet > img,
  .youtube-sheet__row {
    min-width: 40rem;
  }

  .phone-pair {
    height: clamp(19rem, 105vw, 25rem);
  }
}

/* Awards */
.awards__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.awards__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
}

.awards__card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.awards__icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.awards__icon .icon {
  color: rgba(255, 255, 255, 0.8);
}

.awards__copy {
  flex: 1;
}

.awards__number,
.awards__org {
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

.awards__number {
  color: rgba(255, 255, 255, 0.4);
}

.awards__card h3 {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 1.5rem;
}

.awards__detail,
.awards__card p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.awards__org {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.24em;
}

/* Contact */
.contact__headline {
  color: #fff;
  font-size: 3rem;
  line-height: 0.95;
}

.contact__headline span {
  display: block;
}

.contact__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.contact__card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  transition: border-color 0.3s;
}

.contact__card:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.contact__card-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact__card-icons .icon {
  color: rgba(255, 255, 255, 0.7);
}

.contact__card-icons .icon:last-child {
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s;
}

.contact__card:hover .contact__card-icons .icon:last-child {
  transform: translate(0.125rem, -0.125rem);
}

.contact__label {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

.contact__value {
  margin-top: 0.25rem;
  color: #fff;
  overflow-wrap: anywhere;
}

.contact__value--break {
  font-size: clamp(0.75rem, 1.05vw, 0.95rem);
}

.contact__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.lightbox__dialog {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin-block: auto;
}

.lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.lightbox__identity,
.lightbox__title,
.lightbox__actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.lightbox__label,
.lightbox__title > .mono {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
}

.lightbox__caption,
.lightbox__title > span:last-child {
  color: rgba(255, 255, 255, 0.8);
  overflow-wrap: anywhere;
}

.lightbox__drive,
.lightbox__actions > a,
.lightbox__close {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s;
}

.lightbox__drive:hover,
.lightbox__actions > a:hover,
.lightbox__close:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.lightbox__drive,
.lightbox__actions > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-family: "Space Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  white-space: nowrap;
}

.lightbox__drive .icon,
.lightbox__actions > a .icon {
  width: 0.75rem;
  height: 0.75rem;
}

.lightbox__close {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
}

.lightbox__stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: #000;
}

.lightbox__stage--video {
  aspect-ratio: 16 / 9;
}

.lightbox__dialog--portrait {
  max-width: min(28rem, calc((100svh - 8rem) * 9 / 16));
}

.lightbox__stage--portrait-video {
  aspect-ratio: 9 / 16;
}

.lightbox__stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox__stage img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .cursor-ring,
  .cursor-dot {
    display: block;
  }

  .hud__identity {
    top: 2rem;
    left: 2rem;
  }

  .hud__year {
    top: 2rem;
    right: 2rem;
  }

  .hud__rail {
    display: block;
  }

  .hud__section {
    bottom: 2rem;
    left: 2rem;
  }

  .section {
    padding-inline: 2.5rem;
  }

  .section-tag {
    margin-bottom: 4rem;
  }

  .section-heading,
  .section__headline,
  .about__copy h2,
  .brands__header h2,
  .gallery__header h2 {
    font-size: 3.75rem;
  }

  .intro {
    padding-inline: 2.5rem;
  }

  .intro__roles {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .intro__portrait {
    max-width: 20rem;
  }

  .pitch {
    padding-inline: 2.5rem;
  }

  .pitch__copy {
    font-size: 2.25rem;
  }

  .about__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .experience__company,
  .experience__header h3 {
    font-size: 1.875rem;
  }

  .projects__grid,
  .gallery__grid--2,
  .gallery__grid--3,
  .gallery__grid--4,
  .gallery__grid--5,
  .gallery__grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact__headline {
    font-size: 4.5rem;
  }
}

@media (min-width: 768px) {
  .intro__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .pitch__copy {
    font-size: 3rem;
  }

  .about__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .about__copy {
    grid-column: span 7 / span 7;
  }

  .about__panel-wrap,
  .about__panel {
    grid-column: span 5 / span 5;
  }

  .experience__item {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .experience__meta {
    grid-column: span 3 / span 3;
  }

  .experience__body {
    grid-column: span 9 / span 9;
  }

  .brands__header p {
    display: block;
  }

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

  .contact__headline {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .projects__grid,
  .gallery__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery__grid--4,
  .contact__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .gallery__grid--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .hud__year {
    display: none;
  }

  .hud__identity {
    max-width: calc(100vw - 2.5rem);
  }

  .hud__fly {
    bottom: 4.25rem;
  }

  .hud__section {
    max-width: calc(100vw - 2.5rem);
    gap: 0.5rem;
    letter-spacing: 0.2em;
  }

  #shorts .gallery__grid,
  #brand-work .gallery__grid,
  #production .gallery__grid,
  #podcast-panel-podcast-reels .gallery__grid,
  #podcast-panel-podcast-carousels .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #hud-active {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .display-hero,
  .display--hero {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .brands__name {
    font-size: clamp(0.78rem, calc(var(--brand-size) * 0.68), 1.45rem) !important;
  }

  .brands__item {
    left: clamp(4.75rem, var(--brand-x, 50%), calc(100% - 4.75rem));
  }

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

  .lightbox__identity {
    flex-wrap: wrap;
  }

  .lightbox__actions {
    width: 100%;
    justify-content: space-between;
  }

  .lightbox__stage img {
    max-height: min(72vh, calc(100svh - 10rem));
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .brands__name {
    font-size: clamp(0.9rem, calc(var(--brand-size) * 0.78), 1.8rem) !important;
  }

  .brands__item {
    left: clamp(6.5rem, var(--brand-x, 50%), calc(100% - 6.5rem));
  }
}

@media (max-width: 374px) {
  .section,
  .intro,
  .pitch {
    padding-inline: 1rem;
  }

  .section-tag {
    gap: 0.625rem;
    letter-spacing: 0.2em;
  }

  .pitch__copy {
    font-size: 1.65rem;
  }

  .contact__headline {
    font-size: clamp(2.3rem, 13vw, 2.75rem);
  }

  .contact__card,
  .projects__card,
  .awards__card {
    padding: 1.15rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  /* Keep each "planet" legible inside one viewport before it flies past. */
  html.galaxy-scroll-active .galaxy-scene {
    padding:
      clamp(4.25rem, 7vh, 5.75rem)
      clamp(2.5rem, 5vw, 5rem)
      clamp(4rem, 6.5vh, 5.25rem);
  }

  html.galaxy-scroll-active .section__inner {
    max-width: min(var(--container), calc(100vw - clamp(5rem, 10vw, 10rem)));
  }

  html.galaxy-scroll-active .section-tag {
    gap: 0.75rem;
    margin-bottom: clamp(0.65rem, 1.5vh, 1.15rem);
    font-size: 0.54rem;
    letter-spacing: 0.24em;
  }

  html.galaxy-scroll-active .section-heading,
  html.galaxy-scroll-active .section__headline,
  html.galaxy-scroll-active .about__copy h2,
  html.galaxy-scroll-active .brands__header h2,
  html.galaxy-scroll-active .gallery__header h2 {
    font-size: clamp(2rem, 4.7vh, 3.35rem);
  }

  html.galaxy-scroll-active .intro__content {
    gap: clamp(1.5rem, 4vw, 3.5rem);
  }

  html.galaxy-scroll-active .intro__roles {
    gap: 0.3rem;
    margin-top: clamp(1rem, 2.5vh, 2rem);
    font-size: clamp(1rem, 2.2vh, 1.35rem);
    line-height: 1.35;
  }

  html.galaxy-scroll-active .intro__portrait {
    width: min(25vw, 18rem);
  }

  html.galaxy-scroll-active .portrait__meta {
    margin-top: 0.45rem;
  }

  html.galaxy-scroll-active .pitch__copy {
    margin-top: clamp(1rem, 2.5vh, 2rem);
    font-size: clamp(2rem, 5vh, 3.25rem);
  }

  html.galaxy-scroll-active .pitch__signature {
    margin-top: clamp(1.25rem, 3vh, 2rem);
  }

  html.galaxy-scroll-active .about__grid {
    gap: clamp(1.25rem, 3vw, 2.25rem);
  }

  html.galaxy-scroll-active .about__copy > p {
    margin-top: clamp(0.75rem, 1.8vh, 1.25rem);
    font-size: clamp(0.82rem, 1.7vh, 1rem);
    line-height: 1.45;
  }

  html.galaxy-scroll-active .about__stats {
    gap: 0.75rem;
    margin-top: clamp(0.8rem, 2vh, 1.5rem);
  }

  html.galaxy-scroll-active .about__stat-value,
  html.galaxy-scroll-active .about__stats dd {
    margin-top: 0.25rem;
    font-size: clamp(1.3rem, 2.8vh, 1.75rem);
  }

  html.galaxy-scroll-active .about__panel {
    padding: clamp(0.8rem, 1.8vh, 1.2rem);
  }

  html.galaxy-scroll-active .about__panel .panel__label:not(:first-child) {
    margin-top: clamp(0.65rem, 1.5vh, 1rem);
  }

  html.galaxy-scroll-active .about__chips {
    gap: 0.3rem;
    margin-top: 0.55rem;
  }

  html.galaxy-scroll-active .about__chip,
  html.galaxy-scroll-active .about__chips span {
    padding: 0.18rem 0.55rem;
    font-size: 0.64rem;
    line-height: 0.9rem;
  }

  html.galaxy-scroll-active .about__education {
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.72rem;
  }

  html.galaxy-scroll-active .experience__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.5rem, 1.1vw, 0.9rem);
    margin-top: clamp(0.75rem, 1.8vh, 1.25rem);
  }

  html.galaxy-scroll-active .experience__item {
    grid-template-columns: minmax(6rem, 3fr) minmax(0, 9fr);
    gap: 0.75rem;
    align-content: start;
    padding: clamp(0.65rem, 1.5vh, 0.9rem);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.009);
  }

  html.galaxy-scroll-active .experience__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  html.galaxy-scroll-active .experience__company,
  html.galaxy-scroll-active .experience__header h3 {
    font-size: clamp(1rem, 2.2vh, 1.3rem);
  }

  html.galaxy-scroll-active .experience__period,
  html.galaxy-scroll-active .experience__location,
  html.galaxy-scroll-active .experience__role {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  html.galaxy-scroll-active .experience__period {
    margin-top: 0.3rem;
  }

  html.galaxy-scroll-active .experience__bullets {
    gap: 0.2rem;
    margin-top: 0.45rem;
  }

  html.galaxy-scroll-active .experience__bullets li {
    gap: 0.45rem;
    font-size: clamp(0.63rem, 1.35vh, 0.74rem);
    line-height: 1.35;
  }

  html.galaxy-scroll-active .experience__bullets .icon {
    width: 0.65rem;
    height: 0.65rem;
    margin-top: 0.18rem;
  }

  html.galaxy-scroll-active .projects__intro,
  html.galaxy-scroll-active .projects__lede {
    margin-top: 0.5rem;
    font-size: 0.78rem;
  }

  html.galaxy-scroll-active .projects__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: clamp(0.75rem, 1.8vh, 1.25rem);
  }

  html.galaxy-scroll-active .projects__card {
    padding: clamp(0.65rem, 1.5vh, 0.9rem);
  }

  html.galaxy-scroll-active .projects__card h3 {
    margin-top: 0.65rem;
    font-size: clamp(1rem, 2.2vh, 1.25rem);
  }

  html.galaxy-scroll-active .projects__card p {
    margin-top: 0.45rem;
    font-size: clamp(0.64rem, 1.35vh, 0.75rem);
    line-height: 1.4;
  }

  html.galaxy-scroll-active .projects__card-meta,
  html.galaxy-scroll-active .projects__meta {
    font-size: 0.53rem;
    letter-spacing: 0.18em;
  }

  html.galaxy-scroll-active #brands {
    justify-content: center;
  }

  html.galaxy-scroll-active #brands .section__inner {
    flex: none;
  }

  html.galaxy-scroll-active .brands__field {
    width: min(var(--container), calc(100vw - clamp(5rem, 10vw, 10rem)));
    height: clamp(16rem, 43vh, 25rem);
    flex: none;
    margin: clamp(0.35rem, 1vh, 0.75rem) auto 0;
  }

  html.galaxy-scroll-active .brands__header p {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  html.galaxy-scroll-active .brands__name {
    font-size: var(--brand-size) !important;
    transform: scale(0.76);
    transform-origin: 50% 50%;
  }

  html.galaxy-scroll-active .brands__dot {
    top: -0.35rem;
    left: -0.35rem;
    width: 0.25rem;
    height: 0.25rem;
  }

  html.galaxy-scroll-active .gallery__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.65fr);
    gap: 1rem;
    margin-bottom: clamp(0.6rem, 1.4vh, 1rem);
  }

  html.galaxy-scroll-active .gallery__header--aligned {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.galaxy-scroll-active .gallery__header p {
    font-size: clamp(0.65rem, 1.4vh, 0.76rem);
    line-height: 1.35;
  }

  html.galaxy-scroll-active .gallery__tabs {
    gap: 0.45rem;
    margin: 0 0 clamp(0.45rem, 1vh, 0.7rem);
  }

  html.galaxy-scroll-active .gallery__tab {
    min-height: 2.25rem;
    padding: 0.38rem 0.78rem;
    font-size: clamp(0.58rem, 1.15vh, 0.66rem);
    letter-spacing: 0.12em;
  }

  html.galaxy-scroll-active .gallery__grid {
    gap: clamp(0.4rem, 0.75vw, 0.7rem);
  }

  html.galaxy-scroll-active #video-editing .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  html.galaxy-scroll-active :is(#reels, #photography, #graphics, #writing) .gallery__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  html.galaxy-scroll-active .gallery__caption {
    align-items: flex-start;
    gap: 0.35rem;
    margin-top: 0.32rem;
  }

  html.galaxy-scroll-active .gallery__caption > span:first-child {
    font-size: clamp(0.56rem, 1.2vh, 0.67rem);
    line-height: 1.25;
  }

  html.galaxy-scroll-active .gallery__caption > span:last-child {
    font-size: 0.48rem;
    letter-spacing: 0.14em;
  }

  html.galaxy-scroll-active .media__frame {
    inset: 0.4rem;
  }

  html.galaxy-scroll-active .media__label,
  html.galaxy-scroll-active .media__labels {
    top: 0.4rem;
    font-size: 0.46rem;
    letter-spacing: 0.15em;
  }

  html.galaxy-scroll-active .media__label--left,
  html.galaxy-scroll-active .media__labels--left {
    left: 0.4rem;
  }

  html.galaxy-scroll-active .media__label--right,
  html.galaxy-scroll-active .media__labels--right {
    right: 0.4rem;
  }

  html.galaxy-scroll-active .media__play span {
    width: clamp(2rem, 4.5vh, 2.75rem);
    height: clamp(2rem, 4.5vh, 2.75rem);
  }

  html.galaxy-scroll-active .media__play .icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  html.galaxy-scroll-active .media__doc-content,
  html.galaxy-scroll-active .media__doc-copy {
    padding-inline: 0.65rem;
  }

  html.galaxy-scroll-active .media__doc-content > .icon,
  html.galaxy-scroll-active .media__doc-copy > .icon {
    width: 0.9rem;
    height: 0.9rem;
    margin-bottom: 0.5rem;
  }

  html.galaxy-scroll-active .media__doc-open,
  html.galaxy-scroll-active .media__doc-copy > .mono {
    margin-top: 0.5rem;
    font-size: 0.48rem;
    letter-spacing: 0.16em;
  }

  html.galaxy-scroll-active .evidence-story {
    gap: clamp(0.45rem, 1vh, 0.7rem);
    padding: clamp(0.55rem, 1.2vh, 0.8rem);
  }

  html.galaxy-scroll-active .evidence-story::before {
    inset: 0.38rem;
  }

  html.galaxy-scroll-active .evidence-intro {
    padding: 0.35rem;
  }

  html.galaxy-scroll-active .evidence-intro h3 {
    margin-top: 0.45rem;
    font-size: clamp(1.4rem, 3.3vh, 2rem);
  }

  html.galaxy-scroll-active .evidence-intro > p {
    margin-top: 0.5rem;
    font-size: clamp(0.62rem, 1.3vh, 0.72rem);
    line-height: 1.35;
  }

  html.galaxy-scroll-active .evidence-source-note {
    padding-top: 0.55rem;
    font-size: 0.46rem;
  }

  html.galaxy-scroll-active .evidence-frame,
  html.galaxy-scroll-active .evidence-capture,
  html.galaxy-scroll-active .insight-capture,
  html.galaxy-scroll-active .linkedin-capture {
    padding: 0.32rem;
  }

  html.galaxy-scroll-active .evidence-caption {
    padding-top: 0.35rem;
    font-size: 0.44rem;
  }

  html.galaxy-scroll-active .evidence-stat {
    padding: clamp(0.45rem, 1vh, 0.65rem);
  }

  html.galaxy-scroll-active .evidence-stat__top {
    font-size: 0.44rem;
  }

  html.galaxy-scroll-active .evidence-stat__top strong {
    font-size: 0.54rem;
  }

  html.galaxy-scroll-active .evidence-stat__route {
    gap: 0.38rem;
    margin-top: 0.35rem;
    font-size: clamp(0.72rem, 1.8vh, 0.95rem);
  }

  html.galaxy-scroll-active .evidence-capture__label {
    min-height: 1.35rem;
    padding-bottom: 0.3rem;
    font-size: 0.46rem;
  }

  html.galaxy-scroll-active .content-era {
    padding: clamp(0.4rem, 0.9vh, 0.6rem);
  }

  html.galaxy-scroll-active .content-era__heading {
    padding-bottom: 0.35rem;
  }

  html.galaxy-scroll-active .content-era__heading span,
  html.galaxy-scroll-active .evidence-footnote {
    font-size: 0.44rem;
  }

  html.galaxy-scroll-active .content-era__heading strong {
    font-size: clamp(0.8rem, 1.9vh, 1.05rem);
  }

  html.galaxy-scroll-active .phone-pair {
    height: clamp(14rem, 31vh, 18.5rem);
  }

  html.galaxy-scroll-active .evidence-callout {
    gap: 0.45rem;
    padding: 0.45rem;
  }

  html.galaxy-scroll-active .evidence-callout__value {
    font-size: clamp(1.05rem, 2.5vh, 1.4rem);
  }

  html.galaxy-scroll-active .evidence-callout__copy {
    font-size: 0.42rem;
  }

  html.galaxy-scroll-active .evidence-linkedin__sample > .evidence-kicker {
    margin-bottom: 0.4rem;
    font-size: 0.46rem;
  }

  html.galaxy-scroll-active .awards__grid {
    gap: 0.7rem;
    margin-top: clamp(0.75rem, 1.8vh, 1.25rem);
  }

  html.galaxy-scroll-active .awards__card {
    gap: 0.7rem;
    padding: clamp(0.7rem, 1.6vh, 1rem);
  }

  html.galaxy-scroll-active .awards__card h3 {
    font-size: clamp(1rem, 2.2vh, 1.3rem);
  }

  html.galaxy-scroll-active .awards__detail,
  html.galaxy-scroll-active .awards__card p {
    margin-top: 0.35rem;
    font-size: clamp(0.65rem, 1.35vh, 0.76rem);
    line-height: 1.35;
  }

  html.galaxy-scroll-active .awards__org {
    margin-top: 0.45rem;
    font-size: 0.5rem;
  }

  html.galaxy-scroll-active .contact__headline {
    font-size: clamp(3.2rem, 8.5vh, 6rem);
  }

  html.galaxy-scroll-active .contact__grid {
    gap: 0.7rem;
    margin-top: clamp(1rem, 2.5vh, 1.75rem);
  }

  html.galaxy-scroll-active .contact__card {
    padding: clamp(0.75rem, 1.8vh, 1.15rem);
  }

  html.galaxy-scroll-active .contact__label {
    margin-top: clamp(0.65rem, 1.5vh, 1rem);
  }

  html.galaxy-scroll-active .contact__footer {
    margin-top: clamp(1rem, 2.5vh, 1.75rem);
    padding-top: clamp(0.65rem, 1.5vh, 1rem);
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  html.galaxy-scroll-active {
    scroll-behavior: auto !important;
  }

  html.galaxy-scroll-active .galaxy-scene {
    padding: 4.4rem 1rem 4.8rem;
  }

  html.galaxy-scroll-active .section__inner {
    max-width: calc(100vw - 2rem);
  }

  html.galaxy-scroll-active .section-tag {
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    font-size: 0.43rem;
    letter-spacing: 0.17em;
  }

  html.galaxy-scroll-active .section-tag__line {
    min-width: 1rem;
  }

  html.galaxy-scroll-active .section-heading,
  html.galaxy-scroll-active .section__headline,
  html.galaxy-scroll-active .about__copy h2,
  html.galaxy-scroll-active .brands__header h2,
  html.galaxy-scroll-active .gallery__header h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }

  html.galaxy-scroll-active .intro__content {
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
  }

  html.galaxy-scroll-active .intro__copy {
    min-width: 0;
  }

  html.galaxy-scroll-active .display-hero,
  html.galaxy-scroll-active .display--hero {
    font-size: clamp(2rem, 10.8vw, 2.8rem);
  }

  html.galaxy-scroll-active .intro__alias {
    margin-top: 0.45rem;
    font-size: 0.5rem;
    letter-spacing: 0.22em;
  }

  html.galaxy-scroll-active .intro__roles {
    gap: 0.12rem;
    margin-top: 0.65rem;
    font-size: clamp(0.63rem, 2.6vw, 0.76rem);
    line-height: 1.25;
  }

  html.galaxy-scroll-active .intro__roles li {
    gap: 0.35rem;
  }

  html.galaxy-scroll-active .intro__roles .icon {
    width: 0.48rem;
    height: 0.48rem;
  }

  html.galaxy-scroll-active .intro__portrait {
    width: min(38vw, 8.5rem);
  }

  html.galaxy-scroll-active .portrait__outer {
    padding: 0.3rem;
  }

  html.galaxy-scroll-active .portrait__label {
    top: 0.35rem;
    font-size: 0.38rem;
    letter-spacing: 0.15em;
  }

  html.galaxy-scroll-active .portrait__label--left {
    left: 0.35rem;
  }

  html.galaxy-scroll-active .portrait__label--right {
    right: 0.35rem;
  }

  html.galaxy-scroll-active .portrait__meta {
    gap: 0.35rem;
    margin-top: 0.3rem;
    font-size: 0.38rem;
    letter-spacing: 0.12em;
  }

  html.galaxy-scroll-active .pitch__eyebrow,
  html.galaxy-scroll-active .pitch__label {
    font-size: 0.48rem;
    letter-spacing: 0.25em;
  }

  html.galaxy-scroll-active .pitch__copy {
    margin-top: 0.8rem;
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }

  html.galaxy-scroll-active .pitch__signature {
    gap: 0.7rem;
    margin-top: 0.9rem;
  }

  html.galaxy-scroll-active .pitch__signature span:first-child,
  html.galaxy-scroll-active .pitch__signature span:last-child,
  html.galaxy-scroll-active .pitch__signature i {
    width: 2.25rem;
  }

  html.galaxy-scroll-active .about__grid {
    gap: 0.55rem;
  }

  html.galaxy-scroll-active .about__copy > p {
    margin-top: 0.45rem;
    font-size: 0.61rem;
    line-height: 1.35;
  }

  html.galaxy-scroll-active .about__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  html.galaxy-scroll-active .about__stat-label,
  html.galaxy-scroll-active .about__stats dt,
  html.galaxy-scroll-active .panel__label {
    font-size: 0.43rem;
    letter-spacing: 0.14em;
  }

  html.galaxy-scroll-active .about__stat-value,
  html.galaxy-scroll-active .about__stats dd {
    margin-top: 0.15rem;
    font-size: 0.9rem;
  }

  html.galaxy-scroll-active .about__panel {
    padding: 0.5rem;
  }

  html.galaxy-scroll-active .about__panel .panel__label:not(:first-child) {
    margin-top: 0.4rem;
  }

  html.galaxy-scroll-active .about__chips {
    gap: 0.18rem;
    margin-top: 0.3rem;
  }

  html.galaxy-scroll-active .about__chip,
  html.galaxy-scroll-active .about__chips span {
    padding: 0.1rem 0.3rem;
    font-size: 0.46rem;
    line-height: 0.65rem;
  }

  html.galaxy-scroll-active .about__education {
    gap: 0.16rem;
    margin-top: 0.3rem;
    font-size: 0.5rem;
  }

  html.galaxy-scroll-active .experience__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  html.galaxy-scroll-active .experience__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.3rem;
    padding: 0.42rem;
  }

  html.galaxy-scroll-active .experience__company,
  html.galaxy-scroll-active .experience__header h3 {
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
  }

  html.galaxy-scroll-active .experience__period,
  html.galaxy-scroll-active .experience__location,
  html.galaxy-scroll-active .experience__role,
  html.galaxy-scroll-active .experience__log,
  html.galaxy-scroll-active .experience__number {
    font-size: 0.4rem;
    letter-spacing: 0.1em;
  }

  html.galaxy-scroll-active .experience__bullets {
    gap: 0.1rem;
    margin-top: 0.22rem;
  }

  html.galaxy-scroll-active .experience__bullets li {
    gap: 0.25rem;
    font-size: clamp(0.47rem, 2vw, 0.58rem);
    line-height: 1.24;
  }

  html.galaxy-scroll-active .experience__bullets .icon {
    width: 0.45rem;
    height: 0.45rem;
    margin-top: 0.08rem;
  }

  html.galaxy-scroll-active .projects__intro,
  html.galaxy-scroll-active .projects__lede {
    margin-top: 0.3rem;
    font-size: 0.56rem;
  }

  html.galaxy-scroll-active .projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  html.galaxy-scroll-active .projects__card {
    padding: 0.5rem;
  }

  html.galaxy-scroll-active .projects__card h3 {
    margin-top: 0.35rem;
    font-size: 0.78rem;
  }

  html.galaxy-scroll-active .projects__card p {
    margin-top: 0.25rem;
    font-size: 0.5rem;
    line-height: 1.28;
  }

  html.galaxy-scroll-active .projects__card-meta,
  html.galaxy-scroll-active .projects__meta {
    gap: 0.25rem;
    font-size: 0.38rem;
    letter-spacing: 0.1em;
  }

  html.galaxy-scroll-active .brands__header p {
    display: none;
  }

  html.galaxy-scroll-active .brands__field {
    width: calc(100vw - 2rem);
    height: min(42vh, 20rem);
  }

  html.galaxy-scroll-active .brands__name {
    font-size: clamp(
      0.62rem,
      calc(var(--brand-size) * 0.5),
      1.15rem
    ) !important;
    transform: none;
  }

  html.galaxy-scroll-active .gallery__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.45rem;
  }

  html.galaxy-scroll-active .gallery__header p {
    font-size: 0.5rem;
    line-height: 1.25;
  }

  html.galaxy-scroll-active .gallery__grid,
  html.galaxy-scroll-active #video-editing .gallery__grid,
  html.galaxy-scroll-active :is(#reels, #photography, #graphics, #writing) .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.28rem;
  }

  html.galaxy-scroll-active .gallery__caption {
    gap: 0.15rem;
    margin-top: 0.18rem;
  }

  html.galaxy-scroll-active .gallery__caption > span:first-child {
    font-size: 0.43rem;
    line-height: 1.15;
  }

  html.galaxy-scroll-active .gallery__caption > span:last-child {
    display: none;
  }

  html.galaxy-scroll-active .media__frame {
    inset: 0.25rem;
  }

  html.galaxy-scroll-active .media__label,
  html.galaxy-scroll-active .media__labels {
    top: 0.25rem;
    font-size: 0.34rem;
    letter-spacing: 0.08em;
  }

  html.galaxy-scroll-active .media__label--left,
  html.galaxy-scroll-active .media__labels--left {
    left: 0.25rem;
  }

  html.galaxy-scroll-active .media__label--right,
  html.galaxy-scroll-active .media__labels--right {
    right: 0.25rem;
  }

  html.galaxy-scroll-active .media__play span {
    width: 1.65rem;
    height: 1.65rem;
  }

  html.galaxy-scroll-active .media__play .icon {
    width: 0.65rem;
    height: 0.65rem;
  }

  html.galaxy-scroll-active .awards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  html.galaxy-scroll-active .awards__card {
    gap: 0.35rem;
    padding: 0.5rem;
  }

  html.galaxy-scroll-active .awards__card h3 {
    font-size: 0.82rem;
  }

  html.galaxy-scroll-active .awards__detail,
  html.galaxy-scroll-active .awards__card p {
    margin-top: 0.2rem;
    font-size: 0.5rem;
    line-height: 1.25;
  }

  html.galaxy-scroll-active .awards__org {
    margin-top: 0.25rem;
    font-size: 0.38rem;
  }

  html.galaxy-scroll-active .contact__headline {
    font-size: clamp(1.8rem, 9.2vw, 2.45rem);
  }

  html.galaxy-scroll-active .contact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    margin-top: 0.55rem;
  }

  html.galaxy-scroll-active .contact__card {
    min-width: 0;
    padding: 0.5rem;
  }

  html.galaxy-scroll-active .contact__label {
    margin-top: 0.35rem;
    font-size: 0.4rem;
    letter-spacing: 0.12em;
  }

  html.galaxy-scroll-active .contact__value {
    font-size: 0.58rem;
  }

  html.galaxy-scroll-active .contact__footer {
    gap: 0.35rem;
    margin-top: 0.55rem;
    padding-top: 0.4rem;
    font-size: 0.38rem;
    letter-spacing: 0.12em;
  }

  html.galaxy-scroll-active .hud__identity {
    top: 0.8rem;
    left: 0.8rem;
  }

  html.galaxy-scroll-active .hud__identity span {
    font-size: 0.52rem;
    letter-spacing: 0.18em;
  }

  html.galaxy-scroll-active .hud__section {
    bottom: 0.8rem;
    left: 0.8rem;
    font-size: 0.5rem;
  }

  html.galaxy-scroll-active .hud__fly {
    bottom: 2.65rem;
    gap: 0.25rem;
    font-size: 0.44rem;
  }

  html.galaxy-scroll-active .hud__fly div {
    height: 0.8rem;
  }
}

/*
 * Warm paper-space theme
 *
 * Media posters stay as black art islands; the surrounding portfolio,
 * navigation, cards and animated space layers move to parchment and ink.
 */
html[data-theme="light"] {
  color-scheme: light;
  --black: #ddd8ce;
  --near-black: #f3efe7;
  --white: #1d1c19;
  --paper: #1d1c19;
  --border: rgba(29, 28, 25, 0.18);
  --border-soft: rgba(29, 28, 25, 0.1);
  background: #ddd8ce;
}

html[data-theme="light"] body {
  background: #ddd8ce;
  color: #1d1c19;
}

html[data-theme="light"] .portfolio {
  color: #1d1c19;
}

html[data-theme="light"] ::selection {
  background: rgba(29, 28, 25, 0.88);
  color: #f3efe7;
}

html[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: rgba(29, 28, 25, 0.22);
}

html[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: rgba(29, 28, 25, 0.38);
}

html[data-theme="light"] .skip-link {
  background: #1d1c19;
  color: #f3efe7;
}

html[data-theme="light"] .starfield__nebula {
  background:
    radial-gradient(
      1200px 600px at 80% 20%,
      rgba(29, 28, 25, 0.045),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 15% 80%,
      rgba(29, 28, 25, 0.03),
      transparent 60%
    );
}

html[data-theme="light"] .starfield__grain {
  opacity: 0.065;
  mix-blend-mode: multiply;
}

html[data-theme="light"] .scroll-ribbon {
  mix-blend-mode: multiply;
}

html[data-theme="light"] .hud__identity,
html[data-theme="light"] .hud__year,
html[data-theme="light"] .hud__rail-percent,
html[data-theme="light"] .hud__section,
html[data-theme="light"] .hud__fly {
  color: rgba(29, 28, 25, 0.66);
}

html[data-theme="light"] .hud__theme-toggle:focus-visible {
  outline-color: rgba(29, 28, 25, 0.88);
}

html[data-theme="light"] .hud-logo__diamond {
  border-color: rgba(29, 28, 25, 0.76);
}

html[data-theme="light"] .hud-logo__square {
  border-color: rgba(29, 28, 25, 0.46);
}

html[data-theme="light"] .hud-logo__dot {
  background: rgba(29, 28, 25, 0.86);
}

html[data-theme="light"] .hud__rail-line,
html[data-theme="light"] .section-tag__line {
  background: rgba(29, 28, 25, 0.18);
}

html[data-theme="light"] .hud__rail-dot {
  background: #1d1c19;
  box-shadow: 0 0 12px rgba(29, 28, 25, 0.42);
}

html[data-theme="light"] .hud__section-prefix,
html[data-theme="light"] .hud__section .icon {
  color: rgba(29, 28, 25, 0.48);
}

html[data-theme="light"] .hud__fly div {
  background: rgba(29, 28, 25, 0.42);
}

html[data-theme="light"] :is(
  .section-heading,
  .section__headline,
  .about__stat-value,
  .about__stats dd,
  .experience__company,
  .experience__header h3,
  .projects__card h3,
  .brands__header h2,
  .gallery__header h2,
  .awards__card h3,
  .contact__headline,
  .contact__value
) {
  color: #1d1c19;
}

html[data-theme="light"] :is(
  .intro__roles li,
  .star-bullet,
  .pitch__copy,
  .about__copy > p,
  .about__chip,
  .about__chips span,
  .about__education .star-bullet,
  .experience__bullets li,
  .projects__card p,
  .brands__name,
  .gallery__caption > span:first-child,
  .awards__detail,
  .awards__card p,
  .contact__card-icons .icon
) {
  color: rgba(29, 28, 25, 0.82);
}

html[data-theme="light"] :is(
  .section-tag,
  .intro__alias,
  .pitch__eyebrow,
  .pitch__label,
  .about__stat-label,
  .about__stats dt,
  .panel__label,
  .education__detail,
  .experience__log,
  .experience__number,
  .experience__period,
  .experience__location,
  .experience__role,
  .projects__intro,
  .projects__lede,
  .projects__card-meta,
  .projects__meta,
  .brands__header p,
  .gallery__header p,
  .gallery__caption > span:last-child,
  .awards__number,
  .awards__org,
  .contact__label,
  .contact__footer
) {
  color: rgba(29, 28, 25, 0.56);
}

html[data-theme="light"] .outlined,
html[data-theme="light"] .intro__name-first {
  -webkit-text-stroke-color: rgba(29, 28, 25, 0.82);
}

html[data-theme="light"] .orbit__text {
  -webkit-text-stroke-color: rgba(29, 28, 25, 0.3);
}

html[data-theme="light"] .intro__roles .icon,
html[data-theme="light"] .star-bullet .icon,
html[data-theme="light"] .experience__bullets .icon {
  color: rgba(29, 28, 25, 0.56);
}

html[data-theme="light"] .pitch__bloom::before {
  background:
    radial-gradient(
      closest-side,
      rgba(29, 28, 25, 0.075),
      transparent 70%
    );
}

html[data-theme="light"] .pitch__signature {
  color: rgba(29, 28, 25, 0.46);
}

html[data-theme="light"] .pitch__signature span:first-child,
html[data-theme="light"] .pitch__signature span:last-child,
html[data-theme="light"] .pitch__signature i {
  background: rgba(29, 28, 25, 0.22);
}

html[data-theme="light"] :is(
  .about__panel,
  .projects__card,
  .awards__card,
  .contact__card
) {
  border-color: rgba(29, 28, 25, 0.18);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 44px rgba(29, 28, 25, 0.018);
}

html[data-theme="light"].galaxy-scroll-active .experience__item {
  border-color: rgba(29, 28, 25, 0.16);
  background: rgba(255, 255, 255, 0.2);
}

html[data-theme="light"] :is(
  .projects__card:hover,
  .contact__card:hover
) {
  border-color: rgba(29, 28, 25, 0.44);
}

html[data-theme="light"] .experience__item {
  border-top-color: rgba(29, 28, 25, 0.13);
}

html[data-theme="light"] .about__chip,
html[data-theme="light"] .about__chips span {
  border-color: rgba(29, 28, 25, 0.2);
}

html[data-theme="light"] .about__chip--tool,
html[data-theme="light"] .about__chips--tools span {
  border-color: rgba(29, 28, 25, 0.12);
  background: rgba(29, 28, 25, 0.035);
  color: rgba(29, 28, 25, 0.68);
}

html[data-theme="light"] .portrait__outer {
  border-color: rgba(29, 28, 25, 0.72);
  background: transparent;
  box-shadow: 0 0 60px rgba(29, 28, 25, 0.08);
}

html[data-theme="light"] .portrait__stage {
  border-color: rgba(29, 28, 25, 0.24);
  background: transparent;
}

html[data-theme="light"] .portrait__label {
  color: rgba(29, 28, 25, 0.7);
}

html[data-theme="light"] .portrait__label--right {
  color: rgba(29, 28, 25, 0.5);
}

html[data-theme="light"] .portrait__meta {
  color: rgba(29, 28, 25, 0.48);
}

html[data-theme="light"] .projects__bloom,
html[data-theme="light"] .projects__glow {
  background: rgba(29, 28, 25, 0.07);
}

html[data-theme="light"] .brands__item:hover .brands__name {
  color: #1d1c19;
  filter: drop-shadow(0 0 18px rgba(29, 28, 25, 0.36));
}

html[data-theme="light"] .brands__dot {
  background: rgba(29, 28, 25, 0.72);
  box-shadow: 0 0 10px rgba(29, 28, 25, 0.42);
}

html[data-theme="light"] .brands__orbit {
  border-color: rgba(29, 28, 25, 0.14);
}

html[data-theme="light"] .gallery__tab {
  border-color: rgba(29, 28, 25, 0.34);
  background: rgba(255, 255, 255, 0.44);
  color: rgba(29, 28, 25, 0.8);
}

html[data-theme="light"] .gallery__tab:hover,
html[data-theme="light"] .gallery__tab:focus-visible {
  border-color: rgba(29, 28, 25, 0.64);
  background: rgba(255, 255, 255, 0.7);
  color: #1d1c19;
}

html[data-theme="light"] .gallery__tab.is-active,
html[data-theme="light"] .gallery__tab[aria-selected="true"] {
  border-color: #1d1c19;
  background: #1d1c19;
  color: #f5f2ea;
  box-shadow: 0 0 0 1px rgba(29, 28, 25, 0.12), 0 0 22px rgba(29, 28, 25, 0.12);
}

html[data-theme="light"] .gallery__media,
html[data-theme="light"] .media {
  border-color: rgba(29, 28, 25, 0.28);
  background: rgba(29, 28, 25, 0.46);
  box-shadow: 0 10px 34px rgba(29, 28, 25, 0.055);
}

html[data-theme="light"] .gallery__cell:hover .gallery__media,
html[data-theme="light"] .gallery__cell:hover .media,
html[data-theme="light"] .gallery__media:focus-visible,
html[data-theme="light"] .media:focus-visible {
  border-color: rgba(29, 28, 25, 0.56);
}

html[data-theme="light"] .evidence-story {
  --evidence-warm: #c64f16;
  --evidence-success: #147a49;
  border-color: rgba(29, 28, 25, 0.2);
  background:
    radial-gradient(circle at 82% 8%, rgba(111, 82, 145, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.36);
  box-shadow: 0 24px 70px rgba(29, 28, 25, 0.055);
}

html[data-theme="light"] .evidence-story::before {
  border-color: rgba(29, 28, 25, 0.1);
}

html[data-theme="light"] :is(
  .evidence-intro h3,
  .evidence-stat__route
) {
  color: #1d1c19;
}

html[data-theme="light"] :is(
  .evidence-intro > p,
  .evidence-source-note strong,
  .evidence-caption span:last-child,
  .evidence-callout__copy strong
) {
  color: rgba(29, 28, 25, 0.76);
}

html[data-theme="light"] :is(
  .evidence-source-note,
  .evidence-caption,
  .evidence-stat__top,
  .content-era__heading span,
  .evidence-footnote,
  .evidence-callout__copy,
  .evidence-capture__label small
) {
  color: rgba(29, 28, 25, 0.52);
}

html[data-theme="light"] :is(
  .evidence-frame,
  .evidence-capture,
  .insight-capture,
  .content-era,
  .linkedin-capture,
  .evidence-stat
) {
  border-color: rgba(29, 28, 25, 0.18);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 36px rgba(29, 28, 25, 0.045);
}

html[data-theme="light"] .evidence-arrow {
  color: rgba(29, 28, 25, 0.7);
}

html[data-theme="light"] .evidence-callout {
  border-color: rgba(20, 122, 73, 0.28);
  background: rgba(20, 122, 73, 0.055);
}

html[data-theme="light"] .awards__icon {
  border-color: rgba(29, 28, 25, 0.32);
}

html[data-theme="light"] .awards__icon .icon {
  color: rgba(29, 28, 25, 0.82);
}

html[data-theme="light"] .contact__card-icons .icon:last-child {
  color: rgba(29, 28, 25, 0.46);
}

html[data-theme="light"] .contact__footer {
  border-top-color: rgba(29, 28, 25, 0.13);
}

html[data-theme="light"] .lightbox {
  background: rgba(227, 222, 212, 0.97);
}

html[data-theme="light"] .lightbox__label,
html[data-theme="light"] .lightbox__title > .mono {
  color: rgba(29, 28, 25, 0.52);
}

html[data-theme="light"] .lightbox__caption,
html[data-theme="light"] .lightbox__title > span:last-child {
  color: rgba(29, 28, 25, 0.82);
}

html[data-theme="light"] .lightbox__drive,
html[data-theme="light"] .lightbox__actions > a,
html[data-theme="light"] .lightbox__close {
  border-color: rgba(29, 28, 25, 0.28);
  color: rgba(29, 28, 25, 0.84);
}

html[data-theme="light"] .lightbox__drive:hover,
html[data-theme="light"] .lightbox__actions > a:hover,
html[data-theme="light"] .lightbox__close:hover {
  border-color: rgba(29, 28, 25, 0.62);
}

html[data-theme="light"] .lightbox__stage {
  border-color: rgba(29, 28, 25, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  body,
  .portfolio,
  .hud__identity,
  .hud__year,
  .hud__section,
  .hud__fly,
  .section-tag,
  .section-heading,
  .section__headline,
  .about__panel,
  .projects__card,
  .awards__card,
  .contact__card {
    transition:
      color 0.42s ease,
      background-color 0.42s ease,
      border-color 0.42s ease,
      box-shadow 0.42s ease;
  }
}

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

  .scroll-ribbon {
    display: none;
  }

  .portfolio.galaxy-scroll-viewport,
  .main.galaxy-scroll-main,
  .main.galaxy-scroll-main > .galaxy-scene {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 100svh;
    overflow-x: hidden;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    pointer-events: auto;
  }

  .galaxy-scene__fit {
    transform: none !important;
  }
}

/* ABMUS studio layer ------------------------------------------------------ */
.agency-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}

.agency-hero__inner {
  position: relative;
  z-index: 10;
  display: grid;
  width: 100%;
  max-width: var(--container);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  will-change: transform;
}

.agency-hero__copy {
  min-width: 0;
}

.agency-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
}

.agency-hero__eyebrow > span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #7be4a2;
  box-shadow: 0 0 18px rgba(123, 228, 162, 0.75);
}

.agency-hero__headline {
  margin-top: 1.35rem;
  color: #fff;
  font-size: clamp(2.65rem, 5.8vw, 5.75rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.agency-hero__headline > span {
  display: block;
}

.agency-hero__subhead {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.agency-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.agency-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.agency-button .icon {
  width: 0.72rem;
  height: 0.72rem;
}

.agency-button:hover,
.agency-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.agency-button--primary {
  border-color: #fff;
  background: #fff;
  color: #050508;
}

.agency-button--primary:hover,
.agency-button--primary:focus-visible {
  background: transparent;
  color: #fff;
}

.agency-hero__system {
  position: relative;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 80% 10%, rgba(123, 228, 162, 0.09), transparent 30%),
    rgba(5, 5, 8, 0.6);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.agency-hero__system::before {
  position: absolute;
  inset: 0.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.agency-hero__system-head,
.agency-hero__system-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.49rem;
  letter-spacing: 0.13em;
}

.agency-hero__system-head span:last-child,
.agency-hero__system-foot span:last-child {
  text-align: right;
}

.agency-hero__roles {
  position: relative;
  display: grid;
  margin-block: 1rem;
}

.agency-hero__roles li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-hero__roles li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-hero__roles span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.55rem;
}

.agency-hero__roles strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
}

.agency-hero__roles .icon {
  width: 0.8rem;
  color: rgba(255, 255, 255, 0.34);
}

.pitch__copy--agency {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.pitch__support {
  max-width: 43rem;
  margin: 1.35rem auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.fit__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
}

.fit__audience h2,
.fit__problems h2 {
  margin-top: 0.75rem;
}

.fit__audience > p {
  max-width: 31rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.65;
}

.fit__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.fit__chips span {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
}

.problems__list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.problems__list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: start;
  gap: 0.8rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.02);
}

.problems__list span {
  padding-top: 0.12rem;
  color: #ff7b34;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.problems__list p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.45;
}

.services__header,
.impact-proof__header,
.noww__header,
.client-partners__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.services__header > p,
.impact-proof__header > p,
.noww__header > p,
.client-partners__header > p {
  max-width: 25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.55;
}

.services__tabs {
  margin-top: 1.3rem;
}

.service-panel {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 123, 52, 0.08), transparent 30%),
    rgba(5, 5, 8, 0.58);
}

.service-panel[hidden] {
  display: none;
}

.service-panel:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.service-panel__story {
  min-width: 0;
}

.service-panel__number {
  color: #ff7b34;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
}

.service-panel__story h3 {
  margin-top: 0.55rem;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
}

.service-panel__story > strong {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  font-weight: 500;
}

.service-panel__story > p {
  max-width: 38rem;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-panel__deliverables {
  min-width: 0;
  padding: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.service-panel__deliverables ul {
  display: grid;
  margin-top: 0.55rem;
}

.service-panel__deliverables li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.6rem;
  padding-block: 0.42rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.service-panel__deliverables li > span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.48rem;
}

.service-panel__deliverables li > strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
}

.focused-offerings {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.focused-offerings__label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
}

.focused-offerings > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.focused-offerings > div > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
}

.focused-offerings small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.43rem;
}

.impact-proof__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.impact-proof__stats .about__stat {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.02);
}

.impact-proof__stats .about__stat-label {
  min-height: 0;
}

.impact-proof__stats .about__stat-value {
  font-size: clamp(1.7rem, 3.5vw, 2.65rem);
}

.channel-case {
  grid-template-columns: minmax(13rem, 0.72fr) minmax(15rem, 0.78fr) minmax(17rem, 1fr);
  align-items: stretch;
}

.channel-case__intro,
.channel-case__system,
.vandhana-case__intro,
.vandhana-case__audience,
.vandhana-case__territories,
.vandhana-case__samples,
.native-results__intro,
.native-results__metrics > article,
.noww__result,
.noww__outcome {
  padding: clamp(0.85rem, 1.5vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.channel-case__intro h3,
.vandhana-case__intro h3,
.native-results__intro h3 {
  margin-top: 0.65rem;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.channel-case__intro > p,
.vandhana-case__intro > p,
.native-results__intro > p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  line-height: 1.55;
}

.evidence-source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.52rem;
  letter-spacing: 0.13em;
}

.evidence-source-link .icon {
  width: 0.72rem;
  height: 0.72rem;
}

.evidence-source-link:hover,
.evidence-source-link:focus-visible {
  color: #fff;
}

.channel-case__metrics {
  display: grid;
  gap: 0.65rem;
}

.channel-case__metrics .evidence-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.evidence-stat__single {
  margin-top: auto;
  padding-top: 1.25rem;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.channel-case__system ol {
  display: grid;
  margin-top: 0.55rem;
}

.channel-case__system li {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.2rem 0.6rem;
  padding-block: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.channel-case__system li > span {
  grid-row: span 2;
  color: #ff7b34;
  font-size: 0.48rem;
}

.channel-case__system li > strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
}

.channel-case__system li > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  line-height: 1.42;
}

.evidence-story--linkedin {
  grid-template-areas:
    "identity sample"
    "comparison sample"
    "metrics sample";
}

.linkedin-case-name {
  grid-area: identity;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.linkedin-case-name strong {
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.evidence-story--vandhana {
  grid-template-columns: minmax(13rem, 0.8fr) minmax(10rem, 0.55fr) minmax(15rem, 1fr);
  grid-template-areas:
    "intro audience samples"
    "intro territories samples";
  align-items: stretch;
}

.vandhana-case__intro { grid-area: intro; }
.vandhana-case__audience { grid-area: audience; }
.vandhana-case__territories { grid-area: territories; }
.vandhana-case__samples { grid-area: samples; }

.vandhana-case__audience {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.vandhana-case__audience > span,
.vandhana-case__audience > p {
  color: rgba(255, 255, 255, 0.42);
  font-family: "Space Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.13em;
}

.vandhana-case__audience strong {
  margin-block: 0.4rem;
  color: #7be4a2;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.vandhana-case__territories > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.vandhana-case__territories > div span,
.production-scope span {
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
}

.vandhana-case__samples > a {
  display: grid;
  grid-template-columns: 1.6rem 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding-block: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vandhana-case__samples > a:first-of-type {
  margin-top: 0.55rem;
}

.vandhana-case__samples > a > span {
  color: #ff7b34;
  font-size: 0.48rem;
}

.vandhana-case__samples > a > strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 500;
}

.vandhana-case__samples > a .icon {
  width: 0.7rem;
  color: rgba(255, 255, 255, 0.34);
}

.evidence-story--native-results {
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  grid-template-areas:
    "intro metrics"
    "brands brands";
  align-items: stretch;
}

.native-results__intro { grid-area: intro; }

.native-results__metrics {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.native-results__metrics > article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.native-results__metrics strong {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.native-results__metrics span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.native-results__brands,
.production-scope {
  grid-area: brands;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.noww__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(12rem, 0.48fr) minmax(14rem, 0.72fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}

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

.noww__journey article {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 8rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.noww__journey article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -0.52rem;
  z-index: 2;
  width: 0.55rem;
  height: 1px;
  background: #ff7b34;
  content: "";
}

.noww__journey article:not(:last-child)::before {
  position: absolute;
  top: calc(50% - 0.15rem);
  right: -0.53rem;
  z-index: 3;
  width: 0.3rem;
  height: 0.3rem;
  border-top: 1px solid #ff7b34;
  border-right: 1px solid #ff7b34;
  content: "";
  transform: rotate(45deg);
}

.noww__journey span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.48rem;
}

.noww__journey strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 500;
}

.noww__result {
  text-align: center;
}

.noww__result > span,
.noww__result > p {
  color: rgba(255, 255, 255, 0.42);
  font-family: "Space Mono", monospace;
  font-size: 0.46rem;
  letter-spacing: 0.11em;
}

.noww__result-route {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 0.5rem;
  margin-block: 1.2rem;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.noww__result-route i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 123, 52, 0.2), #7be4a2);
}

.noww__result-route i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #7be4a2;
  border-right: 1px solid #7be4a2;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.noww__outcome > p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.client-partners__grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.client-partner {
  position: relative;
  overflow: hidden;
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.client-partner__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.47rem;
  letter-spacing: 0.12em;
}

.client-partner__mark {
  position: absolute;
  top: 2.2rem;
  right: 1rem;
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.16);
}

.client-partner__mark .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.client-partner h3 {
  position: relative;
  margin-top: 4.2rem;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.client-partner > p {
  position: relative;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
}

.contact__headline--agency {
  font-size: clamp(2.4rem, 5.7vw, 5rem);
  line-height: 0.92;
}

.contact__lede {
  max-width: 46rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .agency-hero__inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.72fr);
  }

  .fit__grid {
    grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  }

  .service-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  }

  .client-partners__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .agency-hero {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .agency-hero__inner,
  .fit__grid,
  .channel-case,
  .evidence-story--vandhana,
  .evidence-story--native-results,
  .noww__stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .evidence-story--vandhana,
  .evidence-story--native-results {
    grid-template-areas: none;
  }

  .vandhana-case__intro,
  .vandhana-case__audience,
  .vandhana-case__territories,
  .vandhana-case__samples,
  .native-results__intro,
  .native-results__metrics,
  .native-results__brands,
  .production-scope {
    grid-area: auto;
  }

  .services__header,
  .impact-proof__header,
  .noww__header,
  .client-partners__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .service-panel__deliverables {
    padding: 0;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .focused-offerings {
    grid-template-columns: minmax(0, 1fr);
  }

  .impact-proof__stats,
  .focused-offerings > div,
  .native-results__metrics,
  .client-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .noww__journey {
    grid-template-columns: repeat(5, minmax(7rem, 1fr));
    overflow-x: auto;
    padding-bottom: 0.45rem;
  }

  .linkedin-case-name {
    grid-area: auto;
  }
}

@media (max-width: 639px) {
  .agency-hero__headline {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .agency-hero__system-head,
  .agency-hero__system-foot,
  .linkedin-case-name {
    align-items: flex-start;
    flex-direction: column;
  }

  .agency-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .impact-proof__stats,
  .focused-offerings > div,
  .native-results__metrics,
  .client-partners__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .channel-case__metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-partner {
    min-height: 10rem;
  }

  .client-partner h3 {
    margin-top: 3rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.galaxy-scroll-active .agency-hero__inner {
    max-width: min(var(--container), calc(100vw - clamp(5rem, 10vw, 10rem)));
    gap: clamp(1.3rem, 3vw, 3rem);
  }

  html.galaxy-scroll-active .agency-hero__headline {
    margin-top: clamp(0.7rem, 1.8vh, 1.15rem);
    font-size: clamp(2.55rem, 6.4vh, 4.8rem);
  }

  html.galaxy-scroll-active .agency-hero__subhead {
    margin-top: clamp(0.7rem, 1.7vh, 1.1rem);
    font-size: clamp(0.8rem, 1.7vh, 1rem);
  }

  html.galaxy-scroll-active .agency-hero__actions {
    margin-top: clamp(0.7rem, 1.7vh, 1.1rem);
  }

  html.galaxy-scroll-active .agency-hero__roles li {
    padding-block: clamp(0.5rem, 1.25vh, 0.8rem);
  }

  html.galaxy-scroll-active .pitch__support {
    margin-top: clamp(0.75rem, 1.8vh, 1.2rem);
  }

  html.galaxy-scroll-active .fit__grid {
    gap: clamp(1rem, 3vw, 2.5rem);
  }

  html.galaxy-scroll-active .fit__audience > p,
  html.galaxy-scroll-active .fit__chips,
  html.galaxy-scroll-active .problems__list {
    margin-top: 0.65rem;
  }

  html.galaxy-scroll-active .problems__list {
    gap: 0.35rem;
  }

  html.galaxy-scroll-active .problems__list li {
    padding: 0.5rem 0.65rem;
  }

  html.galaxy-scroll-active .services__tabs {
    margin-top: 0.7rem;
  }

  html.galaxy-scroll-active .service-panel {
    padding: 0.8rem;
  }

  html.galaxy-scroll-active .focused-offerings {
    margin-top: 0.45rem;
  }

  html.galaxy-scroll-active .impact-proof__stats,
  html.galaxy-scroll-active .client-partners__grid,
  html.galaxy-scroll-active .noww__stage {
    margin-top: 0.8rem;
  }

  html.galaxy-scroll-active .client-partner {
    min-height: 9.5rem;
  }

  html.galaxy-scroll-active .client-partner h3 {
    margin-top: 3.2rem;
  }

  html.galaxy-scroll-active .contact__lede {
    margin-top: 0.7rem;
    font-size: 0.8rem;
  }
}

html[data-theme="light"] :is(
  .agency-hero__headline,
  .pitch__copy--agency,
  .service-panel__story h3,
  .channel-case__intro h3,
  .vandhana-case__intro h3,
  .native-results__intro h3,
  .linkedin-case-name strong,
  .evidence-stat__single,
  .native-results__metrics strong,
  .noww__result-route,
  .client-partner h3
) {
  color: #1d1c19;
}

html[data-theme="light"] :is(
  .agency-hero__subhead,
  .pitch__support,
  .fit__audience > p,
  .services__header > p,
  .impact-proof__header > p,
  .noww__header > p,
  .client-partners__header > p,
  .service-panel__story > p,
  .channel-case__intro > p,
  .vandhana-case__intro > p,
  .native-results__intro > p,
  .noww__outcome > p,
  .contact__lede
) {
  color: rgba(29, 28, 25, 0.67);
}

html[data-theme="light"] :is(
  .agency-hero__system,
  .problems__list li,
  .service-panel,
  .impact-proof__stats .about__stat,
  .channel-case__intro,
  .channel-case__system,
  .vandhana-case__intro,
  .vandhana-case__audience,
  .vandhana-case__territories,
  .vandhana-case__samples,
  .native-results__intro,
  .native-results__metrics > article,
  .noww__journey article,
  .noww__result,
  .noww__outcome,
  .client-partner
) {
  border-color: rgba(29, 28, 25, 0.18);
  background: rgba(255, 255, 255, 0.34);
}

html[data-theme="light"] :is(
  .agency-hero__roles strong,
  .problems__list p,
  .fit__chips span,
  .service-panel__story > strong,
  .service-panel__deliverables li > strong,
  .focused-offerings > div > span,
  .channel-case__system li > strong,
  .vandhana-case__samples > a > strong,
  .noww__journey strong
) {
  color: rgba(29, 28, 25, 0.82);
}

html[data-theme="light"] :is(
  .agency-hero__system-head,
  .agency-hero__system-foot,
  .agency-hero__roles span,
  .agency-kicker,
  .focused-offerings__label,
  .native-results__metrics span,
  .noww__result > span,
  .noww__result > p,
  .client-partner__meta,
  .client-partner > p
) {
  color: rgba(29, 28, 25, 0.5);
}

html[data-theme="light"] :is(
  .agency-hero__system::before,
  .agency-hero__roles li,
  .service-panel__deliverables,
  .service-panel__deliverables li,
  .channel-case__system li,
  .vandhana-case__samples > a,
  .native-results__brands,
  .production-scope
) {
  border-color: rgba(29, 28, 25, 0.12);
}

html[data-theme="light"] .agency-button {
  border-color: rgba(29, 28, 25, 0.28);
  color: rgba(29, 28, 25, 0.78);
}

html[data-theme="light"] .agency-button--primary {
  border-color: #1d1c19;
  background: #1d1c19;
  color: #f5f2ea;
}

html[data-theme="light"] .agency-button--primary:hover,
html[data-theme="light"] .agency-button--primary:focus-visible {
  background: transparent;
  color: #1d1c19;
}

/* Keep proof labels readable after a galaxy scene is fitted to the viewport. */
html.galaxy-scroll-active :is(
  .evidence-caption,
  .evidence-source-note,
  .evidence-stat__top,
  .evidence-capture__label,
  .content-era__heading span,
  .evidence-footnote,
  .noww__result > span,
  .noww__result > p,
  .client-partner__meta
) {
  font-size: 0.625rem;
}

html.galaxy-scroll-active .evidence-stat__top strong {
  font-size: 0.625rem;
}

/* Readability and hierarchy pass -----------------------------------------
 * The galaxy remains visible around each scene. Dense information now sits
 * on one calm reading plane so stars never compete with labels or body copy.
 */
:root {
  --container: 78rem;
  --studio-surface: rgba(7, 6, 12, 0.92);
  --studio-surface-soft: rgba(11, 9, 17, 0.84);
  --studio-card: rgba(14, 12, 21, 0.94);
  --studio-border: rgba(255, 255, 255, 0.2);
  --studio-border-strong: rgba(255, 255, 255, 0.3);
  --studio-copy: rgba(255, 255, 255, 0.82);
  --studio-muted: rgba(255, 255, 255, 0.66);
}

.outlined {
  color: rgba(255, 255, 255, 0.065);
  -webkit-text-stroke: 1.35px rgba(255, 255, 255, 0.94);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.58);
}

:is(
  .agency-hero__headline,
  .pitch__copy--agency,
  .section-heading,
  .section__headline,
  .gallery__header h2,
  .contact__headline
) {
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.62);
}

:is(
  #fit,
  #services,
  #impact,
  #projects,
  #youtube,
  #shorts,
  #podcast,
  #brand-work,
  #production,
  #linkedin,
  #noww,
  #client-partners,
  #contact
) > .section__inner {
  position: relative;
  isolation: isolate;
  padding: clamp(1.15rem, 2.25vw, 2rem);
  border: 1px solid var(--studio-border);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 4%, rgba(126, 90, 170, 0.11), transparent 28%),
    linear-gradient(145deg, var(--studio-surface), rgba(5, 5, 10, 0.88));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(10px) saturate(0.86);
  backdrop-filter: blur(10px) saturate(0.86);
}

:is(
  #fit,
  #services,
  #impact,
  #projects,
  #youtube,
  #shorts,
  #podcast,
  #brand-work,
  #production,
  #linkedin,
  #noww,
  #client-partners,
  #contact
) > .section__inner::before {
  position: absolute;
  inset: 0.55rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 11px;
  content: "";
  pointer-events: none;
}

.section-tag {
  margin-bottom: clamp(1.35rem, 2.6vw, 2.25rem);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.section-tag__line {
  background: rgba(255, 255, 255, 0.23);
}

.agency-kicker,
.evidence-kicker,
.focused-offerings__label {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.fit__grid {
  gap: clamp(1.5rem, 3vw, 3rem);
}

.fit__audience {
  padding-right: clamp(1rem, 2.4vw, 2.25rem);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.fit__audience h2,
.fit__problems-title {
  margin-top: 0.7rem;
}

.fit__problems-title {
  color: #fff;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 0.96;
}

.fit__audience > p,
.fit__problems-lede {
  color: var(--studio-copy);
  font-size: 0.98rem;
  line-height: 1.6;
}

.fit__problems-lede {
  margin-top: 0.65rem;
}

.fit__chips {
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.fit__chips span {
  padding: 0.55rem 0.9rem;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
}

.problems__list {
  gap: 0.65rem;
  margin-top: 1rem;
}

.problems__list li {
  grid-template-columns: 2.35rem 1fr;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.75rem 0.95rem;
  border-color: var(--studio-border);
  background: linear-gradient(100deg, rgba(255, 123, 52, 0.07), var(--studio-card) 18%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.problems__list span {
  padding-top: 0;
  font-size: 0.66rem;
  font-weight: 700;
}

.problems__list p {
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

:is(
  .services__header > p,
  .impact-proof__header > p,
  .noww__header > p,
  .client-partners__header > p,
  .gallery__header p,
  .projects__intro,
  .contact__lede
) {
  color: var(--studio-copy);
  font-size: 0.94rem;
  line-height: 1.6;
}

.gallery__tab {
  min-height: 2.8rem;
  padding: 0.62rem 1rem;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(10, 9, 15, 0.96);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
}

.service-panel,
.evidence-story {
  border-color: var(--studio-border-strong);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 123, 52, 0.07), transparent 28%),
    rgba(5, 5, 9, 0.96);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.service-panel__story > strong {
  color: #fff;
  font-size: 1rem;
}

.service-panel__story > p,
.channel-case__intro > p,
.vandhana-case__intro > p,
.native-results__intro > p,
.noww__outcome > p {
  color: var(--studio-copy);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-panel__number,
.service-panel__deliverables li > span,
.focused-offerings small,
.noww__journey span {
  font-size: 0.64rem;
  font-weight: 700;
}

.service-panel__deliverables li > strong,
.focused-offerings > div > span,
.noww__journey strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.focused-offerings > div > span {
  min-height: 2.55rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

:is(
  .problems__list li,
  .impact-proof__stats .about__stat,
  .projects__card,
  .channel-case__intro,
  .channel-case__system,
  .vandhana-case__intro,
  .vandhana-case__audience,
  .vandhana-case__territories,
  .vandhana-case__samples,
  .native-results__intro,
  .native-results__metrics > article,
  .noww__journey article,
  .noww__result,
  .noww__outcome,
  .client-partner,
  .contact__card
) {
  border-color: var(--studio-border);
  background-color: var(--studio-card);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.025);
}

.impact-proof__stats .about__stat {
  padding: 1.15rem;
}

.impact-proof__stats .about__stat-label,
.projects__card-meta,
.native-results__metrics span,
.contact__label,
.client-partner__meta {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about__stat-detail,
.client-partner > p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.projects__card {
  border-color: rgba(255, 255, 255, 0.21);
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 123, 52, 0.055), transparent 35%),
    var(--studio-card);
}

.projects__card h3 {
  margin-top: 1.05rem;
  font-size: 1.35rem;
}

.projects__card p {
  margin-top: 0.65rem;
  color: var(--studio-copy);
  font-size: 0.88rem;
  line-height: 1.55;
}

.gallery__header {
  margin-bottom: 2.25rem;
}

.gallery__caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  line-height: 1.45;
}

.gallery__caption > span:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.media__label,
.media__labels,
.media__doc-open,
.evidence-caption,
.evidence-source-note,
.evidence-stat__top,
.evidence-capture__label,
.content-era__heading span,
.evidence-footnote,
.noww__result > span,
.noww__result > p,
.client-partner__meta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.evidence-intro > p,
.evidence-callout__copy,
.evidence-source-note strong {
  color: var(--studio-copy);
  font-size: 0.86rem;
  line-height: 1.55;
}

:is(
  .evidence-frame,
  .evidence-capture,
  .insight-capture,
  .content-era,
  .linkedin-capture,
  .evidence-stat
) {
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(11, 10, 17, 0.96);
}

.contact__card {
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 228, 162, 0.06), transparent 36%),
    var(--studio-card);
}

.contact__value {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 500;
}

html.galaxy-scroll-active .section-tag {
  margin-bottom: clamp(1.1rem, 2vh, 1.6rem);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

html.galaxy-scroll-active :is(
  .agency-kicker,
  .evidence-kicker,
  .focused-offerings__label
) {
  font-size: 0.68rem;
}

html.galaxy-scroll-active .problems__list li {
  min-height: 3rem;
  padding: 0.65rem 0.85rem;
}

html.galaxy-scroll-active .gallery__tab {
  min-height: 2.65rem;
  padding: 0.56rem 0.88rem;
  font-size: 0.68rem;
}

html.galaxy-scroll-active :is(
  .services__header > p,
  .impact-proof__header > p,
  .noww__header > p,
  .client-partners__header > p,
  .gallery__header p,
  .projects__intro,
  .contact__lede
) {
  color: var(--studio-copy);
  font-size: 0.86rem;
}

html.galaxy-scroll-active .projects__card p {
  color: var(--studio-copy);
  font-size: 0.82rem;
}

html.galaxy-scroll-active .gallery__caption {
  font-size: 0.7rem;
}

html.galaxy-scroll-active :is(
  .media__label,
  .media__labels,
  .media__doc-open,
  .evidence-caption,
  .evidence-source-note,
  .evidence-stat__top,
  .evidence-capture__label,
  .content-era__heading span,
  .evidence-footnote,
  .noww__result > span,
  .noww__result > p,
  .client-partner__meta
) {
  font-size: 0.64rem;
}

html[data-theme="light"] {
  --studio-surface: rgba(247, 244, 236, 0.94);
  --studio-surface-soft: rgba(255, 255, 255, 0.88);
  --studio-card: rgba(255, 255, 255, 0.92);
  --studio-border: rgba(29, 28, 25, 0.2);
  --studio-border-strong: rgba(29, 28, 25, 0.3);
  --studio-copy: rgba(29, 28, 25, 0.78);
  --studio-muted: rgba(29, 28, 25, 0.62);
}

html[data-theme="light"] .outlined {
  color: rgba(29, 28, 25, 0.055);
  -webkit-text-stroke-color: rgba(29, 28, 25, 0.9);
  text-shadow: 0 4px 22px rgba(255, 255, 255, 0.55);
}

html[data-theme="light"] .fit__problems-title {
  color: #1d1c19;
}

html[data-theme="light"] :is(
  #fit,
  #services,
  #impact,
  #projects,
  #youtube,
  #shorts,
  #podcast,
  #brand-work,
  #production,
  #linkedin,
  #noww,
  #client-partners,
  #contact
) > .section__inner {
  border-color: var(--studio-border);
  background:
    radial-gradient(circle at 92% 4%, rgba(111, 82, 145, 0.075), transparent 28%),
    linear-gradient(145deg, var(--studio-surface), rgba(245, 242, 234, 0.9));
  box-shadow:
    0 28px 76px rgba(29, 28, 25, 0.09),
    inset 0 1px rgba(255, 255, 255, 0.7);
}

html[data-theme="light"] :is(
  #fit,
  #services,
  #impact,
  #projects,
  #youtube,
  #shorts,
  #podcast,
  #brand-work,
  #production,
  #linkedin,
  #noww,
  #client-partners,
  #contact
) > .section__inner::before {
  border-color: rgba(29, 28, 25, 0.07);
}

html[data-theme="light"] :is(
  .section-tag,
  .agency-kicker,
  .evidence-kicker,
  .focused-offerings__label,
  .impact-proof__stats .about__stat-label,
  .projects__card-meta,
  .native-results__metrics span,
  .contact__label,
  .client-partner__meta
) {
  color: rgba(29, 28, 25, 0.66);
}

html[data-theme="light"] :is(
  .fit__audience > p,
  .fit__problems-lede,
  .problems__list p,
  .service-panel__story > p,
  .channel-case__intro > p,
  .vandhana-case__intro > p,
  .native-results__intro > p,
  .noww__outcome > p,
  .projects__card p,
  .gallery__header p,
  .contact__lede
) {
  color: rgba(29, 28, 25, 0.82);
}

html[data-theme="light"] :is(
  .problems__list li,
  .service-panel,
  .impact-proof__stats .about__stat,
  .projects__card,
  .channel-case__intro,
  .channel-case__system,
  .vandhana-case__intro,
  .vandhana-case__audience,
  .vandhana-case__territories,
  .vandhana-case__samples,
  .native-results__intro,
  .native-results__metrics > article,
  .noww__journey article,
  .noww__result,
  .noww__outcome,
  .client-partner,
  .contact__card,
  .evidence-story,
  .evidence-frame,
  .evidence-capture,
  .insight-capture,
  .content-era,
  .linkedin-capture,
  .evidence-stat
) {
  border-color: rgba(29, 28, 25, 0.21);
  background-color: var(--studio-card);
  box-shadow: 0 14px 34px rgba(29, 28, 25, 0.075);
}

@media (max-width: 899px) {
  .section {
    padding-inline: 1rem;
  }

  :is(
    #fit,
    #services,
    #impact,
    #projects,
    #youtube,
    #shorts,
    #podcast,
    #brand-work,
    #production,
    #linkedin,
    #noww,
    #client-partners,
    #contact
  ) > .section__inner {
    padding: clamp(0.9rem, 4vw, 1.35rem);
    border-radius: 13px;
  }

  .fit__audience {
    padding-right: 0;
    padding-bottom: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  html[data-theme="light"] .fit__audience {
    border-bottom-color: rgba(29, 28, 25, 0.16);
  }
}

@media (max-width: 639px) {
  .section-tag {
    margin-bottom: 1.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .fit__problems-title {
    font-size: 1.8rem;
  }

  .fit__audience > p,
  .fit__problems-lede,
  .problems__list p,
  :is(
    .services__header > p,
    .impact-proof__header > p,
    .noww__header > p,
    .client-partners__header > p,
    .gallery__header p,
    .projects__intro,
    .contact__lede
  ) {
    font-size: 0.93rem;
  }

  .problems__list li {
    grid-template-columns: 1.8rem 1fr;
    padding: 0.8rem;
  }
}

/* Journey geometry and control clarity ---------------------------------- */
html.galaxy-scroll-active .galaxy-scene {
  padding:
    clamp(3.5rem, 6vh, 4.5rem)
    clamp(2.5rem, 5vw, 5rem)
    clamp(3.25rem, 5.5vh, 4.25rem);
}

html.galaxy-scroll-active #shorts .gallery__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
}

html.galaxy-scroll-active :is(
  #shorts-panel-lost-history,
  #shorts-panel-breaking-barriers
) .gallery__grid {
  grid-template-columns: repeat(3, minmax(0, 17rem));
}

html.galaxy-scroll-active #shorts :is(.gallery__media, .media).media--vertical {
  max-height: 52vh;
  aspect-ratio: 3 / 5;
}

.gallery__tabs {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0.32rem;
  border: 1px solid var(--studio-border);
  border-radius: 999px;
  background: rgba(6, 6, 10, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.services__tabs {
  margin-top: 1rem;
}

.gallery__tab {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.gallery__caption {
  margin-top: 0;
  padding: 0.58rem 0.62rem;
  border: 1px solid var(--studio-border);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(8, 7, 13, 0.97);
}

:is(.gallery__media, .media) {
  border-radius: 8px 8px 0 0;
}

.agency-hero__system-head,
.agency-hero__system-foot,
.agency-hero__roles span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
}

.evidence-callout__copy,
.evidence-callout__copy strong {
  color: var(--studio-copy);
  font-size: 0.78rem;
}

.native-results__metrics span,
.noww__journey span,
.client-partner__meta,
.projects__card-meta,
.projects__meta {
  font-size: 0.7rem;
}

html.galaxy-scroll-active :is(
  .agency-hero__system-head,
  .agency-hero__system-foot,
  .agency-hero__roles span,
  .evidence-callout__copy,
  .evidence-callout__copy strong,
  .native-results__metrics span,
  .noww__journey span,
  .client-partner__meta,
  .projects__card-meta,
  .projects__meta
) {
  font-size: 0.75rem;
}

html.galaxy-scroll-active .section-tag,
html.galaxy-scroll-active .gallery__tab,
html.galaxy-scroll-active .gallery__caption,
html.galaxy-scroll-active :is(
  .evidence-caption,
  .evidence-source-note,
  .evidence-stat__top,
  .evidence-capture__label,
  .content-era__heading span,
  .evidence-footnote
) {
  font-size: 0.75rem;
}

html.galaxy-scroll-active .evidence-intro > p {
  color: var(--studio-copy);
  font-size: 0.86rem;
  line-height: 1.5;
}

html.galaxy-scroll-active .evidence-stat__top strong {
  font-size: 0.75rem;
}

html.galaxy-scroll-active .evidence-linkedin__sample > .evidence-kicker,
html.galaxy-scroll-active .gallery__caption > span:last-child {
  font-size: 0.7rem;
}

@media (min-width: 1180px) and (max-height: 819px) {
  html.galaxy-scroll-active .gallery > .section__inner {
    max-width: 70rem;
    padding: 1.15rem;
  }

  html.galaxy-scroll-active .gallery__header {
    margin-bottom: 0.7rem;
  }

  html.galaxy-scroll-active .gallery__tabs {
    margin-bottom: 0.7rem;
  }

  html.galaxy-scroll-active .evidence-story--youtube-growth .channel-capture {
    height: min(31vh, 15.5rem);
    aspect-ratio: auto;
  }

  html.galaxy-scroll-active .evidence-story--youtube-growth .channel-capture__base {
    object-position: center top;
  }
}

html[data-theme="light"] .gallery__tabs,
html[data-theme="light"] .gallery__caption {
  border-color: rgba(29, 28, 25, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(29, 28, 25, 0.08);
}

@media (max-width: 899px) {
  .gallery__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    overflow: visible;
    border-radius: 12px;
  }

  .gallery__tab {
    width: 100%;
    min-width: 0;
    border-radius: 8px;
    white-space: normal;
  }

  .evidence-story--linkedin {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: none;
  }

  .section-tag__title {
    max-width: 50%;
    line-height: 1.4;
    text-align: right;
    white-space: normal;
  }
}

@media (max-width: 639px) {
  .gallery__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-tag__title {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  #shorts .gallery__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Bold ABMUS brand system ------------------------------------------------ */
:root {
  --brand-ink: #08050d;
  --brand-surface: #100a1c;
  --brand-card: #181024;
  --brand-text: #faf7ff;
  --brand-copy: #e7e0ef;
  --brand-muted: #b9aec8;
  --brand-line: #3c304a;
  --brand-lime: #d8ff3e;
  --brand-coral: #ff6846;
  --brand-violet: #9b7bff;
  --brand-accent: var(--brand-coral);
  --font-display-impact: "Archivo Black", "Chakra Petch", sans-serif;
}

:is(
  .agency-hero__headline,
  .pitch__copy,
  .section-heading,
  .section__headline,
  .gallery__header h2,
  .contact__headline
) {
  font-family: var(--font-display-impact);
  font-weight: 400;
  letter-spacing: -0.035em;
}

#fit,
#services,
#brand-work,
#production {
  --brand-accent: var(--brand-coral);
}

#impact,
#youtube,
#podcast,
#contact {
  --brand-accent: var(--brand-lime);
}

#projects,
#shorts,
#linkedin,
#noww,
#client-partners {
  --brand-accent: var(--brand-violet);
}

:is(
  #fit,
  #services,
  #impact,
  #projects,
  #youtube,
  #shorts,
  #podcast,
  #brand-work,
  #production,
  #linkedin,
  #noww,
  #client-partners,
  #contact
) > .section__inner {
  border-top: 2px solid color-mix(in srgb, var(--brand-accent) 74%, white 8%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.035),
    inset 0 3px 42px color-mix(in srgb, var(--brand-accent) 6%, transparent);
}

.section-tag .icon,
.agency-kicker,
.service-panel__number,
.problems__list span,
.projects__card-meta > span:first-child,
.contact__label {
  color: var(--brand-accent);
}

.section-tag .icon {
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--brand-accent) 70%, transparent));
}

.section-tag__line {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--brand-accent) 70%, transparent),
    rgba(255, 255, 255, 0.13) 34%,
    rgba(255, 255, 255, 0.13)
  );
}

.gallery__tab.is-active,
.gallery__tab[aria-selected="true"] {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: var(--brand-ink);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--brand-accent) 42%, transparent),
    0 0 28px color-mix(in srgb, var(--brand-accent) 24%, transparent);
}

.gallery__tab:focus-visible,
.agency-button:focus-visible,
.projects__card:focus-visible,
.contact__card:focus-visible {
  outline: 3px solid var(--brand-lime);
  outline-offset: 3px;
}

.impact-proof__stats .about__stat-value {
  color: var(--brand-lime);
  text-shadow: 0 0 26px rgba(216, 255, 62, 0.13);
}

.problems__list li {
  border-left: 3px solid var(--brand-coral);
}

.projects__card:hover,
.projects__card:focus-visible,
.contact__card:hover,
.contact__card:focus-visible {
  border-color: color-mix(in srgb, var(--brand-accent) 74%, white 12%);
  transform: translateY(-2px);
}

.agency-hero {
  --hero-lime: var(--brand-lime);
  --hero-coral: var(--brand-coral);
  --hero-violet: var(--brand-violet);
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 42%, rgba(255, 104, 70, 0.13), transparent 31%),
    radial-gradient(circle at 82% 46%, rgba(155, 123, 255, 0.14), transparent 28%);
}

.agency-hero__flare {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.agency-hero__flare i {
  position: absolute;
  display: block;
}

.agency-hero__flare i:nth-child(1) {
  top: 13%;
  right: 4%;
  width: clamp(15rem, 26vw, 31rem);
  aspect-ratio: 1;
  border: 1px solid rgba(155, 123, 255, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.5rem rgba(155, 123, 255, 0.025),
    0 0 110px rgba(155, 123, 255, 0.12);
}

.agency-hero__flare i:nth-child(2) {
  top: 20%;
  right: 22%;
  width: 4.5rem;
  height: 5.5rem;
  border: 1px solid rgba(216, 255, 62, 0.62);
  transform: rotate(24deg);
  box-shadow: 0 0 44px rgba(216, 255, 62, 0.12);
}

.agency-hero__flare i:nth-child(3) {
  bottom: 15%;
  left: -3%;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hero-coral), transparent);
  box-shadow: 0 0 22px rgba(255, 104, 70, 0.55);
  transform: rotate(-8deg);
}

.agency-hero__copy {
  position: relative;
  isolation: isolate;
}

.agency-hero__copy::before {
  position: absolute;
  inset: -2.25rem -3.5rem;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(8, 5, 13, 0.88), rgba(8, 5, 13, 0.54) 62%, transparent 76%);
  content: "";
  pointer-events: none;
}

.agency-hero__eyebrow {
  gap: 0;
  width: fit-content;
  color: var(--brand-text);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.agency-hero__eyebrow > span {
  display: none;
}

.agency-hero__eyebrow strong,
.agency-hero__eyebrow em {
  padding: 0.45rem 0.65rem;
  font-style: normal;
}

.agency-hero__eyebrow strong {
  border-radius: 5px 0 0 5px;
  background: var(--hero-coral);
  color: var(--brand-ink);
}

.agency-hero__eyebrow em {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 0;
  border-radius: 0 5px 5px 0;
  background: rgba(8, 5, 13, 0.9);
  color: rgba(255, 255, 255, 0.86);
}

.agency-hero__headline {
  max-width: 11.5em;
  margin-top: 1.2rem;
  font-size: clamp(3.35rem, 6.65vw, 7rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.agency-hero__attention {
  color: var(--hero-coral);
  text-shadow: 0 0 42px rgba(255, 104, 70, 0.18);
}

.agency-hero__bridge {
  margin-top: 0.14em;
  color: var(--brand-text);
  font-size: 0.72em;
  letter-spacing: -0.025em;
}

.agency-hero__trust {
  width: max-content;
  max-width: 100%;
  margin-top: 0.12em;
  padding: 0.05em 0.14em 0.09em;
  border-radius: 3px;
  background: var(--hero-lime);
  color: var(--brand-ink);
  box-shadow:
    0.08em 0.08em 0 var(--hero-coral),
    0 0 48px rgba(216, 255, 62, 0.15);
  text-shadow: none;
  transform: rotate(-0.7deg);
}

.agency-hero__subhead {
  max-width: 45rem;
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--hero-violet);
  color: var(--brand-copy);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
}

.agency-hero__scope {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.agency-hero__scope li {
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(16, 10, 28, 0.92);
  color: rgba(255, 255, 255, 0.84);
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agency-hero__actions {
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.agency-button {
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(16, 10, 28, 0.9);
  color: var(--brand-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.agency-button:hover,
.agency-button:focus-visible {
  border-color: var(--hero-violet);
  background: var(--brand-card);
  transform: translateY(-2px);
}

.agency-button--primary {
  border-color: var(--hero-lime);
  background: var(--hero-lime);
  color: var(--brand-ink);
  box-shadow: 0 12px 34px rgba(216, 255, 62, 0.16);
}

.agency-button--primary:hover,
.agency-button--primary:focus-visible {
  border-color: var(--hero-lime);
  background: var(--hero-lime);
  color: var(--brand-ink);
  box-shadow: 0 15px 42px rgba(216, 255, 62, 0.25);
}

.agency-hero__system {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 1.8vw, 1.45rem);
  border: 1px solid rgba(155, 123, 255, 0.62);
  border-radius: 14px;
  background:
    radial-gradient(circle at 96% 4%, rgba(216, 255, 62, 0.11), transparent 27%),
    linear-gradient(145deg, rgba(37, 23, 58, 0.98), rgba(10, 7, 17, 0.98));
  box-shadow:
    14px 14px 0 rgba(255, 104, 70, 0.13),
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(155, 123, 255, 0.12);
  transform: rotate(0.7deg);
}

.agency-hero__system::before {
  inset: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
}

.agency-hero__system-head,
.agency-hero__system-foot {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.agency-hero__proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-block: 1rem;
}

.agency-hero__proof {
  min-width: 0;
  min-height: 9rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
}

.agency-hero__proof--1 {
  grid-column: 1 / -1;
  min-height: 10.25rem;
  background: var(--hero-coral);
  color: var(--brand-ink);
}

.agency-hero__proof--2 {
  background: var(--hero-lime);
  color: var(--brand-ink);
}

.agency-hero__proof--3 {
  background: var(--hero-violet);
  color: var(--brand-ink);
}

.agency-hero__proof > span {
  display: block;
  min-height: 2.5em;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.agency-hero__proof strong {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.9;
}

.agency-hero__proof--3 strong {
  font-size: clamp(1.7rem, 3vw, 2.75rem);
}

.agency-hero__proof p {
  margin-top: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

.agency-hero__system-foot {
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.7);
}

.agency-hero__system-foot span:first-child {
  max-width: 17rem;
  color: var(--hero-lime);
}

@media (min-width: 900px) {
  .agency-hero__inner {
    grid-template-columns: minmax(0, 1.28fr) minmax(21rem, 0.72fr);
    gap: clamp(2rem, 4.5vw, 4.5rem);
  }
}

html.galaxy-scroll-active .agency-hero__headline {
  margin-top: clamp(0.75rem, 1.6vh, 1.1rem);
  font-size: clamp(3rem, 7.1vh, 5.35rem);
}

html.galaxy-scroll-active .agency-hero__subhead {
  margin-top: clamp(0.65rem, 1.4vh, 1rem);
  font-size: clamp(0.92rem, 1.7vh, 1.08rem);
}

html.galaxy-scroll-active .agency-hero__scope {
  margin-top: 0.75rem;
}

html.galaxy-scroll-active .agency-hero__scope li,
html.galaxy-scroll-active .agency-button,
html.galaxy-scroll-active .agency-hero__eyebrow,
html.galaxy-scroll-active .agency-hero__system-head,
html.galaxy-scroll-active .agency-hero__system-foot,
html.galaxy-scroll-active .agency-hero__proof > span {
  font-size: 0.72rem;
}

html.galaxy-scroll-active .agency-hero__proof {
  min-height: 7.5rem;
  padding: 0.72rem;
}

html.galaxy-scroll-active .agency-hero__proof--1 {
  min-height: 8.25rem;
}

html.galaxy-scroll-active .agency-hero__proof strong {
  font-size: clamp(2rem, 4.6vh, 3rem);
}

html.galaxy-scroll-active .agency-hero__proof--3 strong {
  font-size: clamp(1.65rem, 3.8vh, 2.4rem);
}

/* Meaningful labels are never treated as decorative microcopy. */
:is(
  .native-results__brands,
  .evidence-source-link,
  .production-scope span,
  .service-panel__number,
  .service-panel__deliverables li > span,
  .impact-proof__stats .about__stat-label,
  .media__label,
  .media__labels,
  .gallery__caption > span:first-child,
  .contact__label,
  .noww__result > span,
  .noww__result > p
) {
  font-size: 0.75rem;
}

html.galaxy-scroll-active :is(
  .native-results__brands,
  .evidence-source-link,
  .production-scope span,
  .service-panel__number,
  .service-panel__deliverables li > span,
  .impact-proof__stats .about__stat-label,
  .media__label,
  .media__labels,
  .gallery__caption > span:first-child,
  .contact__label,
  .noww__result > span,
  .noww__result > p
) {
  font-size: 0.75rem;
}

html[data-theme="light"] {
  --brand-ink: #18131e;
  --brand-surface: #fffaf4;
  --brand-card: #fff;
  --brand-text: #18131e;
  --brand-copy: #4d4258;
  --brand-muted: #6c6176;
  --brand-line: #d6cbdc;
}

html[data-theme="light"] .agency-hero {
  background:
    radial-gradient(circle at 16% 42%, rgba(255, 104, 70, 0.13), transparent 31%),
    radial-gradient(circle at 82% 46%, rgba(155, 123, 255, 0.14), transparent 28%);
}

html[data-theme="light"] .agency-hero__copy::before {
  background: radial-gradient(ellipse, rgba(245, 239, 229, 0.94), rgba(245, 239, 229, 0.7) 62%, transparent 76%);
}

html[data-theme="light"] .agency-hero__eyebrow em,
html[data-theme="light"] .agency-hero__scope li {
  border-color: rgba(29, 28, 25, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(29, 28, 25, 0.82);
}

html[data-theme="light"] .agency-button:not(.agency-button--primary) {
  border-color: rgba(29, 28, 25, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-ink);
}

html[data-theme="light"] .gallery__tab.is-active,
html[data-theme="light"] .gallery__tab[aria-selected="true"] {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: var(--brand-ink);
}

@media (max-width: 899px) {
  .agency-hero__inner {
    gap: 2.5rem;
  }

  .agency-hero__headline {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .agency-hero__system {
    transform: none;
  }
}

@media (max-width: 639px) {
  .agency-hero__eyebrow {
    max-width: 100%;
    align-items: stretch;
  }

  .agency-hero__eyebrow em {
    min-width: 0;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .agency-hero__headline {
    font-size: clamp(2.65rem, 12vw, 3.6rem);
  }

  .agency-hero__scope {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-hero__scope li {
    display: flex;
    min-height: 2.8rem;
    align-items: center;
  }

  .agency-hero__proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .agency-hero__proof--1 {
    grid-column: auto;
  }
}

/* The hero introduces the offer; proof stays in its dedicated results scenes. */
.agency-hero__stack-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-block: 1rem;
}

.agency-hero__stack-card {
  min-width: 0;
  min-height: 8.4rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--brand-ink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.agency-hero__stack-card--1 {
  background: var(--hero-coral);
}

.agency-hero__stack-card--2 {
  background: var(--hero-lime);
}

.agency-hero__stack-card--3 {
  background: var(--hero-violet);
}

.agency-hero__stack-card--4 {
  border-color: rgba(216, 255, 62, 0.34);
  background: #171023;
  color: #faf7ff;
}

.agency-hero__stack-card > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.72;
}

.agency-hero__stack-card strong {
  display: block;
  margin-top: 0.7rem;
  font-family: "Archivo Black", "Chakra Petch", sans-serif;
  font-size: clamp(0.98rem, 1.5vw, 1.3rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.agency-hero__stack-card p {
  margin-top: 0.65rem;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
  opacity: 0.82;
}

html.galaxy-scroll-active .agency-hero__stack-card {
  min-height: 7.35rem;
  padding: 0.75rem;
}

html.galaxy-scroll-active .agency-hero__stack-card > span,
html.galaxy-scroll-active .agency-hero__stack-card p {
  font-size: 0.72rem;
}

html[data-theme="light"] .agency-hero__system {
  border-color: rgba(94, 65, 189, 0.4);
  background:
    radial-gradient(circle at 96% 4%, rgba(216, 255, 62, 0.16), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 251, 0.98));
  box-shadow:
    14px 14px 0 rgba(255, 104, 70, 0.13),
    0 30px 70px rgba(77, 52, 91, 0.16);
}

html[data-theme="light"] :is(.agency-hero__system-head, .agency-hero__system-foot) {
  color: rgba(29, 28, 25, 0.72);
}

html[data-theme="light"] .agency-hero__system-foot span:first-child {
  color: #536b00;
}

html[data-theme="light"] .agency-hero__stack-card--4 {
  border-color: rgba(94, 65, 189, 0.28);
  background: #272033;
  color: #faf7ff;
}

/* Light-mode semantic copy must remain readable on cream reading planes. */
html[data-theme="light"] :is(
  .agency-hero__eyebrow,
  .service-panel__deliverables li > span,
  .focused-offerings small,
  .about__stat-detail,
  .production-scope span,
  .native-results__brands,
  .noww__journey span,
  .evidence-source-link
) {
  color: rgba(29, 28, 25, 0.7);
}

@media (max-width: 639px) {
  .agency-hero__stack-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .agency-hero__stack-card,
  html.galaxy-scroll-active .agency-hero__stack-card {
    min-height: 7.25rem;
  }
}

/* Final semantic type floor: if it carries meaning, it must read at a glance. */
:is(
  .agency-hero__eyebrow,
  .agency-hero__scope li,
  .agency-button,
  .agency-hero__system-head,
  .agency-hero__system-foot,
  .agency-hero__stack-card > span,
  .agency-hero__stack-card p,
  .focused-offerings small,
  .evidence-source-note,
  .evidence-stat__top,
  .evidence-capture__label,
  .content-era__heading span,
  .evidence-footnote
) {
  font-size: 0.75rem;
}

:is(
  .focused-offerings small,
  .evidence-source-note,
  .evidence-stat__top,
  .evidence-capture__label,
  .content-era__heading span,
  .evidence-footnote
) {
  color: rgba(255, 255, 255, 0.66);
}

html.galaxy-scroll-active :is(
  .agency-hero__eyebrow,
  .agency-hero__scope li,
  .agency-button,
  .agency-hero__system-head,
  .agency-hero__system-foot,
  .agency-hero__stack-card > span,
  .agency-hero__stack-card p,
  .focused-offerings small,
  .evidence-source-note,
  .evidence-stat__top,
  .evidence-capture__label,
  .content-era__heading span,
  .evidence-footnote
) {
  font-size: 0.75rem;
}

html[data-theme="light"] :is(
  .focused-offerings small,
  .evidence-source-note,
  .evidence-stat__top,
  .evidence-capture__label,
  .content-era__heading span,
  .evidence-footnote
) {
  color: rgba(29, 28, 25, 0.68);
}

@media (max-width: 639px) {
  .agency-hero__eyebrow em,
  .section-tag__title {
    font-size: 0.75rem;
  }

  .section-tag__title {
    letter-spacing: 0.06em;
    line-height: 1.35;
  }
}

/* Industrial editorial system -------------------------------------------
 * Native document flow, hard edges and flat technical graphics. The hero
 * uses a deliberately raw mission-control language without glow, nebula or
 * three-dimensional flight effects; the case studies remain calm and light.
 */
:root {
  color-scheme: light;
  --cream: #f4f4f0;
  --paper-white: #ffffff;
  --ink: #101010;
  --ink-soft: #343434;
  --line: #101010;
  --safety-yellow: #ffe500;
  --brutal-red: #d91f3d;
  --brutal-red-bright: #f02b48;
  --steel: #dfe3e6;
  --sand: #e9e2d4;
  --container: 82rem;
  --brand-ink: var(--ink);
  --brand-text: var(--ink);
  --brand-copy: #343434;
  --brand-muted: #5c5c5c;
  --brand-line: var(--ink);
  --brand-lime: var(--safety-yellow);
  --brand-coral: var(--brutal-red);
  --brand-violet: var(--ink);
  --brand-accent: var(--brutal-red);
  --font-display-impact: "Space Grotesk", Arial, sans-serif;
}

html,
html[data-theme="light"] {
  min-width: 320px;
  scroll-padding-top: 0;
  background: var(--cream);
  color-scheme: light;
}

body,
html[data-theme="light"] body,
.portfolio,
html[data-theme="light"] .portfolio {
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

@media (hover: hover) {
  html body,
  html body * {
    cursor: auto !important;
  }

  html body a,
  html body button,
  html body [role="tab"] {
    cursor: pointer !important;
  }
}

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
  border: 2px solid var(--cream);
  border-radius: 0;
  background: var(--ink);
}

.font-mono,
.mono,
code {
  font-family: "IBM Plex Mono", monospace;
}

.display,
:is(
  .agency-hero__headline,
  .pitch__copy,
  .section-heading,
  .section__headline,
  .gallery__header h2,
  .contact__headline
) {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-shadow: none;
}

.outlined,
html[data-theme="light"] .outlined {
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

[hidden] {
  display: none !important;
}

.skip-link {
  border: 2px solid var(--ink);
  border-top: 0;
  border-radius: 0;
  background: var(--safety-yellow);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

/* Fixed identity becomes a simple, high-contrast editorial header. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 160;
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem max(1rem, calc((100vw - var(--container)) / 2));
  border-bottom: 2px solid #fff;
  background: #000;
  color: #fff;
}

.site-header__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  font-family: "IBM Plex Mono", monospace;
}

.site-header__mark {
  width: 1rem;
  height: 1rem;
  flex: none;
  border: 1px solid #000;
  background: var(--safety-yellow);
}

.site-header__brand strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.site-header__brand > span:last-child {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header__nav a {
  min-height: 2.75rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  border-color: #fff;
}

.site-header__nav .site-header__cta {
  border-color: var(--safety-yellow);
  background: var(--safety-yellow);
  color: #000;
}

.site-header__nav .site-header__cta:hover,
.site-header__nav .site-header__cta:focus-visible {
  border-color: #fff;
  background: var(--brutal-red);
  color: #fff;
}

body.lightbox-open .site-header {
  pointer-events: none;
}

.main > section[id] {
  scroll-margin-top: 4.5rem;
}

.section,
.pitch {
  min-height: auto;
  padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 4vw, 3rem);
  border-bottom: 2px solid var(--ink);
}

.section--centered {
  display: block;
}

.section__inner,
:is(
  #fit,
  #services,
  #impact,
  #projects,
  #youtube,
  #shorts,
  #podcast,
  #brand-work,
  #production,
  #linkedin,
  #noww,
  #client-partners,
  #contact
) > .section__inner {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

:is(
  #fit,
  #services,
  #impact,
  #projects,
  #youtube,
  #shorts,
  #podcast,
  #brand-work,
  #production,
  #linkedin,
  #noww,
  #client-partners,
  #contact
) > .section__inner::before {
  display: none;
}

#pitch { background: var(--safety-yellow); }
#fit { background: var(--cream); }
#services { background: var(--steel); }
#impact { background: #f0c6c4; }
#projects { background: var(--cream); }
#youtube { background: #fff; }
#shorts { background: var(--sand); }
#podcast { background: #f4e7a5; }
#brand-work { background: #e4e8ea; }
#production { background: #efd8d4; }
#linkedin { background: #e5e9ed; }
#noww { background: #f1e39c; }
#client-partners { background: var(--cream); }
#contact { background: var(--brutal-red); }

.section-tag {
  margin-bottom: clamp(1.75rem, 3.5vw, 3rem);
  gap: 0.8rem;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section-tag__block {
  width: 0.75rem;
  height: 0.75rem;
  flex: none;
  background: var(--brutal-red);
}

.section-tag__line {
  height: 2px;
  background: var(--ink);
}

.section-tag__title {
  max-width: 24rem;
  color: var(--ink);
  text-align: right;
}

.section-heading,
.section__headline,
html[data-theme="light"] :is(.section-heading, .section__headline) {
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.9;
}

.section-heading .outlined,
.section__headline .outlined,
.gallery__header .outlined {
  color: var(--brutal-red);
}

/* Hero: flat industrial space, with no blur, glow or soft atmosphere. */
.intro.agency-hero {
  position: relative;
  min-height: calc(100svh - 4.5rem);
  padding: clamp(4rem, 8vh, 7rem) clamp(1rem, 4vw, 3rem);
  border-bottom: 2px solid #fff;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.agency-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  pointer-events: none;
}

.agency-hero::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 2px;
  height: 2px;
  background: #fff;
  box-shadow:
    6vw 9vh 0 #fff,
    13vw 71vh 0 rgba(255,255,255,.72),
    18vw 24vh 0 rgba(255,255,255,.55),
    24vw 83vh 0 #fff,
    31vw 16vh 0 rgba(255,255,255,.65),
    37vw 60vh 0 #fff,
    42vw 35vh 0 rgba(255,255,255,.55),
    48vw 89vh 0 #fff,
    54vw 12vh 0 rgba(255,255,255,.7),
    59vw 47vh 0 #fff,
    64vw 76vh 0 rgba(255,255,255,.52),
    70vw 28vh 0 #fff,
    74vw 92vh 0 rgba(255,255,255,.62),
    79vw 56vh 0 #fff,
    84vw 18vh 0 rgba(255,255,255,.5),
    89vw 68vh 0 #fff,
    94vw 38vh 0 rgba(255,255,255,.72),
    98vw 84vh 0 #fff;
  content: "";
  pointer-events: none;
}

.agency-hero__geometry {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.agency-hero__network-blueprint {
  position: absolute;
  top: 13%;
  right: -3.5rem;
  width: min(49vw, 48rem);
  height: auto;
  color: #fff;
  opacity: 0.12;
}

.agency-hero__network-frame,
.agency-hero__network-orbits,
.agency-hero__network-links,
.agency-hero__network-nodes,
.agency-hero__network-micro-nodes,
.agency-hero__network-social-glyphs {
  stroke: currentColor;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.agency-hero__network-frame {
  stroke-dasharray: 3 7;
  opacity: 0.55;
}

.agency-hero__network-links {
  stroke-dasharray: 7 9;
}

.agency-hero__network-orbits {
  stroke-dasharray: 2 8;
  opacity: 0.55;
}

.agency-hero__network-links--accent {
  stroke: var(--safety-yellow);
  stroke-width: 2;
  stroke-dasharray: none;
}

.agency-hero__network-nodes circle:nth-child(-n + 7) {
  fill: rgba(0, 0, 0, 0.68);
}

.agency-hero__network-nodes circle:nth-child(n + 8) {
  fill: var(--safety-yellow);
  stroke: #000;
}

.agency-hero__network-micro-nodes circle {
  fill: #000;
}

.agency-hero__network-micro-nodes circle:nth-child(3n + 1) {
  fill: var(--safety-yellow);
  stroke: #000;
}

.agency-hero__network-social-glyphs {
  fill: rgba(0, 0, 0, 0.82);
  stroke-width: 1.5;
}

.agency-hero__network-labels {
  fill: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.agency-hero__platform {
  --hatch-secondary: rgba(255, 229, 0, 0.92);
  position: absolute;
  width: 8rem;
  aspect-ratio: 1;
  opacity: 0.4;
  transform: translate3d(
    calc(var(--drift-x, 0px) + var(--pointer-x, 0px)),
    calc(var(--drift-y, 0px) + var(--pointer-y, 0px)),
    0
  );
}

.agency-hero__platform > img,
.agency-hero__platform-hatch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.agency-hero__platform > img {
  object-fit: contain;
  opacity: 0.78;
}

.agency-hero__platform-hatch {
  display: none;
  z-index: 2;
  background-image:
    repeating-linear-gradient(135deg, #fff 0 2px, transparent 2px 5px),
    repeating-linear-gradient(45deg, var(--hatch-secondary) 0 1.5px, transparent 1.5px 5px);
  -webkit-mask-image: var(--platform-mask);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: var(--platform-mask);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

@supports ((-webkit-mask-image: linear-gradient(#000, #000)) or (mask-image: linear-gradient(#000, #000))) {
  .agency-hero__platform-hatch {
    display: block;
  }

  .agency-hero__platform > img {
    opacity: 0.1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .agency-hero.hero-motion-active .agency-hero__platform {
    will-change: transform;
  }
}

@keyframes agency-platform-edge-bob {
  0%, 100% { translate: -2px -5px; }
  46% { translate: 4px 6px; }
  72% { translate: -4px 2px; }
}

@media (max-width: 1040px) and (prefers-reduced-motion: no-preference) {
  .agency-hero__platform {
    animation: agency-platform-edge-bob var(--edge-float-duration, 8s) ease-in-out var(--edge-float-delay, 0s) infinite;
  }

  .agency-hero__platform--instagram {
    --edge-float-duration: 7.2s;
    --edge-float-delay: -2.4s;
  }

  .agency-hero__platform--youtube {
    --edge-float-duration: 8.6s;
    --edge-float-delay: -5.1s;
  }

  .agency-hero__platform--linkedin {
    --edge-float-duration: 9.4s;
    --edge-float-delay: -3.7s;
  }
}

.agency-hero__platform--youtube {
  --platform-mask: url("assets/platforms/youtube.svg");
  top: 5rem;
  left: 56%;
  width: 4.5rem;
  opacity: 0.44;
}

.agency-hero__platform--linkedin {
  --platform-mask: url("assets/platforms/linkedin.svg");
  top: 2.8rem;
  left: 72%;
  width: 3.25rem;
  opacity: 0.42;
}

.agency-hero__platform--instagram {
  --platform-mask: url("assets/platforms/instagram.svg");
  top: 5.5rem;
  right: max(2rem, calc((100vw - var(--container)) / 2 - 4rem));
  width: 4rem;
  opacity: 0.5;
}

.agency-hero__platform--facebook {
  --platform-mask: url("assets/platforms/facebook.svg");
  top: auto;
  bottom: 3.25rem;
  left: 64%;
  width: 3rem;
  opacity: 0.36;
}

.agency-hero__platform--reddit {
  --platform-mask: url("assets/platforms/reddit.svg");
  --hatch-secondary: rgba(240, 43, 72, 0.86);
  top: auto;
  right: max(3rem, calc((100vw - var(--container)) / 2 - 3rem));
  bottom: 2rem;
  width: 3.5rem;
  opacity: 0.4;
}

.agency-hero__copy::before {
  display: none;
}

.agency-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(100%, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding: 0;
  grid-template-columns: minmax(0, 1.28fr) minmax(25rem, 0.72fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.agency-hero__eyebrow {
  display: flex;
  width: fit-content;
  align-items: stretch;
  gap: 0;
  border: 2px solid #fff;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.agency-hero__eyebrow > span {
  display: block;
  width: 0.9rem;
  height: auto;
  border: 0;
  border-radius: 0;
  background: var(--brutal-red);
  box-shadow: none;
}

.agency-hero__eyebrow strong,
.agency-hero__eyebrow em {
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-style: normal;
}

.agency-hero__eyebrow strong {
  border-right: 2px solid #fff;
  background: var(--safety-yellow);
  color: #000;
}

.agency-hero__headline {
  position: relative;
  z-index: 4;
  max-width: 10em;
  margin-top: clamp(1.25rem, 2.4vh, 2rem);
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(4.4rem, 7.4vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-shadow: none;
}

.agency-hero__headline > span {
  display: block;
}

.agency-hero__attention {
  color: var(--brutal-red-bright);
  text-shadow: none;
}

.agency-hero__bridge {
  margin-top: 0.18em;
  color: #fff;
  font-size: 0.52em;
  letter-spacing: -0.04em;
}

.agency-hero__trust {
  width: max-content;
  max-width: 118%;
  margin-top: 0.1em;
  padding: 0.05em 0.14em 0.09em;
  border: 2px solid #fff;
  border-radius: 0;
  background: var(--safety-yellow);
  color: #000;
  box-shadow: none;
  text-shadow: none;
  transform: none;
}

.agency-hero__subhead {
  max-width: 43rem;
  margin-top: 1.35rem;
  padding: 0 0 0 1rem;
  border-left: 5px solid var(--brutal-red);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
}

.agency-hero__scope {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 1.25rem;
}

.agency-hero__scope li {
  min-height: 2.5rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #fff;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.agency-hero__actions {
  display: grid;
  grid-template-columns: minmax(13rem, 1.15fr) minmax(11rem, 0.85fr);
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.agency-button,
html[data-theme="light"] .agency-button {
  min-height: 4.5rem;
  padding: 1rem 1.25rem;
  border: 2px solid #fff;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: none;
  transition: transform 120ms linear, background-color 120ms linear, color 120ms linear;
}

.agency-button--primary,
html[data-theme="light"] .agency-button--primary {
  border-color: var(--brutal-red);
  background: var(--brutal-red);
  color: #fff;
}

.agency-button:hover,
.agency-button:focus-visible,
html[data-theme="light"] .agency-button:hover,
html[data-theme="light"] .agency-button:focus-visible {
  border-color: var(--safety-yellow);
  background: var(--safety-yellow);
  color: #000;
  transform: translate(-3px, -3px);
}

.agency-button--primary:hover,
.agency-button--primary:focus-visible,
html[data-theme="light"] .agency-button--primary:hover,
html[data-theme="light"] .agency-button--primary:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.agency-button:focus-visible,
.site-header a:focus-visible,
.gallery__tab:focus-visible,
.projects__card:focus-visible,
.contact__card:focus-visible {
  outline: 3px solid var(--safety-yellow);
  outline-offset: 4px;
}

.agency-hero__system,
html[data-theme="light"] .agency-hero__system {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 0;
  overflow: visible;
  background: #000;
  color: #fff;
  box-shadow: none;
  transform: none;
}

.agency-hero__system::before {
  display: none;
}

.agency-hero__system-head,
.agency-hero__system-foot,
html[data-theme="light"] :is(.agency-hero__system-head, .agency-hero__system-foot) {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.agency-hero__system-head {
  border-bottom: 2px solid #fff;
}

.agency-hero__system-foot {
  border-top: 2px solid #fff;
}

.agency-hero__system-foot span:first-child,
html[data-theme="light"] .agency-hero__system-foot span:first-child {
  color: var(--safety-yellow);
}

.agency-hero__stack-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: minmax(8.5rem, auto) minmax(8.5rem, auto) minmax(6.75rem, auto);
  gap: 0;
  margin: 0;
}

.agency-hero__stack-card,
html.galaxy-scroll-active .agency-hero__stack-card {
  min-width: 0;
  min-height: 0;
  padding: 1rem;
  border: 0;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000;
  box-shadow: none;
}

.agency-hero__stack-card--1 {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--safety-yellow);
}

.agency-hero__stack-card--2 {
  grid-column: 2;
  grid-row: 1;
  border-right: 0;
  background: #fff;
}

.agency-hero__stack-card--3 {
  grid-column: 2;
  grid-row: 2;
  border-right: 0;
  background: var(--brutal-red);
  color: #fff;
}

.agency-hero__stack-card--4,
html[data-theme="light"] .agency-hero__stack-card--4 {
  grid-column: 1 / -1;
  grid-row: 3;
  border-right: 0;
  border-bottom: 0;
  display: grid;
  grid-template-columns: 2rem minmax(11.5rem, 0.95fr) minmax(10rem, 1.05fr);
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  color: #000;
}

.agency-hero__stack-card > span,
html.galaxy-scroll-active .agency-hero__stack-card > span {
  color: currentColor;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.72;
}

.agency-hero__stack-card strong {
  margin-top: 0.75rem;
  color: currentColor;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.agency-hero__stack-card p,
html.galaxy-scroll-active .agency-hero__stack-card p {
  margin-top: 0.7rem;
  color: currentColor;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.84;
}

.agency-hero__stack-card--4 strong,
.agency-hero__stack-card--4 p {
  margin-top: 0;
}

/* The former curved ribbon becomes a flat streetwear-style data strip. */
.editorial-ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid #000;
  background: var(--safety-yellow);
  color: #000;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 3.25rem;
  white-space: nowrap;
}

.editorial-ticker > div {
  width: max-content;
  animation: editorialTicker 30s linear infinite;
}

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

/* The rest of the portfolio uses the same hard editorial discipline. */
.pitch {
  display: grid;
  place-items: center;
  text-align: center;
}

.pitch__bloom,
.projects__bloom,
.projects__glow,
.media__doc-glow,
.media__doc-pattern {
  display: none;
}

.pitch__eyebrow,
.pitch__support,
.pitch__signature,
html[data-theme="light"] .pitch__support,
html[data-theme="light"] .pitch__signature {
  color: var(--ink);
}

.pitch__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pitch__copy--agency,
html[data-theme="light"] .pitch__copy--agency {
  color: var(--ink);
  font-size: clamp(3.25rem, 7vw, 7.5rem);
}

.pitch__copy--agency .outlined {
  color: var(--brutal-red);
}

.pitch__support {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.pitch__signature i,
html[data-theme="light"] .pitch__signature i,
.pitch__signature span:first-child,
.pitch__signature span:last-child {
  background: var(--ink);
}

.agency-kicker,
.service-panel__number,
.problems__list span,
.projects__card-meta > span:first-child,
.contact__label,
html[data-theme="light"] :is(.agency-kicker, .service-panel__number) {
  color: var(--brutal-red);
}

:is(
  .fit__audience > p,
  .fit__problems-lede,
  .services__header > p,
  .impact-proof__header > p,
  .projects__intro,
  .gallery__header p,
  .noww__header > p,
  .client-partners__header > p,
  .contact__lede,
  .service-panel__story > p,
  .channel-case__intro > p,
  .vandhana-case__intro > p,
  .native-results__intro > p,
  .noww__outcome > p
),
html[data-theme="light"] :is(
  .fit__audience > p,
  .services__header > p,
  .impact-proof__header > p,
  .gallery__header p,
  .noww__header > p,
  .client-partners__header > p,
  .contact__lede,
  .service-panel__story > p,
  .channel-case__intro > p,
  .vandhana-case__intro > p,
  .native-results__intro > p,
  .noww__outcome > p
) {
  color: var(--ink-soft);
  font-size: max(0.92rem, 14px);
  line-height: 1.6;
}

.fit__problems-title,
html[data-theme="light"] .fit__problems-title,
.service-panel__story h3,
.channel-case__intro h3,
.vandhana-case__intro h3,
.native-results__intro h3,
.linkedin-case-name strong,
.client-partner h3,
html[data-theme="light"] :is(
  .service-panel__story h3,
  .channel-case__intro h3,
  .vandhana-case__intro h3,
  .native-results__intro h3,
  .linkedin-case-name strong,
  .client-partner h3
) {
  color: var(--ink);
  text-shadow: none;
}

:is(
  .fit__chips span,
  .problems__list li,
  .service-panel,
  .focused-offerings > div > span,
  .impact-proof__stats .about__stat,
  .projects__card,
  .channel-case__intro,
  .channel-case__system,
  .vandhana-case__intro,
  .vandhana-case__audience,
  .vandhana-case__territories,
  .vandhana-case__samples,
  .native-results__intro,
  .native-results__metrics > article,
  .noww__journey article,
  .noww__result,
  .noww__outcome,
  .client-partner,
  .contact__card
),
html[data-theme="light"] :is(
  .fit__chips span,
  .problems__list li,
  .service-panel,
  .focused-offerings > div > span,
  .impact-proof__stats .about__stat,
  .projects__card,
  .channel-case__intro,
  .channel-case__system,
  .vandhana-case__intro,
  .vandhana-case__audience,
  .vandhana-case__territories,
  .vandhana-case__samples,
  .native-results__intro,
  .native-results__metrics > article,
  .noww__journey article,
  .noww__result,
  .noww__outcome,
  .client-partner,
  .contact__card
) {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.problems__list li {
  border-left: 0;
}

.problems__list li:nth-child(odd),
.impact-proof__stats .about__stat:nth-child(odd) {
  background: #fff5a8;
}

.problems__list p,
.service-panel__story > strong,
.service-panel__deliverables li > strong,
.focused-offerings > div > span,
.channel-case__system li > strong,
.vandhana-case__samples > a > strong,
.noww__journey strong,
html[data-theme="light"] :is(
  .problems__list p,
  .service-panel__story > strong,
  .service-panel__deliverables li > strong,
  .focused-offerings > div > span,
  .channel-case__system li > strong,
  .vandhana-case__samples > a > strong,
  .noww__journey strong
) {
  color: var(--ink);
}

.fit__chips span,
.vandhana-case__territories > div span,
.production-scope span,
.focused-offerings > div > span {
  border-radius: 0;
}

.service-panel {
  background: #fff;
}

.service-panel__deliverables,
.service-panel__deliverables li,
.channel-case__system li,
.vandhana-case__samples > a {
  border-color: var(--ink);
}

.gallery__tabs {
  width: fit-content;
  max-width: 100%;
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.gallery__tab,
html[data-theme="light"] .gallery__tab {
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: none;
}

.gallery__tab + .gallery__tab {
  margin-left: -2px;
}

.gallery__tab:hover,
.gallery__tab:focus-visible,
html[data-theme="light"] .gallery__tab:hover,
html[data-theme="light"] .gallery__tab:focus-visible {
  border-color: var(--ink);
  background: var(--safety-yellow);
  color: var(--ink);
}

.gallery__tab.is-active,
.gallery__tab[aria-selected="true"],
html[data-theme="light"] .gallery__tab.is-active,
html[data-theme="light"] .gallery__tab[aria-selected="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.gallery__panel {
  margin-top: 1.25rem;
}

.gallery__media,
.media,
html[data-theme="light"] :is(.gallery__media, .media) {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.gallery__cell:hover .gallery__media,
.gallery__cell:hover .media,
.gallery__media:focus-visible,
.media:focus-visible,
html[data-theme="light"] :is(
  .gallery__cell:hover .gallery__media,
  .gallery__cell:hover .media,
  .gallery__media:focus-visible,
  .media:focus-visible
) {
  border-color: var(--brutal-red);
}

.gallery__caption,
.gallery__caption > span:first-child,
html[data-theme="light"] .gallery__caption,
html[data-theme="light"] .gallery__caption > span:first-child {
  color: var(--ink);
}

.gallery__caption > span:last-child,
html[data-theme="light"] .gallery__caption > span:last-child {
  color: #555;
}

.media__frame {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
}

.media__label,
.media__labels {
  padding: 0.25rem 0.4rem;
  background: #fff;
  color: #000;
}

.media--contain::before,
.media--contain::after {
  display: none;
}

.media__play {
  border: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.media__play span {
  border: 2px solid #fff;
  border-radius: 0;
  background: var(--brutal-red);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.evidence-story,
html[data-theme="light"] .evidence-story {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.evidence-story::before {
  display: none;
}

:is(
  .evidence-frame,
  .evidence-capture,
  .insight-capture,
  .content-era,
  .linkedin-capture,
  .evidence-stat,
  .evidence-callout
),
html[data-theme="light"] :is(
  .evidence-frame,
  .evidence-capture,
  .insight-capture,
  .content-era,
  .linkedin-capture,
  .evidence-stat,
  .evidence-callout
) {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.evidence-callout,
html[data-theme="light"] .evidence-callout {
  background: #eef1c2;
}

:is(
  .evidence-intro h3,
  .evidence-intro > p,
  .evidence-source-note,
  .evidence-source-note strong,
  .evidence-caption,
  .evidence-caption span:last-child,
  .evidence-stat__top,
  .content-era__heading span,
  .evidence-footnote,
  .evidence-callout__copy,
  .evidence-callout__copy strong,
  .evidence-capture__label,
  .evidence-capture__label small,
  .evidence-stat__route
),
html[data-theme="light"] :is(
  .evidence-intro h3,
  .evidence-intro > p,
  .evidence-source-note,
  .evidence-source-note strong,
  .evidence-caption,
  .evidence-caption span:last-child,
  .evidence-stat__top,
  .content-era__heading span,
  .evidence-footnote,
  .evidence-callout__copy,
  .evidence-callout__copy strong,
  .evidence-capture__label,
  .evidence-capture__label small,
  .evidence-stat__route
) {
  color: var(--ink);
}

.evidence-stat__route::before,
.noww__result-route i {
  background: var(--brutal-red);
}

.projects__card {
  box-shadow: 5px 5px 0 var(--ink);
}

.projects__card:hover,
.projects__card:focus-visible,
html[data-theme="light"] .projects__card:hover {
  border-color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.projects__card h3,
.projects__card p,
html[data-theme="light"] :is(.projects__card h3, .projects__card p) {
  color: var(--ink);
}

.projects__card:nth-child(3n + 1) { background: #fff5a8; }
.projects__card:nth-child(3n + 2) { background: #f1d4d2; }
.projects__card:nth-child(3n) { background: #fff; }

.native-results__brands,
.production-scope,
html[data-theme="light"] :is(.native-results__brands, .production-scope) {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.native-results__metrics strong,
.evidence-stat__single,
.noww__result-route,
.vandhana-case__audience strong,
html[data-theme="light"] :is(
  .native-results__metrics strong,
  .evidence-stat__single,
  .noww__result-route,
  .vandhana-case__audience strong
) {
  color: var(--ink);
  text-shadow: none;
}

.noww__journey article:not(:last-child)::after {
  background: var(--ink);
}

.noww__journey article:not(:last-child)::before {
  border-color: var(--ink);
}

.client-partner {
  min-height: 13rem;
}

.client-partner:nth-child(1) { background: var(--safety-yellow); }
.client-partner:nth-child(2) { background: #fff; }
.client-partner:nth-child(3) { background: #f1d4d2; }
.client-partner:nth-child(4) { background: var(--steel); }

.client-partner__mark {
  top: 2.7rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.client-partner__meta,
.client-partner > p,
html[data-theme="light"] :is(.client-partner__meta, .client-partner > p) {
  color: #464646;
}

#contact .section-tag,
#contact .section-tag__title,
#contact .contact__headline,
#contact .contact__lede,
#contact .contact__footer {
  color: #fff;
}

#contact .section-tag__block {
  background: var(--safety-yellow);
}

#contact .section-tag__line {
  background: #fff;
}

#contact .contact__headline .outlined {
  color: var(--safety-yellow);
}

.contact__card,
html[data-theme="light"] .contact__card {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.contact__card:hover,
.contact__card:focus-visible,
html[data-theme="light"] .contact__card:hover {
  border-color: var(--ink);
  background: var(--safety-yellow);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.contact__footer {
  border-top-color: #fff;
}

.lightbox,
html[data-theme="light"] .lightbox {
  z-index: 300;
  background: rgba(0, 0, 0, 0.96);
  color: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  touch-action: none;
}

.lightbox__dialog,
html[data-theme="light"] .lightbox__dialog {
  border: 2px solid #fff;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.lightbox__header {
  border-bottom-color: #fff;
  background: #000;
}

.lightbox__label,
.lightbox__caption,
html[data-theme="light"] :is(.lightbox__label, .lightbox__caption) {
  color: #fff;
}

.lightbox__drive,
.lightbox__close,
html[data-theme="light"] :is(.lightbox__drive, .lightbox__close) {
  border: 2px solid #fff;
  border-radius: 0;
  background: #000;
  color: #fff;
}

.lightbox__drive:hover,
.lightbox__close:hover,
html[data-theme="light"] :is(.lightbox__drive:hover, .lightbox__close:hover) {
  border-color: var(--safety-yellow);
  background: var(--safety-yellow);
  color: #000;
}

.lightbox__stage,
html[data-theme="light"] .lightbox__stage {
  border-color: #fff;
  border-radius: 0;
  background: #000;
}

@media (max-width: 1040px) {
  .agency-hero__network-blueprint {
    display: none;
  }

  .agency-hero__geometry {
    height: 60rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 34%, #000 58%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 34%, #000 58%);
  }

  .agency-hero__platform--facebook,
  .agency-hero__platform--reddit {
    display: none;
  }

  .agency-hero__platform--youtube {
    top: 12rem;
    right: 8rem;
    left: auto;
    width: 5rem;
    height: auto;
    opacity: 0.2;
  }

  .agency-hero__platform--linkedin {
    top: 23rem;
    right: 2rem;
    left: auto;
    width: 4rem;
    opacity: 0.18;
  }

  .agency-hero__platform--instagram {
    top: 4rem;
    right: -1.5rem;
    width: 4.75rem;
    opacity: 0.24;
  }

  .agency-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .agency-hero__copy {
    max-width: 52rem;
  }

  .agency-hero__system {
    width: min(100%, 48rem);
  }

  .agency-hero__trust {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 1rem;
  }

  .site-header__brand > span:last-child {
    display: none;
  }

  .agency-hero__headline {
    font-size: clamp(3.35rem, 13.5vw, 5.25rem);
  }

  .gallery__tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery__tab,
  html[data-theme="light"] .gallery__tab {
    width: 100%;
  }

  .gallery__tab + .gallery__tab {
    margin-top: -2px;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .agency-hero__geometry {
    inset: 0;
    height: auto;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 42%, #000 72%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 42%, #000 72%);
  }

  .agency-hero__platform--instagram {
    top: 6rem;
    right: -1.25rem;
    width: 4.25rem;
    opacity: 0.16;
  }

  .agency-hero__platform--youtube {
    top: 23rem;
    right: -1rem;
    left: auto;
    width: 3.75rem;
    height: auto;
    opacity: 0.11;
  }

  .agency-hero__platform--linkedin {
    top: 37rem;
    right: -0.75rem;
    bottom: auto;
    left: auto;
    width: 3.5rem;
    opacity: 0.13;
  }

  .site-header__nav > a:not(.site-header__cta) {
    display: none;
  }

  .site-header__nav .site-header__cta {
    min-height: 2.5rem;
    padding: 0.55rem 0.7rem;
  }

  .intro.agency-hero {
    min-height: auto;
    padding-block: 4rem;
  }

  .agency-hero__eyebrow em {
    max-width: 13rem;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .agency-hero__headline {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .agency-hero__bridge {
    font-size: 0.48em;
    line-height: 0.92;
  }

  .agency-hero__subhead {
    font-size: 0.94rem;
  }

  .agency-hero__scope {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-hero__actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .agency-button,
  html[data-theme="light"] .agency-button {
    width: 100%;
  }

  .agency-hero__stack-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
  }

  .agency-hero__stack-card,
  .agency-hero__stack-card--1,
  .agency-hero__stack-card--2,
  .agency-hero__stack-card--3,
  .agency-hero__stack-card--4,
  html[data-theme="light"] .agency-hero__stack-card--4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 8.5rem;
    padding: 1rem;
    border-right: 0;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: stretch;
  }

  .agency-hero__stack-card:last-child,
  .agency-hero__stack-card--4 {
    border-bottom: 0;
  }

  .agency-hero__stack-card--4 strong,
  .agency-hero__stack-card--4 p {
    margin-top: 0.65rem;
  }

  .section,
  .pitch {
    padding: 4.5rem 1rem;
  }

  .section-heading,
  .section__headline,
  html[data-theme="light"] :is(.section-heading, .section__headline) {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .section-tag {
    gap: 0.55rem;
  }

  .section-tag__title {
    max-width: 10rem;
    font-size: 0.68rem;
  }
}

/* Keep the evidence sections as crisp as the hero. These selectors outrank
 * the legacy light-theme planes without relying on blur or diffuse shadows. */
html[data-theme="light"] body :is(
  #fit,
  #services,
  #impact,
  #projects,
  #youtube,
  #shorts,
  #podcast,
  #brand-work,
  #production,
  #linkedin,
  #noww,
  #client-partners,
  #contact
) > .section__inner {
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html[data-theme="light"] body .main .gallery__tabs {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html[data-theme="light"] body .main .gallery__tab {
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html[data-theme="light"] body .main :is(
  .evidence-story,
  .evidence-frame,
  .evidence-capture,
  .insight-capture,
  .content-era,
  .linkedin-capture,
  .evidence-stat,
  .evidence-callout,
  .gallery__media,
  .media
) {
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html[data-theme="light"] body .main .media__vignette {
  display: none;
}

html[data-theme="light"] body .main .media--contain .media__image {
  background: #000;
}

html[data-theme="light"] body .main :is(
  .projects__intro,
  .gallery__header p,
  .section-tag__code,
  .section-tag__title
) {
  color: #343434;
}

html[data-theme="light"] body .main :is(
  .gallery__tab,
  .projects__card,
  .contact__card,
  .gallery__media,
  .media
):focus-visible {
  outline: 3px solid #1c4ed8;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .editorial-ticker > div {
    animation: none;
  }

  .agency-hero__platform {
    animation: none;
    translate: none;
    transform: none;
    will-change: auto;
  }

}

/* The portfolio is light, but the industrial mission-control hero is not. */
html[data-theme="light"] .intro.agency-hero {
  background: #000;
  color: #fff;
}

html[data-theme="light"] .agency-hero__headline,
html[data-theme="light"] .agency-hero__bridge {
  color: #fff;
}

html[data-theme="light"] .agency-hero__attention {
  color: var(--brutal-red-bright);
}

html[data-theme="light"] .agency-hero__trust {
  border-color: #fff;
  background: var(--safety-yellow);
  color: #000;
}

html[data-theme="light"] .agency-hero__subhead {
  border-left-color: var(--brutal-red);
  color: #fff;
}

html[data-theme="light"] .agency-hero__scope li {
  border-color: #fff;
  background: #000;
  color: #fff;
}

html[data-theme="light"] .agency-hero__eyebrow {
  border-color: #fff;
  color: #fff;
}

html[data-theme="light"] .agency-hero__eyebrow strong {
  border-right-color: #fff;
  background: var(--safety-yellow);
  color: #000;
}

html[data-theme="light"] .agency-hero__eyebrow em {
  background: #000;
  color: #fff;
}

/* Final hero contrast and hierarchy. Keep the proof elsewhere: the hero's
 * single job is to make the positioning impossible to miss. */
html[data-theme="light"] body .intro.agency-hero {
  background: #000;
  color: #fff;
}

html[data-theme="light"] body .intro.agency-hero .agency-hero__headline {
  max-width: none;
  color: #fff;
  font-size: clamp(5rem, 8.1vw, 9.5rem);
  line-height: 0.76;
}

.intro.agency-hero .agency-hero__headline > span:first-child,
.intro.agency-hero .agency-hero__attention {
  display: inline-block;
  width: fit-content;
  font-size: 0.38em;
  line-height: 1;
  letter-spacing: -0.035em;
}

html[data-theme="light"] body .intro.agency-hero .agency-hero__headline > span:first-child {
  color: #fff;
}

.intro.agency-hero .agency-hero__attention,
html[data-theme="light"] body .intro.agency-hero .agency-hero__attention {
  margin-top: 0.08em;
  padding: 0.09em 0.16em 0.12em;
  background: var(--brutal-red-bright);
  color: #fff;
}

.intro.agency-hero .agency-hero__bridge,
html[data-theme="light"] body .intro.agency-hero .agency-hero__bridge {
  display: block;
  margin: 0.6em 0 0.14em;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.18em;
  line-height: 1;
  letter-spacing: 0.11em;
}

.intro.agency-hero .agency-hero__trust,
html[data-theme="light"] body .intro.agency-hero .agency-hero__trust {
  color: #000;
  line-height: 0.78;
}

html[data-theme="light"] body .intro.agency-hero .agency-hero__subhead {
  color: #d7d7d7;
}

.intro.agency-hero .agency-hero__system-head,
.intro.agency-hero .agency-hero__system-foot,
html[data-theme="light"] body .intro.agency-hero .agency-hero__system-head,
html[data-theme="light"] body .intro.agency-hero .agency-hero__system-foot {
  background: #000;
  color: #fff;
  font-size: 0.75rem;
}

html[data-theme="light"] body .intro.agency-hero .agency-hero__system {
  border-color: #fff;
  background: #000;
}

html[data-theme="light"] body .intro.agency-hero .agency-hero__system-foot span:last-child {
  color: #fff;
}

.intro.agency-hero .agency-hero__scope li {
  font-size: 0.75rem;
}

.intro.agency-hero .agency-hero__stack-card > span,
.intro.agency-hero .agency-hero__stack-card p {
  font-size: 0.78rem;
}

.intro.agency-hero .agency-button--primary,
html[data-theme="light"] body .intro.agency-hero .agency-button--primary {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  letter-spacing: -0.015em;
}

@media (max-width: 600px) {
  html[data-theme="light"] body .intro.agency-hero .agency-hero__headline {
    font-size: clamp(3.25rem, 16vw, 4.5rem);
  }

  .intro.agency-hero .agency-hero__headline > span:first-child,
  .intro.agency-hero .agency-hero__attention {
    font-size: 0.48em;
  }

  .intro.agency-hero .agency-hero__bridge,
  html[data-theme="light"] body .intro.agency-hero .agency-hero__bridge {
    font-size: 0.25em;
  }
}

/* Hero palette refinement: black, white and safety yellow carry the large
 * surfaces. Crimson is reduced to small editorial signals only. */
.intro.agency-hero .agency-hero__attention,
html[data-theme="light"] body .intro.agency-hero .agency-hero__attention {
  border-left: 0.12em solid var(--brutal-red-bright);
  background: #fff;
  color: #000;
}

.intro.agency-hero .agency-hero__stack-card--3,
html[data-theme="light"] body .intro.agency-hero .agency-hero__stack-card--3 {
  background: #000;
  color: #fff;
}

.intro.agency-hero .agency-hero__stack-card--3 > span,
html[data-theme="light"] body .intro.agency-hero .agency-hero__stack-card--3 > span {
  color: var(--brutal-red-bright);
}

.intro.agency-hero .agency-button--primary,
html[data-theme="light"] body .intro.agency-hero .agency-button--primary {
  border-color: var(--safety-yellow);
  background: var(--safety-yellow);
  color: #000;
}

.intro.agency-hero .agency-button--primary:hover,
.intro.agency-hero .agency-button--primary:focus-visible,
html[data-theme="light"] body .intro.agency-hero .agency-button--primary:hover,
html[data-theme="light"] body .intro.agency-hero .agency-button--primary:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #000;
}

/* Hero navigation affordances. Identity, audience chips and every service
 * tile now lead somewhere useful instead of merely looking interactive. */
.intro.agency-hero .agency-hero__eyebrow,
.intro.agency-hero .agency-hero__attention,
.intro.agency-hero .agency-hero__trust,
.intro.agency-hero .agency-hero__system-foot,
.intro.agency-hero .agency-hero__stack-card,
.intro.agency-hero .agency-hero__scope a {
  text-decoration: none;
}

.intro.agency-hero .agency-hero__eyebrow {
  transition: border-color 120ms linear, transform 120ms linear;
}

.intro.agency-hero .agency-hero__eyebrow:hover,
.intro.agency-hero .agency-hero__eyebrow:focus-visible {
  border-color: var(--safety-yellow);
  transform: translate(-2px, -2px);
}

.intro.agency-hero .agency-hero__eyebrow:focus-visible,
.intro.agency-hero .agency-hero__attention:focus-visible,
.intro.agency-hero .agency-hero__trust:focus-visible,
.intro.agency-hero .agency-hero__scope a:focus-visible,
.intro.agency-hero .agency-hero__stack-card:focus-visible,
.intro.agency-hero .agency-hero__system-foot:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.intro.agency-hero .agency-hero__attention {
  transition: background-color 120ms linear;
}

.intro.agency-hero .agency-hero__attention:hover,
.intro.agency-hero .agency-hero__attention:focus-visible,
html[data-theme="light"] body .intro.agency-hero .agency-hero__attention:hover,
html[data-theme="light"] body .intro.agency-hero .agency-hero__attention:focus-visible {
  background: var(--safety-yellow);
  color: #000;
}

.intro.agency-hero .agency-hero__trust {
  display: block;
  transition: background-color 120ms linear;
}

.intro.agency-hero .agency-hero__trust:hover,
.intro.agency-hero .agency-hero__trust:focus-visible,
html[data-theme="light"] body .intro.agency-hero .agency-hero__trust:hover,
html[data-theme="light"] body .intro.agency-hero .agency-hero__trust:focus-visible {
  background: #fff;
  color: #000;
}

.intro.agency-hero .agency-hero__scope li {
  padding: 0;
}

.intro.agency-hero .agency-hero__scope a {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  color: inherit;
  transition: background-color 120ms linear, color 120ms linear;
}

.intro.agency-hero .agency-hero__scope a:hover,
.intro.agency-hero .agency-hero__scope a:focus-visible {
  background: var(--safety-yellow);
  color: #000;
}

.intro.agency-hero .agency-hero__stack-card {
  position: relative;
  transition: box-shadow 120ms linear;
}

.intro.agency-hero .agency-hero__stack-card::after {
  position: absolute;
  top: 0.75rem;
  right: 0.8rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  content: "↗";
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 120ms linear, transform 120ms linear;
}

.intro.agency-hero .agency-hero__stack-card:hover,
.intro.agency-hero .agency-hero__stack-card:focus-visible {
  z-index: 2;
  box-shadow: inset 0 0 0 4px currentColor;
}

.intro.agency-hero .agency-hero__stack-card:hover::after,
.intro.agency-hero .agency-hero__stack-card:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
}

.intro.agency-hero .agency-hero__stack-card:focus-visible {
  outline-offset: -6px;
}

.intro.agency-hero .agency-hero__system-foot {
  transition: background-color 120ms linear, color 120ms linear;
}

.intro.agency-hero .agency-hero__system-foot:hover,
.intro.agency-hero .agency-hero__system-foot:focus-visible {
  background: #fff;
  color: #000;
}

.intro.agency-hero .agency-hero__system-foot:hover span,
.intro.agency-hero .agency-hero__system-foot:focus-visible span {
  color: #000;
}
