/* SCA — shared styles
   System: black background, white text, #266bd9 accent.
   Type: Space Grotesk (display/body) + JetBrains Mono (labels/meta).
   Aesthetic: bold brutalist — hairline rules, numbered markers, uppercase labels,
   no rounded corners on primary elements, grid-forward.
*/

:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #8a8a8a;
  --dim: #5a5a5a;
  --line: #1f1f1f;
  --line-2: #2a2a2a;
  --card: #0b0b0b;
  --card-2: #111111;
  --accent: #266bd9;
  --accent-ink: #ffffff;
  --accent-2: #1a4f9e;

  --font-display: 'League Spartan', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'EB Garamond', 'Garamond', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1440px;
  --gutter: 32px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
  cursor: none;
}

h1, h2, h3, h4, h5, h6,
.hero-h1, .section-title, .vert-title, .cta-h, .phero h1, .pull,
.brand, .brand-mark, .marquee-item, .footer-brand .big,
.btn, .nav-links, .chip, .work-title, .work-num, .work-meta, .work-tag,
.section-num, .section-label, .vert-num, .vert-meta,
.process-step h4, .process-step .n, .process-step .dur,
.team-card h4, .team-card .role,
.bullet-list h4, .bullet-list .bl-n,
.stat .n, .stat .lbl, .case-body h3, .footer h5, .footer-bottom,
.phero-label, .form-field label, .choice, .hero-meta, .hero-sub .num,
.cta-row .num, .live, .manifesto-item h3, .manifesto-item .n,
.placeholder, .ph-ticks {
  font-family: var(--font-display);
}

.mono, .nav-links, .brand, .chip, .work-num, .work-tag, .work-meta,
.section-num, .section-label, .vert-num, .vert-meta,
.process-step .n, .process-step .dur,
.team-card .role, .bullet-list .bl-n,
.stat .lbl, .footer h5, .footer-bottom,
.phero-label, .form-field label, .choice,
.hero-meta, .hero-sub .num, .cta-row .num,
.manifesto-item .n, .placeholder, .ph-ticks {
  font-family: var(--font-mono);
}

p, .hero-sub p, .section-sub, .vert-body, .manifesto-item p,
.process-step p, .bullet-list p, .case-body p,
.team-card p, .footer-brand p, .cta-row p, .phero-sub p {
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  html, body { cursor: auto; }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; padding: 0; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
.hero-h1, .cta-h, .phero h1 { font-weight: 800; }
.section-title, .vert-title, .work-title, .footer-brand .big, .pull { font-weight: 700; }
p { font-family: var(--font-body); }
em, .italic { font-family: var(--font-body); font-style: italic; }
p { margin: 0; }

/* ——— Custom cursor ——— */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
}
.cursor {
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .18s var(--ease), height .18s var(--ease), background .2s var(--ease);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .24s var(--ease), height .24s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.cursor.is-hover { width: 14px; height: 14px; background: var(--accent); }
.cursor-ring.is-hover { width: 56px; height: 56px; border-color: var(--accent); }
.cursor.is-text { width: 2px; height: 22px; border-radius: 2px; }
.cursor-ring.is-text { opacity: 0; }
@media (max-width: 900px) { .cursor, .cursor-ring { display: none; } }

/* ——— Layout ——— */
.shell { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.rule-thick { border: 0; border-top: 2px solid var(--fg); margin: 0; }

.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: .7;
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

/* ——— Nav ——— */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.brand-mark {
  width: 36px; height: 22px; background: transparent; color: var(--bg);
  display: inline-grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0;
}
.brand-mark.accent { background: var(--accent); color: var(--fg); }
.brand-mark img {
  width: 100%; height: 100%; object-fit: contain;
  display: block;
  filter: brightness(1.05);
}
.nav-links {
  display: flex; gap: 28px; justify-self: center;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase;
}
.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
  color: var(--muted);
}
.nav-links a:hover { color: var(--fg); border-bottom-color: var(--fg); }
.nav-links a.active { color: var(--fg); border-bottom-color: var(--accent); }
.nav-cta { justify-self: end; }

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: 1fr auto; height: 60px; }
  .nav-links { display: none; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid var(--fg);
  background: var(--fg); color: var(--bg);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.ghost { background: transparent; color: var(--fg); }
.btn.ghost:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.accent:hover { background: #fff; border-color: #fff; color: var(--bg); }
.btn .arr { display: inline-block; transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ——— Section scaffolding ——— */
.section { padding: 96px 0; position: relative; }
.section--sm { padding: 56px 0; }
.section-head {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding-bottom: 28px; margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.section-num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  color: var(--accent); padding-top: 6px;
}
.section-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 22px; color: #b3b3b3; max-width: 62ch; margin-top: 18px;
  line-height: 1.6; font-style: italic;
}
@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .section-head { grid-template-columns: 1fr; gap: 8px; }
}

/* ——— Tags / chips ——— */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid var(--line-2);
  color: var(--muted);
}
.chip .dot { width: 6px; height: 6px; background: var(--accent); display: inline-block; }

