/* ==========================================================================
   Muskan Agarwal — portfolio
   Design system after dovetail.com: near-black canvas, white type, one blue
   accent, grey pixel grid. Inter + Redaction (pixel serif) + JetBrains Mono.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face { font-family: "Inter"; src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2-variations"), url("/fonts/inter-latin-wght-normal.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Redaction 35"; src: url("/fonts/redaction-35-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Redaction 50"; src: url("/fonts/redaction-50-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("/fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("/fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0A0A;
  --s1: #111111;
  --s2: #141414;
  --s3: #1D1D1D;
  --grid: #212121;
  --glass: rgba(255, 255, 255, .06);
  --glass-2: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --line-3: rgba(255, 255, 255, .24);

  --text: #FAFAFA;
  --text-2: rgba(255, 255, 255, .66);
  --text-3: rgba(255, 255, 255, .46);
  --cream: #F1EDE4;

  --blue: #0044FF;
  --blue-2: #3D6BFF;
  --blue-soft: #8AA5FF;
  --blue-deep: #0029A6;
  --blue-glow: rgba(0, 68, 255, .35);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-pixel: "Redaction 35", "Iowan Old Style", Georgia, serif;
  --font-pixel-num: "Redaction 50", "Redaction 35", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1200px;
  --gutter: 32px;
  --r-xl: 20px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 8px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 1px 0 rgba(255, 255, 255, .04) inset, 0 24px 60px -24px rgba(0, 0, 0, .8);

  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; border-radius: 6px; }

/* Every logo renders as a white mark, like the reference's logo wall */
img[src*="/images/logos/"] { filter: brightness(0) invert(1); }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }

.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--text); color: var(--bg); padding: 10px 14px; border-radius: 8px; transition: top .2s var(--ease); }
.skip:focus { top: 16px; }

/* ---------- Pixel icons ---------- */
.px { width: auto; height: 1em; flex: none; fill: currentColor; overflow: visible; }
.px .px-x { fill: currentColor; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.center { text-align: center; }

.pixel { font-family: var(--font-pixel); font-weight: 400; letter-spacing: -.01em; font-size: 1.05em; }
.accent { color: var(--text); }

.h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 600;
  text-wrap: balance;
}
.lede { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; color: var(--text-2); max-width: 36em; text-wrap: pretty; }
.center .lede, .lede.center { margin-left: auto; margin-right: auto; }

.inline-link { color: var(--text); border-bottom: 1px solid var(--line-3); transition: border-color .2s var(--ease); }
.inline-link:hover { border-color: var(--text); }

.arrow-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 500; white-space: nowrap; }
.arrow-link .px { height: 9px; transition: transform .25s var(--ease); }
a:hover .arrow-link .px, .arrow-link:hover .px { transform: translateX(3px); }

