/* ============================================================
   DO MORE — design system
   ink  : #0b0b0c   bone : #f0ede4   signal : #ffcf24
   ============================================================ */

:root {
  --ink: #0b0b0c;
  --ink-2: #131315;
  --bone: #f0ede4;
  --bone-2: #e7e3d7;
  --signal: #ffcf24;
  --bg: var(--ink);
  --fg: var(--bone);
  --muted: rgba(240, 237, 228, 0.45);
  --line: rgba(240, 237, 228, 0.14);
  --font-sans: "Inter Tight", -apple-system, Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
  --nav-h: 76px;
}

body[data-theme="bone"] {
  --bg: var(--bone);
  --fg: var(--ink);
  --muted: rgba(11, 11, 12, 0.5);
  --line: rgba(11, 11, 12, 0.14);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  transition: background 0.9s var(--ease), color 0.9s var(--ease);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -100%;
  pointer-events: none; z-index: 2000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 3000; pointer-events: none; }
.cursor__dot {
  position: absolute; top: -6px; left: -6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--signal);
  mix-blend-mode: difference;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.cursor__label {
  position: absolute; top: 14px; left: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--signal); color: var(--ink);
  padding: 6px 10px; border-radius: 999px;
  white-space: nowrap;
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.cursor.is-label .cursor__dot { transform: scale(0.4); }
.cursor.is-label .cursor__label { opacity: 1; transform: scale(1); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 4000;
  background: var(--ink); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
}
.loader__count {
  position: absolute; right: 4vw; bottom: 3.6vw;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 200; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.loader__word {
  display: flex; gap: 0.35em; overflow: hidden;
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 800; letter-spacing: -0.045em;
}
.loader__word span { display: inline-block; transform: translateY(120%); }
.loader__more { color: var(--signal); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  mix-blend-mode: difference; color: #fff;
  transform: translateY(-110%);
  transition: transform 0.7s var(--ease);
}
.nav.is-in { transform: translateY(0); }
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo { font-weight: 800; letter-spacing: -0.03em; font-size: 1.05rem; }
.nav__logo sup { font-size: 0.5em; font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 2.4vw; }
.nav__link {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em;
  opacity: 0.75; transition: opacity 0.3s;
  position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: 0.86rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.4); border-radius: 999px;
  padding: 10px 20px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s;
}
.nav__cta:hover { background: #fff; color: #000; border-color: #fff; }
.nav__burger { display: none; }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 900;
  background: var(--ink); color: var(--bone);
  display: flex; align-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__inner { padding: 0 8vw; display: flex; flex-direction: column; gap: 2px; width: 100%; }
.menu__link {
  font-size: clamp(2.6rem, 11vw, 4.6rem);
  font-weight: 800; letter-spacing: -0.04em;
  padding: 0.5rem 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 1rem;
}
.menu__link::before { content: attr(data-i); font-size: 0.9rem; font-weight: 500; color: var(--signal); }
.menu__meta { margin-top: 2rem; color: var(--muted); font-size: 0.9rem; }

/* ---------- shared section bits ---------- */
.section-kicker {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.section-kicker::before { content: "● "; color: var(--signal); font-size: 0.6em; vertical-align: 2px; }
.section-title {
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.98;
}
.section-title .serif { font-size: 1.02em; }
.section-sub { margin-top: 1.8rem; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.55; font-weight: 450; }

/* split helpers */
.sw { display: inline-block; overflow: clip; overflow-clip-margin: 0.22em; vertical-align: top; }
.sw > i { display: inline-block; font-style: normal; will-change: transform; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 2vh) 4vw 4vh;
  overflow: clip;
}
.hero__meta {
  display: flex; gap: 2.5vw;
  font-size: 0.8rem; font-weight: 550; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.hero__meta-item--live { display: inline-flex; align-items: center; gap: 8px; color: var(--fg); }
.hero__meta-item--live i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,207,36,0.5);} 50% { box-shadow: 0 0 0 8px rgba(255,207,36,0);} }