/* ——— Hero ——— */
.hero { padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em;
  color: var(--muted); text-transform: uppercase;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.hero-meta .live {
  display: inline-flex; align-items: center; gap: 8px;
}
.live-dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(38,107,217,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(38,107,217,.7); }
  70% { box-shadow: 0 0 0 10px rgba(38,107,217,0); }
  100% { box-shadow: 0 0 0 0 rgba(38,107,217,0); }
}
.hero-h1 {
  font-size: clamp(44px, 9vw, 148px);
  line-height: .92;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
.hero-h1 .accent { color: var(--accent); }
.hero-h1 .cycle {
  display: inline-block; position: relative;
  color: var(--accent);
  min-width: 6ch;
}
.hero-h1 .cycle::after {
  content: ""; display: inline-block; width: .08em; height: .85em;
  background: var(--accent); vertical-align: -0.1em; margin-left: .06em;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  margin-top: 40px;
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-sub .num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .1em; }
.hero-sub p { font-family: var(--font-body); font-size: 22px; line-height: 1.5; color: #e5e5e5; max-width: 54ch; }
.hero-sub .cta-col { display: flex; align-items: flex-start; justify-content: flex-end; }

@media (max-width: 900px) {
  .hero-sub { grid-template-columns: 1fr; }
  .hero-sub .cta-col { justify-content: flex-start; }
}

.reveal { display: inline-block; overflow-y: clip; overflow-x: visible; vertical-align: baseline; line-height: inherit; padding-right: .06em; }
@supports not (overflow: clip) {
  .reveal { overflow: hidden; padding-right: .12em; }
}
.reveal > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease); }
.reveal.in > span { transform: translateY(0); }

/* Hero — CSS-driven reveal, no JS dependency. Resting state is visible. */
.hero .reveal { margin-right: 0.18em; }
.hero .reveal:last-child { margin-right: 0; }
.hero .reveal > span {
  transform: translateY(0);
  animation: heroReveal .9s var(--ease);
  animation-delay: calc(var(--i, 0) * 90ms + 120ms);
}
@keyframes heroReveal {
  from { transform: translateY(110%); }
}