/* ---------- Keycaps (3D keys inline in headlines) ---------- */
.key {
  --k-top: #4F7BFF; --k-mid: #0B4DFF; --k-bot: #0036D1; --k-edge: #001F7A; --k-ico: #FFFFFF;
  --tilt: -6deg;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: .9em;
  height: .9em;
  margin: 0 .04em;
  vertical-align: -.08em;
  border-radius: .2em;
  color: var(--k-ico);
  background: linear-gradient(180deg, var(--k-top) 0%, var(--k-mid) 55%, var(--k-bot) 100%);
  box-shadow:
    inset 0 .03em 0 rgba(255, 255, 255, .45),
    inset 0 -.05em .05em rgba(0, 0, 0, .2),
    0 .07em 0 var(--k-edge),
    0 .18em .34em -.04em rgba(0, 40, 170, .55);
  transform: rotate(var(--tilt));
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.key::after {
  content: "";
  position: absolute;
  inset: .075em .085em .13em;
  border-radius: .15em;
  background: linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}
.key .px { position: relative; z-index: 1; height: .44em; width: auto; filter: drop-shadow(0 .02em 0 rgba(0, 0, 0, .25)); }
.key:hover { transform: rotate(var(--tilt)) translateY(.04em); box-shadow: inset 0 .03em 0 rgba(255,255,255,.45), inset 0 -.05em .05em rgba(0,0,0,.2), 0 .03em 0 var(--k-edge), 0 .08em .2em -.04em rgba(0,40,170,.55); }
.key--silver {
  --k-top: #F2F2F2; --k-mid: #D6D6D6; --k-bot: #B4B4B4; --k-edge: #6E6E6E; --k-ico: #111111; --tilt: 5deg;
  box-shadow: inset 0 .03em 0 rgba(255,255,255,.9), inset 0 -.05em .05em rgba(0,0,0,.18), 0 .07em 0 var(--k-edge), 0 .18em .3em -.04em rgba(0,0,0,.7);
}
.key--silver:hover { box-shadow: inset 0 .03em 0 rgba(255,255,255,.9), inset 0 -.05em .05em rgba(0,0,0,.18), 0 .03em 0 var(--k-edge), 0 .08em .18em -.04em rgba(0,0,0,.7); }
.key--silver .px { filter: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 44px; padding: 0 18px;
  border-radius: var(--r-sm);
  font-weight: 500; font-size: 15px; letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn .px { height: 9px; transition: transform .25s var(--ease); }
.btn:hover .px { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: #FFFFFF; color: #0A0A0A; }
.btn-primary:hover { background: var(--cream); }
.btn-secondary { background: var(--glass-2); color: var(--text); border-color: var(--line-3); }
.btn-secondary:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .36); }
.btn-sm { height: 38px; padding: 0 14px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, .82);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  backdrop-filter: saturate(1.2) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.announce {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  height: 36px; overflow: hidden;
  background: var(--s2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-2);
  transition: height .3s var(--ease), opacity .3s var(--ease), border-color .3s var(--ease);
}
.announce:hover { color: var(--text); }
.announce-tag { display: inline-flex; align-items: center; gap: 6px; padding: 3px 7px; border-radius: 5px; background: var(--blue); color: #fff; }
.announce-tag .px { height: 9px; }
.announce-go { display: inline-flex; align-items: center; gap: 8px; color: var(--text); }
.announce-go .px { height: 8px; }
.nav.is-scrolled .announce { height: 0; opacity: 0; border-color: transparent; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: #FFFFFF; color: #0A0A0A;
  transition: transform .3s var(--ease);
}
.brand-mark .px { height: 12px; }
.brand:hover .brand-mark { transform: rotate(-6deg); }

.nav-pill { display: flex; align-items: center; gap: 4px; }
.nav-pill a {
  padding: 8px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-pill a:hover { color: var(--text); background: var(--glass); }
.nav-pill a.is-current { color: var(--text); }
.nav-end { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--line-3); background: var(--glass-2); position: relative; cursor: pointer; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), top .25s var(--ease); }
.nav-toggle span:first-child { top: 15px; }
.nav-toggle span:last-child { top: 23px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }

.menu { margin: 0 16px 12px; padding: 8px; background: var(--s2); border: 1px solid var(--line-2); border-radius: 14px; display: grid; box-shadow: var(--shadow); }
.menu[hidden] { display: none; }
.menu a { padding: 13px 14px; border-radius: 8px; font-size: 16px; font-weight: 500; color: var(--text-2); }
.menu a:hover { background: var(--glass); color: var(--text); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 172px 0 0; overflow: hidden; isolation: isolate; }
.hero-field { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.hero::after { /* soft blue glow behind the portrait panel */
  content: ""; position: absolute; z-index: -1; left: 50%; top: 58%; width: 900px; height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 68, 255, .18), transparent);
  pointer-events: none;
}
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }

.proof {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 30px;
  margin-bottom: 32px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase; color: var(--text-3);
  animation: rise .8s var(--ease) .05s both;
}
.proof li { display: inline-flex; align-items: center; gap: 9px; }
.proof img { width: 15px; height: 15px; opacity: .9; }
.proof b { color: var(--text); font-weight: 500; }
.proof a { display: inline-flex; align-items: center; gap: 10px; transition: color .2s var(--ease); }
.proof a:hover { color: var(--text); }
.proof .proof-bi { width: auto; height: 11px; opacity: .85; }

.hero-title {
  font-size: clamp(44px, 7.4vw, 108px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 600;
  max-width: 13.4em;
}
.hero-title .line { display: block; animation: rise .9s var(--ease) both; }
.hero-title .line:nth-child(2) { animation-delay: .12s; }
.hero-title .key { margin-right: .08em; }
.hero-title .pixel { letter-spacing: -.025em; }

.hero-sub { margin-top: 28px; max-width: 36em; font-size: clamp(16px, 1.45vw, 19px); line-height: 1.6; color: var(--text-2); text-wrap: balance; animation: rise .9s var(--ease) .24s both; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 32px; animation: rise .9s var(--ease) .34s both; }
.status { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 13.5px; color: var(--text-3); animation: rise .9s var(--ease) .44s both; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 0 3px rgba(61, 107, 255, .2); animation: pulse 3.2s ease-out 1.6s infinite; }

@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(61, 107, 255, .6); } 70% { box-shadow: 0 0 0 10px rgba(61, 107, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 107, 255, 0); } }

/* Hero visual: portrait + profile cards, in the spot the reference uses for its product shot */
.hero-visual {
  position: relative;
  width: 100%;
  margin-top: 72px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(20, 20, 20, .72);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, .9), 0 0 0 1px rgba(0, 0, 0, .5);
  text-align: left;
  animation: rise 1.1s var(--ease) .5s both;
}
.hv-photo { position: relative; margin: 0; border-radius: 16px; overflow: hidden; background: #111; min-height: 520px; }
.hv-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: grayscale(1) contrast(1.05); }
.hv-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 55%, rgba(10,10,10,.85) 100%); }
.hv-brand { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1; display: flex; align-items: center; gap: 14px; }
.hv-brand img { width: auto; height: 44px; }
.hv-brand b { display: block; font-weight: 600; font-size: 17px; letter-spacing: -.01em; }
.hv-brand small { display: block; font-size: 13px; color: var(--text-2); }