.hero__title {
  display: flex; flex-direction: column;
  font-weight: 800;
  font-size: clamp(5rem, 21vw, 20rem);
  line-height: 0.82; letter-spacing: -0.05em;
  user-select: none;
  z-index: 2;
}
.hero__line { overflow: clip; display: block; padding-block: 0.04em; }
.hero__line--right { text-align: right; }
.hero__word { display: inline-block; will-change: transform; }
.hero__word--outline {
  color: var(--bg);
  -webkit-text-stroke: 2.5px var(--fg);
  paint-order: stroke fill;
  transition: color 0.9s var(--ease);
}
@media (max-width: 720px) { .hero__word--outline { -webkit-text-stroke: 1.5px var(--fg); } }

.hero__foot {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem;
  z-index: 2;
}
.hero__tag { font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 500; line-height: 1.4; }
.hero__claim { text-align: right; font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 500; line-height: 1.4; color: var(--muted); }
.hero__claim .serif { color: var(--fg); font-size: 1.1em; }
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll em { width: 1px; height: 52px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll em::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--signal);
  animation: scrolldrip 1.8s var(--ease) infinite;
}
@keyframes scrolldrip { 0% { top: -50%; } 100% { top: 110%; } }

.hero__chips { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.chip {
  position: absolute; border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  opacity: 0; transform: scale(0.85);
}
.chip img { width: 100%; height: 100%; object-fit: cover; }
.chip--logo img { object-fit: contain; background: #fff; }
/* Positioned in the empty margins so photos never sit over the solid DO/MORE letters. */
.chip--1 { width: clamp(84px, 10vw, 158px); aspect-ratio: 1; top: 13%; right: 20%; rotate: 6deg; }
.chip--2 { width: clamp(90px, 10.5vw, 168px); aspect-ratio: 1; top: 30%; right: 6%; rotate: -6deg; }
.chip--3 { width: clamp(70px, 8vw, 130px); aspect-ratio: 1; bottom: 26%; right: 30%; rotate: 4deg; }
.chip--4 { width: clamp(66px, 8vw, 130px); aspect-ratio: 1; top: 11%; left: 44%; rotate: 5deg; }
.chip--5 { width: clamp(52px, 5.5vw, 88px); aspect-ratio: 1; top: 36%; right: 4%; rotate: -8deg; }
.chip--6 { width: clamp(46px, 5vw, 78px); aspect-ratio: 1; top: 58%; left: 13%; rotate: 8deg; }
.chip--7 { width: clamp(50px, 5.5vw, 84px); aspect-ratio: 1; top: 70%; left: 30%; rotate: -5deg; }

/* ---------- headline stats band ---------- */
.band {
  display: flex; justify-content: center; align-items: stretch;
  gap: clamp(1.5rem, 6vw, 7rem);
  padding: clamp(2.5rem, 6vh, 4.5rem) 4vw;
  border-top: 1px solid var(--line);
  position: relative; z-index: 2;
}
.band__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  text-align: center;
}
.band__item + .band__item { border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 6vw, 7rem); }
.band__value {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 250; letter-spacing: -0.045em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.band__value sup { font-size: 0.45em; font-weight: 450; color: var(--signal); }
.band__label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  overflow: clip; padding: 1.35rem 0;
  position: relative; z-index: 2;
}
.ticker__track {
  display: flex; gap: 3.2rem; align-items: center;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-size: clamp(1rem, 1.6vw, 1.4rem); font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap;
}
.ticker__track i { color: var(--signal); font-size: 0.5em; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- manifesto ---------- */
.manifesto {
  padding: 22vh 8vw;
  max-width: 1300px; margin-inline: auto;
}
.manifesto .manifesto__kicker { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.4rem; }
.manifesto .manifesto__kicker::before { content: "● "; color: var(--signal); font-size: 0.6em; vertical-align: 2px; }
.manifesto__text {
  font-size: clamp(2rem, 5.2vw, 4.9rem);
  font-weight: 650; letter-spacing: -0.035em; line-height: 1.08;
}
.manifesto__text .mw { opacity: 0.12; transition: opacity 0.5s linear; }
.manifesto__text .mw.is-on { opacity: 1; }
.manifesto__text .serif { font-size: 1.05em; }
.manifesto__note { margin-top: 3rem; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.55; }

/* ---------- numbers ---------- */
.numbers { position: relative; }
.numbers__pin {
  height: 100svh; overflow: clip;
  display: flex; flex-direction: column; justify-content: center;
  gap: 7vh;
}
.numbers__head {
  padding: 0 4vw;
  display: flex; align-items: baseline; justify-content: space-between; gap: 2rem;
}
.numbers__title {
  font-size: clamp(1.9rem, 4.4vw, 3.9rem);
  font-weight: 700; letter-spacing: -0.035em;
}
.numbers__hint { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.numbers__track {
  display: flex; gap: 3vw;
  padding: 0 4vw;
  width: max-content;
  will-change: transform;
}
.stat {
  width: clamp(300px, 34vw, 520px);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 2.4rem 2.2rem 2.6rem;
  display: flex; flex-direction: column; gap: 4.5rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  transition: border-color 0.4s;
}
.stat:hover { border-color: rgba(255, 207, 36, 0.55); }
.stat__index { font-size: 0.78rem; letter-spacing: 0.2em; color: var(--muted); }
.stat__value {
  font-size: clamp(4rem, 8.5vw, 7.6rem);
  font-weight: 250; letter-spacing: -0.05em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__value sup { font-size: 0.4em; font-weight: 400; color: var(--signal); }
.stat__label { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.4; color: var(--muted); font-weight: 500; }
.stat__label .serif { color: var(--fg); font-size: 1.08em; }

/* ---------- work ---------- */
.work { padding: 16vh 0 4vh; }
.work__header { padding: 0 4vw 8vh; max-width: 1200px; }

.case { padding: 7vh 4vw; border-top: 1px solid var(--line); }
.case__head { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1.8rem; align-items: baseline; margin-bottom: 4.5vh; }
.case__index {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem); font-weight: 600;
  color: var(--signal); letter-spacing: 0.15em;
}
.case__name {
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  font-weight: 780; letter-spacing: -0.045em; line-height: 0.95;
}
.case__role { margin-top: 0.7rem; color: var(--muted); font-size: clamp(0.92rem, 1.2vw, 1.1rem); font-weight: 500; }

.case__grid {
  display: grid;
  grid-template-columns: 1.15fr minmax(230px, 300px) minmax(230px, 330px);
  gap: clamp(1.6rem, 4vw, 4.5rem);
  align-items: center;
}
.case--two .case__grid {
  grid-template-columns: 1.2fr minmax(240px, 320px);
  max-width: 1100px;
}
.case__logos { display: flex; gap: 1.1rem; margin-top: 2.4rem; }
.case__logos .prooflogo { width: 84px; height: 84px; }

.videocard {
  position: relative; width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  display: block;
  max-height: 64vh;
}
.videocard__loop {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s;
}
.videocard:hover .videocard__loop { transform: scale(1.05); filter: brightness(0.85); }
.videocard__badge {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,11,12,0.75);
  color: var(--bone);
  backdrop-filter: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 10px 16px; border-radius: 999px;
  transition: background 0.35s, color 0.35s;
}
.videocard:hover .videocard__badge { background: var(--signal); color: var(--ink); }
.videocard__badge svg { flex: none; }

.case__figures { display: flex; flex-wrap: wrap; gap: 2.2rem 4rem; margin-bottom: 2.2rem; }
.figure { display: grid; grid-template-columns: repeat(3, auto); align-items: baseline; gap: 0.7rem; }
.figure__from { font-size: clamp(1.4rem, 2.6vw, 2.3rem); font-weight: 300; color: var(--muted); letter-spacing: -0.03em; }
.figure__arrow { color: var(--signal); font-size: clamp(1.2rem, 2vw, 1.8rem); }
.figure__to {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 250; letter-spacing: -0.05em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.figure__what { grid-column: 1 / -1; color: var(--muted); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em; }

.case__story { max-width: 46ch; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.55; font-weight: 480; margin-bottom: 2rem; }
.case__story--lead { font-size: clamp(1.15rem, 1.7vw, 1.5rem); max-width: 44ch; }
.case__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.case__tags li {
  font-size: 0.82rem; font-weight: 550; letter-spacing: 0.03em;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.case__tags li:hover { border-color: var(--signal); color: var(--fg); }

.case__proofcol { display: flex; flex-direction: column; gap: 1.1rem; justify-content: center; }
.proof {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.prooflogo {
  width: 104px; height: 104px; border-radius: 50%; overflow: hidden;
  border: 1px solid var(--line);
  flex: none;
}
.prooflogo img { width: 100%; height: 100%; object-fit: cover; }
.case__proofcol .prooflogo { align-self: flex-start; }

/* ---------- craft ---------- */
.craft { padding: 20vh 4vw; }
.craft__header { margin-bottom: 8vh; max-width: 1200px; }
.craft__list { border-top: 1px solid var(--line); }
.crow {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(220px, 1fr) 2fr;
  gap: 2.5rem; align-items: center;
  padding: 3.2rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: padding 0.5s var(--ease);
}
.crow:hover { padding-left: 1.6rem; }
.crow__num { font-size: 0.8rem; letter-spacing: 0.18em; color: var(--muted); }
.crow__name {
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 700; letter-spacing: -0.035em;
  transition: color 0.35s;
}
.crow:hover .crow__name { color: color-mix(in srgb, var(--fg) 60%, var(--signal)); }
.crow__desc { color: var(--muted); font-size: clamp(0.98rem, 1.3vw, 1.15rem); line-height: 1.55; max-width: 52ch; font-weight: 480; }
.crow__img {
  position: absolute; right: 6%; top: 50%;
  width: 190px; aspect-ratio: 1;
  border-radius: 14px; overflow: hidden;
  pointer-events: none; z-index: 5;
  opacity: 0; transform: translateY(-50%) scale(0.8) rotate(-5deg);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.crow__img img { width: 100%; height: 100%; object-fit: cover; }
.crow__img--logo img { object-fit: contain; background: #fff; padding: 12px; box-sizing: border-box; }
.crow:hover .crow__img { opacity: 1; transform: translateY(-50%) scale(1) rotate(-2deg); }

/* ---------- wall ---------- */
.wall { padding: 4vh 0 16vh; overflow: clip; }
.wall__header { padding: 0 4vw 6vh; max-width: 1200px; }
.wall__rows { display: flex; flex-direction: column; }
.wall__row { overflow: clip; }
.wall__track {
  display: flex; gap: 1.8rem; width: max-content;
  animation: ticker 40s linear infinite;
  padding-inline: 0.9rem;
}
.wall__row:hover .wall__track { animation-play-state: paused; }
.card {
  width: clamp(180px, 20vw, 280px);
  flex: none;
}
.card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  transition: transform 0.5s var(--ease);
}
.card:hover img { transform: translateY(-6px) rotate(-1.5deg); }
.card--logo img { object-fit: contain; background: #fff; padding: 18px; box-sizing: border-box; }
.card figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--muted);
}

/* ---------- contact ---------- */
.contact { padding: 22vh 4vw 14vh; max-width: 1200px; margin-inline: auto; }
.contact__title { display: flex; flex-direction: column; margin-bottom: 2rem; }
.contact__line {
  font-size: clamp(3.2rem, 10vw, 9.4rem);
  font-weight: 780; letter-spacing: -0.05em; line-height: 0.95;
}
.contact__line--accent {
  color: var(--bg);
  -webkit-text-stroke: 2.5px var(--fg);
  paint-order: stroke fill;
  transition: color 0.9s var(--ease);
}
@media (max-width: 720px) { .contact__line--accent { -webkit-text-stroke: 1.5px var(--fg); } }
.contact__sub { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; margin-bottom: 7vh; }

.form { max-width: 760px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }
.field { display: block; margin-bottom: 2.6rem; }
.field__label {
  display: block; font-size: 0.8rem; font-weight: 650;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--fg) 72%, transparent); margin-bottom: 0.8rem;
}
.field input, .field textarea {
  width: 100%;
  background: none; border: 0; border-bottom: 1.5px solid color-mix(in srgb, var(--fg) 32%, transparent);
  color: var(--fg);
  font: inherit; font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 500;
  padding: 0.5rem 0 0.9rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.4s;
  resize: none;
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--fg) 38%, transparent); }
.field input:focus, .field textarea:focus { border-color: var(--signal); }