/* ——— Verticals / three-up ——— */
.verticals {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.vert {
  padding: 40px 32px 40px;
  border-right: 1px solid var(--line);
  background: var(--bg);
  position: relative; overflow: hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none; color: inherit;
}
.vert:last-child { border-right: 0; }
.vert::before {
  content: ""; position: absolute; inset: 0;
  background: var(--accent); transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.vert > * { position: relative; z-index: 1; }
.vert:hover::before { transform: translateY(0); }
.vert:hover { color: #fff; }
.vert:hover .vert-num, .vert:hover .vert-meta { color: rgba(255,255,255,.8); }
.vert-num {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  letter-spacing: .1em; margin-bottom: 24px;
  transition: color .3s var(--ease);
}
.vert-title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1; letter-spacing: -0.03em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 20px;
}
.vert-body { font-family: var(--font-body); font-size: 21px; line-height: 1.5; color: #cfcfcf; margin-bottom: 24px; }
.vert:hover .vert-body { color: rgba(255,255,255,.95); }
.vert-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  color: var(--muted); text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--line-2);
  transition: color .3s var(--ease);
}
.vert:hover .vert-meta { border-top-color: rgba(255,255,255,.3); }
.vert-meta .arrow {
  display: inline-block; transition: transform .3s var(--ease);
}
.vert:hover .vert-meta .arrow { transform: translateX(6px) rotate(-45deg); }

@media (max-width: 900px) {
  .verticals { grid-template-columns: 1fr; }
  .vert { border-right: 0; border-bottom: 1px solid var(--line); min-height: 320px; }
}

/* ——— Manifesto ——— */
.manifesto { padding: 120px 0; border-top: 1px solid var(--line); }
.manifesto-grid { display: grid; grid-template-columns: 80px 1fr; gap: 24px; }
.manifesto-list { display: flex; flex-direction: column; }
.manifesto-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.manifesto-item:last-child { border-bottom: 0; }
.manifesto-item .n { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .1em; padding-top: 8px; }
.manifesto-item h3 {
  font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; letter-spacing: -0.01em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 12px;
}
.manifesto-item p { font-family: var(--font-body); font-size: 21px; line-height: 1.55; color: #b3b3b3; max-width: 68ch; font-style: italic; }
.manifesto-item p strong { font-style: normal; font-weight: 500; color: #fff; }
.manifesto-item strong { color: var(--fg); font-weight: 500; }

/* ——— Process ——— */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 32px 24px; border-right: 1px solid var(--line);
  min-height: 280px; display: flex; flex-direction: column;
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-step .n {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  letter-spacing: .1em;
}
.process-step h4 {
  font-size: 22px; text-transform: uppercase; letter-spacing: -0.01em;
  margin: 24px 0 12px;
}
.process-step p { font-size: 17px; color: var(--muted); line-height: 1.6; }
.process-step .dur {
  font-family: var(--font-mono); font-size: 11px; color: var(--dim);
  letter-spacing: .08em; text-transform: uppercase; margin-top: auto;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { min-height: 220px; }
  .process-step:nth-child(2n) { border-right: 0; }
  .process-step { border-bottom: 1px solid var(--line); }
  .process-step:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; }
}

/* ——— Work ——— */
.work-list { border-top: 1px solid var(--line); }
.work-item {
  display: grid; grid-template-columns: 60px 1fr 180px 220px 60px;
  gap: 24px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .3s var(--ease), color .3s var(--ease);
  text-decoration: none; color: inherit;
}
.work-item::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: var(--accent); transform-origin: left; transform: scaleX(0);
  transition: transform .5s var(--ease); z-index: 0;
}
.work-item > * { position: relative; z-index: 1; }
.work-item:hover::before { transform: scaleX(1); }
.work-item:hover { padding-left: 24px; padding-right: 24px; color: #fff; }
.work-item:hover .work-meta, .work-item:hover .work-num, .work-item:hover .work-tag { color: rgba(255,255,255,.85); }
.work-num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .1em; }
.work-title { font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; letter-spacing: -0.02em; text-transform: uppercase; }
.work-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.work-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.work-arr { text-align: right; }
.work-arr svg { transition: transform .3s var(--ease); }
.work-item:hover .work-arr svg { transform: translateX(8px) translateY(-8px); }

@media (max-width: 900px) {
  .work-item { grid-template-columns: 40px 1fr 40px; }
  .work-item .work-tag, .work-item .work-meta { display: none; }
}

/* ——— Logos marquee ——— */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 40px 0; background: #000;
}
.marquee-track {
  display: flex; gap: 80px; align-items: center;
  animation: scroll 8s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display); font-weight: 600;
  font-size: 46px; letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 16px;
}
.marquee-item .dot { width: 8px; height: 8px; background: var(--accent); display: inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— CTA / Contact callout ——— */
.cta-block {
  border-top: 2px solid var(--fg);
  padding: 96px 0; position: relative; overflow: hidden;
  background: var(--bg);
}
.cta-h {
  font-size: clamp(40px, 8vw, 128px); line-height: .92;
  letter-spacing: -0.04em; text-transform: uppercase; font-weight: 500;
}
.cta-h .accent { color: var(--accent); }
.cta-row {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 24px;
  align-items: end; margin-top: 64px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.cta-row .num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .1em; }
.cta-row p { max-width: 44ch; color: var(--muted); font-size: 20px; line-height: 1.55; }
@media (max-width: 700px) {
  .cta-row { grid-template-columns: 1fr; }
}

/* ——— Footer ——— */
.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; background: var(--bg); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.footer h5 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); font-weight: 400;
  margin-bottom: 18px;
}
.footer a { display: block; padding: 4px 0; color: #dcdcdc; font-size: 14px; }
.footer a:hover { color: var(--accent); }
.footer-brand .big {
  font-size: clamp(40px, 7vw, 96px); line-height: .9; letter-spacing: -0.04em;
  text-transform: uppercase; font-weight: 500; margin-bottom: 16px;
}
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 40ch; margin-top: 40px; }
.footer-brand-mark {
  display: block;
  width: 220px; height: auto;
  margin: 0;
  opacity: .95;
  filter: brightness(1.05);
}
@media (max-width: 700px) {
  .footer-brand-mark { width: 160px; }
  .footer-brand p { margin-top: 28px; }
}
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  color: var(--muted); text-transform: uppercase; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ——— Reveal on scroll ——— */
.sr { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.sr.in { opacity: 1; transform: none; }
.sr-stag > * { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.sr-stag.in > * { opacity: 1; transform: none; }
.sr-stag.in > *:nth-child(1) { transition-delay: .05s; }
.sr-stag.in > *:nth-child(2) { transition-delay: .12s; }
.sr-stag.in > *:nth-child(3) { transition-delay: .19s; }
.sr-stag.in > *:nth-child(4) { transition-delay: .26s; }
.sr-stag.in > *:nth-child(5) { transition-delay: .33s; }
.sr-stag.in > *:nth-child(6) { transition-delay: .40s; }

/* ——— Inner page hero (smaller) ——— */
.phero { padding: 120px 0 72px; border-bottom: 1px solid var(--line); }
.phero-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.phero-label::before { content: ""; width: 32px; height: 1px; background: var(--accent); display: inline-block; }
.phero h1 {
  font-size: clamp(48px, 8vw, 128px); line-height: .92; letter-spacing: -0.045em;
  text-transform: uppercase; font-weight: 500;
}
.phero h1 .accent { color: var(--accent); }
.phero-sub { margin-top: 32px; display: grid; grid-template-columns: 80px 1fr; gap: 24px; max-width: 960px; }
.phero-sub .num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .1em; padding-top: 8px; }
.phero-sub p { font-family: var(--font-body); font-size: 22px; line-height: 1.5; color: #e5e5e5; }

/* ——— Stat row ——— */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat {
  padding: 40px 28px; border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat .n {
  font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -0.03em;
  font-weight: 500;
}
.stat .n .accent { color: var(--accent); }
.stat .lbl {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-top: 14px;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ——— Image plates ——— */
.plate {
  position: relative; overflow: hidden;
  background: var(--card-2); border: 1px solid var(--line-2);
}
.plate img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease), filter .5s var(--ease); filter: grayscale(.15) contrast(1.05); }
.plate:hover img { transform: scale(1.04); filter: grayscale(0) contrast(1.05); }
.plate .tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; background: rgba(0,0,0,.55);
  padding: 6px 8px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}
.plate .corner {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}

.media-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.media-strip .plate { aspect-ratio: 4 / 5; border: 0; }
@media (max-width: 900px) {
  .media-strip { grid-template-columns: 1fr 1fr; }
  .media-strip .plate:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
}

.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
  border-top: 1px solid var(--line); padding-top: 32px;
}
.gallery .plate.g-tall { grid-column: span 4; aspect-ratio: 3 / 4; }
.gallery .plate.g-wide { grid-column: span 8; aspect-ratio: 16 / 10; }
.gallery .plate.g-sq { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery .plate.g-half { grid-column: span 6; aspect-ratio: 4 / 3; }
.gallery .plate.g-feat { grid-column: span 12; aspect-ratio: 21 / 9; }
@media (max-width: 900px) {
  .gallery .plate.g-tall, .gallery .plate.g-wide, .gallery .plate.g-sq, .gallery .plate.g-half { grid-column: span 12; aspect-ratio: 16 / 10; }
}

.work-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.work-card:hover { border-color: var(--accent); }
.work-card .plate { aspect-ratio: 4 / 3; border: 0; border-bottom: 1px solid var(--line-2); }
.work-card .meta {
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.work-card .meta .row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.work-card h4 {
  font-size: clamp(20px, 2vw, 26px); text-transform: uppercase;
  letter-spacing: -0.01em; font-weight: 700;
}
.work-card .res {
  font-family: var(--font-body); font-style: italic; color: #d2d2d2;
  font-size: 15px;
}

.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }

/* ——— Placeholder visuals (no fake illustration) ——— */
.placeholder {
  position: relative; background: var(--card-2);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  overflow: hidden;
}
.placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.02) 0 8px,
    transparent 8px 16px
  );
}
.placeholder .ph-inner { position: relative; z-index: 1; text-align: center; padding: 16px; }
.placeholder .ph-ticks {
  position: absolute; top: 8px; left: 8px; right: 8px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px; color: var(--dim); letter-spacing: .1em;
}

