/* ============ Tokens ============ */
:root {
  --bg: #0a0a0a;
  --black: #000;
  --fg: #fff;
  --fg-60: rgba(255, 255, 255, .6);
  --muted: #c5c4c1;
  --grey: #878787;
  --grey-dim: #464646;
  --grey-lit: #d4d4d4;
  --display-dark: #212121;
  --line: #222;
  --line-2: #333;
  --accent: #ff3c00;
  --chip: rgba(255, 255, 255, .1);

  --f-body: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  --f-disp: 'Archivo', 'Arial Black', sans-serif;
  --f-light: 'Inter', 'Inter Tight', sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --d-xl: clamp(40px, 6.875vw, 150px);
  --d-lg: clamp(38px, 6.33vw, 140px);
  --d-md: clamp(32px, 5vw, 110px);
  --card: min(300px, 33vh);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  background: var(--bg); color: var(--fg);
  font-family: var(--f-body); font-size: 14px; line-height: 18px; letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg, canvas { display: block; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

.display {
  display: block;
  font-family: var(--f-disp); font-weight: 900; font-stretch: 125%;
  text-transform: uppercase; letter-spacing: -.01em; line-height: .73;
  white-space: nowrap;
}
.sq { display: inline-block; width: 3px; height: 3px; background: currentColor; flex: none; }
.dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: currentColor; margin: 0 12px 0 16px; vertical-align: middle; transform: translateY(-2px); }

/* Info bar: top rule, column ticks, bullet labels */
.bar {
  position: relative; display: grid; grid-template-columns: var(--bar-c1, 20.5%) 1fr auto; align-items: center;
  border-top: 1px solid var(--line); padding-top: 22px;
  font-size: 13px; line-height: 16px; letter-spacing: .02em; color: var(--muted);
}
.bar::before { content: ""; position: absolute; left: 0; top: -1px; width: 1px; height: 9px; background: #3a3a3a; }
.bar-col { position: relative; display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.bar-col:nth-child(2)::before { content: ""; position: absolute; left: 0; top: -23px; width: 1px; height: 9px; background: #3a3a3a; }
.bar-end { justify-self: end; }

/* Crosshair mark */
.crosshair { position: absolute; width: 48px; height: 48px; opacity: .35;
  background: radial-gradient(circle at center, transparent 0 2.5px, #fff 2.5px 3.5px, transparent 4px); }
.crosshair::before, .crosshair::after { content: ""; position: absolute; background: #fff; }
.crosshair::before { left: 0; right: 0; top: 50%; height: 1px; }
.crosshair::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.crosshair.sm { position: relative; width: 22px; height: 22px; opacity: .3; }

/* Pills */
.pill {
  display: inline-flex; align-items: center; height: 36px; padding: 0 22px;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 14px; letter-spacing: -.03em; color: var(--muted); white-space: nowrap;
  transition: border-color .3s ease-in-out, color .3s ease-in-out;
}
.pill.sm { height: 30px; padding: 0 12px; font-size: 13px; }
.pill.round { width: 30px; padding: 0; justify-content: center; }

/* Chip button (About / All Works) */
.btn-chip {
  display: inline-flex; align-items: center; height: 52px; padding: 4px 4px 4px 24px;
  background: var(--chip); border-radius: 4px; font-size: 15px; letter-spacing: -.02em;
  transition: background .35s ease-in-out;
}
.btn-label { position: relative; margin-right: 22px; }
.btn-label::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-out); }
.btn-arrow { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 2px;
  background: rgba(255, 255, 255, .08); color: var(--accent); transition: background .35s, color .35s; }
.btn-arrow svg { transition: transform .45s var(--ease-out); }
.btn-chip:hover { background: var(--accent); }
.btn-chip:hover .btn-label::after { transform: scaleX(1); }
.btn-chip:hover .btn-arrow { background: rgba(0, 0, 0, .14); color: #fff; }
.btn-chip:hover .btn-arrow svg { transform: translateX(3px); }

/* Underline wipe link */
.ul { position: relative; }
.ul::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out); }
.ul:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============ Cursor ============ */
.cursor {
  position: fixed; left: 0; top: 0; z-index: 100; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; pointer-events: none; opacity: 0; mix-blend-mode: difference;
  transition: opacity .3s, width .45s var(--ease-out), height .45s var(--ease-out);
}
.cursor.on { opacity: 1; }
.cursor.grow { width: 64px; height: 64px; }

/* ============ Nav ============ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; height: 60px; padding: 16px; mix-blend-mode: difference; pointer-events: none; }
.nav a { pointer-events: auto; }
.nav-logo {
  display: inline-flex; align-items: flex-start;
  font-family: var(--f-disp); font-weight: 900; font-stretch: 125%; font-size: 27px; line-height: .78; letter-spacing: -.05em;
  opacity: 0; transform: translateY(-14px); transition: opacity .5s, transform .7s var(--ease-out);
}
.nav-logo sup { font-family: var(--f-body); font-size: 9px; line-height: 1; margin-left: 1px; letter-spacing: 0; }
.nav-info p { position: absolute; top: 16px; white-space: nowrap; opacity: 0; transform: translateY(-10px);
  transition: opacity .45s, transform .6s var(--ease-out); }
.nav-info p:first-child { left: 24.6vw; }
.nav-info p:last-child { left: 40.2vw; }
.nav.show-logo .nav-logo { opacity: 1; transform: none; }
.nav.show-info .nav-info p { opacity: 1; transform: none; }
.nav.show-info .nav-info p:last-child { transition-delay: .05s; }

.menu-btn {
  position: fixed; top: 16px; right: 16px; z-index: 70; height: 36px; padding: 0 12px;
  display: flex; align-items: center; gap: 10px;
  background: var(--chip); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 4px; font-size: 16px; line-height: 20px; letter-spacing: -.01em;
  transition: background .3s;
}
.menu-btn:hover { background: rgba(255, 255, 255, .18); }
.menu-ico { position: relative; width: 16px; height: 12px; }
.menu-ico i { position: absolute; left: 0; width: 100%; height: 1.5px; background: #fff; transition: transform .5s var(--ease-out), opacity .3s; }
.menu-ico i:nth-child(1) { top: 0; }
.menu-ico i:nth-child(2) { top: 5px; }
.menu-ico i:nth-child(3) { top: 10px; }
.menu-btn.menu-open .menu-ico i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-btn.menu-open .menu-ico i:nth-child(2) { opacity: 0; }
.menu-btn.menu-open .menu-ico i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ============ Menu ============ */
.menu { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.menu.open { pointer-events: auto; }
.menu-scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, .6); opacity: 0; transition: opacity .6s; }
.menu.open .menu-scrim { opacity: 1; }
.menu-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(600px, 100vw);
  display: flex; flex-direction: column; padding: 20px 32px 36px;
  background: var(--black); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .5s cubic-bezier(.7, 0, .84, 0);
}
.menu.open .menu-panel { transform: none; transition: transform .8s var(--ease-out); }
.menu-head { display: flex; justify-content: space-between; margin-right: 118px; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted); }
.menu-head span { display: flex; align-items: center; gap: 12px; }
.menu-list { margin-top: calc(26vh - 50px); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.menu-row { position: relative; display: flex; align-items: center; gap: 14px; height: 80px; padding: 0 30px; border-bottom: 1px solid var(--line);
  transition: background .3s; }
.menu-row:last-child { border-bottom: 0; }
.menu-row::after { content: ""; position: absolute; right: 38px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #555; }
.menu-num { width: 22px; font-size: 13px; color: var(--muted); }
.menu-word { font-size: clamp(28px, 2.85vw, 44px); line-height: 1; transition: transform .5s var(--ease-out); }
.menu-row .active { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-left: 4px; }
.menu-row:hover { background: #0c0c0c; }
.menu-row:hover .menu-word { transform: translateX(12px); }
.menu-social { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.menu-social a { height: 55px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; transition: border-color .3s; }
.menu-social a:hover { border-color: #444; }

.icon-tile { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 2px; background: var(--chip); color: #aaa;
  font-size: 12px; font-weight: 600; letter-spacing: -.02em; transition: background .3s, color .3s; }
a:hover > .icon-tile, .icon-tile:hover { background: rgba(255, 255, 255, .22); color: #fff; }

/* ============ Loader ============ */
.loader { position: fixed; inset: 0; z-index: 90; background: var(--bg); }
.spark { position: absolute; top: 32px; width: 24px; height: 24px; }
.spark::before, .spark::after { content: ""; position: absolute; }
.spark::before { left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, #fff, transparent); }
.spark::after { top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(transparent, #fff, transparent); }
.spark-l { left: 32px; } .spark-r { right: 32px; }
.loader-cube { position: absolute; left: 50%; top: 45%; width: 88px; height: 88px; margin: -44px 0 0 -44px; perspective: 700px; }
.cube { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; animation: cube 7s linear infinite; }
.cube i { position: absolute; inset: 0; background: #202020; border: 1px solid #0c0c0c; overflow: hidden; }
.cube i::after { content: ""; position: absolute; top: 0; bottom: 0; left: 30%; width: 24%; background: rgba(255, 255, 255, .16); }
.cube .f1 { transform: translateZ(44px); background: #1b1b1b; }
.cube .f2 { transform: rotateY(180deg) translateZ(44px); }
.cube .f3 { transform: rotateY(90deg) translateZ(44px); background: #141414; }
.cube .f4 { transform: rotateY(-90deg) translateZ(44px); background: #2a2a2a; }
.cube .f5 { transform: rotateX(90deg) translateZ(44px); background: #3a3a3a; }
.cube .f6 { transform: rotateX(-90deg) translateZ(44px); }
@keyframes cube { from { transform: rotateX(-24deg) rotateY(0); } to { transform: rotateX(-24deg) rotateY(360deg); } }
.loader-inner { position: absolute; left: 32px; right: 32px; bottom: 30px; }
.loader-row { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 22px;
  font-size: clamp(36px, 3.75vw, 64px); line-height: 1; letter-spacing: .02em; }
.loader-count .pct { font-family: 'Inter', var(--f-body); font-weight: 300; }
.loader .bar { --bar-c1: 22.6%; padding-top: 14px; }

/* ============ Hero ============ */
.hero-wrap { position: relative; }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; z-index: 0;
  background: #050505 url(../assets/hero-rock.jpg) 34% 50% / cover no-repeat; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.scanlines { position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, .035) 0 1px, transparent 1px 3px); }
.hero-shade { position: absolute; inset: 0 0 auto 0; height: 140px; background: linear-gradient(#000, transparent); opacity: .3; }

.hero { position: relative; z-index: 1; height: 100vh; margin-top: -100vh; }
.hero-logo {
  position: absolute; left: 16px; top: 14px; display: flex; align-items: flex-start;
  font-family: var(--f-disp); font-weight: 900; font-stretch: 125%; font-size: 8.7vw; line-height: .78; letter-spacing: -.055em;
}
.copy-mark { font-family: var(--f-body); font-weight: 600; font-size: .2em; line-height: 1; margin: .04em 0 0 .12em; letter-spacing: 0; }
.hero-info p { position: absolute; top: 16px; white-space: nowrap; }
.hero-info p:first-child { left: 50%; }
.hero-info p:last-child { left: 65.6%; }

.marquee { position: absolute; left: 50%; right: 16px; top: 19.5vh; height: calc(var(--card) + 40px);
  border-left: 1px solid var(--line); border-right: 1px solid var(--line); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.marquee-track { display: flex; gap: 12px; height: 100%; will-change: transform; }
.mq-item { flex: none; width: var(--card); }
.mq-card { width: var(--card); height: var(--card); display: grid; place-items: center; overflow: hidden;
  border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle at 50% 72%, #1b1b1b, #0b0b0b 72%); }
.mq-card svg { height: 88%; width: auto; }
.mq-cap { display: flex; justify-content: space-between; gap: 10px; margin-top: 14px; padding: 0 4px;
  font-size: 14px; line-height: 18px; letter-spacing: -.02em; white-space: nowrap; }
.mq-cap span:first-child { overflow: hidden; text-overflow: ellipsis; }

.hero-copy { position: absolute; left: 50%; right: 16px; top: calc(19.5vh + var(--card) + 72px); }
.hero-lead { display: flex; justify-content: space-between; gap: 24px; }
.lead { font-size: clamp(17px, 1.56vw, 26px); line-height: 1.16; letter-spacing: -.02em; color: var(--fg-60); }
.lead-1 { color: #fff; }
.lead .dot { margin-left: 16px; }
.lead-mark { font-size: clamp(17px, 1.56vw, 26px); color: #9e9e9d; }
.hero-copy .btn-chip { margin-top: 30px; }

.hero-icons { position: absolute; left: 16px; top: 69vh; display: grid; gap: 4px; }
.hero-bar { position: absolute; left: 16px; right: 16px; bottom: 16px; --bar-c1: 20.6%; color: #fff; }
.hero-bar [data-scramble] { letter-spacing: -.03em; min-width: 92px; justify-content: flex-end; }

/* ============ Manifesto ============ */
.manifesto { position: relative; z-index: 2; margin-top: 50vh; background: var(--bg); padding: 40px 16px 0; }
.mf-type { position: relative; height: calc(var(--d-xl) * 3.95); }
.mf-left .display { font-size: var(--d-xl); color: #d3d3d3; }
.mf-line .w { transition: color .3s ease-in-out; }
.mf-line .w:hover { color: #fff; }
.reg { display: inline-block; font-size: .62em; line-height: 1; vertical-align: top; transform: translateY(-.1em); margin-left: .02em; }
.mf-indent { padding-left: 8vw; }
.mf-underscore { display: block; width: 7.4vw; height: 1.25vw; margin: .15vw 0 0 .3vw; background: #d3d3d3; }
.mf-right { position: absolute; right: 0; top: calc(var(--d-xl) * 1.72); text-align: right; }
.mf-right .display { font-size: var(--d-xl); color: var(--display-dark); }
.mf-bar { margin-top: 30px; }

/* About card */
.about-card {
  display: grid; grid-template-columns: calc(21.7vw - 100px) 27.7vw 1fr; align-items: start;
  margin-top: 60px; min-height: 560px; padding: 48px 48px 64px 84px;
  border: 1px solid var(--line); border-radius: 32px;
}
.ac-index { padding-top: 36px; font-size: clamp(28px, 2.9vw, 48px); line-height: 1; letter-spacing: -.02em; color: var(--grey); }
.ac-figure { width: min(250px, 17.5vw); }
.ac-figure svg { width: 100%; height: auto; }
.ac-text { max-width: 600px; padding-top: 44px; }
.ac-para { position: relative; font-size: clamp(22px, 2.5vw, 38px); line-height: 1.12; letter-spacing: -.02em; color: var(--grey-dim); text-indent: 6.2vw; }
.ac-label { position: absolute; left: 0; top: .75em; font-size: 14px; line-height: 1; letter-spacing: 0; text-indent: 0; color: var(--grey); }
.ac-list { width: min(310px, 100%); margin-top: 48px; }
.ac-list li { display: flex; align-items: center; gap: 26px; padding: 16px 0; border-top: 1px solid var(--line); font-size: 16px; line-height: 24px; color: var(--muted); }
.ac-list li:last-child { border-bottom: 1px solid var(--line); }
.ac-list b { width: 22px; font-weight: 400; letter-spacing: .04em; color: var(--accent); }
.ac-list i { width: 5px; height: 5px; margin-left: auto; margin-right: 16px; border-radius: 50%; background: #888; }

/* ============ Services ============ */
.services { position: relative; padding: 190px 0 170px; background: var(--bg); }
.ch-l { left: 16px; top: 190px; } .ch-r { right: 16px; top: 190px; }
.sv-head { position: relative; margin: 0 17.5vw; }
.sv-label { position: absolute; left: 0; top: calc(var(--d-md) * .36); font-size: 14px; line-height: 1; color: var(--grey); }
.sv-headline { font-weight: 400; font-size: var(--d-md); line-height: 1.04; letter-spacing: -.02em; color: #2a2a2a; text-indent: 20.2vw; }
.sv-rows { margin: 150px 17.4vw 0 17.5vw; }
.sv-top { display: flex; align-items: baseline; padding-bottom: 10px; border-bottom: 1px solid var(--line);
  font-size: var(--d-md); line-height: 1; letter-spacing: -.02em; }
.sv-num { flex: none; width: 10.6vw; color: var(--accent); }
.sv-title { color: var(--grey); transition: color .3s ease-in-out; }
.sv-tags { position: relative; display: flex; align-items: center; gap: 4px; padding: 12px 0 38px 10.6vw; }
.sv-tags::before, .sv-tags::after { content: ""; position: absolute; top: 25px; width: 10px; height: 10px; border-radius: 50%; background: #333; transition: background .3s; }
.sv-tags::before { left: 0; } .sv-tags::after { right: 0; }
.sv-row:hover .sv-title { color: #fff; }
.sv-row:hover .pill { border-color: #555; color: #fff; }
.sv-row:hover .sv-tags::before, .sv-row:hover .sv-tags::after { background: var(--accent); }

/* ============ 3D box interlude ============ */
.boxsec { position: relative; height: 220vh; }
.box-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.box-l, .box-r { position: absolute; top: 50%; z-index: 2; transform: translateY(-50%); font-size: 18px; line-height: 48px; color: var(--grey); }
.box-l { left: 32px; } .box-r { right: 32px; }
.box-l b, .box-r b { margin-right: 10px; font-weight: 400; letter-spacing: .04em; color: #fe3d00; }
.box-stage { position: absolute; inset: 0; perspective: 1900px; perspective-origin: 50% 35%; }
.box-scene { position: absolute; left: 50%; top: 56%; width: 0; height: 0; transform-style: preserve-3d; }
.cuboid { position: absolute; left: 0; top: 0; transform-style: preserve-3d; }
.face { position: absolute; left: 0; top: 0; }
.case .face { background: #0b0b0b; border: 1px solid rgba(255, 255, 255, .28); }
.case .f-front, .case .f-right { overflow: hidden; }
.case .barcode { position: absolute; right: 12%; top: 26%; width: 11%; height: 48%;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .7) 0 1px, transparent 1px 3px, rgba(255, 255, 255, .7) 3px 5px, transparent 5px 7px); }
.case .scribble { position: absolute; left: 4%; top: 30%; width: 26%; height: 1px; background: rgba(255, 255, 255, .4); box-shadow: 0 5px 0 rgba(255, 255, 255, .25); }
.case .port { position: absolute; left: 50%; top: 50%; width: 22%; aspect-ratio: 1; border-radius: 50%; transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, .6); box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .08); }
.case .screw { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, .35); }
.lid .face { background: #ff4a0a; border: 1px solid #ff6a2a; transition: background-color .2s; }
.lid .f-top { background: #ff5c14; }
.lid .f-front, .lid .f-back { background: #ff3c00; }
.lid .f-left, .lid .f-right { background: #e63600; }

/* ============ Works ============ */
.works { position: relative; z-index: 3; margin-top: -70vh; padding: 0 16px 140px 15.8vw; }
.works > .bar { --bar-c1: 23.9%; }
.wk-title { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 24px; }
.wk-title .display { font-size: var(--d-lg); color: #3a3a3a; }
.wk-title .display span { display: flex; align-items: flex-end; }
.sqdot { flex: none; width: 1.9vw; height: 1.3vw; margin: 0 3.1vw .05em 0; background: currentColor; }
.count { font-size: clamp(28px, 3.1vw, 48px); line-height: 1; letter-spacing: -.02em; color: var(--grey); margin-right: 10.2vw; }
.wk-intro { display: flex; align-items: center; margin-top: 100px; }
.slashes, .wk-intro p { font-family: var(--f-light); font-weight: 300; font-size: clamp(19px, 2.2vw, 34px); letter-spacing: -.035em; }
.slashes { width: 3.6vw; flex: none; }
.wk-intro p { flex: 1; }
.years { font-size: clamp(22px, 2.3vw, 36px); font-weight: 700; letter-spacing: -.07em; }
.years sup { font-size: .5em; }

.wk-grid { margin-top: 30px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--bg); }
.wk-row1 { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.wk-row2 { display: grid; grid-template-columns: 31.2% 25.1% 24.9% 1fr; }
.wk-cell { position: relative; display: flex; flex-direction: column; padding: 32px 32px 28px; border-right: 1px solid var(--line); }
.wk-cell:last-child { border-right: 0; }
.wk-media { position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 1.56; container-type: inline-size; background: #111; }
.wk-row2 .wk-media { border-radius: 12px; }
.poster { position: absolute; inset: 0; overflow: hidden; transition: transform 1s var(--ease-out); }
.wk-cell:hover .poster { transform: scale(1.045); }
.wk-cap { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 44px; }
.wk-name { display: flex; align-items: center; gap: 18px; font-size: 18px; letter-spacing: -.03em; color: #dfdfdf; transition: color .3s; }
.wk-name .crosshair.sm { opacity: .45; }
.wk-cell:hover .wk-name { color: #fff; }
.wk-tags { display: flex; gap: 2px; }
.wk-soon .wk-cap { margin-top: 40px; }
.wk-soon .pill { margin-top: 22px; align-self: flex-start; height: 32px; padding: 0 12px; font-size: 13px; }
.wk-cell.wk-lead .wk-cap { margin-top: auto; padding-top: 44px; }
.wk-all { justify-content: flex-end; align-items: flex-end; padding: 8px; }
.btn-all { height: 64px; padding: 4px 4px 4px 40px; font-size: 18px; }
.btn-all .btn-label { margin-right: 32px; }
.btn-all .btn-arrow { width: 56px; height: 56px; background: #3a3a3a; }

/* ============ Team ============ */
.team { position: relative; padding: 140px 0 120px; overflow: hidden; }
.stars { position: absolute; inset: 0; width: 100%; height: 100%; }
.tm-inner { position: relative; padding: 0 16px 0 16vw; }
.tm-inner > .bar { --bar-c1: 23.6%; }
.tm-title { position: relative; display: flex; justify-content: space-between; align-items: flex-end; margin-top: 90px; }
.tm-title .display { font-size: var(--d-lg); color: #dcdcdc; }
.tm-title .display span { display: block; }
.tm-l2 { padding-left: 3vw; }
.tm-cards { position: relative; margin: -9.5vw 0 0 -16vw; height: calc(6 * 6.8vw + 21vw + 40px); }
.tm-card { position: absolute; left: 0; top: 0; width: 13.2vw; will-change: transform; }
.tm-card svg { width: 100%; height: auto; filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .6)); }
.tm-text { position: absolute; left: 16vw; bottom: 0; font-size: clamp(16px, 1.25vw, 22px); line-height: 1.12; letter-spacing: -.02em; color: var(--muted); }
.tm-text .dot { margin-left: 10px; }

/* ============ Footer ============ */
.footer { position: relative; min-height: 100vh; overflow: hidden; background: #050505; }
.mosaic { position: absolute; left: 0; top: -8%; width: 100%; height: 116%; }
.footer-vignette { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(var(--bg), transparent 22%), radial-gradient(120% 90% at 62% 42%, transparent 35%, rgba(0, 0, 0, .7)); }
.ft-inner { position: relative; display: flex; flex-direction: column; min-height: 100vh; padding: 115px 16px 18px; }
.ft-cta { font-size: clamp(20px, 1.95vw, 32px); line-height: .94; letter-spacing: -.02em; color: var(--fg-60); }
.ft-cta-1 { color: #fff; }
.dot-lg { display: inline-block; width: 16px; height: 16px; margin: 0 10px 0 12px; border-radius: 50%; background: #fff; vertical-align: middle; transform: translateY(-2px); }
.ft-display { display: flex; flex-direction: column; align-items: flex-end; margin-top: auto; padding-top: 60px; }
.ft-line { font-size: var(--d-xl); line-height: .8; color: #fff; transform-origin: 0 100%; }
.ft-row3 { display: flex; align-items: center; gap: 4vw; }
.pill-lg { display: grid; place-items: center; width: min(420px, 29vw); height: 72px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px;
  font-size: clamp(17px, 1.53vw, 24px); color: #dfdfdf; transition: background .4s, color .4s, border-color .4s; }
.pill-lg:hover { background: #fff; color: #000; border-color: #fff; }
.ft-grid { display: grid; grid-template-columns: 23.5% 29.7% 26.7% 1fr; margin-top: 8px; border-top: 1px solid rgba(255, 255, 255, .12); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.ft-col { position: relative; display: flex; flex-direction: column; min-height: 158px; padding: 22px 0 14px; }
.ft-col::before { content: ""; position: absolute; left: 0; top: -1px; width: 1px; height: 9px; background: rgba(255, 255, 255, .25); }
.ft-lab { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.ft-col .crosshair.sm { margin: 44px 0 10px -5px; }
.ft-col p { font-size: 16px; line-height: 20px; letter-spacing: -.03em; }
.ft-links { display: flex; gap: 16px; }
.ft-links a { color: rgba(255, 255, 255, .7); transition: color .3s; }
.ft-links a:hover { color: #fff; }
.ft-top { display: flex; align-items: center; justify-content: flex-end; gap: 14px; padding-right: 16px;
  border-left: 1px solid rgba(255, 255, 255, .12); border-right: 1px solid rgba(255, 255, 255, .12); font-size: 16px; letter-spacing: -.04em; }
.to-top { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .22);
  transition: background .4s, color .4s; }
.to-top svg { transition: transform .5s var(--ease-out); }
.to-top:hover { background: #fff; color: #000; }
.to-top:hover svg { transform: translateY(-3px); }
.ft-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; font-size: 14px; opacity: .8; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .hero-info p:last-child { left: 72%; }
  .about-card { grid-template-columns: 90px 30vw 1fr; padding-left: 40px; }
}

@media (max-width: 809px) {
  :root { --d-xl: 12.4vw; --d-lg: 11.6vw; --d-md: 8.6vw; --card: 46vw; }
  .nav-info, .hero-info, .hero-icons, .hero-logo { display: none; }
  .nav-logo { opacity: 1; transform: none; font-size: 30px; }
  .marquee { left: 0; right: 0; top: 76px; border: 0; }
  .hero-copy { left: 16px; right: 16px; top: calc(76px + var(--card) + 64px); }
  .lead { font-size: 18px; }
  .lead br, .tm-text br, .ft-cta br { display: none; }
  .lead-1 { display: block; }
  .lead .dot { margin-left: 0; }
  .hero-bar { --bar-c1: 25%; }
  .manifesto { margin-top: 15vh; }
  .mf-right { top: calc(var(--d-xl) * 2.3); }
  .mf-type { height: calc(var(--d-xl) * 4.6); }
  .mf-bar, .works > .bar, .tm-inner > .bar { --bar-c1: 30%; }
  .about-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px 36px; border-radius: 20px; }
  .ac-index { padding-top: 0; }
  .ac-figure { width: 52vw; margin: 0 auto; }
  .ac-text { padding-top: 0; }
  .ac-para { font-size: 24px; text-indent: 70px; }
  .services { padding: 120px 0 90px; }
  .ch-l, .ch-r { top: 60px; }
  .sv-head, .sv-rows { margin-left: 16px; margin-right: 16px; }
  .sv-label { position: static; display: block; margin-bottom: 18px; }
  .sv-headline { text-indent: 18vw; }
  .sv-rows { margin-top: 70px; }
  .sv-num { width: 18vw; }
  .sv-tags { display: none; }
  .sv-top { padding: 14px 0; }
  .box-l { top: 16%; left: 16px; } .box-r { top: auto; bottom: 12%; right: 16px; }
  .works { padding-left: 16px; margin-top: -50vh; }
  .count { margin-right: 0; }
  .wk-intro { margin-top: 60px; flex-wrap: wrap; gap: 8px; }
  .slashes { width: auto; }
  .wk-row1, .wk-row2 { grid-template-columns: 1fr; }
  .wk-cell { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px; }
  .wk-cell:last-child { border-bottom: 0; }
  .wk-cap { margin-top: 20px; flex-wrap: wrap; }
  .wk-all { align-items: stretch; }
  .tm-inner { padding-left: 16px; }
  .tm-cards { margin: 20px 0 0 -16px; height: calc(6 * 9vw + 48vw + 80px); }
  .tm-card { width: 30vw; }
  .tm-text { position: static; margin-top: 20px; }
  .ft-inner { padding-top: 90px; }
  .ft-row3 { flex-direction: column-reverse; align-items: flex-end; gap: 24px; }
  .pill-lg { width: 70vw; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ft-top { grid-column: 1 / -1; min-height: 100px; border: 0; border-top: 1px solid rgba(255, 255, 255, .12); }
  .ft-bottom { flex-direction: column; }
  .menu-head { margin-right: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  .cube { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