.hv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
}
.hv-card {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: var(--s2);
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
a.hv-card:hover { border-color: var(--line-3); background: var(--s3); }
.hv-post { grid-column: 1 / -1; }
.hv-post-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hv-ava { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.hv-post-head span { flex: 1; }
.hv-post-head b { display: block; font-weight: 600; font-size: 14.5px; line-height: 1.3; }
.hv-post-head small { display: block; font-size: 12.5px; color: var(--text-3); }
.hv-li { width: 18px; height: 18px; opacity: .8; }
.hv-post p { font-size: 15.5px; line-height: 1.55; color: var(--text); }
.hv-post p + p { margin-top: 8px; }
.hv-post .hv-muted { color: var(--text-3); }
.hv-post-foot { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-3); }
.hv-post-foot span { display: inline-flex; align-items: center; gap: 7px; }
.hv-post-foot .px { height: 10px; color: var(--blue-2); }

.hv-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); }
.hv-label img { width: 13px; height: 13px; opacity: .8; }
.hv-num { display: block; margin-top: 10px; font-family: var(--font-pixel-num); font-size: 44px; line-height: 1; letter-spacing: -.02em; }
.hv-sub { display: block; margin-top: 6px; font-size: 13px; color: var(--text-3); }
.hv-bars { display: flex; align-items: flex-end; gap: 5px; height: 38px; margin-top: 16px; }
.hv-bars i { flex: 1; height: var(--h); border-radius: 2px; background: var(--s3); transform-origin: bottom; animation: grow 1.2s var(--ease) .9s both; }
.hv-bars i:nth-last-child(-n+3) { background: var(--blue); }
.hv-bars i:nth-child(2) { animation-delay: .95s; } .hv-bars i:nth-child(3) { animation-delay: 1s; } .hv-bars i:nth-child(4) { animation-delay: 1.05s; }
.hv-bars i:nth-child(5) { animation-delay: 1.1s; } .hv-bars i:nth-child(6) { animation-delay: 1.15s; } .hv-bars i:nth-child(7) { animation-delay: 1.2s; }
.hv-bars i:nth-child(8) { animation-delay: 1.25s; } .hv-bars i:nth-child(9) { animation-delay: 1.3s; } .hv-bars i:nth-child(10) { animation-delay: 1.35s; }
@keyframes grow { from { transform: scaleY(.1); } to { transform: none; } }
.hv-press { display: flex; flex-direction: column; gap: 12px; }
.hv-bi { width: 100%; max-width: 190px; height: auto; margin-top: 4px; }
.hv-press .hv-sub { margin-top: auto; }
.hv-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--s2);
  border: 1px solid var(--line);
  font-size: 13.5px; color: var(--text-2);
}
.hv-chip img { width: auto; height: 20px; margin-top: 5px; }