/* ——— Form ——— */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.form-field {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  position: relative;
}
.form-field.full { grid-column: 1 / -1; }
.form-field:first-child, .form-field:nth-child(2) { border-top: 0; }
.form-field label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--muted); text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: transparent; border: 0; color: var(--fg);
  font-family: var(--font-display); font-size: 18px; padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
  outline: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--dim); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-bottom-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 120px; font-size: 16px; }

.choice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line);
}
.choice {
  padding: 20px; border-right: 1px solid var(--line);
  cursor: none; transition: background .2s var(--ease), color .2s var(--ease);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--muted);
  user-select: none;
}
.choice:last-child { border-right: 0; }
.choice:hover { color: var(--fg); background: #0a0a0a; }
.choice.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.choice .c-num { font-size: 10px; color: var(--dim); }
.choice.active .c-num { color: rgba(255,255,255,.7); }
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field:nth-child(2) { border-top: 1px solid var(--line); }
  .choice-grid { grid-template-columns: 1fr; }
  .choice { border-right: 0; border-bottom: 1px solid var(--line); }
  .choice:last-child { border-bottom: 0; }
}

/* ——— Inner page content ——— */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.bullet-list { list-style: none; padding: 0; margin: 0; }
.bullet-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 28px 1fr;
  gap: 16px;
}
.bullet-list li:last-child { border-bottom: 1px solid var(--line); }
.bullet-list .bl-n {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  letter-spacing: .1em; padding-top: 4px;
}
.bullet-list h4 {
  font-size: 18px; font-weight: 500; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.bullet-list p { color: var(--muted); font-size: 17px; line-height: 1.6; }

.pull {
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.08; letter-spacing: -0.025em;
  font-weight: 500; text-wrap: balance;
}
.pull .accent { color: var(--accent); }

/* ——— Case study ——— */
.case-cover {
  aspect-ratio: 16 / 9; background: var(--card-2);
  border: 1px solid var(--line-2);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.case-body { max-width: 720px; margin: 0 auto; }
.case-body h3 {
  font-size: 28px; text-transform: uppercase; letter-spacing: -0.02em;
  margin: 56px 0 16px;
}
.case-body p { font-size: 20px; line-height: 1.65; color: #dcdcdc; margin-bottom: 18px; }
.case-body p strong { color: #fff; font-weight: 500; }

.result-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 56px 0;
}
.result-grid .stat { border-right: 1px solid var(--line); }
.result-grid .stat:last-child { border-right: 0; }

/* ——— Team ——— */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.team-card {
  padding: 32px; background: var(--bg);
  display: flex; flex-direction: column;
}
.team-card .avatar {
  aspect-ratio: 4/5; background: var(--card-2);
  border: 1px solid var(--line-2); margin-bottom: 24px;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.team-card h4 {
  font-size: 22px; text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-card .role {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.team-card p { font-size: 17px; color: var(--muted); line-height: 1.6; margin-top: 12px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* ——— Utility ——— */
.accent { color: var(--accent); }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }
.caps { text-transform: uppercase; letter-spacing: .08em; }
.spacer-sm { height: 24px; } .spacer-md { height: 48px; } .spacer-lg { height: 96px; }