.form__actions { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1rem; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 1rem; font-weight: 650; letter-spacing: 0.01em;
  border-radius: 999px; padding: 1.1rem 2.1rem;
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s, border-color 0.4s, letter-spacing 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.btn em { font-style: normal; transition: transform 0.4s var(--ease); }
.btn:hover em { transform: translateX(5px); }
.btn:hover { letter-spacing: 0.04em; }
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { background: var(--signal); color: var(--ink); }
.btn--ghost { border: 1px solid var(--line); color: var(--fg); }
.btn--ghost:hover { border-color: var(--signal); }
.form__done { margin-top: 1.6rem; color: var(--signal); font-weight: 550; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); overflow: clip; }
.footer__word {
  display: flex; justify-content: center;
  padding-top: 6vh;
  line-height: 0.78;
}
.footer__word span {
  font-size: clamp(1.9rem, 6.1vw, 6.6rem);
  font-weight: 830; letter-spacing: -0.045em;
  white-space: nowrap;
  transform: translateY(24%);
  color: color-mix(in srgb, var(--fg) 22%, transparent);
  transition: color 0.7s var(--ease);
  user-select: none;
}
.footer:hover .footer__word span { color: var(--signal); }
.footer__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.6rem 4vw 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--muted); font-weight: 500;
}
.footer__social { display: flex; gap: 1.8rem; }
.footer__social a { transition: color 0.3s; }
.footer__social a:hover { color: var(--signal); }
.footer__tag .serif { color: var(--fg); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2500;
  background: rgba(8, 8, 9, 0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage {
  height: min(86svh, 900px); aspect-ratio: 9 / 16; max-width: 92vw;
  border-radius: 18px; overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.6s var(--ease);
  box-shadow: 0 60px 140px rgba(0,0,0,0.6);
}
.lightbox.is-open .lightbox__stage { transform: none; }
.lightbox__stage video { width: 100%; height: 100%; object-fit: cover; background: #000; }
.lightbox__close {
  position: absolute; top: 3vh; right: 3vw;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 1.1rem;
  display: grid; place-items: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  z-index: 2;
}
.lightbox__close:hover { background: var(--signal); color: var(--ink); border-color: var(--signal); }
.lightbox__name {
  position: absolute; bottom: 3.5vh; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- reveal defaults (JS adds motion) ---------- */
[data-reveal] { will-change: transform, opacity; }

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
  .case__grid { grid-template-columns: 1fr minmax(220px, 280px); }
  .case__proofcol { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .case__proofcol .proof { max-width: min(400px, 100%); }
}

@media (max-width: 980px) {
  .crow { grid-template-columns: 70px 1fr; }
  .crow__desc { grid-column: 2; }
  .crow__img { display: none; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 6px;
    width: 44px; height: 44px; align-items: center; justify-content: center;
  }
  .nav__burger span { display: block; width: 22px; height: 2px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s; }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero { padding-bottom: 6vh; }
  .hero__foot { grid-template-columns: 1fr; gap: 1.4rem; }
  .hero__scroll { display: none; }
  .hero__claim { text-align: left; }
  .chip--4, .chip--6 { display: none; }
  .chip--1 { top: 18%; right: 5%; width: clamp(72px, 22vw, 118px); rotate: 6deg; }
  .chip--2 { top: 17%; left: 4%; width: clamp(72px, 22vw, 118px); rotate: -6deg; }
  .chip--3 { top: 66%; right: 22%; }
  .chip--7 { top: 60%; left: 8%; }

  .band { flex-direction: column; gap: 1.8rem; align-items: stretch; }
  .band__item { align-items: flex-start; text-align: left; }
  .band__item + .band__item { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.8rem; }

  .case__grid, .case--two .case__grid { grid-template-columns: 1fr; }
  .case__media { max-width: 330px; width: 100%; margin-inline: auto; }
  .case__logos { justify-content: flex-start; }
  .case__proofcol { flex-direction: column; align-items: stretch; }
  .case__proofcol .proof { max-width: 100%; }
  .case__head { grid-template-columns: auto 1fr; }

  .wall__header { padding-bottom: 4vh; }
  .card { width: 42vw; }

  .numbers__pin { height: auto; padding: 14vh 0; }
  .numbers__track {
    width: auto; overflow-x: auto; padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .numbers__track::-webkit-scrollbar { display: none; }
  .stat { width: 78vw; flex: none; scroll-snap-align: center; gap: 3rem; }
  .numbers__hint { display: none; }

  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .case__figures { gap: 2rem 3rem; }
  .manifesto { padding: 16vh 6vw; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scroll em::after { animation: none; }
  .ticker__track { animation-duration: 90s; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