/* Trust marquee — white monochrome logos */
.trust { margin-top: 88px; padding-bottom: 40px; }
.marquee {
  margin-top: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-set { display: flex; align-items: center; gap: 64px; padding-right: 64px; }
.lg { width: auto; opacity: .55; transition: opacity .25s var(--ease); flex: none; }
.lg:hover { opacity: 1; }
.lg-ms { height: 26px; }
.lg-amz { height: 26px; margin-top: 8px; }
.lg-goog { height: 28px; }
.lg-yc { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 19px; letter-spacing: -.01em; color: #fff; white-space: nowrap; }
.lg-yc img { height: 26px; width: 26px; }
.lg-ir { height: 20px; }
.lg-nir { height: 44px; }
.lg-orbit { height: 30px; }
.lg-li { height: 26px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section-head { display: grid; gap: 18px; margin-bottom: 56px; max-width: 920px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; justify-items: center; }
.section-head.split { max-width: none; grid-template-columns: 1.3fr 1fr; align-items: end; gap: 32px; }
.section-head.split .lede { justify-self: end; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* Decorative pixel-grid corners like the reference's section backdrops */
.statement::before, .approach::before, .cta::before {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
}
.statement::before { right: 0; top: 0; width: 46%; height: 70%; -webkit-mask-image: radial-gradient(90% 90% at 100% 0%, #000, transparent 70%); mask-image: radial-gradient(90% 90% at 100% 0%, #000, transparent 70%); }
.approach::before { inset: 0 0 auto 0; height: 520px; -webkit-mask-image: radial-gradient(60% 90% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(60% 90% at 50% 0%, #000, transparent 75%); }
.cta::before { inset: 0; -webkit-mask-image: radial-gradient(70% 80% at 50% 50%, transparent 35%, #000 100%); mask-image: radial-gradient(70% 80% at 50% 50%, transparent 35%, #000 100%); opacity: .8; }
.section > .wrap, .cta > .wrap { position: relative; z-index: 1; }

/* ---------- Statement + stats ---------- */
.statement { border-top: 1px solid var(--line); }
.statement .eyebrow { margin-bottom: 22px; }
.statement-title {
  font-size: clamp(30px, 4.1vw, 56px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 600;
  max-width: 19em;
  text-wrap: balance;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 80px; }
.stat { padding-top: 24px; border-top: 1px solid var(--line-2); }
.stat-num {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-pixel-num);
  font-size: clamp(52px, 5.6vw, 80px);
  line-height: .9; letter-spacing: -.02em;
}
.stat-num .px { height: 16px; color: var(--blue-2); margin-top: 6px; }
.stat-label { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-weight: 600; font-size: 15px; }
.stat-label img { width: 14px; height: 14px; opacity: .8; }
.stat-note { margin-top: 6px; font-size: 14.5px; color: var(--text-3); line-height: 1.55; max-width: 22em; }
.statement-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px;
  margin-top: 64px; padding: 20px 24px;
  border-radius: var(--r-lg);
  background: var(--s2); border: 1px solid var(--line);
  font-size: 15px; color: var(--text-2);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.statement-foot:hover { border-color: var(--line-3); background: var(--s3); }
.statement-foot img { height: 14px; width: auto; }
.statement-foot .arrow-link { margin-left: auto; }

/* ---------- Work ---------- */
.work { border-top: 1px solid var(--line); }
.work-list { display: grid; gap: 88px; }
.work-link { display: block; }
.work-media {
  position: relative;
  aspect-ratio: 1200 / 620;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--s1);
  border: 1px solid var(--line);
  transition: border-color .4s var(--ease), transform .6s var(--ease);
}
.work-link:hover .work-media { border-color: var(--line-3); }
.work-info { margin-top: 24px; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px 48px; }
.work-name { font-size: 21px; line-height: 1.35; letter-spacing: -.018em; font-weight: 600; max-width: 36em; text-wrap: balance; }
.work-meta { margin-top: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); }
.work-go { display: inline-flex; align-items: center; gap: 8px; flex: none; margin-top: 4px; font-size: 14px; font-weight: 500; color: var(--text-2); transition: color .2s var(--ease); }
.work-go .px { height: 9px; transition: transform .25s var(--ease); }
.work-link:hover .work-go { color: var(--text); }
.work-link:hover .work-go .px { transform: translateX(3px); }

/* 01 · own brand: portrait + KPI panel */
.wm-self { display: grid; grid-template-columns: 40% 1fr; }
.wm-portrait { width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%; }
.work-link:hover .wm-portrait { transform: scale(1.03); }
.wm-panel { display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: 44px; background: linear-gradient(135deg, #141414, #0E0E0E); }
.wm-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wm-kpi { display: grid; gap: 6px; padding: 18px; border-radius: 14px; background: var(--s3); border: 1px solid var(--line); }
.wm-kpi img { width: 18px; height: 18px; opacity: .85; }
.wm-kpi b { font-family: var(--font-pixel-num); font-weight: 400; font-size: 40px; line-height: 1; margin-top: 8px; }
.wm-kpi small { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.wm-posts { display: grid; gap: 8px; }
.wm-posts p { display: grid; grid-template-columns: 96px 1fr auto; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.02); font-size: 14.5px; color: var(--text); }
.wm-posts span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-soft); }
.wm-posts em { display: inline-flex; align-items: center; gap: 6px; font-style: normal; font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }
.wm-posts .px { height: 10px; color: var(--blue-2); }

/* 02/03 · client case: photo + real analytics screenshots */
.wm-case { display: grid; grid-template-columns: 34% 1fr; }
.wm-case--flip { grid-template-columns: 1fr 34%; }
.wm-case--flip .wm-person { order: 2; }
.wm-person { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; transition: transform .8s var(--ease); }
.work-link:hover .wm-person { transform: scale(1.03); }
.wm-shots {
  position: relative;
  background:
    radial-gradient(60% 60% at 70% 40%, rgba(0, 68, 255, .16), transparent 70%),
    linear-gradient(135deg, #131313, #0C0C0C);
  overflow: hidden;
}
.wm-shots::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px; opacity: .6;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent); mask-image: linear-gradient(180deg, #000, transparent);
}
.wm-shots { display: flex; align-items: center; justify-content: center; padding: 76px 48px 44px; }
.wm-shot { position: relative; z-index: 1; width: 100%; max-width: 640px; border-radius: 10px; border: 1px solid var(--line-2); box-shadow: 0 30px 70px -24px rgba(0,0,0,.9); transition: transform .7s var(--ease); }
.work-link:hover .wm-shot { transform: translateY(-6px); }
.wm-logo { position: absolute; left: calc(34% + 48px); top: 30px; height: 17px; width: auto; z-index: 3; opacity: .9; }
.wm-badge {
  position: absolute; z-index: 3; left: 48px; top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 8px;
  background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 10px 30px -8px var(--blue-glow);
}
.wm-badge b { font-family: var(--font-pixel-num); font-weight: 400; font-size: 17px; }

/* More work: photo cards + compact cards */
.more-work { margin-top: 112px; }
.more-work > .eyebrow { margin-bottom: 24px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pcard {
  display: flex; flex-direction: column;
  padding: 12px 12px 24px;
  border-radius: var(--r-lg);
  background: var(--s2);
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.pcard:hover { border-color: var(--line-3); background: #171717; }
.pcard-img { display: block; aspect-ratio: 4 / 3.4; border-radius: 10px; overflow: hidden; background: var(--s3); }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform .7s var(--ease); }
.pcard:hover .pcard-img img { transform: scale(1.04); }
.pcard-metric { margin: 18px 12px 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-soft); }
.pcard-metric b { font-weight: 500; color: var(--text); }
.pcard h3 { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 10px 12px 0; font-size: 19px; font-weight: 600; letter-spacing: -.015em; }
.pcard-logo { height: 20px; width: auto; opacity: .7; }
.pcard-logo--nir { height: 30px; }
.pcard p { margin: 8px 12px 0; font-size: 14.5px; line-height: 1.55; color: var(--text-2); flex: 1; }
.pcard-tags { display: flex; gap: 6px; margin: 18px 12px 0; }
.pcard-tags span, .mini-metric { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); padding: 5px 8px; border-radius: 6px; border: 1px solid var(--line); }

.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.mini { display: flex; flex-direction: column; padding: 24px; border-radius: var(--r-lg); background: var(--s2); border: 1px solid var(--line); transition: border-color .3s var(--ease); }
a.mini:hover { border-color: var(--line-3); }
.mini-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.mini-top img { width: 20px; height: 20px; opacity: .8; }
.mini-top > .px { height: 18px; color: var(--text-2); }
.mini-metric { color: var(--blue-soft); border-color: rgba(138, 165, 255, .25); }
.mini h3 { font-size: 18px; font-weight: 600; letter-spacing: -.015em; }
.mini p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--text-2); }

/* ---------- Approach ---------- */
.approach { border-top: 1px solid var(--line); }
.approach .h2 .key .px { height: .46em; }
.steps { display: grid; gap: 16px; }
.step {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
  padding: 48px;
  border-radius: var(--r-xl);
  background: var(--s1);
  border: 1px solid var(--line);
}
.step-title { font-size: clamp(42px, 4.8vw, 68px); line-height: 1; letter-spacing: -.045em; font-weight: 600; }
.step-title sup { font-family: var(--font-pixel-num); font-size: .3em; letter-spacing: 0; color: var(--blue-2); vertical-align: super; margin-left: .1em; position: relative; top: -.5em; }
.step-sub { margin-top: 18px; font-size: 19px; font-weight: 600; letter-spacing: -.012em; }
.step-copy > p:not(.step-sub) { margin-top: 10px; color: var(--text-2); max-width: 30em; font-size: 15.5px; }
.ticks { margin-top: 24px; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--text); }
.ticks li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 8px; height: 8px; background: var(--blue); box-shadow: 3px 3px 0 rgba(0, 68, 255, .3); }

.step-visual {
  position: relative;
  aspect-ratio: 1.25;
  border-radius: 16px;
  background:
    radial-gradient(70% 70% at 50% 40%, rgba(0, 68, 255, .12), transparent 70%),
    var(--s2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  padding: 28px;
  overflow: hidden;
}
.step-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 32px 32px; opacity: .55;
}
.v-card {
  position: relative;
  width: min(100%, 420px);
  display: grid; gap: 12px;
  padding: 22px;
  border-radius: 14px;
  background: #171717;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  font-size: 14px;
}
.v-head { display: flex; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); }
.v-head .px { height: 12px; color: var(--blue-2); }
.v-row { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 4px 12px; }
.v-k { font-weight: 600; font-size: 13px; }
.v-slider { position: relative; height: 4px; border-radius: 99px; background: var(--s3); }
.v-slider i { position: absolute; top: 50%; left: var(--v); width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); transform: translate(-50%, -50%); transition: left 1.2s var(--ease); }
.js .step:not(.is-in) .v-slider i { left: 50%; }
.v-ends { grid-column: 2; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); }
.v-ends em { font-style: normal; }
.v-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: -4px; }
.v-chips b { font-weight: 500; font-size: 12.5px; padding: 5px 10px; border-radius: 6px; background: rgba(0, 68, 255, .16); color: #C9D6FF; border: 1px solid rgba(61, 107, 255, .35); }
.v-chips--no b { background: transparent; color: var(--text-3); border-color: var(--line-2); text-decoration: line-through; }

.c-grid { display: grid; gap: 8px; }
.c-day { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; }
.c-day > b { font-family: var(--font-mono); font-weight: 500; font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); }
.c-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-style: normal; font-weight: 500; font-size: 13px; background: var(--s3); border: 1px solid var(--line); min-width: 0; white-space: nowrap; }
.c-item img { width: 13px; height: 13px; opacity: .75; }
.c-item em { margin-left: auto; font-style: normal; font-family: var(--font-mono); font-weight: 500; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.c-hot { background: rgba(0, 68, 255, .18); border-color: rgba(61, 107, 255, .45); }
.c-hot em { color: #C9D6FF; }

.step-visual--shot { padding: 24px; }
.step-visual--shot img { position: relative; width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.shot-note { position: absolute; left: 24px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); padding: 6px 9px; border-radius: 6px; background: rgba(10, 10, 10, .8); border: 1px solid var(--line-2); }
.shot-note .px { height: 10px; color: var(--blue-2); }

.services { margin-top: 64px; display: grid; gap: 18px; justify-items: center; text-align: center; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 900px; }
.chips li { padding: 9px 14px; border-radius: 8px; background: var(--glass); border: 1px solid var(--line-2); font-size: 14px; font-weight: 500; color: var(--text-2); transition: border-color .2s var(--ease), color .2s var(--ease); }
.chips li:hover { color: var(--text); border-color: var(--line-3); }

/* ---------- Testimonials ---------- */
.words { border-top: 1px solid var(--line); }
.quotes { position: relative; padding: 56px; border-radius: var(--r-xl); background: var(--s1); border: 1px solid var(--line); overflow: hidden; }
.quote-stage { position: relative; display: grid; }
.quote { grid-area: 1 / 1; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.quote[hidden] { display: block; visibility: hidden; }
.quote:not(.is-active) { opacity: 0; transform: translateY(10px); pointer-events: none; }
.quote blockquote { font-size: clamp(22px, 2.5vw, 34px); line-height: 1.3; letter-spacing: -.025em; font-weight: 500; max-width: 30em; text-wrap: pretty; }
.quote blockquote::before { content: "“"; color: var(--blue-2); }
.quote blockquote::after { content: "”"; color: var(--blue-2); }
.quote figcaption { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.quote figcaption b { display: block; font-size: 15.5px; font-weight: 600; }
.quote figcaption small { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); }
.q-ava { width: 46px; height: 46px; border-radius: 10px; flex: none; display: grid; place-items: center; font-family: var(--font-pixel-num); font-size: 18px; background: var(--blue); color: #fff; box-shadow: 0 3px 0 var(--blue-deep); }
.quote-nav { display: flex; align-items: center; gap: 24px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.quote-tabs { display: flex; gap: 8px; }
.qt { width: 44px; height: 44px; border-radius: 8px; border: 1px solid var(--line-2); background: var(--glass); font-family: var(--font-pixel-num); font-size: 15px; color: var(--text-3); cursor: pointer; transition: all .25s var(--ease); }
.qt:hover { color: var(--text); border-color: var(--line-3); }
.qt.is-active { background: #fff; color: #0A0A0A; border-color: #fff; }
.quote-progress { flex: 1; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.quote-progress i { display: block; height: 100%; width: 100%; background: var(--blue-2); transform-origin: left; transform: scaleX(0); }
.quote-progress i.is-running { animation: progress var(--quote-ms, 8000ms) linear forwards; }
.quotes:hover .quote-progress i, .quotes:focus-within .quote-progress i { animation-play-state: paused; }
@keyframes progress { to { transform: scaleX(1); } }

/* ---------- Channels + feed ---------- */
.feed { border-top: 1px solid var(--line); }
.channels { display: grid; grid-template-columns: 1.1fr 1fr 1.3fr .9fr; gap: 16px; margin-bottom: 16px; }
.channel {
  position: relative;
  display: flex; flex-direction: column;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--s1);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
a.channel:hover { border-color: var(--line-3); background: var(--s2); }
.channel-logo { height: 26px; width: auto; align-self: flex-start; }
.channel-head { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.channel-head img { width: 24px; height: 24px; }
.channel-num { margin-top: auto; padding-top: 36px; font-family: var(--font-pixel-num); font-size: 64px; line-height: 1; letter-spacing: -.02em; }
.channel-sub { margin-top: 8px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.channel--li { background: linear-gradient(160deg, rgba(0, 68, 255, .22), rgba(0, 68, 255, 0) 60%), var(--s1); }
.channel--yt { padding: 12px 12px 22px; }
.channel--yt .channel-head { margin: 16px 12px 0; }
.channel--yt .channel-sub { margin: 8px 12px 0; }
.channel-thumb { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; }
.channel-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); transition: transform .7s var(--ease); }
a.channel:hover .channel-thumb img { transform: scale(1.04); }
.channel-thumb i, .press-thumb i { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(10, 10, 10, .6); border: 1px solid rgba(255,255,255,.3); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; }
.channel-thumb i .px, .press-thumb i .px { height: 14px; margin-left: 3px; }
.channel--more { padding: 8px; gap: 8px; }
.channel--more a { flex: 1; display: grid; grid-template-columns: 22px 1fr; align-content: center; gap: 2px 12px; padding: 16px; border-radius: 12px; background: var(--s2); border: 1px solid var(--line); transition: border-color .25s var(--ease); }
.channel--more a:hover { border-color: var(--line-3); }
.channel--more img { grid-row: 1 / span 2; align-self: center; width: 20px; height: 20px; }
.channel--more span { font-weight: 600; font-size: 15px; }
.channel--more small { font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; color: var(--text-3); }

.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post { display: flex; flex-direction: column; gap: 16px; min-height: 220px; padding: 24px; border-radius: var(--r-lg); background: var(--s1); border: 1px solid var(--line); transition: border-color .3s var(--ease), background-color .3s var(--ease); }
.post:hover { border-color: var(--line-3); background: var(--s2); }
.post-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--blue-soft); }
.post-tag .px { height: 11px; }
.post-text { font-size: 17px; line-height: 1.5; letter-spacing: -.012em; flex: 1; text-wrap: pretty; }
.post-meta { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); letter-spacing: .04em; }
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.post-meta img { width: 12px; height: 12px; opacity: .7; }
.post-meta .px { height: 10px; color: var(--blue-2); }
.post--cta { background: #fff; color: #0A0A0A; border-color: #fff; }
.post--cta:hover { background: var(--cream); border-color: var(--cream); }
.post--cta .post-tag { color: var(--blue); }
.post--cta .post-text { font-size: 24px; line-height: 1.2; font-weight: 600; letter-spacing: -.025em; }
.post-links { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.post-links img { width: 18px; height: 18px; filter: none !important; }
.post-links span { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }
.post-links .px { height: 9px; transition: transform .25s var(--ease); }
.post--cta:hover .post-links .px { transform: translateX(4px); }

/* ---------- Press ---------- */
.press { border-top: 1px solid var(--line); }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.press-card { display: flex; flex-direction: column; gap: 14px; padding: 24px; border-radius: var(--r-lg); background: var(--s1); border: 1px solid var(--line); transition: border-color .3s var(--ease), background-color .3s var(--ease); }
.press-card:hover { border-color: var(--line-3); background: var(--s2); }
.press-card--bi { grid-column: span 2; padding: 36px; background: linear-gradient(150deg, rgba(0, 68, 255, .2), rgba(0, 68, 255, 0) 55%), var(--s1); }
.press-card--bi .press-logo { width: min(100%, 340px); height: auto; margin: 20px 0 8px; }
.press-card--bi .press-title { font-size: clamp(22px, 2.3vw, 30px); line-height: 1.25; letter-spacing: -.025em; font-weight: 600; max-width: 22em; }
.press-card--bi .arrow-link { margin-top: auto; padding-top: 12px; }
.press-note { color: var(--text-2); font-size: 15px; max-width: 34em; }
.press-meta { display: flex; justify-content: space-between; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.press-meta span { display: inline-flex; align-items: center; gap: 7px; }
.press-meta img { width: 13px; height: 13px; }
.press-title { font-size: 17px; line-height: 1.4; letter-spacing: -.012em; font-weight: 600; }
.press-card--video { padding: 12px 12px 24px; }
.press-card--video .press-meta, .press-card--video .press-title { margin: 0 12px; }
.press-thumb { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; margin-bottom: 6px; }
.press-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.press-card:hover .press-thumb img { transform: scale(1.04); }
.press-logo { width: auto; height: 28px; margin: 18px 0 6px; align-self: flex-start; }
.press-logo--eoi { height: 64px; margin: 10px 0 0; }
.press-logo--li { height: 26px; }
.press-card--dark .press-title, .press-card:not(.press-card--bi):not(.press-card--video) .press-title { margin-top: auto; }

/* ---------- About ---------- */
.about { border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1.55fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; aspect-ratio: 1 / 1.02; }
.ap { position: relative; margin: 0; overflow: hidden; border-radius: 16px; border: 1px solid var(--line-2); background: var(--s2); }
.ap img { width: 100%; height: 100%; object-fit: cover; }
.ap--main { grid-row: 1 / span 2; }
.ap--main img { object-position: 50% 22%; }
.ap--talk img { object-position: 88% 40%; }
.ap figcaption { position: absolute; left: 10px; bottom: 10px; padding: 5px 9px; border-radius: 6px; background: rgba(10, 10, 10, .78); border: 1px solid var(--line-2); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--text); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.about-body > .eyebrow { margin-bottom: 22px; }
.about-copy p { font-size: clamp(18px, 1.7vw, 21px); line-height: 1.55; letter-spacing: -.012em; color: var(--text); text-wrap: pretty; }
.about-copy p + p { margin-top: 1em; color: var(--text-2); }
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
.creds li { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; background: var(--s1); border: 1px solid var(--line); }
.cred-logo { width: 52px; height: 52px; border-radius: 10px; display: grid; place-items: center; background: var(--s3); color: var(--text); }
.cred-logo img { width: 70%; height: auto; max-height: 60%; }
.cred-logo .px { height: 18px; }
.creds b { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.creds small { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 150px 0 140px; overflow: hidden; isolation: isolate; border-top: 1px solid var(--line); }
.cta::after { content: ""; position: absolute; z-index: -1; left: 50%; top: 45%; width: 900px; height: 500px; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(0, 68, 255, .22), transparent); }
.cta-squares { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-squares i { position: absolute; width: 48px; height: 48px; background: var(--sq, var(--s3)); opacity: 0; animation: twinkle var(--d, 6s) ease-in-out var(--delay, 0s) infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0; } 40%, 60% { opacity: var(--o, .9); } }
.cta-inner { display: grid; justify-items: center; text-align: center; }
.cta-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, .9); box-shadow: 0 0 0 6px rgba(0, 68, 255, .25); margin-bottom: 22px; }
.cta-title { margin-top: 16px; font-size: clamp(46px, 7.4vw, 108px); line-height: .98; letter-spacing: -.045em; font-weight: 600; }
.cta .lede { margin-top: 24px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.copy-mail { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding: 6px 6px 6px 16px; background: var(--glass); border: 1px dashed var(--line-3); border-radius: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--text-2); cursor: pointer; transition: border-color .2s var(--ease); }
.copy-mail:hover { border-color: rgba(255, 255, 255, .45); }
.copy-state { padding: 5px 10px; border-radius: 6px; background: var(--s3); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text); transition: background-color .2s var(--ease); }
.copy-mail.is-copied .copy-state { background: var(--blue); color: #fff; }
.cta-socials { display: flex; gap: 8px; margin-top: 34px; }
.cta-socials a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: var(--glass); border: 1px solid var(--line-2); transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease); }
.cta-socials a:hover { border-color: var(--line-3); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.cta-socials img { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 28px 0 36px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px 32px; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text-2); }
.footer-brand img { height: 30px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer-links a, .footer-note { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.footer-links a:hover { color: var(--text); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .hv-grid { grid-template-columns: 1fr; }
  .hv-post { grid-column: auto; }
  .hv-chip, .hv-press { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .channels { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 1fr; gap: 36px; }
  .step-visual { aspect-ratio: 16 / 10; }
}

@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .nav-pill { display: none; }
  .nav-toggle { display: block; }
  .announce > span:nth-child(2) { display: none; }
  .section { padding: 100px 0; }
  .hero { padding-top: 150px; }
  .hero-visual { grid-template-columns: 1fr; margin-top: 56px; }
  .hv-photo { min-height: 0; aspect-ratio: 4 / 4.2; }
  .hv-grid { grid-template-columns: 1fr 1fr; }
  .hv-post { grid-column: 1 / -1; }
  .section-head.split { grid-template-columns: 1fr; }
  .section-head.split .lede { justify-self: start; }
  .work-media { aspect-ratio: auto; }
  .wm-self, .wm-case, .wm-case--flip { grid-template-columns: 1fr; }
  .wm-portrait, .wm-person { aspect-ratio: 4 / 3; height: auto; }
  .wm-case--flip .wm-person { order: 0; }
  .wm-panel { padding: 24px; }
  .wm-shots { min-height: 0; padding: 72px 28px 32px; }
  .wm-logo { left: 28px; top: auto; bottom: auto; }
  .wm-logo { display: none; }
  .wm-badge { left: 16px; top: 16px; }
  .photo-grid, .mini-grid, .feed-grid, .press-grid { grid-template-columns: 1fr 1fr; }
  .press-card--bi { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photos { max-width: 560px; }
  .work-info { flex-direction: column; gap: 12px; }
  .quotes { padding: 36px 24px 24px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .brand-name { display: none; }
  .announce { font-size: 10.5px; gap: 10px; }
  .hero-title { letter-spacing: -.04em; }
  .hero-title .line { display: inline; }
  .proof { gap: 8px 18px; font-size: 10.5px; }
  .hv-grid { grid-template-columns: 1fr; }
  .hv-stat:nth-of-type(3) { display: none; }
  .stats { grid-template-columns: 1fr 1fr; gap: 36px 16px; margin-top: 56px; }
  .stat-note { display: none; }
  .statement-foot .arrow-link { margin-left: 0; }
  .wm-kpis { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .wm-kpi { padding: 12px; }
  .wm-kpi b { font-size: 28px; }
  .wm-posts p { grid-template-columns: 1fr auto; }
  .wm-posts p span { grid-column: 1 / -1; }
  .wm-shots { min-height: 280px; }
  .wm-shots { padding: 64px 16px 24px; }
  .photo-grid, .mini-grid, .feed-grid, .press-grid, .channels { grid-template-columns: 1fr; }
  .channel-num { font-size: 52px; }
  .step { padding: 24px; }
  .step-visual { aspect-ratio: auto; padding: 18px 12px; }
  .v-card { padding: 16px; }
  .c-day { grid-template-columns: 30px 1fr; gap: 8px; }
  .step-visual--shot { padding: 16px 16px 52px; }
  .creds { grid-template-columns: 1fr; }
  .cta { padding: 110px 0 100px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .logo-set { gap: 44px; padding-right: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Photography: black & white by default, colour on hover ---------- */
.wm-portrait, .wm-person, .pcard-img img, .press-thumb img, .channel-thumb img, .ap img, .hv-ava, .cta-avatar {
  filter: grayscale(1) contrast(1.04);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}
.work-link:hover .wm-portrait, .work-link:hover .wm-person, .pcard:hover .pcard-img img,
.press-card:hover .press-thumb img, a.channel:hover .channel-thumb img, .ap:hover img { filter: grayscale(0) contrast(1); }
